]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG4/PartCorrBase/AliCaloTrackReader.h
Adding new TRD cosmic triggers.
[u/mrichter/AliRoot.git] / PWG4 / PartCorrBase / AliCaloTrackReader.h
CommitLineData
1c5acb87 1#ifndef ALICALOTRACKREADER_H
2#define ALICALOTRACKREADER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5/* $Id: $ */
6
7//_________________________________________________________________________
8// Base class for reading data: MonteCarlo, ESD or AOD, of PHOS EMCAL and
9// Central Barrel Tracking detectors.
10// Not all MC particles/tracks/clusters are kept, some kinematical restrictions are done.
591cc579 11// Mother class of : AliCaloTrackESDReader: Fills ESD data in 3 TObjArrays (PHOS, EMCAL, CTS)
743aa53a 12// : AliCaloTrackMCReader : Fills Kinematics data in 3 TObjArrays (PHOS, EMCAL, CTS)
13// : AliCaloTrackAODReader: Fills AOD data in 3 TObjArrays (PHOS, EMCAL, CTS)
1c5acb87 14// -- Author: Gustavo Conesa (INFN-LNF)
743aa53a 15//////////////////////////////////////////////////////////////////////////////
1c5acb87 16
17// --- ROOT system ---
49b53920 18#include <TObject.h>
19#include <TString.h>
cfaba834 20class TObjArray ;
591cc579 21class TTree ;
1c5acb87 22
23//--- ANALYSIS system ---
cfaba834 24#include "AliVCaloCells.h"
1c5acb87 25class AliStack ;
26class AliHeader ;
27class AliGenEventHeader ;
be518ab0 28#include "AliVEvent.h"
8dacfd76 29class AliAODEvent;
477d6cee 30class AliMCEvent;
c8fe2783 31class AliMixedEvent;
591cc579 32class AliAODMCHeader;
3a58eee6 33class AliESDtrackCuts;
b6dd6ad2 34class AliCentrality;
48c37e02 35class AliTriggerAnalysis;
72542aba 36class AliEventplane;
1c5acb87 37
cfaba834 38// --- PartCorr
39#include "AliCalorimeterUtils.h"
40#include "AliFiducialCut.h"
41
1c5acb87 42class AliCaloTrackReader : public TObject {
43
03190ad7 44public:
1c5acb87 45 AliCaloTrackReader() ; // ctor
1c5acb87 46 virtual ~AliCaloTrackReader() ;//virtual dtor
03190ad7 47private:
78219bac 48 AliCaloTrackReader(const AliCaloTrackReader & g) ; // cpy ctor
03190ad7 49 AliCaloTrackReader & operator = (const AliCaloTrackReader & g) ;//cpy assignment
50
51public:
cfaba834 52
53 //--------------------------------
54 // General methods
55 //--------------------------------
56
57 virtual void Init();
58 virtual void InitParameters();
59 virtual void Print(const Option_t * opt) const;
60 virtual void ResetLists();
1c5acb87 61
3c75ddf7 62 virtual Int_t GetDebug() const { return fDebug ; }
63 virtual void SetDebug(Int_t d) { fDebug = d ; }
cfaba834 64
65 enum inputDataType {kESD, kAOD, kMC};
3c75ddf7 66 virtual Int_t GetDataType() const { return fDataType ; }
67 virtual void SetDataType(Int_t data ) { fDataType = data ; }
1c5acb87 68
3c75ddf7 69 virtual Int_t GetEventNumber() const { return fEventNumber ; }
a79a2424 70
3c75ddf7 71 TString GetTaskName() const { return fTaskName ; }
72 void SetTaskName(TString name) { fTaskName = name ; }
cfaba834 73
cfaba834 74 //---------------------------------------
75 //Input/output event setters and getters
76 //---------------------------------------
77 virtual void SetInputEvent(AliVEvent* const input) ;
3c75ddf7 78 virtual void SetOutputEvent(AliAODEvent* const aod) { fOutputEvent = aod ; }
79 virtual void SetMC(AliMCEvent* const mc) { fMC = mc ; }
be518ab0 80 virtual void SetInputOutputMCEvent(AliVEvent* /*esd*/, AliAODEvent* /*aod*/, AliMCEvent* /*mc*/) { ; }
cfaba834 81
82 // Delta AODs
3c75ddf7 83 virtual TList * GetAODBranchList() const { return fAODBranchList ; }
84 void SetDeltaAODFileName(TString name ) { fDeltaAODFileName = name ; }
85 TString GetDeltaAODFileName() const { return fDeltaAODFileName ; }
86 void SwitchOnWriteDeltaAOD() { fWriteOutputDeltaAOD = kTRUE ; }
87 void SwitchOffWriteDeltaAOD() { fWriteOutputDeltaAOD = kFALSE ; }
88 Bool_t WriteDeltaAODToFile() const { return fWriteOutputDeltaAOD ; }
cfaba834 89
90 //------------------------------------------------------------
91 //Clusters/Tracks arrays filtering/filling methods and switchs
92 //------------------------------------------------------------
93
94 //Minimum pt setters and getters
3c75ddf7 95 Float_t GetEMCALPtMin() const { return fEMCALPtMin ; }
96 Float_t GetPHOSPtMin() const { return fPHOSPtMin ; }
97 Float_t GetCTSPtMin() const { return fCTSPtMin ; }
98 Float_t GetEMCALPtMax() const { return fEMCALPtMax ; }
99 Float_t GetPHOSPtMax() const { return fPHOSPtMax ; }
100 Float_t GetCTSPtMax() const { return fCTSPtMax ; }
a5fb4114 101
3c75ddf7 102 void SetEMCALPtMin(Float_t pt) { fEMCALPtMin = pt ; }
103 void SetPHOSPtMin (Float_t pt) { fPHOSPtMin = pt ; }
104 void SetCTSPtMin (Float_t pt) { fCTSPtMin = pt ; }
a5fb4114 105
3c75ddf7 106 void SetEMCALPtMax(Float_t pt) { fEMCALPtMax = pt ; }
107 void SetPHOSPtMax (Float_t pt) { fPHOSPtMax = pt ; }
108 void SetCTSPtMax (Float_t pt) { fCTSPtMax = pt ; }
a5fb4114 109
3c75ddf7 110 Float_t GetEMCALEMin() const { return GetEMCALPtMin() ; }
111 Float_t GetPHOSEMin() const { return GetPHOSPtMin() ; }
112 Float_t GetEMCALEMax() const { return GetEMCALPtMax() ; }
113 Float_t GetPHOSEMax() const { return GetPHOSPtMax() ; }
cfaba834 114
3c75ddf7 115 void SetEMCALEMin (Float_t e) { SetEMCALPtMin(e) ; }
116 void SetPHOSEMin (Float_t e) { SetPHOSPtMin (e) ; }
117 void SetEMCALEMax (Float_t e) { SetEMCALPtMax(e) ; }
118 void SetPHOSEMax (Float_t e) { SetPHOSPtMax (e) ; }
cfaba834 119
98ec971d 120
cfaba834 121 // Fidutial cuts
a5fb4114 122 virtual AliFiducialCut * GetFiducialCut() {
123 if(!fFiducialCut) fFiducialCut = new AliFiducialCut();
3c75ddf7 124 return fFiducialCut ; }
125 virtual void SetFiducialCut(AliFiducialCut * const fc) { fFiducialCut = fc ; }
126 virtual Bool_t IsFiducialCutOn() const { return fCheckFidCut ; }
127 virtual void SwitchOnFiducialCut() { fCheckFidCut = kTRUE ;
128 fFiducialCut = new AliFiducialCut() ; }
129 virtual void SwitchOffFiducialCut() { fCheckFidCut = kFALSE ; }
1c5acb87 130
cfaba834 131 // Cluster origin
a5fb4114 132 Bool_t IsEMCALCluster(AliVCluster *clus) const;
133 Bool_t IsPHOSCluster (AliVCluster *clus) const;
cfaba834 134 //Patch for cluster origin for Old AODs implementation
3c75ddf7 135 void SwitchOnOldAODs() { fOldAOD = kTRUE ; }
136 void SwitchOffOldAODs() { fOldAOD = kFALSE ; }
f37fa8d2 137
cfaba834 138 // Cluster/track/cells switchs
3c75ddf7 139 Bool_t IsCTSSwitchedOn() const { return fFillCTS ; }
140 void SwitchOnCTS() { fFillCTS = kTRUE ; }
141 void SwitchOffCTS() { fFillCTS = kFALSE ; }
1c5acb87 142
3c75ddf7 143 Bool_t IsEMCALSwitchedOn() const { return fFillEMCAL ; }
144 void SwitchOnEMCAL() { fFillEMCAL = kTRUE ; }
145 void SwitchOffEMCAL() { fFillEMCAL = kFALSE ; }
1c5acb87 146
3c75ddf7 147 Bool_t IsPHOSSwitchedOn() const { return fFillPHOS ; }
148 void SwitchOnPHOS() { fFillPHOS = kTRUE ; }
149 void SwitchOffPHOS() { fFillPHOS = kFALSE ; }
1c5acb87 150
3c75ddf7 151 Bool_t IsEMCALCellsSwitchedOn() const { return fFillEMCALCells ; }
152 void SwitchOnEMCALCells() { fFillEMCALCells = kTRUE ; }
153 void SwitchOffEMCALCells() { fFillEMCALCells = kFALSE ; }
1c5acb87 154
3c75ddf7 155 Bool_t IsPHOSCellsSwitchedOn() const { return fFillPHOSCells ; }
156 void SwitchOnPHOSCells() { fFillPHOSCells = kTRUE ; }
157 void SwitchOffPHOSCells() { fFillPHOSCells = kFALSE ; }
1c5acb87 158
3bfc4732 159 Bool_t AreClustersRecalculated() const { return fRecalculateClusters ; }
160 void SwitchOnClusterRecalculation() { fRecalculateClusters = kTRUE ; }
161 void SwitchOffClusterRecalculation() { fRecalculateClusters = kFALSE ; }
162
3c75ddf7 163 Bool_t IsEmbeddedClusterSelectionOn() const { return fSelectEmbeddedClusters ; }
164 void SwitchOnEmbeddedClustersSelection() { fSelectEmbeddedClusters = kTRUE ; }
165 void SwitchOffEmbeddedClustersSelection() { fSelectEmbeddedClusters = kFALSE ; }
6060ed91 166
be518ab0 167 // Filling/ filtering / detector information access methods
a5fb4114 168 virtual Bool_t FillInputEvent(const Int_t iEntry, const char *currentFileName) ;
169 virtual void FillInputCTS() ;
170 virtual void FillInputEMCAL() ;
171 virtual void FillInputEMCALAlgorithm(AliVCluster * clus, const Int_t iclus) ;
172 virtual void FillInputPHOS() ;
173 virtual void FillInputEMCALCells() ;
174 virtual void FillInputPHOSCells() ;
175 virtual void FillInputVZERO() ;
176
3c75ddf7 177 Int_t GetV0Signal(Int_t i) const { return fV0ADC[i] ; }
178 Int_t GetV0Multiplicity(Int_t i) const { return fV0Mul[i] ; }
a5fb4114 179
3c75ddf7 180 void SetEMCALClusterListName(TString &name) {fEMCALClustersListName = name ; }
cfaba834 181
be518ab0 182 // Arrayes with clusters/track/cells access method
3c75ddf7 183 virtual TObjArray* GetCTSTracks() const { return fCTSTracks ; }
184 virtual TObjArray* GetEMCALClusters() const { return fEMCALClusters ; }
185 virtual TObjArray* GetPHOSClusters() const { return fPHOSClusters ; }
186 virtual AliVCaloCells* GetEMCALCells() const { return fEMCALCells ; }
187 virtual AliVCaloCells* GetPHOSCells() const { return fPHOSCells ; }
cfaba834 188
189 //-------------------------------------
190 // Event/track selection methods
191 //-------------------------------------
192
a5fb4114 193 void SetFiredTriggerClassName(TString name ) { fFiredTriggerClassName = name ; }
194 TString GetFiredTriggerClassName() const { return fFiredTriggerClassName ; }
195 virtual TString GetFiredTriggerClasses() { return "" ; } // look the ESD/AOD reader
cfaba834 196
a5fb4114 197 void SwitchOnEventSelection() { fDoEventSelection = kTRUE ; }
198 void SwitchOffEventSelection() { fDoEventSelection = kFALSE ; }
199 Bool_t IsEventSelectionDone() const { return fDoEventSelection ; }
cfaba834 200
a5fb4114 201 void SwitchOnV0ANDSelection() { fDoV0ANDEventSelection = kTRUE ; }
202 void SwitchOffV0ANDSelection() { fDoV0ANDEventSelection = kFALSE ; }
203 Bool_t IsV0ANDEventSelectionDone() const { return fDoV0ANDEventSelection ; }
20218aea 204
a5fb4114 205 void SwitchOnPrimaryVertexSelection() { fUseEventsWithPrimaryVertex = kTRUE ; }
206 void SwitchOffPrimaryVertexSelection() { fUseEventsWithPrimaryVertex = kFALSE ; }
207 Bool_t IsPrimaryVertexSelectionDone() const { return fUseEventsWithPrimaryVertex ; }
20218aea 208
209
cfaba834 210
3a58eee6 211 // Track selection
743aa53a 212 ULong_t GetTrackStatus() const { return fTrackStatus ; }
213 void SetTrackStatus(ULong_t bit) { fTrackStatus = bit ; }
a5fb4114 214
743aa53a 215 ULong_t GetTrackFilterMask() const {return fTrackFilterMask ; }
216 void SetTrackFilterMask(ULong_t bit) { fTrackFilterMask = bit ; }
3a58eee6 217
743aa53a 218 AliESDtrackCuts* GetTrackCuts() const { return fESDtrackCuts ; }
219 void SetTrackCuts(AliESDtrackCuts * cuts) { fESDtrackCuts = cuts ; }
220 Int_t GetTrackMultiplicity() const { return fTrackMult ; }
221 Float_t GetTrackMultiplicityEtaCut() const { return fTrackMultEtaCut ; }
222 void SetTrackMultiplicityEtaCut(Float_t eta) { fTrackMultEtaCut = eta ; }
c8fe2783 223
a5fb4114 224 // Calorimeter specific and patches
743aa53a 225 void AnalyzeOnlyLED() { fAnaLED = kTRUE ; }
226 void AnalyzeOnlyPhysics() { fAnaLED = kFALSE ; }
a5fb4114 227
743aa53a 228 void SwitchOnCaloFilterPatch() { fCaloFilterPatch = kTRUE ;
229 fFillCTS = kFALSE ; }
230 void SwitchOffCaloFilterPatch() { fCaloFilterPatch = kFALSE ; }
a5fb4114 231 Bool_t IsCaloFilterPatchOn() const {
232 if(fDataType == kAOD) { return fCaloFilterPatch ; }
743aa53a 233 else { return kFALSE ; } }
cfaba834 234
235 //-------------------------------
48c37e02 236 //Vertex methods
cfaba834 237 //-------------------------------
a5fb4114 238 virtual void GetVertex(Double_t v[3]) const ;
239 virtual Double_t* GetVertex(const Int_t evtIndex) const { return fVertex[evtIndex] ; }
240 virtual void GetVertex(Double_t vertex[3], const Int_t evtIndex) const ;
cfaba834 241 virtual void FillVertexArray();
242 virtual Bool_t CheckForPrimaryVertex();
f8006433 243 // virtual void GetSecondInputAODVertex(Double_t *) const {;}
a5fb4114 244 virtual Float_t GetZvertexCut() const { return fZvtxCut ; } //cut on vertex position
245 virtual void SetZvertexCut(Float_t zcut=10.) { fZvtxCut=zcut ; } //cut on vertex position
0b13c1f9 246
cfaba834 247 //------------------------
72542aba 248 // Centrality / Event Plane
cfaba834 249 //------------------------
a5fb4114 250 virtual AliCentrality* GetCentrality() const { return fInputEvent->GetCentrality() ; } //Look in AOD reader, different there
251 virtual void SetCentralityClass(TString name) { fCentralityClass = name ; }
252 virtual void SetCentralityOpt(Int_t opt) { fCentralityOpt = opt ; }
253 virtual TString GetCentralityClass() const { return fCentralityClass ; }
254 virtual Int_t GetCentralityOpt() const { return fCentralityOpt ; }
255 virtual Int_t GetEventCentrality() const ;
256 virtual void SetCentralityBin(Int_t min, Int_t max) //Set the centrality bin to select the event. If used, then need to get percentile
257 { fCentralityBin[0]=min; fCentralityBin[1]=max;
258 if(min>=0 && max > 0) fCentralityOpt = 100 ; }
259 virtual Float_t GetCentralityBin(Int_t i) const { if(i < 0 || i > 1) return 0 ;
260 else return fCentralityBin[i] ; }
261
3c75ddf7 262 virtual AliEventplane* GetEventPlane() const { return fInputEvent->GetEventplane() ; }
263 virtual void SetEventPlaneMethod(TString m) { fEventPlaneMethod = m ; }
264 virtual TString GetEventPlaneMethod() const { return fEventPlaneMethod ; }
72542aba 265
cfaba834 266 //-------------------------------------
267 // Other methods
268 //-------------------------------------
3c75ddf7 269 AliCalorimeterUtils * GetCaloUtils() const { return fCaloUtils ; }
270 void SetCaloUtils(AliCalorimeterUtils * caloutils) { fCaloUtils = caloutils ; }
48c37e02 271
a5fb4114 272 virtual Double_t GetBField() const { return fInputEvent->GetMagneticField() ; }
cfaba834 273
274 //------------------------------------------------
275 // MC analysis specific methods
276 //-------------------------------------------------
277
278 //Kinematics and galice.root available
a5fb4114 279 virtual AliStack* GetStack() const ;
280 virtual AliHeader* GetHeader() const ;
281 virtual AliGenEventHeader* GetGenEventHeader() const ;
cfaba834 282
283 //Filtered kinematics in AOD
284 virtual TClonesArray* GetAODMCParticles(Int_t input = 0) const ;
285 virtual AliAODMCHeader* GetAODMCHeader(Int_t input = 0) const ;
286
3c75ddf7 287 virtual AliVEvent* GetInputEvent() const { return fInputEvent ; }
288 virtual AliVEvent* GetOriginalInputEvent() const { return 0x0 ; }
289 virtual AliAODEvent* GetOutputEvent() const { return fOutputEvent ; }
290 virtual AliMCEvent* GetMC() const { return fMC ; }
291 virtual AliMixedEvent* GetMixedEvent() const { return fMixedEvent ; }
292 virtual Int_t GetNMixedEvent() const { return fNMixedEvent ; }
a5fb4114 293
3c75ddf7 294 void SwitchOnStack() { fReadStack = kTRUE ; }
295 void SwitchOffStack() { fReadStack = kFALSE ; }
296 void SwitchOnAODMCParticles() { fReadAODMCParticles = kTRUE ; }
297 void SwitchOffAODMCParticles() { fReadAODMCParticles = kFALSE ; }
298 Bool_t ReadStack() const { return fReadStack ; }
299 Bool_t ReadAODMCParticles() const { return fReadAODMCParticles ; }
cfaba834 300
301 //Select generated events, depending on comparison of pT hard and jets.
a5fb4114 302 virtual Bool_t ComparePtHardAndJetPt() ;
303 virtual Bool_t IsPtHardAndJetPtComparisonSet() const { return fComparePtHardAndJetPt ; }
304 virtual void SetPtHardAndJetPtComparison(Bool_t compare) { fComparePtHardAndJetPt = compare ; }
305 virtual Float_t GetPtHardAndJetFactor() const { return fPtHardAndJetPtFactor ; }
306 virtual void SetPtHardAndJetPtFactor(Float_t factor) { fPtHardAndJetPtFactor = factor ; }
eb3e2665 307
cfaba834 308 //MC reader methods, declared there to allow compilation, they are only used in the MC reader:
0ae57829 309
a5fb4114 310 virtual void AddNeutralParticlesArray(TArrayI & /*array*/) { ; }
311 virtual void AddChargedParticlesArray(TArrayI & /*array*/) { ; }
312 virtual void AddStatusArray(TArrayI & /*array*/) { ; }
313
314 virtual void SwitchOnPi0Decay() { ; }
315 virtual void SwitchOffPi0Decay() { ; }
316 virtual void SwitchOnStatusSelection() { ; }
317 virtual void SwitchOffStatusSelection() { ; }
318 virtual void SwitchOnOverlapCheck() { ; }
319 virtual void SwitchOffOverlapCheck() { ; }
320 virtual void SwitchOnOnlyGeneratorParticles() { ; }
321 virtual void SwitchOffOnlyGeneratorParticles() { ; }
be518ab0 322
a5fb4114 323 virtual void SetEMCALOverlapAngle(Float_t /*angle*/) { ; }
324 virtual void SetPHOSOverlapAngle(Float_t /*angle*/) { ; }
af7b3903 325
0ae57829 326
1c5acb87 327 protected:
7e25653f 328 Int_t fEventNumber; // Event number
7e25653f 329 Int_t fDataType ; // Select MC:Kinematics, Data:ESD/AOD, MCData:Both
330 Int_t fDebug; // Debugging level
331 AliFiducialCut * fFiducialCut; //! Acceptance cuts
332 Bool_t fCheckFidCut ; // Do analysis for clusters in defined region
decca433 333
591cc579 334 Bool_t fComparePtHardAndJetPt; // In MonteCarlo, jet events, reject fake events with wrong jet energy.
335 Float_t fPtHardAndJetPtFactor; // Factor between ptHard and jet pT to reject/accept event.
336
7e25653f 337 Float_t fCTSPtMin; // pT Threshold on charged particles
338 Float_t fEMCALPtMin; // pT Threshold on emcal clusters
339 Float_t fPHOSPtMin; // pT Threshold on phos clusters
98ec971d 340 Float_t fCTSPtMax; // pT Threshold on charged particles
341 Float_t fEMCALPtMax; // pT Threshold on emcal clusters
342 Float_t fPHOSPtMax; // pT Threshold on phos clusters
343
783abd9f 344 TList * fAODBranchList ; //-> List with AOD branches created and needed in analysis
345 TObjArray * fCTSTracks ; //-> temporal array with tracks
346 TObjArray * fEMCALClusters ; //-> temporal array with EMCAL CaloClusters
347 TObjArray * fPHOSClusters ; //-> temporal array with PHOS CaloClusters
be518ab0 348 AliVCaloCells * fEMCALCells ; //! temporal array with EMCAL CaloCells
349 AliVCaloCells * fPHOSCells ; //! temporal array with PHOS CaloCells
1c5acb87 350
7e25653f 351 AliVEvent * fInputEvent; //! pointer to esd or aod input
352 AliAODEvent * fOutputEvent; //! pointer to aod output
353 AliMCEvent * fMC; //! Monte Carlo Event Handler
1c5acb87 354
7e25653f 355 Bool_t fFillCTS; // use data from CTS
356 Bool_t fFillEMCAL; // use data from EMCAL
357 Bool_t fFillPHOS; // use data from PHOS
358 Bool_t fFillEMCALCells; // use data from EMCAL
359 Bool_t fFillPHOSCells; // use data from PHOS
3bfc4732 360 Bool_t fRecalculateClusters; // Correct clusters, recalculate them if recalibration parameters is given
361 Bool_t fSelectEmbeddedClusters; // Use only simulated clusters that come from embedding.
48c37e02 362
7e25653f 363 ULong_t fTrackStatus ; // Track selection bit, select tracks refitted in TPC, ITS ...
a5fb4114 364 ULong_t fTrackFilterMask ; // Track selection bit, for AODs (any difference with track status?)
3a58eee6 365 AliESDtrackCuts *fESDtrackCuts ; // Track cut
366 Int_t fTrackMult ; // Track multiplicity
367 Float_t fTrackMultEtaCut ; // Track multiplicity eta cut
7e25653f 368 Bool_t fReadStack ; // Access kine information from stack
369 Bool_t fReadAODMCParticles ; // Access kine information from filtered AOD MC particles
591cc579 370
7e25653f 371 TString fDeltaAODFileName ; // Delta AOD file name
372 TString fFiredTriggerClassName; // Name of trigger event type used to do the analysis
afabc52f 373
783abd9f 374 Bool_t fAnaLED; // Analyze LED data only.
c1ac3823 375
783abd9f 376 TString fTaskName; // Name of task that executes the analysis
765d44e7 377
783abd9f 378 AliCalorimeterUtils * fCaloUtils ; // Pointer to CalorimeterUtils
c8fe2783 379
783abd9f 380 AliMixedEvent * fMixedEvent ; //! mixed event object. This class is not the owner
381 Int_t fNMixedEvent ; // number of events in mixed event buffer
382 Double_t ** fVertex ; //! vertex array 3 dim for each mixed event buffer
c8fe2783 383
783abd9f 384 Bool_t fWriteOutputDeltaAOD; // Write the created delta AOD objects into file
385 Bool_t fOldAOD; // Old AODs, before revision 4.20
f37fa8d2 386
783abd9f 387 Int_t fV0ADC[2] ; // Integrated V0 signal
388 Int_t fV0Mul[2] ; // Integrated V0 Multiplicity
798a9b04 389
20218aea 390 Bool_t fCaloFilterPatch; // CaloFilter patch
391 TString fEMCALClustersListName; // Alternative list of clusters produced elsewhere and not from InputEvent
392 Float_t fZvtxCut ; // Cut on vertex position
393 Bool_t fDoEventSelection; // Select events depending on V0, pileup, vertex well reconstructed, at least 1 track ...
394 Bool_t fDoV0ANDEventSelection; // Select events depending on V0, fDoEventSelection should be on
395 Bool_t fUseEventsWithPrimaryVertex ; // Select events with primary vertex
396 AliTriggerAnalysis* fTriggerAnalysis; // Access to trigger selection algorithm for V0AND calculation
32fd29fe 397
72542aba 398 //Centrality/Event plane
783abd9f 399 TString fCentralityClass; // Name of selected centrality class
400 Int_t fCentralityOpt; // Option for the returned value of the centrality, possible options 5, 10, 100
401 Int_t fCentralityBin[2]; // Minimum and maximum value of the centrality for the analysis
72542aba 402 TString fEventPlaneMethod; // Name of event plane method, by default "Q"
32fd29fe 403
3bfc4732 404 ClassDef(AliCaloTrackReader,33)
1c5acb87 405} ;
406
407
408#endif //ALICALOTRACKREADER_H
409
410
411