32 |
private: |
private: |
33 |
// |
// |
34 |
PamLevel2 *L2; |
PamLevel2 *L2; |
35 |
|
Bool_t debug; |
36 |
|
Bool_t usetrack; |
37 |
// |
// |
38 |
// needed to avoid reprocessing the same event over and over to obtain the variables |
// needed to avoid reprocessing the same event over and over to obtain the variables |
39 |
// |
// |
41 |
UInt_t PKT; |
UInt_t PKT; |
42 |
UInt_t atime; |
UInt_t atime; |
43 |
Int_t tr; |
Int_t tr; |
44 |
|
Int_t sntr; |
45 |
// |
// |
46 |
Int_t interplane; ///< Number of available dE/dx measurements before interaction or exit from the calo (interaction plane) |
Int_t interplane; ///< Number of available dE/dx measurements before interaction or exit from the calo (interaction plane) |
47 |
Int_t N; ///< Number of dE/dx measurements to be used to calculate qpremeanN, default N = 5 |
Int_t N; ///< Number of dE/dx measurements to be used to calculate qpremeanN, default N = 5 |
48 |
Int_t R; ///< Number of strip to be used around the trajectory to calculate qpremeanN, default R = 3 |
Int_t R; ///< Number of strip to be used around the trajectory to calculate qpremeanN, default R = 3 |
49 |
Float_t preq; ///< Energy release (MIP) up to the interaction plane (included) |
Float_t preq; ///< Energy release (MIP) up to the interaction plane (included) |
50 |
Float_t postq; ///< Energy release (MIP) from the interaction plane (excluded) up to the last plane |
Float_t postq; ///< Energy release (MIP) from the interaction plane (excluded) up to the last plane |
51 |
|
Float_t stdedx1; ///< Energy release (MIP) on the first Silicon detector (Y EVEN) around the strip with maximum energy release (no track information). |
52 |
Float_t dedx1; ///< Energy release (MIP) along the track on the first Silicon detector (Y EVEN). |
Float_t dedx1; ///< Energy release (MIP) along the track on the first Silicon detector (Y EVEN). |
53 |
Float_t dedx3; ///< Energy release (MIP) along the track on the first three Silicon detectors (Y EVEN, X EVEN, Y ODD). |
Float_t dedx3; ///< Energy release (MIP) along the track on the first three Silicon detectors (Y EVEN, X EVEN, Y ODD). |
54 |
Float_t qpremean; ///< Truncated mean (MIP) along the track up to the interaction plane preq using three points |
Float_t qpremean; ///< Truncated mean (MIP) along the track up to the interaction plane preq using three points |
66 |
Int_t Get_R(){ return R;}; ///< Number of strip to be used around the trajectory to calculate qpremeanN, default R = 3 |
Int_t Get_R(){ return R;}; ///< Number of strip to be used around the trajectory to calculate qpremeanN, default R = 3 |
67 |
Float_t Get_preq(){ Process(); return preq;}; ///< Energy release (MIP) up to the interaction plane (included) |
Float_t Get_preq(){ Process(); return preq;}; ///< Energy release (MIP) up to the interaction plane (included) |
68 |
Float_t Get_postq(){ Process(); return postq;}; ///< Energy release (MIP) from the interaction plane (excluded) up to the last plane |
Float_t Get_postq(){ Process(); return postq;}; ///< Energy release (MIP) from the interaction plane (excluded) up to the last plane |
69 |
|
Float_t Get_StdEdx1(){ Process(); return stdedx1;}; ///< Energy release (MIP) on the first Silicon detector (Y EVEN) around the strip with maximum energy release (no track information, 3 strips in total). |
70 |
Float_t Get_dEdx1(){ Process(); return dedx1;}; ///< Energy release (MIP) along the track on the first Silicon detector (Y EVEN). |
Float_t Get_dEdx1(){ Process(); return dedx1;}; ///< Energy release (MIP) along the track on the first Silicon detector (Y EVEN). |
71 |
Float_t Get_dEdx3(){ Process(); return dedx3;}; ///< Energy release (MIP) along the track on the first three Silicon detectors (Y EVEN, X EVEN, Y ODD). |
Float_t Get_dEdx3(){ Process(); return dedx3;}; ///< Energy release (MIP) along the track on the first three Silicon detectors (Y EVEN, X EVEN, Y ODD). |
72 |
Float_t Get_qpremean(){ Process(); return qpremean;}; ///< Truncated mean (MIP) along the track up to the interaction plane preq using three points |
Float_t Get_qpremean(){ Process(); return qpremean;}; ///< Truncated mean (MIP) along the track up to the interaction plane preq using three points |
81 |
CaloNuclei(PamLevel2 *L2); |
CaloNuclei(PamLevel2 *L2); |
82 |
~CaloNuclei(){ Delete(); }; |
~CaloNuclei(){ Delete(); }; |
83 |
// |
// |
84 |
|
void SetDebug(Bool_t d){ debug=d; }; |
85 |
|
void UseTrack(Bool_t d){ usetrack=d; }; |
86 |
|
// |
87 |
void Clear(); |
void Clear(); |
88 |
void Clear(Option_t *option){Clear();}; |
void Clear(Option_t *option){Clear();}; |
89 |
void Delete(); |
void Delete(); |
90 |
// |
// |
91 |
void Process(); ///< Process data for track number 0 |
void Process(); ///< Process data for track number 0 |
92 |
void Process(Int_t ntr); ///< Process data for track number ntr |
void Process(Int_t ntr); ///< Process data for track number ntr |
93 |
void Print(); |
void Print(); |
94 |
// |
// |
95 |
ClassDef(CaloNuclei,1); |
ClassDef(CaloNuclei,2); |
96 |
}; |
}; |
97 |
|
|
98 |
#endif |
#endif |