]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AOD/AliAODTZERO.cxx
drawCorrelation macro adapted for Toy Model (MW)
[u/mrichter/AliRoot.git] / STEER / AOD / AliAODTZERO.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-2007, 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 //     Container class for AOD TZERO data
18 //     Author: Filip Krizek 
19 //     filip.krizek@cern.ch 23/02/2012
20 //-------------------------------------------------------------------------
21
22 #include "AliAODTZERO.h"
23 #include "AliLog.h"
24
25 ClassImp(AliAODTZERO)
26
27 //__________________________________________________________________________
28 AliAODTZERO::AliAODTZERO()
29   :TObject(),
30    fPileup(0),
31    fSattelite(0),
32    fBackground(0),
33    fT0VertexRaw(-9999),
34    fT0zVertex(-9999)
35 {   
36   // Default constructor 
37   for(Int_t j=0; j<3; j++){ 
38     fT0TOF[j]     = -9999;
39     fT0TOFbest[j] = -9999;
40   }
41 }
42
43 //__________________________________________________________________________
44 AliAODTZERO::AliAODTZERO(const AliAODTZERO &source)
45   :TObject(source),
46    fPileup(source.fPileup),
47    fSattelite(source.fSattelite),
48    fBackground(source.fBackground),
49    fT0VertexRaw(source.fT0VertexRaw),
50    fT0zVertex(source.fT0zVertex)
51 {   
52   // Default constructor 
53   for(Int_t j=0; j<3; j++) {
54     fT0TOF[j]     = source.fT0TOF[j];
55     fT0TOFbest[j] = source.fT0TOFbest[j];
56   }
57 }
58
59 //__________________________________________________________________________
60 AliAODTZERO& AliAODTZERO::operator=(const AliAODTZERO& source)
61 {
62   // Assignment operator
63   //
64   if(this==&source) return *this;
65   // Assignment operator
66   fPileup      = source.fPileup;
67   fSattelite   = source.fSattelite;
68   fBackground  = source.fBackground;
69   fT0VertexRaw = source.fT0VertexRaw;
70   fT0zVertex = source.fT0zVertex;
71
72   for(Int_t j=0; j<3; j++){
73     fT0TOF[j]     = source.fT0TOF[j];
74     fT0TOFbest[j] = source.fT0TOFbest[j];
75   }
76   return *this;
77 }
78