]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFDeltaBCOffset.h
next50 trigger mask in AliHLTGlobalEsdConverterComponent
[u/mrichter/AliRoot.git] / TOF / AliTOFDeltaBCOffset.h
CommitLineData
2bf4d9d6 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
ce469aed 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// *
2bf4d9d6 17
18#include "TObject.h"
19
20class AliTOFDeltaBCOffset :
21public 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 */