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 T0Fill object to be stored
12 // * in OCDB in order to apply T0Fill correction during
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
35 Float_t fT0Fill; // event time (ps)
37 ClassDef(AliTOFT0Fill, 1);
40 #endif /* ALITOFT0FILL_H */