]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSresponseSDD.h
Adding TDC channel delays to the calib object.
[u/mrichter/AliRoot.git] / ITS / AliITSresponseSDD.h
CommitLineData
b0f5e3fc 1#ifndef ALIITSRESPONSESDD_H
2#define ALIITSRESPONSESDD_H
48058160 3
c2bd28b6 4/* Copyright(c) 2007-2009, ALICE Experiment at CERN, All rights reserved. *
48058160 5 * See cxx source for full Copyright notice */
6
88cb7938 7
253e68a0 8#include <TObject.h>
3176641e 9#include <AliLog.h>
b0f5e3fc 10
c2bd28b6 11/* $Id$ */
12
fcf95fc7 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/////////////////////////////////////////////////////////////
b0f5e3fc 18
253e68a0 19class AliITSresponseSDD : public TObject {
69b82143 20 public:
e71a6286 21 enum {kVDCorr2Side = BIT(14)}; // if bit set, the object contains separate corrections for 2 sides
22 //
69b82143 23 AliITSresponseSDD();
24 virtual ~AliITSresponseSDD(){};
25
26 virtual void SetSideATimeZero(Float_t tzero){
27 SetLayer3ATimeZero(tzero);
28 SetLayer4ATimeZero(tzero);
29 }
30 virtual void SetSideCTimeZero(Float_t tzero){
31 SetLayer3CTimeZero(tzero);
32 SetLayer4CTimeZero(tzero);
33 }
34 virtual void SetLayer3ATimeZero(Float_t tzero){
35 for(Int_t iLad=1; iLad<=kNLaddersLay3; iLad++) SetHalfLadderATimeZero(3,iLad,tzero);
36 }
37 virtual void SetLayer3CTimeZero(Float_t tzero){
38 for(Int_t iLad=1; iLad<=kNLaddersLay3; iLad++) SetHalfLadderCTimeZero(3,iLad,tzero);
39 }
40 virtual void SetLayer4ATimeZero(Float_t tzero){
41 for(Int_t iLad=1; iLad<=kNLaddersLay4; iLad++) SetHalfLadderATimeZero(4,iLad,tzero);
42 }
43 virtual void SetLayer4CTimeZero(Float_t tzero){
44 for(Int_t iLad=1; iLad<=kNLaddersLay4; iLad++) SetHalfLadderCTimeZero(4,iLad,tzero);
45 }
46 virtual void SetHalfLadderATimeZero(Int_t lay, Int_t lad, Float_t tzero);
47 virtual void SetHalfLadderCTimeZero(Int_t lay, Int_t lad, Float_t tzero);
48 virtual void SetModuleTimeZero(Int_t modIndex, Float_t tzero){
49 if(modIndex<kNSPDmods || modIndex>kNSPDmods+kNSDDmods) AliError(Form("SDD module number %d out of range",modIndex));
50 fTimeZero[modIndex-kNSPDmods]=tzero;
51 }
52
e71a6286 53 virtual void SetDeltaVDrift(Int_t modIndex, Float_t dv, Bool_t rightSide=kFALSE) {
54 int ind = GetVDIndex(modIndex,rightSide);
55 if (ind>=0) fDeltaVDrift[ind] = dv;
57019696 56 }
69b82143 57
e71a6286 58 virtual Float_t GetDeltaVDrift(Int_t modIndex,Bool_t rightSide=kFALSE) const {
59 int ind = GetVDIndex(modIndex,rightSide);
60 return ind<0 ? 0.:fDeltaVDrift[ind];
61 }
62 //
63 Bool_t IsVDCorr2Side() const {return TestBit(kVDCorr2Side);}
64 void SetVDCorr2Side(Bool_t v=kTRUE) {SetBit(kVDCorr2Side,v);}
65 //
57019696 66 static Float_t DefaultTimeOffset() {return fgkTimeOffsetDefault;}
69b82143 67 virtual void SetTimeOffset(Float_t to){fTimeOffset = to;}
68 virtual Float_t GetTimeOffset()const {return fTimeOffset;}
57019696 69 virtual Float_t GetTimeZero(Int_t modIndex) const {
69b82143 70 if(modIndex<kNSPDmods || modIndex>kNSPDmods+kNSDDmods){
71 AliError(Form("SDD module number %d out of range",modIndex));
72 return 0.;
3176641e 73 }
69b82143 74 return fTimeZero[modIndex-kNSPDmods];
75 }
57019696 76
77 virtual void SetADC2keV(Float_t conv){fADC2keV=conv;}
78 virtual Float_t GetADC2keV()const {return fADC2keV;}
79 virtual void SetADCtokeV(Int_t modIndex, Float_t conv){
80 if(modIndex<kNSPDmods || modIndex>kNSPDmods+kNSDDmods) AliError(Form("SDD module number %d out of range",modIndex));
81 fADCtokeV[modIndex-kNSPDmods]=conv;
82 }
83 virtual Float_t GetADCtokeV(Int_t modIndex) const {
69b82143 84 if(modIndex<kNSPDmods || modIndex>kNSPDmods+kNSDDmods){
85 AliError(Form("SDD module number %d out of range",modIndex));
86 return 0.;
3176641e 87 }
57019696 88 return fADCtokeV[modIndex-kNSPDmods];
69b82143 89 }
a66a0eb6 90
d644eb2d 91 virtual void SetChargevsTime(Float_t slope){fChargevsTime=slope;}
d644eb2d 92 virtual Float_t GetChargevsTime()const {return fChargevsTime;}
93
94 static Float_t DefaultADC2keV() {return fgkADC2keVDefault;}
95 static Float_t DefaultChargevsTime() {return fgkChargevsTimeDefault;}
a66a0eb6 96
69b82143 97 static Float_t GetCarlosRXClockPeriod() {return fgkCarlosRXClockPeriod;}
dfb09666 98 void PrintChargeCalibrationParams() const;
99 void PrintTimeZeroes() const;
100 void PrintVdriftCorerctions() const;
e71a6286 101
102
103 protected:
104 //
105 virtual Int_t GetVDIndex(Int_t modIndex, Bool_t rightSide=kFALSE) const {
106 int ind = modIndex - kNSPDmods;
107 if(ind<0 || ind>=kNSDDmods) {AliError(Form("SDD module number %d out of range",modIndex)); return -1;}
108 return (rightSide && IsVDCorr2Side()) ? ind + kNSDDmods : ind;
109 }
110
8ba39da9 111
48058160 112 protected:
fcf95fc7 113
69b82143 114 enum {kNSPDmods = 240};
115 enum {kNSDDmods = 260};
116 enum {kNLaddersLay3 = 14};
117 enum {kNLaddersLay4 = 22};
3176641e 118
119
69b82143 120 static const Float_t fgkTimeOffsetDefault; // default for fTimeOffset
121 static const Float_t fgkADC2keVDefault; // default for fADC2keV
d644eb2d 122 static const Float_t fgkChargevsTimeDefault; // default for fChargevsTime
69b82143 123 static const Float_t fgkCarlosRXClockPeriod; // clock period for CarlosRX
703a4e51 124
69b82143 125 Float_t fTimeOffset; // Time offset due to electronic delays
126 // --> obsolete, kept for backw. comp.
127 Float_t fTimeZero[kNSDDmods]; // Time Zero for each module
e71a6286 128 Float_t fDeltaVDrift[2*kNSDDmods]; // Vdrift correction (um/ns) for each module left (<kNSDDmods) and right (>=kNSDDmods) sides
69b82143 129 Float_t fADC2keV; // Conversion factor from ADC to keV
57019696 130 // --> obsolete, kept for backw. comp.
d644eb2d 131 Float_t fChargevsTime; // Correction for zero suppression effect
57019696 132 Float_t fADCtokeV[kNSDDmods]; // ADC to keV conversion for each module
133
703a4e51 134 private:
703a4e51 135
69b82143 136 AliITSresponseSDD(const AliITSresponseSDD &ob); // copy constructor
137 AliITSresponseSDD& operator=(const AliITSresponseSDD & /* source */); // ass. op.
fa1750f9 138
e71a6286 139 ClassDef(AliITSresponseSDD,20)
69b82143 140
50d05d7b 141 };
b0f5e3fc 142#endif