]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AOD/AliAODTZERO.cxx
ATO-98 - default streamer TFile::Open , const char * option="update"
[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 }
dd3e4637 41 for (Int_t i=0; i<26; i++) fT0Amp[i]=-1;
a1f96974 42}
43
44//__________________________________________________________________________
45AliAODTZERO::AliAODTZERO(const AliAODTZERO &source)
46 :TObject(source),
47 fPileup(source.fPileup),
48 fSattelite(source.fSattelite),
c78a7768 49 fBackground(source.fBackground),
5bb5611e 50 fT0VertexRaw(source.fT0VertexRaw),
51 fT0zVertex(source.fT0zVertex)
a1f96974 52{
53 // Default constructor
54 for(Int_t j=0; j<3; j++) {
55 fT0TOF[j] = source.fT0TOF[j];
56 fT0TOFbest[j] = source.fT0TOFbest[j];
57 }
dd3e4637 58 for (Int_t i=0; i<26; i++) fT0Amp[i]=source.fT0Amp[i];
a1f96974 59}
60
61//__________________________________________________________________________
62AliAODTZERO& AliAODTZERO::operator=(const AliAODTZERO& source)
63{
64 // Assignment operator
65 //
66 if(this==&source) return *this;
67 // Assignment operator
c78a7768 68 fPileup = source.fPileup;
69 fSattelite = source.fSattelite;
70 fBackground = source.fBackground;
71 fT0VertexRaw = source.fT0VertexRaw;
5bb5611e 72 fT0zVertex = source.fT0zVertex;
a1f96974 73
74 for(Int_t j=0; j<3; j++){
75 fT0TOF[j] = source.fT0TOF[j];
76 fT0TOFbest[j] = source.fT0TOFbest[j];
77 }
dd3e4637 78 for (Int_t i=0; i<26; i++) fT0Amp[i]=source.fT0Amp[i];
a1f96974 79 return *this;
80}
81