]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFT0Fill.h
Removing extern call to gROOT to allow compilation with ROOT6.
[u/mrichter/AliRoot.git] / TOF / AliTOFT0Fill.h
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   Float_t GetT0Fill() const {return fT0Fill;}; // getter
31   void SetT0Fill(Float_t value) {fT0Fill = value;}; // setter
32
33  private:
34
35   Float_t fT0Fill; // event time (ps)
36
37   ClassDef(AliTOFT0Fill, 1);
38 };
39
40 #endif /* ALITOFT0FILL_H */