1 #ifndef ALITOFCTPLATENCY_H
2 #define ALITOFCTPLATENCY_H
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
11 // * this class defines the CTPLatency object to be stored
12 // * in OCDB in order to apply CTPLatency correction during
20 class AliTOFCTPLatency :
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
35 Float_t fCTPLatency; // CTP latency (ps)
37 ClassDef(AliTOFCTPLatency, 1);
40 #endif /* ALITOFCTPLATENCY_H */