7 |
// WM 24-feb-2009: introduced "Set_Beta": |
// WM 24-feb-2009: introduced "Set_Beta": |
8 |
// The user can set beta used in the code with "Set_Beta", |
// The user can set beta used in the code with "Set_Beta", |
9 |
// this beta is taken for the calculations. |
// this beta is taken for the calculations. |
10 |
|
// WM 06-aug-2009: charge_layer_trk_raw and charge_layer_std_raw |
11 |
|
// added: These are the "raw" values before doing the 2nd-order |
12 |
|
// correction |
13 |
//***************************************************** |
//***************************************************** |
14 |
|
|
15 |
|
|
57 |
Int_t ncount_trk; |
Int_t ncount_trk; |
58 |
Float_t charge_trk; |
Float_t charge_trk; |
59 |
Float_t charge_layer_trk[6]; |
Float_t charge_layer_trk[6]; |
60 |
|
Float_t charge_layer_trk_raw[6]; |
61 |
Float_t charge_PMT_trk[48]; |
Float_t charge_PMT_trk[48]; |
62 |
Int_t layerinfo_trk[6]; |
Int_t layerinfo_trk[6]; |
63 |
|
|
64 |
Int_t ncount_std; |
Int_t ncount_std; |
65 |
Float_t charge_std; |
Float_t charge_std; |
66 |
Float_t charge_layer_std[6]; |
Float_t charge_layer_std[6]; |
67 |
|
Float_t charge_layer_std_raw[6]; |
68 |
Float_t charge_PMT_std[48]; |
Float_t charge_PMT_std[48]; |
69 |
Int_t layerinfo_std[6]; |
Int_t layerinfo_std[6]; |
70 |
// |
// |
78 |
Float_t Get_Charge_ToF_trk(){ Process(); return charge_trk;}; |
Float_t Get_Charge_ToF_trk(){ Process(); return charge_trk;}; |
79 |
Float_t *Get_Charge_ToF_trk_layer(){ Process(); return charge_layer_trk;}; |
Float_t *Get_Charge_ToF_trk_layer(){ Process(); return charge_layer_trk;}; |
80 |
Float_t Get_Charge_ToF_trk_layer(Int_t layer){ Process(); return charge_layer_trk[layer];}; |
Float_t Get_Charge_ToF_trk_layer(Int_t layer){ Process(); return charge_layer_trk[layer];}; |
81 |
|
Float_t *Get_Charge_ToF_trk_layer_raw(){ Process(); return charge_layer_trk_raw;}; |
82 |
|
Float_t Get_Charge_ToF_trk_layer_raw(Int_t layer){ Process(); return charge_layer_trk_raw[layer];}; |
83 |
Float_t *Get_Charge_ToF_trk_PMT(){ Process(); return charge_PMT_trk;}; |
Float_t *Get_Charge_ToF_trk_PMT(){ Process(); return charge_PMT_trk;}; |
84 |
Float_t Get_Charge_ToF_trk_PMT(Int_t ipmt){ Process(); return charge_PMT_trk[ipmt];}; |
Float_t Get_Charge_ToF_trk_PMT(Int_t ipmt){ Process(); return charge_PMT_trk[ipmt];}; |
85 |
Int_t *Get_Layerinfo_trk(){ Process(); return layerinfo_trk;}; |
Int_t *Get_Layerinfo_trk(){ Process(); return layerinfo_trk;}; |
88 |
Int_t Get_Ncount_ToF_std(){ Process(); return ncount_std;}; |
Int_t Get_Ncount_ToF_std(){ Process(); return ncount_std;}; |
89 |
Float_t Get_Charge_ToF_std(){ Process(); return charge_std;}; |
Float_t Get_Charge_ToF_std(){ Process(); return charge_std;}; |
90 |
Float_t *Get_Charge_ToF_std_layer(){ Process(); return charge_layer_std;}; |
Float_t *Get_Charge_ToF_std_layer(){ Process(); return charge_layer_std;}; |
91 |
Int_t *Get_Layerinfo_std(){ Process(); return layerinfo_std;}; |
Float_t Get_Charge_ToF_std_layer(Int_t layer){ Process(); return charge_layer_std[layer];}; |
92 |
|
Float_t *Get_Charge_ToF_std_layer_raw(){ Process(); return charge_layer_std_raw;}; |
93 |
|
Float_t Get_Charge_ToF_std_layer_raw(Int_t layer){ Process(); return charge_layer_std_raw[layer];}; |
94 |
Float_t *Get_Charge_ToF_std_PMT(){ Process(); return charge_PMT_std;}; |
Float_t *Get_Charge_ToF_std_PMT(){ Process(); return charge_PMT_std;}; |
95 |
Float_t Get_Charge_ToF_std_PMT(Int_t ipmt){ Process(); return charge_PMT_std[ipmt];}; |
Float_t Get_Charge_ToF_std_PMT(Int_t ipmt){ Process(); return charge_PMT_std[ipmt];}; |
96 |
Float_t Get_Charge_ToF_std_layer(Int_t layer){ Process(); return charge_layer_std[layer];}; |
Int_t *Get_Layerinfo_std(){ Process(); return layerinfo_std;}; |
97 |
Int_t Get_Layerinfo_std(Int_t layer){ Process(); return layerinfo_std[layer];}; |
Int_t Get_Layerinfo_std(Int_t layer){ Process(); return layerinfo_std[layer];}; |
98 |
|
|
99 |
// |
// |