]> git.uio.no Git - u/mrichter/AliRoot.git/blob - T0/AliT0Calc.h
DQM configure file
[u/mrichter/AliRoot.git] / T0 / AliT0Calc.h
1 #ifndef AliT0Calc_H
2 #define AliT0Calc_H
3
4 #include "TNamed.h"
5
6 class AliT0Calc: public TNamed {
7
8  public:
9    AliT0Calc();
10    AliT0Calc(const char* name);
11    AliT0Calc(const AliT0Calc &calibdata);
12    AliT0Calc& operator= (const AliT0Calc &calibdata);
13    virtual ~AliT0Calc();
14    void Reset();
15    void Print(const Option_t* option="") const;
16    Float_t GetDelay(int channel) {return fTime[channel];}
17    
18    void SetTime(Float_t* daqtime, Float_t* dcstime);
19   
20  protected:
21 //   TMap fGraphs;
22    Float_t fTime[24];
23
24  ClassDef(AliT0Calc,4)
25 };
26
27 typedef AliT0Calc AliSTARTCalc; // for backward compatibility
28
29 #endif