5 |
#ifndef trkprocess_h |
#ifndef trkprocess_h |
6 |
#define trkprocess_h |
#define trkprocess_h |
7 |
|
|
8 |
|
#include <TrkStruct.h> |
9 |
|
#include <TrkParams.h> |
10 |
|
#include <TrkLevel0.h> |
11 |
|
|
12 |
#include <TString.h> |
#include <TString.h> |
13 |
#include <TSystem.h> |
#include <TSystem.h> |
14 |
#include <iostream> |
#include <iostream> |
15 |
|
|
16 |
|
#define NPARMAX 20 |
17 |
|
|
18 |
/** |
/** |
19 |
* \brief Class to handle input parameters for tracker data processing |
* \brief Class to handle input parameters for tracker data processing |
20 |
* |
* |
26 |
private: |
private: |
27 |
|
|
28 |
public: |
public: |
29 |
|
|
30 |
ULong64_t idrun; |
ULong64_t idrun; |
31 |
Bool_t get1; |
Bool_t get1; |
32 |
Bool_t get2; |
Bool_t full1; |
33 |
TString frame1; |
Bool_t get2; |
34 |
TString frame2; |
Bool_t geth; |
35 |
Bool_t ifroot1; |
TString frame1; |
36 |
Bool_t ifroot2; |
TString frame2; |
37 |
Bool_t standalone; |
TString frameh; |
38 |
Bool_t DEBUG; |
Bool_t ifroot1; |
39 |
TString file1; |
Bool_t ifroot2; |
40 |
TString file2; |
Bool_t ifrooth; |
41 |
TString outdir; |
Bool_t standalone; |
42 |
TString pfolder; |
// Bool_t DEBUG; |
43 |
|
// Bool_t VERBOSE; |
44 |
|
TString file1; |
45 |
|
TString file2; |
46 |
|
TString outdir; |
47 |
|
TString pfolder; |
48 |
|
// cDbg dbg_mode; |
49 |
|
// int F77err; |
50 |
|
Int_t ostatus; ///< output status |
51 |
|
|
52 |
|
UInt_t nskip; ///< n.event to be skipped |
53 |
|
|
54 |
|
Int_t npar; |
55 |
|
Int_t partype[NPARMAX]; |
56 |
|
TString parpath[NPARMAX]; |
57 |
|
|
58 |
TrkProcess(); |
TrkProcess(); |
59 |
|
|
60 |
TrkProcess(ULong64_t run, TFile *f2); |
TrkProcess(ULong64_t run, TFile *f2); |
61 |
int HandleCustomPar(int ncustom, char* vcustom[]); |
|
62 |
|
/* void SetDebugMode() {TrkParams::SetDebugMode(); dbg_mode.SetDebug(); dbg_=dbg_mode;}; */ |
63 |
|
/* void SetVerboseMode(){TrkParams::SetVerboseMode(); dbg_mode.SetVerbose(); dbg_=dbg_mode;}; */ |
64 |
|
/* void SetWarningMode(){TrkParams::SetWarningMode();dbg_mode.SetWarning(); dbg_=dbg_mode;}; */ |
65 |
|
|
66 |
|
/* bool DebugMode(){return dbg_mode.debug;}; */ |
67 |
|
/* bool WarningMode(){return dbg_mode.warning;}; */ |
68 |
|
/* bool VerboseMode(){return dbg_mode.verbose;}; */ |
69 |
|
|
70 |
|
int HandleCustomPar(int ncustom, char* vcustom[]); |
71 |
|
|
72 |
|
void ProcessEvent(TrkLevel0*); |
73 |
|
|
74 |
void Dump(); |
void Dump(); |
75 |
|
void PrintHelp(); |
76 |
|
|
77 |
}; |
}; |
78 |
|
|