Line data Source code
1 : #ifndef ALITOFT0FILL_H
2 : #define ALITOFT0FILL_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 T0Fill object to be stored
12 : // * in OCDB in order to apply T0Fill correction during
13 : // * reconstruction.
14 : // *
15 : // *
16 : // *
17 :
18 : #include "TObject.h"
19 :
20 : class AliTOFT0Fill :
21 : public TObject
22 : {
23 :
24 : public:
25 :
26 : AliTOFT0Fill(); // default constructor
27 : virtual ~AliTOFT0Fill(); // default destructor
28 : AliTOFT0Fill(const AliTOFT0Fill &source); // copy constructor
29 : AliTOFT0Fill &operator=(const AliTOFT0Fill &source); // operator=
30 0 : Float_t GetT0Fill() const {return fT0Fill;}; // getter
31 0 : void SetT0Fill(Float_t value) {fT0Fill = value;}; // setter
32 :
33 : private:
34 :
35 : Float_t fT0Fill; // event time (ps)
36 :
37 42 : ClassDef(AliTOFT0Fill, 1);
38 : };
39 :
40 : #endif /* ALITOFT0FILL_H */
|