]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFT0Fill.h
Update from Marta on her EMCAL user tasks
[u/mrichter/AliRoot.git] / TOF / AliTOFT0Fill.h
CommitLineData
2bf4d9d6 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
ce469aed 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// *
2bf4d9d6 17
18#include "TObject.h"
19
20class AliTOFT0Fill :
21public 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 */