| 2 |
#define ToFLevel2_h |
#define ToFLevel2_h |
| 3 |
// |
// |
| 4 |
#include <TObject.h> |
#include <TObject.h> |
| 5 |
|
#include <TArrayI.h> |
| 6 |
|
#include <TArrayF.h> |
| 7 |
#include <TClonesArray.h> |
#include <TClonesArray.h> |
| 8 |
|
|
| 9 |
|
#include <ToFStruct.h> |
| 10 |
// |
// |
| 11 |
// class which contains track related variables |
// class which contains track related variables |
| 12 |
// |
// |
| 17 |
#define ZTOF31 -23.49 |
#define ZTOF31 -23.49 |
| 18 |
#define ZTOF32 -24.34 |
#define ZTOF32 -24.34 |
| 19 |
|
|
| 20 |
|
|
| 21 |
|
class ToFPMT : public TObject { |
| 22 |
|
|
| 23 |
|
private: |
| 24 |
|
|
| 25 |
|
public: |
| 26 |
|
Int_t pmt_id; |
| 27 |
|
Float_t adc; |
| 28 |
|
Float_t tdc_tw; |
| 29 |
|
// |
| 30 |
|
ToFPMT(); |
| 31 |
|
ToFPMT(const ToFPMT&); |
| 32 |
|
// |
| 33 |
|
ToFPMT* GetToFPMT(){return this;}; |
| 34 |
|
void Clear(); |
| 35 |
|
|
| 36 |
|
ClassDef(ToFPMT,1); |
| 37 |
|
}; |
| 38 |
|
|
| 39 |
|
|
| 40 |
class ToFTrkVar : public TObject { |
class ToFTrkVar : public TObject { |
| 41 |
|
|
| 42 |
private: |
private: |
| 43 |
|
|
| 44 |
public: |
public: |
| 45 |
|
// |
| 46 |
Int_t trkseqno; // tracker entry coming from tracker, 100 if image track is used, -100 if the track is not consistent with MyDetector2 one |
Int_t trkseqno; // tracker entry coming from tracker, 100 if image track is used, -100 if the track is not consistent with MyDetector2 one |
| 47 |
// |
// |
| 48 |
Float_t beta_a[13]; |
Int_t npmttdc; |
| 49 |
Float_t adc_c[12][4]; |
TArrayI pmttdc; |
| 50 |
|
Float_t beta[13]; |
| 51 |
|
// |
| 52 |
|
Int_t npmtadc; |
| 53 |
|
TArrayI pmtadc; |
| 54 |
|
TArrayF dedx; |
| 55 |
|
// |
| 56 |
|
Float_t xtofpos[3]; |
| 57 |
|
Float_t ytofpos[3]; |
| 58 |
// |
// |
| 59 |
ToFTrkVar(); |
ToFTrkVar(); |
| 60 |
ToFTrkVar(const ToFTrkVar&); |
ToFTrkVar(const ToFTrkVar&); |
| 61 |
|
|
| 62 |
ToFTrkVar* GetToFTrkVar(){return this;}; |
ToFTrkVar* GetToFTrkVar(){return this;}; |
| 63 |
|
void Clear(); |
| 64 |
|
|
| 65 |
ClassDef(ToFTrkVar,1); |
ClassDef(ToFTrkVar,1); |
| 66 |
// |
// |
| 67 |
}; |
}; |
| 70 |
private: |
private: |
| 71 |
|
|
| 72 |
public: |
public: |
| 73 |
Float_t xtofpos[3]; |
// |
| 74 |
Float_t ytofpos[3]; |
TClonesArray *PMT; // class needed to store PMT hit informations |
|
Int_t tof_i_flag[6]; |
|
|
Int_t tof_j_flag[6]; |
|
|
Float_t betatof_a[13]; |
|
|
Float_t adctof_c[12][4]; |
|
|
Float_t tdc_c[12][4]; |
|
| 75 |
TClonesArray *ToFTrk; // track related variable class |
TClonesArray *ToFTrk; // track related variable class |
| 76 |
|
Int_t tof_j_flag[6]; |
| 77 |
// |
// |
| 78 |
|
Float_t GetdEdx(Int_t notrack, Int_t plane); |
| 79 |
// |
// |
| 80 |
// methods to make life simplier during the analysis, returns a pointer to the ToFTrkVar class containing track related variables |
// methods to make life simplier during the analysis, returns a pointer to the ToFTrkVar class containing track related variables |
| 81 |
// |
// |
| 82 |
Int_t ntrk(){return ToFTrk->GetEntries();}; |
Int_t ntrk(){return ToFTrk->GetEntries();}; |
| 83 |
|
Int_t npmt(){return PMT->GetEntries();}; |
| 84 |
|
|
| 85 |
|
// |
| 86 |
|
void GetLevel2Struct(cToFLevel2 *) const; |
| 87 |
// |
// |
| 88 |
ToFTrkVar *GetToFTrkVar(Int_t notrack); |
ToFTrkVar *GetToFTrkVar(Int_t notrack); |
| 89 |
|
ToFPMT *GetToFPMT(Int_t nohit); |
| 90 |
|
Int_t GetPMTid(Int_t gg, Int_t hh); |
| 91 |
|
TString GetPMTName(Int_t ind); |
| 92 |
|
Int_t GetPlaneIndex(Int_t pmt_id); |
| 93 |
|
void GetMatrix(Int_t notrack, Float_t adc[4][12], Float_t tdc[4][12]); |
| 94 |
|
void GetPMTIndex(Int_t pmt_id, Int_t &gg, Int_t &hh); |
| 95 |
// |
// |
| 96 |
// constructor |
// constructor |
| 97 |
// |
// |
| 99 |
// |
// |
| 100 |
// |
// |
| 101 |
ToFLevel2* GetToFLevel2(){return this;}; |
ToFLevel2* GetToFLevel2(){return this;}; |
| 102 |
Float_t GetZTOF(Int_t plane_id){ |
Float_t GetZTOF(Int_t plane_id){ |
| 103 |
switch(plane_id){ |
switch(plane_id){ |
| 104 |
case 11: return ZTOF11; |
case 11: return ZTOF11; |
| 105 |
case 12: return ZTOF12; |
case 12: return ZTOF12; |
| 109 |
case 32: return ZTOF32; |
case 32: return ZTOF32; |
| 110 |
default: return 0.; |
default: return 0.; |
| 111 |
}; |
}; |
| 112 |
}; |
}; |
| 113 |
|
|
| 114 |
// |
// |
| 115 |
// Paddles position |
// Paddles position |
| 116 |
// |
// |