]> git.uio.no Git - u/mrichter/AliRoot.git/blob - T0/AliT0RecoParam.h
new DA for amplitude calibration
[u/mrichter/AliRoot.git] / T0 / AliT0RecoParam.h
1 #ifndef ALIT0RECOPARAM_H
2 #define ALIT0RECOPARAM_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 ///////////////////////////////////////////////////////////////////////////////
7 //                                                                           //
8 // Class with T0 reconstruction parameters                                  //
9 //                                                                           //
10 ///////////////////////////////////////////////////////////////////////////////
11
12
13 #include "AliDetectorRecoParam.h"
14
15 class AliT0RecoParam : public AliDetectorRecoParam
16 {
17  public: 
18   AliT0RecoParam();
19   AliT0RecoParam(const AliT0RecoParam &p); //copy constructor
20   AliT0RecoParam& operator=(const AliT0RecoParam &p);
21   virtual ~AliT0RecoParam();
22    
23  static   AliT0RecoParam *GetLowFluxParam();        // make reco parameters for low  flux env
24   static   AliT0RecoParam *GetHighFluxParam();       // make reco parameters for high flux env 
25   static   AliT0RecoParam *GetLaserTestParam();  // special setting for laser SetLaserTestParam 
26   //for monitoring
27   //  static   AliT0RecoParam *GetHistRange();  //  limit of monitoring histograms
28
29   Float_t GetRefAmp()  const  {return fRefAmp;}
30   void    SetRefAmp(Float_t amp)   { fRefAmp = amp;}
31   Int_t   GetRefPoint() const {return fRefPoint;}
32   void    SetRefPoint(Int_t ref) {fRefPoint = ref;}
33
34   Float_t   GetLow(Int_t numhist) const {return fLow[numhist];}
35   //  Float_t   GetLow() {return *fLow;}
36   void      SetLow(Int_t numhist, Float_t low) {fLow[numhist] = low;}
37
38   Float_t   GetHigh(Int_t numhist) const  {return fHigh[numhist];}
39   //  Float_t   GetHigh()  {return *fHigh;}
40   void      SetHigh(Int_t numhist, Float_t high) {fHigh[numhist] = high;}
41   
42   Float_t   GetLatencyL1() const {return fLatencyL1;}
43   void      SetLatencyL1(Float_t lat) {fLatencyL1 = lat;}
44   Float_t   GetLatencyHPTDC() const {return fLatencyHPTDC;}
45   void      SetLatencyHPTDC(Float_t lat) {fLatencyHPTDC = lat;}
46   Float_t   GetVertexShift() const {return fVertexShift;}
47   void      SetVertexShift(Float_t sh) {fVertexShift = sh;}
48
49   void PrintParameters() const;
50   
51  protected:
52   Float_t   fRefAmp;            // for slewing correcton
53   Int_t     fRefPoint;          // #channel for RefPoint
54   Float_t   fLow[500];          //low limit of monitoring histograms
55   Float_t   fHigh[500];         //high limit of monitoring histograms
56   Float_t   fLatencyL1;         //Latency L1
57   Float_t   fLatencyHPTDC;      //Latency HPTDC
58   Float_t   fVertexShift;       // for slewing correcton
59
60   ClassDef(AliT0RecoParam, 3);
61  
62 };
63 #endif