/[PAMELA software]/PamelaDigitizer/Digitizer.h
ViewVC logotype

Annotation of /PamelaDigitizer/Digitizer.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.12 - (hide annotations) (download)
Tue Aug 11 14:56:30 2009 UTC (15 years, 3 months ago) by mocchiut
Branch: MAIN
Changes since 1.11: +1 -0 lines
File MIME type: text/plain
Compilation warnings and errors with gcc >= 4.3 fixed

1 pamelats 1.5 #ifndef DIGITIZER_H
2     #define DIGITIZER_H
3    
4     #include <iostream>
5 mocchiut 1.12 #include <istream>
6 pamelats 1.5 #include <fstream>
7    
8    
9     #include <stdlib.h>
10     #include <string.h>
11     #include <ctype.h>
12    
13     #include "Riostream.h"
14     #include "TFile.h"
15     #include "TDirectory.h"
16     #include "TTree.h"
17     #include "TLeafI.h"
18     #include "TH1.h"
19     #include "TH2.h"
20 pamelats 1.9 #include "TF1.h"
21 pamelats 1.5 #include "TMath.h"
22     #include "TSQLServer.h"
23 pamelats 1.9 #include "TGraph.h"
24     #include "GLTables.h"
25     #include "TSystem.h"
26     #include "TRandom.h"
27    
28 pamelats 1.5 #include "CRC.h"
29 pamelats 1.9 #include <CalibCalPedEvent.h>
30     #include "CalibTrk1Event.h"
31     #include "CalibTrk2Event.h"
32 pamelats 1.5
33     class Digitizer{
34    
35     protected:
36    
37     // in and output data members
38    
39     TTree* fhBookTree;
40     ofstream fOutputfile;
41 pamelats 1.9 int *nspe;
42     int *ntof;
43     int *ncat;
44     int *ncas;
45     int *ncar;
46     int *ncal;
47     int *nnd;
48     int *nstr;
49 pamelats 1.5
50     static const int fPSCUbuffer = 8;
51     static const int fTRIGGERbuffer = 152; //(bytes)
52     static const int fTOFbuffer = 276; //(bytes)
53     static const int fACbuffer = 128;
54     static const int fNDbuffer = 6;
55     static const int fS4buffer = 3;
56     static const int fPADbuffer = 64; // changed from 32!
57     static const int fCALObuffer = 10000;
58     static const float fCALOGeV2MIPratio = 0.0001059994;
59    
60     static const int fDummybuffer = 64;
61    
62     // dimensions of vectors and buffer, parameter for tracker
63     static const int fTRACKbuffer = 50000; // to be optimized
64     static const int fNviews = 12;
65     static const int fNstrips_view = 3072;
66     static const int fNladder=3;
67     static const int fNstrips_ladder = 1024;
68     static const int fCutzop= 4;
69     static const int fCutclu= 7;
70     static const int fNclst = 2;
71    
72    
73     static const float fAvePedex = 1200.; // to be adjusted
74     static const float fSigmaPedex = 1.; // to be adjusted
75     static const float fAveSigmax = 4.3; // to be adjusted
76     static const float fSigmaSigmax =0.1; // to be adjusted
77     static const float fAvePedey = 2800.; // to be adjusted
78     static const float fSigmaPedey = 1.; // to be adjusted
79     static const float fAveSigmay = 8.; // to be adjusted
80     static const float fSigmaSigmay =0.1; // to be adjusted
81     static const float fSigmaCommon = 25.; // to be adjusted
82    
83    
84     // end dimensions of vectors and buffer, parameter for tracker
85    
86     UShort_t fDataPSCU[fPSCUbuffer];
87     UInt_t fCounter;
88     UInt_t fCounterPhys;
89     UInt_t fOBT;
90    
91     UShort_t fDataPadding[fPADbuffer];
92     UInt_t fPadding;
93    
94     UChar_t fDataTrigger[fTRIGGERbuffer];
95     UChar_t fDataTof[fTOFbuffer];
96    
97     UShort_t fDataAC[fACbuffer];
98     UShort_t fDataND[fNDbuffer];
99     UShort_t fDataS4[fS4buffer];
100     UShort_t fDataDummy[fDummybuffer];
101    
102     UShort_t fDataCALO[fCALObuffer];
103     UShort_t fSecCalo[4];
104     UShort_t fSecCALOLength[4];
105     UShort_t fCALOlength;
106     UShort_t fModCalo;
107     Float_t fCalomip[2][22][96]; // ADC to MIP conversion values
108     Float_t fcalped[4][11][96]; // pedestals
109     Float_t fcalgood[4][11][96]; // used or not in the common noise calculation
110     Float_t fcalthr[4][11][6]; // thresholds
111     Float_t fcalrms[4][11][96]; // rms
112     Float_t fcalbase[4][11][6]; // baselines (common noise) during calibration
113     Float_t fcalvar[4][11][6]; // variance
114     Float_t fcstwerr[4]; // status word
115     Float_t fcperror[4]; // unpacking error flag
116     UInt_t fGivenCaloCalib;
117    
118     char* fFilename;
119     UInt_t fLen;
120    
121    
122    
123     // vectors, buffer, and variables for tracker
124     UShort_t fDataTrack[fTRACKbuffer];
125     UInt_t fTracklength; // Actual length of buffer
126     Float_t fPedeTrack[fNviews][fNstrips_view];
127     Float_t fSigmaTrack[fNviews][fNstrips_view];
128     // UShort_t fBadTrack[fNviews][fNstrips_view];
129     Float_t fMipCor[fNladder][fNviews] ;
130     // end vectors, buffer, and variables for tracker
131    
132    
133    
134     //
135     // db variables
136     //
137     TSQLServer *fDbc;
138     // Declaration of leave types
139     Int_t Irun;
140     Int_t Ievnt;
141     Int_t Ipa;
142     Float_t X0;
143     Float_t Y0;
144     Float_t Z0;
145     Float_t Theta;
146     Float_t Phi;
147     Float_t P0;
148     Int_t Nthtof;
149 pamelats 1.6 UChar_t *Ipltof;
150     UChar_t *Ipaddle;
151 pamelats 1.9 // UChar_t *Ipartof;//DPMJET
152     UShort_t *Ipartof;
153 pamelats 1.6 Float_t *Xintof;
154     Float_t *Yintof;
155     Float_t *Zintof;
156     Float_t *Xouttof;
157     Float_t *Youttof;
158     Float_t *Zouttof;
159     Float_t *Ereltof;
160     Float_t *Timetof;
161     Float_t *Pathtof;
162     Float_t *P0tof;
163 pamelats 1.5 Int_t Nthcat;
164 pamelats 1.6 UChar_t *Iparcat;
165     UChar_t *Icat;
166     Float_t *Xincat;
167     Float_t *Yincat;
168     Float_t *Zincat;
169     Float_t *Xoutcat;
170     Float_t *Youtcat;
171     Float_t *Zoutcat;
172     Float_t *Erelcat;
173     Float_t *Timecat;
174     Float_t *Pathcat;
175     Float_t *P0cat;
176 pamelats 1.5 Int_t Nthcas;
177 pamelats 1.6 UChar_t *Iparcas;
178     UChar_t *Icas;
179     Float_t *Xincas;
180     Float_t *Yincas;
181     Float_t *Zincas;
182     Float_t *Xoutcas;
183     Float_t *Youtcas;
184     Float_t *Zoutcas;
185     Float_t *Erelcas;
186     Float_t *Timecas;
187     Float_t *Pathcas;
188     Float_t *P0cas;
189 pamelats 1.5 Int_t Nthspe;
190 pamelats 1.9 // UChar_t *Iparspe;//DPMJET
191     // UShort_t *Iparspe;
192 pamelats 1.6 UChar_t *Itrpb;
193     UChar_t *Itrsl;
194     UChar_t *Itspa;
195     Float_t *Xinspe;
196     Float_t *Yinspe;
197     Float_t *Zinspe;
198     Float_t *Xoutspe;
199     Float_t *Youtspe;
200     Float_t *Zoutspe;
201     Float_t *Xavspe;
202     Float_t *Yavspe;
203     Float_t *Zavspe;
204     Float_t *Erelspe;
205     Float_t *Pathspe;
206     Float_t *P0spe;
207     UChar_t *Nxmult;
208     UChar_t *Nymult;
209 pamelats 1.5 Int_t Nstrpx;
210 pamelats 1.6 UChar_t *Npstripx;
211     UChar_t *Ntstripx;
212     UShort_t *Istripx;
213     Float_t *Qstripx;
214     Float_t *Xstripx;
215 pamelats 1.5 Int_t Nstrpy;
216 pamelats 1.6 UChar_t *Npstripy;
217     UChar_t *Ntstripy;
218     UShort_t *Istripy;
219     Float_t *Qstripy;
220     Float_t *Ystripy;
221 pamelats 1.5 Int_t Nthcali;
222     UChar_t Icaplane[4224];
223     UChar_t Icastrip[4224];
224     Int_t Icamod[4224];
225     Float_t Enestrip[4224];
226     Int_t Nthcal;
227 pamelats 1.6 UChar_t *Icapl;
228     UChar_t *Icasi;
229     UChar_t *Icast;
230     Float_t *Xincal;
231     Float_t *Yincal;
232     Float_t *Zincal;
233     Float_t *Erelcal;
234 pamelats 1.5 Int_t Nthnd;
235 pamelats 1.6 UChar_t *Itubend;
236     UChar_t *Iparnd;
237     Float_t *Xinnd;
238     Float_t *Yinnd;
239     Float_t *Zinnd;
240     Float_t *Xoutnd;
241     Float_t *Youtnd;
242     Float_t *Zoutnd;
243     Float_t *Erelnd;
244     Float_t *Timend;
245     Float_t *Pathnd;
246     Float_t *P0nd;
247 pamelats 1.5 Int_t Nthcard;
248 pamelats 1.6 UChar_t *Iparcard;
249     UChar_t *Icard;
250     Float_t *Xincard;
251     Float_t *Yincard;
252     Float_t *Zincard;
253     Float_t *Xoutcard;
254     Float_t *Youtcard;
255     Float_t *Zoutcard;
256     Float_t *Erelcard;
257     Float_t *Timecard;
258     Float_t *Pathcard;
259     Float_t *P0card;
260 pamelats 1.5
261     // List of branches
262     TBranch *b_Irun; //!
263     TBranch *b_Ievnt; //!
264     TBranch *b_Ipa; //!
265     TBranch *b_X0; //!
266     TBranch *b_Y0; //!
267     TBranch *b_Z0; //!
268     TBranch *b_Theta; //!
269     TBranch *b_Phi; //!
270     TBranch *b_P0; //!
271     TBranch *b_Nthtof; //!
272     TBranch *b_Ipltof; //!
273     TBranch *b_Ipaddle; //!
274     TBranch *b_Ipartof; //!
275     TBranch *b_Xintof; //!
276     TBranch *b_Yintof; //!
277     TBranch *b_Zintof; //!
278     TBranch *b_Xouttof; //!
279     TBranch *b_Youttof; //!
280     TBranch *b_Zouttof; //!
281     TBranch *b_Ereltof; //!
282     TBranch *b_Timetof; //!
283     TBranch *b_Pathtof; //!
284     TBranch *b_P0tof; //!
285     TBranch *b_Nthcat; //!
286     TBranch *b_Iparcat; //!
287     TBranch *b_Icat; //!
288     TBranch *b_Xincat; //!
289     TBranch *b_Yincat; //!
290     TBranch *b_Zincat; //!
291     TBranch *b_Xoutcat; //!
292     TBranch *b_Youtcat; //!
293     TBranch *b_Zoutcat; //!
294     TBranch *b_Erelcat; //!
295     TBranch *b_Timecat; //!
296     TBranch *b_Pathcat; //!
297     TBranch *b_P0cat; //!
298     TBranch *b_Nthcas; //!
299     TBranch *b_Iparcas; //!
300     TBranch *b_Icas; //!
301     TBranch *b_Xincas; //!
302     TBranch *b_Yincas; //!
303     TBranch *b_Zincas; //!
304     TBranch *b_Xoutcas; //!
305     TBranch *b_Youtcas; //!
306     TBranch *b_Zoutcas; //!
307     TBranch *b_Erelcas; //!
308     TBranch *b_Timecas; //!
309     TBranch *b_Pathcas; //!
310     TBranch *b_P0cas; //!
311     TBranch *b_Nthspe; //!
312     TBranch *b_Iparspe; //!
313     TBranch *b_Itrpb; //!
314     TBranch *b_Itrsl; //!
315     TBranch *b_Itspa; //!
316     TBranch *b_Xinspe; //!
317     TBranch *b_Yinspe; //!
318     TBranch *b_Zinspe; //!
319     TBranch *b_Xoutspe; //!
320     TBranch *b_Youtspe; //!
321     TBranch *b_Zoutspe; //!
322     TBranch *b_Xavspe; //!
323     TBranch *b_Yavspe; //!
324     TBranch *b_Zavspe; //!
325     TBranch *b_Erelspe; //!
326     TBranch *b_Pathspe; //!
327     TBranch *b_P0spe; //!
328     TBranch *b_Nxmult; //!
329     TBranch *b_Nymult; //!
330     TBranch *b_Nstrpx; //!
331     TBranch *b_Npstripx; //!
332     TBranch *b_Ntstripx; //!
333     TBranch *b_Istripx; //!
334     TBranch *b_Qstripx; //!
335     TBranch *b_Xstripx; //!
336     TBranch *b_Nstrpy; //!
337     TBranch *b_Npstripy; //!
338     TBranch *b_Ntstripy; //!
339     TBranch *b_Istripy; //!
340     TBranch *b_Qstripy; //!
341     TBranch *b_Ystripy; //!
342     TBranch *b_Nthcali; //!
343     TBranch *b_Icaplane; //!
344     TBranch *b_Icastrip; //!
345     TBranch *b_Icamod; //!
346     TBranch *b_Enestrip; //!
347     TBranch *b_Nthcal; //!
348     TBranch *b_Icapl; //!
349     TBranch *b_Icasi; //!
350     TBranch *b_Icast; //!
351     TBranch *b_Xincal; //!
352     TBranch *b_Yincal; //!
353     TBranch *b_Zincal; //!
354     TBranch *b_Erelcal; //!
355     TBranch *b_Nthnd; //!
356     TBranch *b_Itubend; //!
357     TBranch *b_Iparnd; //!
358     TBranch *b_Xinnd; //!
359     TBranch *b_Yinnd; //!
360     TBranch *b_Zinnd; //!
361     TBranch *b_Xoutnd; //!
362     TBranch *b_Youtnd; //!
363     TBranch *b_Zoutnd; //!
364     TBranch *b_Erelnd; //!
365     TBranch *b_Timend; //!
366     TBranch *b_Pathnd; //!
367     TBranch *b_P0nd; //!
368     TBranch *b_Nthcard; //!
369     TBranch *b_Iparcard; //!
370     TBranch *b_Icard; //!
371     TBranch *b_Xincard; //!
372     TBranch *b_Yincard; //!
373     TBranch *b_Zincard; //!
374     TBranch *b_Xoutcard; //!
375     TBranch *b_Youtcard; //!
376     TBranch *b_Zoutcard; //!
377     TBranch *b_Erelcard; //!
378     TBranch *b_Timecard; //!
379     TBranch *b_Pathcard; //!
380     TBranch *b_P0card; //!
381     //
382 pamelats 1.9 TF1 *attenAC;
383 pamelats 1.5 public:
384    
385 pamelats 1.9 Digitizer(TTree*,char*&,int,int,int,int,int,int,int,int); // constructor
386 pamelats 1.5
387     void Close();
388     void SetTree(TTree *tree) {fhBookTree = tree;};
389     void Loop(); // does the looping over events
390    
391     void DigitizePSCU(UInt_t, UChar_t, UShort_t*); // digitizes the CPU header
392     void AddPadding();
393     void DigitizeTOF(int np,float *atte1,float *atte2,float *lambda1,float *lambda2); // digitizes the tof
394     void LoadTOFCalib(int np,float *atte1,float *atte2,float *lambda1,float *lambda2); //load TOF calibration
395 pamelats 1.9 void DigitizeAC(); // digitizes the anti-counter
396 pamelats 1.5 void DigitizeND(); // digitizes the ND
397     void DigitizeS4(); // digitizes the S4
398     void DigitizeCALO(); // digitizes the calorimeter
399     void DigitizeCALOCALIB(); // digitizes the calorimeter calibration
400     void DigitizeCALORAW(); // digitizes the calorimeter
401     void DigitizeCALOCOMPRESS(); // digitizes the calorimeter
402     void DigitizeCALOFULL(); // digitizes the calorimeter
403    
404     Float_t GetCALOen(Int_t sec, Int_t plane, Int_t strip); // retrieve calorimeter strip energy from the simulation
405     void ClearCaloCalib(Int_t s); // clear calorimeter calibration variables for section s
406     Int_t CaloLoadCalib(Int_t s,TString fcalname, UInt_t calibno); // load calorimeter calibration variables for section s from file fcalname entry calibno
407     void CaloLoadCalib();
408    
409     void DigitizeDummy(); // digitizes the dummy detector
410    
411     // ToF methods:
412     UChar_t EvaluateCrcTof(UChar_t*);
413     void Paddle2Pmt(Int_t, Int_t, Int_t*, Int_t*);
414     //void Paddle2Pmt(Int_t, Int_t, Int_t &pmtleft, Int_t &pmtright);
415     UChar_t Bin2GrayTof(UChar_t, UChar_t);
416     void Crc8Tof(UChar_t*, UChar_t*);
417    
418     UChar_t EvaluateCrcTrigger(UChar_t*, Int_t);
419    
420     UShort_t* GetDataAC(){return(fDataAC);}; // retrieve AC data (not used right now)
421    
422     UShort_t* GetDataCALO(){return(fDataCALO);}; // retrieve AC data (not used right now)
423    
424     // methods for Tracker
425     void DigitizeTrack(); // digitizes the Tracker data
426     void DigitizeTrackCalib(Int_t ii); // digitizes the Tracker calibration (x view or y view)
427     void WriteTrackCalib(); // writes Tracker calibration to file
428     void ClearTrackCalib(); // clear tracker calibration
429     void LoadTrackCalib(); // load in memmory tracker calibration
430     void CompressTrackData(Float_t AdcTrack[fNviews][fNstrips_view]); // Compress and Digitize data of one Ladder in turn
431     void LoadMipCor(); // Load the strip calibration in memory
432     Float_t SaturationTrackx(Float_t ADC); // Saturation simulation
433     Float_t SaturationTracky(Float_t ADC); // Saturation simulation
434     // end methods for Tracker
435    
436     void WriteData(); // writes data to file
437     void ReadData();
438    
439     //
440    
441     };
442    
443     #endif /* DIGITIZER_H */
444    
445    
446    

  ViewVC Help
Powered by ViewVC 1.1.23