]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSresponseSDD.h
Added check for wrong records in the config file (R. Shaoyan)
[u/mrichter/AliRoot.git] / ITS / AliITSresponseSDD.h
1 #ifndef ALIITSRESPONSESDD_H
2 #define ALIITSRESPONSESDD_H
3  
4 /* Copyright(c) 2007-2009, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6  
7
8 #include <TObject.h>
9 #include <AliLog.h>
10
11 /* $Id$ */
12
13 /////////////////////////////////////////////////////////////
14 //  Base settings for the ITS response classes.            //  
15 //  The data member of this class are static and set once  //
16 //  for all the modules.                                   //    
17 ///////////////////////////////////////////////////////////// 
18
19 class AliITSresponseSDD : public TObject {
20  public:
21
22   AliITSresponseSDD();
23   virtual ~AliITSresponseSDD(){};
24
25   virtual void SetSideATimeZero(Float_t tzero){
26     SetLayer3ATimeZero(tzero);
27     SetLayer4ATimeZero(tzero);
28   }
29   virtual void SetSideCTimeZero(Float_t tzero){
30     SetLayer3CTimeZero(tzero);
31     SetLayer4CTimeZero(tzero);
32   }
33   virtual void SetLayer3ATimeZero(Float_t tzero){
34     for(Int_t iLad=1; iLad<=kNLaddersLay3; iLad++) SetHalfLadderATimeZero(3,iLad,tzero);      
35   }
36   virtual void SetLayer3CTimeZero(Float_t tzero){
37     for(Int_t iLad=1; iLad<=kNLaddersLay3; iLad++) SetHalfLadderCTimeZero(3,iLad,tzero);
38   }
39   virtual void SetLayer4ATimeZero(Float_t tzero){
40     for(Int_t iLad=1; iLad<=kNLaddersLay4; iLad++) SetHalfLadderATimeZero(4,iLad,tzero);      
41   }
42   virtual void SetLayer4CTimeZero(Float_t tzero){
43     for(Int_t iLad=1; iLad<=kNLaddersLay4; iLad++) SetHalfLadderCTimeZero(4,iLad,tzero);
44   }
45   virtual void SetHalfLadderATimeZero(Int_t lay, Int_t lad, Float_t tzero);
46   virtual void SetHalfLadderCTimeZero(Int_t lay, Int_t lad, Float_t tzero);
47   virtual void SetModuleTimeZero(Int_t modIndex, Float_t tzero){
48     if(modIndex<kNSPDmods || modIndex>kNSPDmods+kNSDDmods) AliError(Form("SDD module number %d out of range",modIndex));
49     fTimeZero[modIndex-kNSPDmods]=tzero;
50   }
51
52   virtual void SetDeltaVDrift(Int_t modIndex, Float_t dv){
53     if(modIndex<kNSPDmods || modIndex>kNSPDmods+kNSDDmods) AliError(Form("SDD module number %d out of range",modIndex));
54     fDeltaVDrift[modIndex-kNSPDmods]=dv;
55   }
56
57   virtual void SetTimeOffset(Float_t to){fTimeOffset = to;}
58   virtual Float_t GetTimeOffset()const {return fTimeOffset;}
59   virtual Float_t GetTimeZero(Int_t modIndex){
60     if(modIndex<kNSPDmods || modIndex>kNSPDmods+kNSDDmods){
61       AliError(Form("SDD module number %d out of range",modIndex));
62       return 0.;
63     }
64     return fTimeZero[modIndex-kNSPDmods];
65   }
66   virtual Float_t GetDeltaVDrift(Int_t modIndex){
67     if(modIndex<kNSPDmods || modIndex>kNSPDmods+kNSDDmods){
68       AliError(Form("SDD module number %d out of range",modIndex));
69       return 0.;
70     }
71     return fDeltaVDrift[modIndex-kNSPDmods];
72   }
73   static Float_t DefaultTimeOffset() {return fgkTimeOffsetDefault;}
74
75   virtual void SetADC2keV(Float_t conv){fADC2keV=conv;}
76   virtual Float_t GetADC2keV()const {return fADC2keV;}
77   static Float_t DefaulttADC2keV() {return fgkADC2keVDefault;}
78
79   static Float_t GetCarlosRXClockPeriod() {return fgkCarlosRXClockPeriod;}
80  
81
82  protected:
83
84   enum {kNSPDmods = 240};
85   enum {kNSDDmods = 260};
86   enum {kNLaddersLay3 = 14};
87   enum {kNLaddersLay4 = 22};
88
89
90   static const Float_t fgkTimeOffsetDefault;   // default for fTimeOffset
91   static const Float_t fgkADC2keVDefault;      // default for fADC2keV
92   static const Float_t fgkCarlosRXClockPeriod; // clock period for CarlosRX
93
94   Float_t  fTimeOffset;             // Time offset due to electronic delays 
95                                     // --> obsolete, kept for backw. comp. 
96   Float_t  fTimeZero[kNSDDmods];    // Time Zero for each module
97   Float_t  fDeltaVDrift[kNSDDmods]; // Vdrift correction (um/ns) for each module
98   Float_t  fADC2keV;                // Conversion factor from ADC to keV
99
100  private:
101
102   AliITSresponseSDD(const AliITSresponseSDD &ob); // copy constructor
103   AliITSresponseSDD& operator=(const AliITSresponseSDD & /* source */); // ass. op.
104
105   ClassDef(AliITSresponseSDD,17) 
106      
107     };
108 #endif