1 |
/** |
2 |
* \file inc/CaloProcessing.h |
3 |
* \author Emiliano Mocchiutti |
4 |
**/ |
5 |
#ifndef CaloProcessing_h |
6 |
#define CaloProcessing_h |
7 |
#include <TObject.h> |
8 |
#include <TROOT.h> |
9 |
// |
10 |
// YODA headers |
11 |
// |
12 |
#include <PamelaRun.h> |
13 |
#include <physics/calorimeter/CalorimeterEvent.h> |
14 |
#include <CalibCalPedEvent.h> |
15 |
// |
16 |
#include <CaloCore.h> |
17 |
#include <CaloLevel1.h> |
18 |
#include <CaloLevel2.h> |
19 |
|
20 |
/** |
21 |
* \brief Class needed to calibrate calorimeter data. |
22 |
* |
23 |
* Calibrates data and connects to fortran routines using structures. |
24 |
* |
25 |
**/ |
26 |
class CaloProcessing : public TObject { |
27 |
|
28 |
private: |
29 |
Bool_t debug; ///< debugging flag |
30 |
Bool_t verbose; ///< verbose flag |
31 |
// |
32 |
// variables in which it is stored the calibration information for the four sections |
33 |
// |
34 |
UInt_t idcalib[4]; ///< ID of root file containing calibrations (one per section) |
35 |
UInt_t fromtime[4]; ///< lower validity time limit |
36 |
UInt_t totime[4]; ///< upper validity time limit |
37 |
Int_t calibno[4]; ///< entry of the file |
38 |
TString fcalname[4]; ///< filename of calibrations |
39 |
// |
40 |
// variables needed to open level0 files |
41 |
// |
42 |
TTree *l0tr; ///< level0 tree |
43 |
TBranch *l0calo; ///< level0 calorimeter branch |
44 |
pamela::calorimeter::CalorimeterEvent *de; ///< level0 calorimeter object |
45 |
// |
46 |
// |
47 |
// variables from the calorimeter online calibration |
48 |
// |
49 |
Float_t calped[2][22][96]; ///< pedestals |
50 |
Float_t calgood[2][22][96]; ///< used or not in the common noise calculation |
51 |
Float_t calthr[2][22][6]; ///< thresholds |
52 |
Float_t calrms[2][22][96]; ///< rms |
53 |
Float_t calbase[2][22][6]; ///< baselines (common noise) during calibration |
54 |
Float_t calvar[2][22][6]; ///< variance |
55 |
Float_t cstwerr[4]; ///< status word |
56 |
Float_t cperror[4]; ///< unpacking error flag |
57 |
// |
58 |
// variables needed to calibrate the calorimeter event by event basis |
59 |
// |
60 |
Float_t dexy[2][22][96]; ///< compressed ADC data |
61 |
Float_t dexyc[2][22][96]; ///< RAW ADC data |
62 |
Float_t base[2][22][6]; ///< baselines for this event |
63 |
Float_t sbase[2][22][6]; ///< saved baselines from previous events |
64 |
// |
65 |
// Energy vector |
66 |
// |
67 |
Int_t istrip; ///< number of strip above threshold |
68 |
Int_t svstrip[4224]; ///< saved calibrated energy |
69 |
// |
70 |
// Variables needed to handle parameters files |
71 |
// |
72 |
Bool_t calopar1; ///< boolean, is true if parameter set number 101 has already been loaded |
73 |
Bool_t calopar2; ///< boolean, is true if parameter set number 102 has already been loaded |
74 |
Bool_t calopar3; ///< boolean, is true if parameter set number 103 has already been loaded |
75 |
UInt_t ftcalopar1; ///< parameter set 101 lower limit validity |
76 |
UInt_t ttcalopar1; ///< parameter set 101 upper limit validity |
77 |
UInt_t ftcalopar2; ///< parameter set 102 lower limit validity |
78 |
UInt_t ttcalopar2; ///< parameter set 102 upper limit validity |
79 |
UInt_t ftcalopar3; ///< parameter set 103 lower limit validity |
80 |
UInt_t ttcalopar3; ///< parameter set 103 upper limit validity |
81 |
// |
82 |
// private methods |
83 |
// |
84 |
/** |
85 |
* \param s calorimeter section. |
86 |
**/ |
87 |
void ClearCalibVals(Int_t s); ///< clear calibration values for section s |
88 |
void ClearCommonVar(); ///< clear common variables |
89 |
void ClearTrkVar(); ///< clear track-related variables |
90 |
void FindBaseRaw(Int_t l, Int_t m, Int_t pre); ///< calculate baselines starting from RAW data |
91 |
Int_t Update(TSQLServer *dbc, UInt_t atime, Int_t s); ///< update calibration for this event |
92 |
Int_t LoadCalib(Int_t s); ///< load calibrations |
93 |
|
94 |
public: |
95 |
// |
96 |
// ADC to MIP conversion values |
97 |
// |
98 |
Float_t mip[2][22][96]; ///< ADC to MIP conversion values |
99 |
Int_t obadmask[2][22][96]; ///< Offline mask of bad strips (not used to calculate baselines and calorimeter variables) |
100 |
Float_t emin; ///< Offline threshold to separate noise from signal |
101 |
// |
102 |
// Structures to pass data from/to F77 |
103 |
// |
104 |
struct FlCaLevel1 *clevel1; ///< input structure |
105 |
struct FlCaLevel2 *clevel2; ///< output structure |
106 |
// |
107 |
// |
108 |
// |
109 |
Int_t trkseqno; ///< tracker track sequential number (-1 if calorimeter selftrigger) |
110 |
// |
111 |
// useful methods |
112 |
// |
113 |
Int_t ChkParam(TSQLServer *dbc, UInt_t runheader); ///< check and load parameters data |
114 |
Int_t ChkCalib(TSQLServer *dbc, UInt_t atime); ///< check and load calibration data |
115 |
Int_t Calibrate(Int_t ei); ///< perform data calibration |
116 |
void GetCommonVar(); ///< call fortran common variables program |
117 |
void GetTrkVar(); ///< call fortran track-related variables program |
118 |
void ClearStructs(); ///< clear input and output structures |
119 |
void FillCommonVar(CaloLevel1 *c1, CaloLevel2 *ca); ///< copy common variables from structure to class |
120 |
void FillTrkVar(CaloLevel2 *ca, Int_t nutrk); ///< copy track-related variables from structure to class |
121 |
void RunClose(); ///< clear variables which could change from one run to another |
122 |
// |
123 |
// constructor |
124 |
// |
125 |
CaloProcessing(); ///< contructor |
126 |
void ProcessingInit(TSQLServer *dbc, UInt_t hs, Int_t &sgnl, TTree *l0tree, Bool_t debug, Bool_t verbose); ///< initialize caloprocessing object |
127 |
// |
128 |
// virtual destructor |
129 |
// |
130 |
virtual ~CaloProcessing();///< virtual destructor |
131 |
// |
132 |
}; |
133 |
|
134 |
#endif |