]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AOD/AliAODHeader.h
Adding some plots to the QAPlotsBoth.C macro.
[u/mrichter/AliRoot.git] / STEER / AOD / AliAODHeader.h
CommitLineData
77f43bb7 1#ifndef ALIAODHEADER_H
2#define ALIAODHEADER_H
df9db588 3/* Copyright(c) 1998-2007, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8//-------------------------------------------------------------------------
9ae2e5e6 9// AOD event header class
df9db588 10// Author: Markus Oldenburg, CERN
11//-------------------------------------------------------------------------
12
c7d82ff7 13#include <TVector2.h>
14
9ae2e5e6 15#include "AliVHeader.h"
df9db588 16#include "AliAODVertex.h"
a5f7aba4 17#include <TString.h>
f1c1d7c6 18#include "AliCentrality.h"
ce7adfe9 19#include "AliEventplane.h"
df9db588 20
1aa76f71 21class TGeoHMatrix;
27346f69 22class TString;
1aa76f71 23
f1c1d7c6 24
9ae2e5e6 25class AliAODHeader : public AliVHeader {
df9db588 26
27 public :
31fd97b2 28 AliAODHeader();
df9db588 29
abfce367 30 AliAODHeader(Int_t nRun, UShort_t nBunchX, UInt_t nOrbit, UInt_t nPeriod, const Char_t *title="");
31fd97b2 31 AliAODHeader(Int_t nRun,
32 UShort_t nBunchX,
33 UInt_t nOrbit,
89cf15db 34 UInt_t nPeriod,
31fd97b2 35 Int_t refMult,
36 Int_t refMultPos,
37 Int_t refMultNeg,
38 Double_t magField,
6b6f8d32 39 Double_t muonMagFieldScale,
40 Double_t cent,
ce7adfe9 41 Double_t eventplane,
6b6f8d32 42 Double_t n1Energy,
43 Double_t p1Energy,
44 Double_t n2Energy,
45 Double_t p2Energy,
a85132e7 46 Double_t *emEnergy,
31fd97b2 47 ULong64_t fTriggerMask,
48 UChar_t fTriggerCluster,
49 UInt_t fEventType,
5e14e698 50 const Float_t *vzeroEqFactors,
fa8b0e56 51 const Char_t *title="",
52 Int_t nMuons=0,
53 Int_t nDimuons=0);
31fd97b2 54
df9db588 55 virtual ~AliAODHeader();
56 AliAODHeader(const AliAODHeader& evt);
57 AliAODHeader& operator=(const AliAODHeader& evt);
a5f7aba4 58
59 Int_t GetRunNumber() const { return fRunNumber;}
60 Int_t GetEventNumberESDFile() const { return fEventNumberESDFile;}
31fd97b2 61 UShort_t GetBunchCrossNumber() const { return fBunchCrossNumber; }
62 UInt_t GetOrbitNumber() const { return fOrbitNumber; }
89cf15db 63 UInt_t GetPeriodNumber() const { return fPeriodNumber; }
df9db588 64 ULong64_t GetTriggerMask() const { return fTriggerMask; }
65 UChar_t GetTriggerCluster() const { return fTriggerCluster; }
27346f69 66 TString GetFiredTriggerClasses()const { return fFiredTriggers;}
df9db588 67 UInt_t GetEventType() const { return fEventType; }
68 Double_t GetMagneticField() const { return fMagneticField; }
6b6f8d32 69 Double_t GetMuonMagFieldScale() const { return fMuonMagFieldScale; }
70
df9db588 71 Double_t GetCentrality() const { return fCentrality; }
ce7adfe9 72 Double_t GetEventplane() const { return fEventplane; }
6b6f8d32 73 Double_t GetZDCN1Energy() const { return fZDCN1Energy; }
74 Double_t GetZDCP1Energy() const { return fZDCP1Energy; }
75 Double_t GetZDCN2Energy() const { return fZDCN2Energy; }
76 Double_t GetZDCP2Energy() const { return fZDCP2Energy; }
a85132e7 77 Double_t GetZDCEMEnergy(Int_t i) const { return fZDCEMEnergy[i]; }
df9db588 78 Int_t GetRefMultiplicity() const { return fRefMult; }
79 Int_t GetRefMultiplicityPos() const { return fRefMultPos; }
80 Int_t GetRefMultiplicityNeg() const { return fRefMultNeg; }
fa8b0e56 81 Int_t GetNumberOfMuons() const { return fNMuons; }
82 Int_t GetNumberOfDimuons() const { return fNDimuons; }
ff254193 83
84 Double_t GetQTheta(UInt_t i) const;
85 UInt_t GetNQTheta() const { return (UInt_t)fNQTheta; }
613fc341 86
87 Double_t GetDiamondX() const {return fDiamondXY[0];}
88 Double_t GetDiamondY() const {return fDiamondXY[1];}
49fc2e2c 89 Double_t GetDiamondZ() const {return fDiamondZ;}
613fc341 90 Double_t GetSigma2DiamondX() const {return fDiamondCovXY[0];}
91 Double_t GetSigma2DiamondY() const {return fDiamondCovXY[2];}
49fc2e2c 92 Double_t GetSigma2DiamondZ() const {return fDiamondSig2Z;}
613fc341 93 void GetDiamondCovXY(Float_t cov[3]) const {
94 for(Int_t i=0;i<3;i++) cov[i]=fDiamondCovXY[i]; return;
95 }
a5f7aba4 96 UInt_t GetL0TriggerInputs() const {return fL0TriggerInputs;}
97 UInt_t GetL1TriggerInputs() const {return fL1TriggerInputs;}
98 UShort_t GetL2TriggerInputs() const {return fL2TriggerInputs;}
f1c1d7c6 99 AliCentrality* GetCentralityP() const { return fCentralityP; }
ce7adfe9 100 AliEventplane* GetEventplaneP() const { return fEventplaneP; }
a5f7aba4 101
6b6f8d32 102
df9db588 103 void SetRunNumber(Int_t nRun) { fRunNumber = nRun; }
a5f7aba4 104 void SetEventNumberESDFile(Int_t n) { fEventNumberESDFile=n; }
31fd97b2 105 void SetBunchCrossNumber(UShort_t nBx) { fBunchCrossNumber = nBx; }
9ae2e5e6 106 void SetOrbitNumber(UInt_t nOr) { fOrbitNumber = nOr; }
107 void SetPeriodNumber(UInt_t nPer) { fPeriodNumber = nPer; }
df9db588 108 void SetTriggerMask(ULong64_t trigMsk) { fTriggerMask = trigMsk; }
27346f69 109 void SetFiredTriggerClasses(TString trig) { fFiredTriggers = trig;}
df9db588 110 void SetTriggerCluster(UChar_t trigClus) { fTriggerCluster = trigClus; }
111 void SetEventType(UInt_t evttype) { fEventType = evttype; }
112 void SetMagneticField(Double_t magFld) { fMagneticField = magFld; }
6b6f8d32 113 void SetMuonMagFieldScale(Double_t magFldScl){ fMuonMagFieldScale = magFldScl; }
77f43bb7 114 void SetCentrality(const AliCentrality* cent);
ce7adfe9 115 void SetEventplane(AliEventplane* eventplane);
6b6f8d32 116 void SetZDCN1Energy(Double_t n1Energy) { fZDCN1Energy = n1Energy; }
117 void SetZDCP1Energy(Double_t p1Energy) { fZDCP1Energy = p1Energy; }
118 void SetZDCN2Energy(Double_t n2Energy) { fZDCN2Energy = n2Energy; }
119 void SetZDCP2Energy(Double_t p2Energy) { fZDCP2Energy = p2Energy; }
a85132e7 120 void SetZDCEMEnergy(Double_t emEnergy1, Double_t emEnergy2)
121 { fZDCEMEnergy[0] = emEnergy1; fZDCEMEnergy[1] = emEnergy2;}
df9db588 122 void SetRefMultiplicity(Int_t refMult) { fRefMult = refMult; }
123 void SetRefMultiplicityPos(Int_t refMultPos) { fRefMultPos = refMultPos; }
124 void SetRefMultiplicityNeg(Int_t refMultNeg) { fRefMultNeg = refMultNeg; }
fa8b0e56 125 void SetNumberOfMuons(Int_t nMuons) { fNMuons = nMuons; }
126 void SetNumberOfDimuons(Int_t nDimuons) { fNDimuons = nDimuons; }
6b6f8d32 127
ff254193 128 void SetQTheta(Double_t *QTheta, UInt_t size = 5);
129 void RemoveQTheta();
130
c7d82ff7 131 void ResetEventplanePointer();
132
613fc341 133 void SetDiamond(Float_t xy[2],Float_t cov[3]) {
11becff8 134 for(Int_t i=0;i<3;i++) {fDiamondCovXY[i] = cov[i];}
135 for(Int_t i=0;i<2;i++) {fDiamondXY[i] = xy[i] ;}
613fc341 136 }
49fc2e2c 137 void SetDiamondZ(Float_t z, Float_t sig2z){
138 fDiamondZ=z; fDiamondSig2Z=sig2z;
139 }
a5f7aba4 140 void SetL0TriggerInputs(UInt_t n) {fL0TriggerInputs=n;}
141 void SetL1TriggerInputs(UInt_t n) {fL1TriggerInputs=n;}
142 void SetL2TriggerInputs(UShort_t n) {fL2TriggerInputs=n;}
143 void SetESDFileName(TString name) {fESDFileName = name;}
df9db588 144 void Print(Option_t* option = "") const;
1aa76f71 145
146 void SetPHOSMatrix(TGeoHMatrix*matrix, Int_t i) {
147 if ((i >= 0) && (i < kNPHOSMatrix)) fPHOSMatrix[i] = matrix;
148 }
149 const TGeoHMatrix* GetPHOSMatrix(Int_t i) const {
150 return ((i >= 0) && (i < kNPHOSMatrix)) ? fPHOSMatrix[i] : NULL;
151 }
6b6f8d32 152
1aa76f71 153 void SetEMCALMatrix(TGeoHMatrix*matrix, Int_t i) {
154 if ((i >= 0) && (i < kNEMCALMatrix)) fEMCALMatrix[i] = matrix;
155 }
156 const TGeoHMatrix* GetEMCALMatrix(Int_t i) const {
157 return ((i >= 0) && (i < kNEMCALMatrix)) ? fEMCALMatrix[i] : NULL;
158 }
159
0c6c629b 160 UInt_t GetOfflineTrigger() { return fOfflineTrigger; }
f7ce7a37 161 void SetOfflineTrigger(UInt_t trigger) { fOfflineTrigger = trigger; }
162 UInt_t GetNumberOfITSClusters(Int_t ilay) const {return fITSClusters[ilay];}
163 void SetITSClusters(Int_t ilay, UInt_t nclus);
164 Int_t GetTPConlyRefMultiplicity() const {return fTPConlyRefMult;}
165 void SetTPConlyRefMultiplicity(Int_t mult) {fTPConlyRefMult = mult;}
166
5e6a3170 167 TString GetESDFileName() const {return fESDFileName;}
99dbf027 168 void Clear(Option_t* = "");
1aa76f71 169 enum {kNPHOSMatrix = 5};
170 enum {kNEMCALMatrix = 12};
949be341 171 enum {kT0SpreadSize = 4};
5e14e698 172
173 void SetVZEROEqFactors(const Float_t* factors) {
174 if (factors)
175 for (Int_t i = 0; i < 64; ++i) fVZEROEqFactors[i] = factors[i];}
176 const Float_t* GetVZEROEqFactors() const {return fVZEROEqFactors;}
177 Float_t GetVZEROEqFactors(Int_t i) const {return fVZEROEqFactors[i];}
949be341 178 Float_t GetT0spread(Int_t i) const {
179 return ((i >= 0) && (i<kT0SpreadSize)) ? fT0spread[i] : 0;}
180 void SetT0spread(Int_t i, Float_t t) {
181 if ((i>=0)&&(i<kT0SpreadSize)) fT0spread[i]=t;}
182
6b6f8d32 183
df9db588 184 private :
6b6f8d32 185
186 Double32_t fMagneticField; // Solenoid Magnetic Field in kG
187 Double32_t fMuonMagFieldScale; // magnetic field scale of muon arm magnet
188 Double32_t fCentrality; // Centrality
ce7adfe9 189 Double32_t fEventplane; // Event plane angle
c7d82ff7 190 Double32_t fEventplaneMag; // Length of Q vector from TPC event plance
6b6f8d32 191 Double32_t fZDCN1Energy; // reconstructed energy in the neutron1 ZDC
192 Double32_t fZDCP1Energy; // reconstructed energy in the proton1 ZDC
193 Double32_t fZDCN2Energy; // reconstructed energy in the neutron2 ZDC
194 Double32_t fZDCP2Energy; // reconstructed energy in the proton2 ZDC
a85132e7 195 Double32_t fZDCEMEnergy[2]; // reconstructed energy in the electromagnetic ZDCs
ff254193 196 Int_t fNQTheta; // number of QTheta elements
197 Double32_t *fQTheta; // [fNQTheta] values to store Lee-Yang-Zeros
6b6f8d32 198 ULong64_t fTriggerMask; // Trigger Type (mask)
27346f69 199 TString fFiredTriggers; // String with fired triggers
6b6f8d32 200 Int_t fRunNumber; // Run Number
201 Int_t fRefMult; // reference multiplicity
202 Int_t fRefMultPos; // reference multiplicity of positive particles
203 Int_t fRefMultNeg; // reference multiplicity of negative particles
fa8b0e56 204 Int_t fNMuons; // number of muons in the forward spectrometer
205 Int_t fNDimuons; // number of dimuons in the forward spectrometer
9333290e 206 UInt_t fEventType; // Type of Event
207 UInt_t fOrbitNumber; // Orbit Number
208 UInt_t fPeriodNumber; // Period Number
209 UShort_t fBunchCrossNumber; // BunchCrossingNumber
6b6f8d32 210 UChar_t fTriggerCluster; // Trigger cluster (mask)
613fc341 211 Double32_t fDiamondXY[2]; // Interaction diamond (x,y) in RUN
212 Double32_t fDiamondCovXY[3]; // Interaction diamond covariance (x,y) in RUN
49fc2e2c 213 Double32_t fDiamondZ; // Interaction diamond (z) in RUN
214 Double32_t fDiamondSig2Z; // Interaction diamond sigma^2 (z) in RUN
1aa76f71 215 TGeoHMatrix* fPHOSMatrix[kNPHOSMatrix]; //PHOS module position and orientation matrices
216 TGeoHMatrix* fEMCALMatrix[kNEMCALMatrix]; //EMCAL supermodule position and orientation matrices
0c6c629b 217 UInt_t fOfflineTrigger; // fired offline triggers for this event
a5f7aba4 218 TString fESDFileName; // ESD file name to which this event belongs
219 Int_t fEventNumberESDFile; // Event number in ESD file
220 UInt_t fL0TriggerInputs; // L0 Trigger Inputs (mask)
221 UInt_t fL1TriggerInputs; // L1 Trigger Inputs (mask)
222 UShort_t fL2TriggerInputs; // L2 Trigger Inputs (mask)
f7ce7a37 223 UInt_t fITSClusters[6]; // Number of ITS cluster per layer
224 Int_t fTPConlyRefMult; // Reference multiplicty for standard TPC only tracks
f1c1d7c6 225 AliCentrality* fCentralityP; // Pointer to full centrality information
ce7adfe9 226 AliEventplane* fEventplaneP; // Pointer to full event plane information
5e14e698 227 Float_t fVZEROEqFactors[64]; // V0 channel equalization factors for event-plane reconstruction
949be341 228 Float_t fT0spread[kT0SpreadSize]; // spread of time distributions: (TOA+T0C/2), T0A, T0C, (T0A-T0C)/2
c7d82ff7 229 ClassDef(AliAODHeader, 19);
df9db588 230};
5e6a3170 231inline
77f43bb7 232void AliAODHeader::SetCentrality(const AliCentrality* cent) {
5e6a3170 233 if(cent){
234 if(fCentralityP)*fCentralityP = *cent;
235 else fCentralityP = new AliCentrality(*cent);
236 fCentrality = cent->GetCentralityPercentile("V0M");
237 }
238 else{
239 fCentrality = -999;
240 }
241}
ce7adfe9 242inline
243void AliAODHeader::SetEventplane(AliEventplane* eventplane) {
244 if(eventplane){
245 if(fEventplaneP)*fEventplaneP = *eventplane;
246 else fEventplaneP = new AliEventplane(*eventplane);
247 fEventplane = eventplane->GetEventplane("Q");
c7d82ff7 248 const TVector2* qvect=eventplane->GetQVector();
249 fEventplaneMag = -999;
250 if (qvect) fEventplaneMag=qvect->Mod();
ce7adfe9 251 }
252 else{
253 fEventplane = -999;
c7d82ff7 254 fEventplaneMag = -999;
ce7adfe9 255 }
256}
c7d82ff7 257inline
258void AliAODHeader::ResetEventplanePointer() {
259 delete fEventplaneP;
260 fEventplaneP = 0x0;
261}
f7ce7a37 262
263inline
264void AliAODHeader::SetITSClusters(Int_t ilay, UInt_t nclus)
265{
266 if (ilay >= 0 && ilay < 6) fITSClusters[ilay] = nclus;
267}
268
269
df9db588 270#endif