00001 00002 00003 #ifndef SCEVENTBUILDER_H 00004 #define SCEVENTBUILDER_H 1 00005 00006 00007 #include "TObject.h" 00008 #include "TString.h" 00009 00010 00011 00026 class ScEventBuilder : public TObject 00027 { 00028 00029 00030 public: 00031 00033 ScEventBuilder(); 00034 00035 00037 virtual ~ScEventBuilder(); 00038 00039 00041 void SetInputFile(const char* inFile) { fInputFile = inFile; } 00042 void SetOutputFile(const char* outFile) { fOutputFile = outFile; } 00043 00044 00046 Int_t Start(); 00047 00048 00049 00050 00051 00052 private: 00053 00054 TString fInputFile; 00055 TString fOutputFile; 00056 Double_t fTlimit; 00060 ClassDef(ScEventBuilder,1); 00061 00062 00063 }; 00064 00065 00066 #endif