]> git.uio.no Git - u/mrichter/AliRoot.git/blame - START/AliSTARTParameters.h
Removing obsolete code (C.Cheshkov)
[u/mrichter/AliRoot.git] / START / AliSTARTParameters.h
CommitLineData
5ac84465 1#ifndef ALISTARTPARAMETERS_H
2#define ALISTARTPARAMETERS_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights
4 * reserved.
5 *
6 * Latest changes by Christian Holm Christensen <cholm@nbi.dk>
7 *
8 * See cxx source for full Copyright notice
9 */
10
11//____________________________________________________________________
12//
13// Singleton class to handle various parameters of the
14// START - T0
15// Should get data fromm Conditions DB.
16//
17# include <TNamed.h>
18# include <TF1.h>
19# include <TGraph.h>
20#include <TObjArray.h>
21class AliSTARTCalibData;
5ac84465 22class AliCDBEntry;
23
24class AliSTARTParameters : public TNamed
25{
26public:
27 static AliSTARTParameters* Instance();
28
29 void Init();
30 // Set various `Fixed' parameters
7ad3cb84 31 void SetPh2Mip(Int_t r=300) { fPh2Mip = r; }
4c7da157 32 void SetmV2Mip(Int_t r=50) { fmV2Mip = r; }
5ac84465 33 void SetChannelWidth(Int_t s=25) { fChannelWidth = s;}
34 void SetmV2channel(Int_t size=320) { fmV2Channel = size; }
35 void SetQTmin(Int_t qt=13) {fQTmin = qt;}
36 void SetQTmax(Int_t qt=125) {fQTmax = qt;}
7bdc4686 37 void SetGain(Int_t size=1) { fFixedGain = size; }
5ac84465 38 void SetZposition( Float_t valueC=69.7, Float_t valueA=373) {
39 fSTARTzPosition[0]=valueC, fSTARTzPosition[1]=valueA;}
40 void SetPMTeff(Int_t ipmt);
41
7bdc4686 42 void SetTimeDelayTVD(Float_t r=150) { fTimeDelayTVD = r; };
43 Float_t GetTimeDelayTVD() { return fTimeDelayTVD; }
44
5ac84465 45 // Set various variable parameter defaults
46 void SetTimeDelayCablesCFD(Int_t ipmt,Float_t r=150)
47 { fTimeDelayCablesCFD[ipmt] = r;}
48 void SetTimeDelayCablesLED(Int_t ipmt,Float_t r=150)
49 { fTimeDelayCablesLED[ipmt] = r;}
50 void SetTimeDelayPMT(Int_t ipmt,Float_t r=5)
51 { fTimeDelayPMT[ipmt] = r;}
52 void SetTimeDelayElectronicCFD(Int_t ipmt,Float_t r=8)
53 { fTimeDelayElectronicCFD[ipmt] = r;}
54 void SetTimeDelayElectronicLED(Int_t ipmt,Float_t r=10)
55 { fTimeDelayElectronicLED[ipmt] = r;}
56 void SetVariableDelayLine(Int_t ipmt, Int_t v=0)
57 { fVariableDelayLine[ipmt] = v;}
58 void SetSlewingLED(Int_t ipmt);
7bdc4686 59 void SetSlewingRec(Int_t ipmt);
5ac84465 60
61
62 // Get `Fixed' various parameters
63 Int_t GetPh2Mip() const { return fPh2Mip; }
4c7da157 64 Int_t GetmV2Mip() const { return fmV2Mip; }
5ac84465 65 Int_t GetChannelWidth() const { return fChannelWidth; }
66 Int_t GetmV2channel() const { return fmV2Channel; }
67 Int_t GetQTmin() const {return fQTmin;}
68 Int_t GetQTmax() const {return fQTmax;}
69 Float_t GetGain(Int_t ipmt) const;
70 Float_t GetZposition(Int_t i) const {return fSTARTzPosition[i];}
71 TGraph * GetPMTeff(Int_t ipmt) const
72 {return (TGraph*)fPMTeff.At(ipmt);}
73 Float_t GetpmtEFF(Int_t ipmt, Float_t lambda) const
74 {return((TGraph*)fPMTeff.At(ipmt))->Eval(lambda);}
75
76 Float_t GetTimeDelayCablesCFD(Int_t ipmt) const
77 {return fTimeDelayCablesCFD[ipmt]; }
78 Float_t GetTimeDelayCablesLED(Int_t ipmt) const
79 {return fTimeDelayCablesLED[ipmt]; } ;
80
81 Float_t GetTimeDelayElectronicLED(Int_t ipmt) const
82 {return fTimeDelayElectronicLED[ipmt]; } ;
83 Float_t GetTimeDelayElectronicCFD(Int_t ipmt) const
84 {return fTimeDelayElectronicCFD[ipmt]; } ;
85 Int_t GetVariableDelayLine(Int_t ipmt) const
86 {return fVariableDelayLine[ipmt];}
87
7bdc4686 88 Float_t GetSlewingLED(Int_t ipmt, Float_t mv) const;
89 // {return((TGraph*)fSlewingLED.At(ipmt))->Eval(mv);}
90 TGraph * GetSlew(Int_t ipmt) const ;
91 // {return (TGraph*)fSlewingLED.At(ipmt);}
92 TGraph * GetSlewRec(Int_t ipmt) const;
93 // {return (TGraph*)fSlewingRec.At(ipmt);}
94 Float_t GetSlewingRec(Int_t ipmt, Float_t mv) const;
95 // {return((TGraph*)fSlewingRec.At(ipmt))->Eval(mv);}
5ac84465 96
97 Float_t GetTimeDelayCFD(Int_t ipmt);
98 Float_t GetTimeDelayLED(Int_t ipmt);
99
100protected:
101 AliSTARTParameters();
102 virtual ~AliSTARTParameters() {}
103 static AliSTARTParameters* fgInstance; // Static singleton instance
104
7bdc4686 105 Bool_t fIsInit; // Whether we've been initialised
5ac84465 106 Float_t fSTARTzPosition[2] ; // z-position of the two STARTs
107 Int_t fPh2Mip; // # photoelectrons per MIP in radiator
4c7da157 108 Int_t fmV2Mip; // # mV per MIP in radiator
5ac84465 109 Int_t fChannelWidth; // channel width in ns
110 Int_t fmV2Channel; // ADC mv 2 channel # (200000ps/(25*25).
111 Int_t fQTmin; //min time for QTC
112 Int_t fQTmax; //max time fro QTC
113 Int_t fFixedGain; //
114 Float_t fTimeDelayCablesCFD[24]; //! time delay in cables
115 Float_t fTimeDelayCablesLED[24]; //! time delay in cables
116 Float_t fTimeDelayElectronicCFD[24]; //! time delay in electronic
117 Float_t fTimeDelayElectronicLED[24]; //! time delay in electronic
118 Float_t fTimeDelayPMT[24]; //! time delay in PMT
119 Int_t fVariableDelayLine[24]; //time delay in VDL for trigger equvalizing
120 TObjArray fSlewingLED; //array of slewing correction for each PMT
7bdc4686 121 TObjArray fSlewingRec; //array of slewing correction for Reconstruction
5ac84465 122 TObjArray fPMTeff; //array PMT registration efficiency
123
124 Float_t fTimeDelayLED; // sum time delay for LED channel
125 Float_t fTimeDelayCFD; // sum time delay for CFD channel
7bdc4686 126 Float_t fTimeDelayTVD; //time delay for TVD (vertex trigger channel)
5ac84465 127
5ac84465 128 static AliSTARTCalibData * fgCalibData; // singleton for Calibration data
129
5ac84465 130 AliCDBEntry* fCalibentry ; // pointer to START calibration object
131
89961342 132 ClassDef(AliSTARTParameters,2)
5ac84465 133};
134
135#endif
136//____________________________________________________________________
137