]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFDeltaBCOffset.h
A little task for checking the c*tau of the strange particles
[u/mrichter/AliRoot.git] / TOF / AliTOFDeltaBCOffset.h
1 #ifndef ALITOFDELTABCOFFSET_H
2 #define ALITOFDELTABCOFFSET_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 DeltaBCOffset object to be stored
12  * in OCDB in order to apply DeltaBC correction during 
13  * reconstruction. 
14  *
15  *
16  */
17
18 #include "TObject.h"
19
20 class AliTOFDeltaBCOffset :
21 public TObject
22 {
23
24  public:
25
26   AliTOFDeltaBCOffset(); // default constructor
27   virtual ~AliTOFDeltaBCOffset(); // default destructor
28   AliTOFDeltaBCOffset(const AliTOFDeltaBCOffset &source); // copy constructor
29   AliTOFDeltaBCOffset &operator=(const AliTOFDeltaBCOffset &source); // operator=
30   Int_t GetDeltaBCOffset() const {return fDeltaBCOffset;}; // getter
31   void SetDeltaBCOffset(Int_t value) {fDeltaBCOffset = value;}; // setter
32
33  private:
34
35   Int_t fDeltaBCOffset; // deltaBC offset (BC bins)
36
37   ClassDef(AliTOFDeltaBCOffset, 1);
38 };
39
40 #endif /* ALITOFDELTABCOFFSET_H */