Parent Directory
|
Revision Log
Imported sources
| 1 | mocchiut | 1.1 | /** |
| 2 | * \file TrkProcess.h | ||
| 3 | * \author Elena Vannuccini | ||
| 4 | */ | ||
| 5 | #ifndef trkprocess_h | ||
| 6 | #define trkprocess_h | ||
| 7 | |||
| 8 | #include <TString.h> | ||
| 9 | #include <TSystem.h> | ||
| 10 | #include <iostream> | ||
| 11 | |||
| 12 | /** | ||
| 13 | * \brief Class to handle input parameters for tracker data processing | ||
| 14 | * | ||
| 15 | */ | ||
| 16 | // ================================================================== | ||
| 17 | |||
| 18 | class TrkProcess{ | ||
| 19 | |||
| 20 | private: | ||
| 21 | |||
| 22 | public: | ||
| 23 | |||
| 24 | ULong64_t idrun; | ||
| 25 | Bool_t get1; | ||
| 26 | Bool_t get2; | ||
| 27 | TString frame1; | ||
| 28 | TString frame2; | ||
| 29 | Bool_t ifroot1; | ||
| 30 | Bool_t ifroot2; | ||
| 31 | Bool_t standalone; | ||
| 32 | Bool_t DEBUG; | ||
| 33 | TString file1; | ||
| 34 | TString file2; | ||
| 35 | TString outdir; | ||
| 36 | TString pfolder; | ||
| 37 | |||
| 38 | TrkProcess(); | ||
| 39 | TrkProcess(ULong64_t run, TFile *f2); | ||
| 40 | int HandleCustomPar(int ncustom, char* vcustom[]); | ||
| 41 | void Dump(); | ||
| 42 | |||
| 43 | }; | ||
| 44 | |||
| 45 | |||
| 46 | #endif | ||
| 47 | |||
| 48 |
| ViewVC Help | |
| Powered by ViewVC 1.1.23 |