]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFDeltaBCOffset.cxx
Update TOF combinatorial algorithm for event times estimate (F.Noferini)
[u/mrichter/AliRoot.git] / TOF / AliTOFDeltaBCOffset.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 // *
17 // *
18 // *
19 // * this class defines the DeltaBCOffset object to be stored
20 // * in OCDB in order to apply DeltaBC correction during 
21 // * reconstruction. 
22 // *
23 // *
24 // *
25
26 #include "AliTOFDeltaBCOffset.h"
27
28 ClassImp(AliTOFDeltaBCOffset)
29
30 //_________________________________________________________
31
32 AliTOFDeltaBCOffset::AliTOFDeltaBCOffset() :
33   TObject(),
34   fDeltaBCOffset(0)
35 {
36   /*
37    * default constructor
38    */
39 }
40
41 //_________________________________________________________
42
43 AliTOFDeltaBCOffset::~AliTOFDeltaBCOffset()
44 {
45   /*
46    * default destructor
47    */
48 }
49
50 //_________________________________________________________
51
52 AliTOFDeltaBCOffset::AliTOFDeltaBCOffset(const AliTOFDeltaBCOffset &source) :
53   TObject(source),
54   fDeltaBCOffset(source.fDeltaBCOffset)
55 {
56   /*
57    * copy constructor
58    */
59 }
60
61 //_________________________________________________________
62
63 AliTOFDeltaBCOffset &
64 AliTOFDeltaBCOffset::operator=(const AliTOFDeltaBCOffset &source)
65 {
66   /*
67    * operator=
68    */
69
70   if (this == &source) return *this;
71   TObject::operator=(source);
72   fDeltaBCOffset = source.fDeltaBCOffset;
73   return *this;
74 }
75