]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFCTPLatency.h
Changing once more (hopefully we get it correct this time...) the logic to trig the...
[u/mrichter/AliRoot.git] / TOF / AliTOFCTPLatency.h
1 #ifndef ALITOFCTPLATENCY_H
2 #define ALITOFCTPLATENCY_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6 /* $Id$ */
7
8 /*
9  *
10  *
11  * this class defines the CTPLatency object to be stored
12  * in OCDB in order to apply CTPLatency correction during 
13  * reconstruction. 
14  *
15  *
16  */
17
18 #include "TObject.h"
19
20 class AliTOFCTPLatency :
21 public TObject
22 {
23
24  public:
25
26   AliTOFCTPLatency(); // default constructor
27   virtual ~AliTOFCTPLatency(); // default destructor
28   AliTOFCTPLatency(const AliTOFCTPLatency &source); // copy constructor
29   AliTOFCTPLatency &operator=(const AliTOFCTPLatency &source); // operator=
30   Float_t GetCTPLatency() const {return fCTPLatency;}; // getter
31   void SetCTPLatency(Float_t value) {fCTPLatency = value;}; // setter
32
33  private:
34
35   Float_t fCTPLatency; // CTP latency (ps)
36
37   ClassDef(AliTOFCTPLatency, 1);
38 };
39
40 #endif /* ALITOFCTPLATENCY_H */