]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AOD/AliAODTZERO.cxx
Fix when not being able to open the input file
[u/mrichter/AliRoot.git] / STEER / AOD / AliAODTZERO.cxx
CommitLineData
a1f96974 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//-------------------------------------------------------------------------
c78a7768 17// Container class for AOD TZERO data
18// Author: Filip Krizek
19// filip.krizek@cern.ch 23/02/2012
a1f96974 20//-------------------------------------------------------------------------
21
22#include "AliAODTZERO.h"
23#include "AliLog.h"
24
25ClassImp(AliAODTZERO)
26
27//__________________________________________________________________________
28AliAODTZERO::AliAODTZERO()
29 :TObject(),
30 fPileup(0),
31 fSattelite(0),
c78a7768 32 fBackground(0),
5bb5611e 33 fT0VertexRaw(-9999),
34 fT0zVertex(-9999)
a1f96974 35{
36 // Default constructor
37 for(Int_t j=0; j<3; j++){
5bb5611e 38 fT0TOF[j] = -9999;
39 fT0TOFbest[j] = -9999;
a1f96974 40 }
41}
42
43//__________________________________________________________________________
44AliAODTZERO::AliAODTZERO(const AliAODTZERO &source)
45 :TObject(source),
46 fPileup(source.fPileup),
47 fSattelite(source.fSattelite),
c78a7768 48 fBackground(source.fBackground),
5bb5611e 49 fT0VertexRaw(source.fT0VertexRaw),
50 fT0zVertex(source.fT0zVertex)
a1f96974 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//__________________________________________________________________________
60AliAODTZERO& AliAODTZERO::operator=(const AliAODTZERO& source)
61{
62 // Assignment operator
63 //
64 if(this==&source) return *this;
65 // Assignment operator
c78a7768 66 fPileup = source.fPileup;
67 fSattelite = source.fSattelite;
68 fBackground = source.fBackground;
69 fT0VertexRaw = source.fT0VertexRaw;
5bb5611e 70 fT0zVertex = source.fT0zVertex;
a1f96974 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