AliPhysics  2b88e80 (2b88e80)
AliCaloTrackReader.h
Go to the documentation of this file.
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 
6 //_________________________________________________________________________
24 //_________________________________________________________________________
25 
26 // --- ROOT system ---
27 #include <TObject.h>
28 #include <TString.h>
29 class TObjArray ;
30 class TTree ;
31 class TArrayI ;
32 #include <TRandom3.h>
33 
34 //--- ANALYSIS system ---
35 #include "AliVEvent.h"
36 class AliVCaloCells;
37 class AliHeader;
38 class AliGenEventHeader;
39 class AliGenPythiaEventHeader;
40 class AliAODEvent;
41 class AliMCEvent;
42 class AliMixedEvent;
43 class AliAODMCHeader;
44 class AliCentrality;
45 class AliMultSelection;
46 class AliESDtrackCuts;
47 //class AliTriggerAnalysis;
48 class AliEventplane;
49 class AliVCluster;
50 #include "AliLog.h"
51 
52 // --- CaloTrackCorr / EMCAL ---
53 #include "AliFiducialCut.h"
55 #include "AliAnaWeights.h"
56 
57 // Jets
58 class AliAODJetEventBackground;
59 
60 class AliCaloTrackReader : public TObject {
61 
62 public:
63 
64  AliCaloTrackReader() ; // ctor
65  virtual ~AliCaloTrackReader() ; // virtual dtor
66  void DeletePointers();
67 
68  //--------------------------------
69  // General methods
70  //--------------------------------
71 
72  virtual void Init();
73 
74  virtual void InitParameters();
75 
76  virtual void Print(const Option_t * opt) const;
77 
78  virtual void ResetLists();
79 
80  virtual Int_t GetDebug() const { return fDebug ; }
81  virtual void SetDebug(Int_t d) { fDebug = d ; }
82 
84  virtual Int_t GetDataType() const { return fDataType ; }
85  virtual void SetDataType(Int_t data ) { fDataType = data ; }
86 
87  virtual Int_t GetEventNumber() const { return fEventNumber ; }
88 
89  virtual TObjString * GetListOfParameters() ;
90 
91  TString GetTaskName() const { return fTaskName ; }
92  void SetTaskName(TString name) { fTaskName = name ; }
93 
94  //---------------------------------------
95  // Input/output event setters and getters
96  //---------------------------------------
97 
98  virtual void SetInputEvent(AliVEvent* input) ;
99  virtual void SetOutputEvent(AliAODEvent* aod) { fOutputEvent = aod ; }
100  virtual void SetMC(AliMCEvent* const mc) { fMC = mc ; }
101  virtual void SetInputOutputMCEvent(AliVEvent* /*esd*/, AliAODEvent* /*aod*/, AliMCEvent* /*mc*/) { ; }
102 
103  // Delta AODs
104 
105  virtual TList * GetAODBranchList() const { return fAODBranchList ; }
111 
112  virtual TList * GetCreateControlHistograms() ;
114  { fEnergyHistogramNbins = nBins ; fEnergyHistogramLimit[0] = emin; fEnergyHistogramLimit[1] = emax ; }
115 
116  //------------------------------------------------------------
117  // Clusters/Tracks arrays filtering/filling methods and switchs
118  //------------------------------------------------------------
119 
120  // detector identificator enum, used here and in AliAnaCaloTrackBaseClass and derived classes
124 
127 
128  // Minimum pt setters and getters
129 
130  Float_t GetEMCALPtMin() const { return fEMCALPtMin ; }
131  Float_t GetPHOSPtMin() const { return fPHOSPtMin ; }
132  Float_t GetCTSPtMin() const { return fCTSPtMin ; }
133  Float_t GetEMCALPtMax() const { return fEMCALPtMax ; }
134  Float_t GetPHOSPtMax() const { return fPHOSPtMax ; }
135  Float_t GetCTSPtMax() const { return fCTSPtMax ; }
136 
137  void SetEMCALPtMin(Float_t pt) { fEMCALPtMin = pt ; }
138  void SetPHOSPtMin (Float_t pt) { fPHOSPtMin = pt ; }
139  void SetCTSPtMin (Float_t pt) { fCTSPtMin = pt ; }
140  void SetEMCALPtMax(Float_t pt) { fEMCALPtMax = pt ; }
141  void SetPHOSPtMax (Float_t pt) { fPHOSPtMax = pt ; }
142  void SetCTSPtMax (Float_t pt) { fCTSPtMax = pt ; }
143 
144  Float_t GetEMCALEMin() const { return GetEMCALPtMin() ; }
145  Float_t GetPHOSEMin() const { return GetPHOSPtMin() ; }
146  Float_t GetEMCALEMax() const { return GetEMCALPtMax() ; }
147  Float_t GetPHOSEMax() const { return GetPHOSPtMax() ; }
148 
149  void SetEMCALEMin (Float_t en) { SetEMCALPtMin(en) ; }
150  void SetPHOSEMin (Float_t en) { SetPHOSPtMin (en) ; }
151  void SetEMCALEMax (Float_t en) { SetEMCALPtMax(en) ; }
152  void SetPHOSEMax (Float_t en) { SetPHOSPtMax (en) ; }
153 
154  virtual Int_t GetTrackID(AliVTrack* track) ;
155 
156  // Distance to bad channels cut
157 
160 
163 
164  // Number of cells in cluster cut
165 
167  Int_t GetPHOSNCellsCut() const { return fPHOSNCellsCut ; }
168 
170  void SetPHOSNCellsCut (Int_t nc) { fPHOSNCellsCut = nc ; }
171 
172  // Track DCA cut
173 
174  Bool_t AcceptDCA(Float_t pt, Float_t dca);
175  Double_t GetTrackDCACut(Int_t i) const { if(i >= 0 && i < 3 ) return fTrackDCACut[i] ;
176  else return -999 ; }
177 
178  void SetTrackDCACut(Int_t i, Float_t cut) { if(i >= 0 && i < 3 )
179  fTrackDCACut[i] = cut ; }
180 
183  Bool_t IsDCACutOn() const { return fUseTrackDCACut ; }
184 
185  // Time cut
186 
189 
191  fTrackTimeCutMax = b ; } // ns
192 
195 
199 
200 
203 
205 
207  fEMCALTimeCutMax = b ; } // ns
208 
211 
214 
217 
218  // Fidutial cuts
219 
222  return fFiducialCut ; }
223  virtual void SetFiducialCut(AliFiducialCut * fc) { fFiducialCut = fc ; }
224  virtual Bool_t IsFiducialCutOn() const { return fCheckFidCut ; }
225  virtual void SwitchOnFiducialCut() { fCheckFidCut = kTRUE ;
226  fFiducialCut = new AliFiducialCut() ; }
227  virtual void SwitchOffFiducialCut() { fCheckFidCut = kFALSE ; }
228 
229  // Cluster/track/cells switchs
230 
231  Bool_t IsCTSSwitchedOn() const { return fFillCTS ; }
232  void SwitchOnCTS() { fFillCTS = kTRUE ; }
233  void SwitchOffCTS() { fFillCTS = kFALSE ; }
234 
235  Bool_t IsEMCALSwitchedOn() const { return fFillEMCAL ; }
236  void SwitchOnEMCAL() { fFillEMCAL = kTRUE ; }
237  void SwitchOffEMCAL() { fFillEMCAL = kFALSE ; }
238 
239  Bool_t IsDCALSwitchedOn() const { return fFillDCAL ; }
240  void SwitchOnDCAL() { fFillDCAL = kTRUE ; }
241  void SwitchOffDCAL() { fFillDCAL = kFALSE ; }
242 
243  Bool_t IsPHOSSwitchedOn() const { return fFillPHOS ; }
244  void SwitchOnPHOS() { fFillPHOS = kTRUE ; }
245  void SwitchOffPHOS() { fFillPHOS = kFALSE ; }
246 
248  void SwitchOnEMCALCells() { fFillEMCALCells = kTRUE ; }
249  void SwitchOffEMCALCells() { fFillEMCALCells = kFALSE ; }
250 
252  void SwitchOnPHOSCells() { fFillPHOSCells = kTRUE ; }
253  void SwitchOffPHOSCells() { fFillPHOSCells = kFALSE ; }
254 
258 
261 
265 
266  // Shower shape smearing function
267 
270 
274 
276 
277  void SetSmearingNLMRange(Int_t mi, Int_t ma) { fSmearNLMMin = mi ; fSmearNLMMax = ma ; }
278 
279  // Filling/ filtering / detector information access methods
280 
281  virtual Bool_t FillInputEvent(Int_t iEntry, const char *currentFileName) ;
282  virtual void FillInputCTS() ;
283  virtual void FillInputEMCAL() ;
284  virtual void FillInputEMCALAlgorithm(AliVCluster * clus, Int_t iclus) ;
285  virtual void FillInputPHOS() ;
286  virtual void FillInputEMCALCells() ;
287  virtual void FillInputPHOSCells() ;
288  virtual void FillInputVZERO() ;
289 
290  Int_t GetV0Signal(Int_t i) const { return fV0ADC[i] ; }
291  Int_t GetV0Multiplicity(Int_t i) const { return fV0Mul[i] ; }
292 
295 
298 
299  // Arrays with clusters/track/cells access method
300 
301  virtual TObjArray* GetCTSTracks() const { return fCTSTracks ; }
302  virtual TObjArray* GetEMCALClusters() const { return fEMCALClusters ; }
303  virtual TObjArray* GetDCALClusters() const { return fDCALClusters ; }
304  virtual TObjArray* GetPHOSClusters() const { return fPHOSClusters ; }
305  virtual AliVCaloCells* GetEMCALCells() const { return fEMCALCells ; }
306  virtual AliVCaloCells* GetPHOSCells() const { return fPHOSCells ; }
307 
308  //-------------------------------------
309  // Event/track selection methods
310  //-------------------------------------
311 
315 
319  fAcceptEventsWithBit.Set(n+1);
320  fAcceptEventsWithBit.AddAt(bit,n) ; }
321 
323  fRejectEventsWithBit.Set(n+1);
324  fRejectEventsWithBit.AddAt(bit,n) ; }
331 
334  TString GetFiredTriggerClasses() const { return GetInputEvent()->GetFiredTriggerClasses() ; }
335 
336 
337  // Event selection when mixed event is used
338 
340  void SetEventTriggerMask(UInt_t evtTrig = AliVEvent::kAny)
341  { fEventTriggerMask = evtTrig ; }
343  void SetMixEventTriggerMask(UInt_t evtTrig = AliVEvent::kAnyINT)
344  { fMixEventTriggerMask = evtTrig ; }
348 
349  // EMCal Triggered events selection, studies
350 
351  TArrayI GetTriggerPatches(Int_t tmin, Int_t tmax);
352  void MatchTriggerCluster(TArrayI patches);
354 
356 
357  Bool_t IsExoticEvent() const { return fIsExoticEvent ; }
362 
366 
371 
372  void SetEventTriggerL1Bit(Int_t ega, Int_t eje) { fBitEGA = ega ; fBitEJE = eje; }
373 
375  fTriggerPatchTimeWindow[1] = max ; }
376 
380 
384 
388 
392 
393  void SetEventTriggerBit();
405 
408 
409  // Other event rejections criteria
410 
414 
418 
422 
426 
430 
431  // Time Stamp
432 
435 
437  fTimeStampRunMax = b ; } // seconds
438 
441 
443  fTimeStampEventFracMax = b ; }
444 
447 
449 
450  // Time Stamp CTP corrected
451 
454 
457  fTimeStampEventCTPBCCorrMax = b ; } // seconds
458 
461 
463 
464 
465  // Event tagging as pile-up
466 
467  Bool_t IsPileUpFromSPD() const ;
468  Bool_t IsPileUpFromEMCal() const ;
474 
476  { fPileUpParamSPD[i] = param ; }
478 
481 
482  Int_t GetEMCalEventBC(Int_t bc) const { if(bc >=0 && bc < 19) return fEMCalBCEvent [bc] ; else return 0 ; }
483  Int_t GetTrackEventBC(Int_t bc) const { if(bc >=0 && bc < 19) return fTrackBCEvent [bc] ; else return 0 ; }
484  Int_t GetEMCalEventBCcut(Int_t bc) const { if(bc >=0 && bc < 19) return fEMCalBCEventCut[bc] ; else return 0 ; }
485  Int_t GetTrackEventBCcut(Int_t bc) const { if(bc >=0 && bc < 19) return fTrackBCEventCut[bc] ; else return 0 ; }
486 
487  void SetEMCalEventBC(Int_t bc) { if(bc >=0 && bc < 19) fEMCalBCEvent [bc] = 1 ; }
488  void SetTrackEventBC(Int_t bc) { if(bc >=0 && bc < 19) fTrackBCEvent [bc] = 1 ; }
489  void SetEMCalEventBCcut(Int_t bc) { if(bc >=0 && bc < 19) fEMCalBCEventCut[bc] = 1 ; }
490  void SetTrackEventBCcut(Int_t bc) { if(bc >=0 && bc < 19) fTrackBCEventCut[bc] = 1 ; }
491 
492  Int_t GetVertexBC(const AliVVertex * vtx);
493  Int_t GetVertexBC() const { return fVertexBC ; }
496 
497  // Track selection
498 
499  ULong_t GetTrackStatus() const { return fTrackStatus ; }
500  void SetTrackStatus(ULong_t bit) { fTrackStatus = bit ; }
501 
502  virtual Bool_t SelectTrack(AliVTrack* , Double_t*) { return kFALSE ; } // See AOD/ESD reader
503 
506 
508  { if(cut < 10) return fTrackMult [cut] ; else return 0 ; }
510  { if(cut < 10) return fTrackSumPt[cut] ; else return 0 ; }
511 
514 
515  void SetTrackMultiplicityPtCut(Int_t cut, Float_t pt) { if(cut < 10) fTrackMultPtCut[cut] = pt; }
517  { if(cut < 10) return fTrackMultPtCut[cut] ; else return 0 ; }
518 
521 
522  // Virtual for AliCaloTrackAODReader
523 
524  virtual ULong_t GetTrackFilterMask() const { return 0 ; }
525  virtual void SetTrackFilterMask(ULong_t) { ; }
526 
527  virtual ULong_t GetTrackFilterMaskComplementary() const { return 0 ; }
529 
530  virtual void SwitchOnAODHybridTrackSelection() { ; }
531  virtual void SwitchOffAODHybridTrackSelection() { ; }
532 
533  virtual void SwitchOnAODPrimaryTrackSelection() { ; }
535 
538 
540  virtual Float_t GetTPCSharedClusterFraction() const { return 0 ; }
541 
542  // Virtual for AliCaloTrackESDReader
543 
544  virtual AliESDtrackCuts* GetTrackCuts() const { return 0 ; }
545  virtual AliESDtrackCuts* GetTrackComplementaryCuts() const { return 0 ; }
546 
547  virtual void SetTrackCuts(AliESDtrackCuts *) { ; }
548  virtual void SetTrackComplementaryCuts(AliESDtrackCuts *) { ; }
549 
550  virtual void SwitchOnConstrainTrackToVertex() { ; }
551  virtual void SwitchOffConstrainTrackToVertex() { ; }
552 
553  // Events species selection
554 
557  void AnalyzeOnlyEventsOfType(Int_t specie) { fEventType = specie ; }
558 
559  //-------------------------------
560  // Vertex methods
561  //-------------------------------
562 
563  virtual void GetVertex(Double_t v[3]) const ;
564  virtual Double_t* GetVertex(Int_t evtIndex) const { return fVertex[evtIndex] ; }
565  virtual void GetVertex(Double_t vertex[3], const Int_t evtIndex) const ;
566  virtual void FillVertexArray();
567  virtual Bool_t CheckForPrimaryVertex() const { return kTRUE ; } // algorithm in ESD/AOD Readers
568  virtual Float_t GetZvertexCut() const { return fZvtxCut ; } // cut on vertex position
569  virtual void SetZvertexCut(Float_t zcut=10.) { fZvtxCut=zcut ; } // cut on vertex position
570 
571  //--------------------------
572  // Centrality / Event Plane
573  //--------------------------
574 
575  virtual AliCentrality* GetCentrality() const {
576  if(fDataType!=kMC) return fInputEvent->GetCentrality() ;
577  else return 0x0 ; }
578 
579  virtual AliMultSelection* GetMultSelCen() const {
580  if(fDataType!=kMC) return (AliMultSelection * ) fInputEvent->FindListObject("MultSelection") ;
581  else return 0x0 ; }
582 
583  virtual void SwitchOnAliCentrality () { fUseAliCentrality = kTRUE ; }
584  virtual void SwitchOffAliCentrality() { fUseAliCentrality = kFALSE ; }
585 
586  virtual void SetCentralityClass(TString name) { fCentralityClass = name ; }
587  virtual void SetCentralityOpt(Int_t opt) { fCentralityOpt = opt ; }
588  virtual TString GetCentralityClass() const { return fCentralityClass ; }
589  virtual Int_t GetCentralityOpt() const { return fCentralityOpt ; }
590  virtual Int_t GetEventCentrality() const ;
591  virtual void SetCentralityBin(Int_t min, Int_t max) //Set the centrality bin to select the event. If used, then need to get percentile
592  { fCentralityBin[0]=min; fCentralityBin[1]=max;
593  if(min>=0 && max > 0) fCentralityOpt = 100 ; }
594  virtual Float_t GetCentralityBin(Int_t i) const { if(i < 0 || i > 1) return 0 ;
595  else return fCentralityBin[i] ; }
596 
597  virtual AliEventplane* GetEventPlane() const { if(fDataType!=kMC) return fInputEvent->GetEventplane() ;
598  else return 0x0 ; }
599  virtual Double_t GetEventPlaneAngle() const ;
601  virtual TString GetEventPlaneMethod() const { return fEventPlaneMethod ; }
602 
603  //--------------------
604  // Mixing
605  //--------------------
606 
609 
610  TList * GetListWithMixedEventsForCalo (Int_t bi) const { if(fListMixedCaloEvents) return fListMixedCaloEvents [bi] ; else return 0 ; }
612 
614  else return kFALSE ; }
615 
617  else return kFALSE ; }
618 
621 
623  if(fListMixedCaloEvents) printf("AliCaloTrackReader::SetListWithMixedEventsForCalo() - Track Mixing event list already set, nothing done\n");
624  else fListMixedCaloEvents = l ; }
625 
627  if(fListMixedTracksEvents) printf("AliCaloTrackReader::SetListWithMixedEventsForTracks() - Calorimeter Mixing event list already set, nothing done\n");
628  else fListMixedTracksEvents = l ; }
629 
630  //-------------------------------------
631  // Other methods
632  //-------------------------------------
633 
636  { fCaloUtils = caloutils ; }
637 
638  Double_t GetEventWeight() const { return fEventWeight ; }
640  return fWeightUtils ; }
641 
642  virtual Double_t GetBField() const { return fInputEvent->GetMagneticField() ; }
643 
645  Float_t GetPhi (Float_t phi) const { if ( phi < 0 ) phi += TMath::TwoPi() ; return phi ; }
646 
647  Float_t DegToRad(Float_t deg) const { deg *= TMath::DegToRad(); return deg ; }
648 
649  Float_t RadToDeg(Float_t rad) const { rad *= TMath::RadToDeg(); return rad ; }
650 
651 
652  //------------------------------------------------
653  // MC analysis specific methods
654  //-------------------------------------------------
655 
656  // Kinematics and galice.root available
657 
658  virtual AliHeader* GetHeader() const ;
659  virtual AliGenEventHeader* GetGenEventHeader() const { return fGenEventHeader ; }
660  virtual AliGenPythiaEventHeader* GetGenPythiaEventHeader()
661  const { return fGenPythiaEventHeader ; }
662  // See implementation in AOD and ESD readers
663 
664  // Filtered kinematics in AOD
665 
666  virtual TClonesArray* GetAODMCParticles() const ;
667  virtual AliAODMCHeader* GetAODMCHeader () const ;
668 
669  virtual AliVEvent* GetInputEvent() const { return fInputEvent ; }
670  virtual AliVEvent* GetOriginalInputEvent() const { return 0x0 ; }
671  virtual AliAODEvent* GetOutputEvent() const { return fOutputEvent ; }
672  virtual AliMCEvent* GetMC() const { return fMC ; }
673  virtual AliMixedEvent* GetMixedEvent() const { return fMixedEvent ; }
674  virtual Int_t GetNMixedEvent() const { return fNMixedEvent ; }
675 
676  void SwitchOnStack() { AliError("Obsolete, remove this setting in AddTask") ; }
677  void SwitchOffStack() { AliError("Obsolete, remove this setting in AddTask") ; }
678  void SwitchOnAODMCParticles() { AliError("Obsolete, remove this setting in AddTask") ; }
679  void SwitchOffAODMCParticles() { AliError("Obsolete, remove this setting in AddTask") ; }
680 
681  void RemapMCLabelForAODs(Int_t &label);
682 
683  // Select generated events, depending on comparison of pT hard and jets
684 
685  virtual Bool_t ComparePtHardAndJetPt(Int_t process, TString processName) ;
687  virtual void SetPtHardAndJetPtComparison(Bool_t compare) { fComparePtHardAndJetPt = compare ; }
689  virtual void SetPtHardAndJetPtFactor(Float_t factor) { fPtHardAndJetPtFactor = factor ; }
690 
691  virtual Bool_t ComparePtHardAndClusterPt(Int_t process, TString processName) ;
695  virtual void SetPtHardAndClusterPtFactor(Float_t factor) { fPtHardAndClusterPtFactor = factor ; }
696 
697  // Select particles or clusters depending on generator
699  { fNMCGenerToAccept = nGen ;
700  if ( nGen > 5 ) fNMCGenerToAccept = 5 ;
701  else if ( nGen < 0 ) fNMCGenerToAccept = 0 ; }
703 
705  { if ( ig < 5 && ig >= 0 ) fMCGenerToAccept[ig] = name ; }
706  virtual void SetIndexOfMCGeneratorsToAccept(Int_t ig, Int_t index)
707  { if ( ig < 5 && ig >= 0 ) fMCGenerIndexToAccept[ig] = index ; }
708  virtual TString GetNameOfMCGeneratorsToAccept(Int_t ig) const { return fMCGenerToAccept[ig] ; }
710 
711  Bool_t AcceptParticleMCLabel(Int_t mcLabel) const ;
712  Int_t GetCocktailGeneratorAndIndex(Int_t index, TString & nameGen) const ;
713  TString GetGeneratorNameAndIndex(Int_t index, Int_t & genIndex) const ;
714 
717 
718 
719 
720  // MC reader methods, declared there to allow compilation, they are only used in the MC reader
721 
722  virtual void AddNeutralParticlesArray(TArrayI & /*array*/) { ; }
723  virtual void AddChargedParticlesArray(TArrayI & /*array*/) { ; }
724  virtual void AddStatusArray(TArrayI & /*array*/) { ; }
725 
726  virtual void SwitchOnPi0Decay() { ; }
727  virtual void SwitchOffPi0Decay() { ; }
728  virtual void SwitchOnStatusSelection() { ; }
729  virtual void SwitchOffStatusSelection() { ; }
730  virtual void SwitchOnOverlapCheck() { ; }
731  virtual void SwitchOffOverlapCheck() { ; }
732  virtual void SwitchOnOnlyGeneratorParticles() { ; }
733  virtual void SwitchOffOnlyGeneratorParticles() { ; }
734 
735  virtual void SetEMCALOverlapAngle(Float_t /*angle*/) { ; }
736  virtual void SetPHOSOverlapAngle(Float_t /*angle*/) { ; }
737 
738  //-------------
739  // Jets
740  //-------------
741 
745 
749 
750  virtual void FillInputNonStandardJets() ;
751  virtual TClonesArray* GetNonStandardJets() const { return fNonStandardJets ; }
754 
755  virtual void FillInputBackgroundJets() ;
756  virtual AliAODJetEventBackground* GetBackgroundJets() const { return fBackgroundJets ; }
759 
760  protected:
761 
767 
770 
773 
780 
783 
786 
797 
800 
803 
806 
809 
812 
815 
816  AliVCaloCells * fEMCALCells ;
817  AliVCaloCells * fPHOSCells ;
818 
819  AliVEvent * fInputEvent;
821  AliMCEvent * fMC;
822 
832 
835  TRandom3 fRandom ;
839 
840  // Track selection and counting
843 
849 
852 
853  // Trigger bit
857 
866 
869 
871 
873 
875 
878 
879  AliMixedEvent * fMixedEvent ;
882 
887 
889 
890  Int_t fV0ADC[2] ;
891  Int_t fV0Mul[2] ;
892 
895 
896  // Event selection
897 
901 
905 
909 
920 
921 
927 //AliTriggerAnalysis* fTriggerAnalysis; ///< Access to trigger selection algorithm for V0AND calculation.
928 
934 
938 
942 
943  // Pile-up in EMCal
944 
954 
955  // Centrality/Event plane
961 
962  // Jets
964  TClonesArray * fNonStandardJets;
967  AliAODJetEventBackground * fBackgroundJets;
969 
972 
974 
975  TLorentzVector fMomentum;
976 
977  // cut control histograms
978 
984  TH1F * fhPHOSClusterCutsE [7];
985  TH1F * fhCTSTrackCutsPt [6];
986 
989 
991 
992  // MC labels to accept
996 
998 
999 
1000  AliGenEventHeader * fGenEventHeader;
1001  AliGenPythiaEventHeader * fGenPythiaEventHeader;
1002 
1004  AliCaloTrackReader( const AliCaloTrackReader & r) ;
1005 
1008 
1010  ClassDef(AliCaloTrackReader,80) ;
1012 
1013 } ;
1014 
1015 #endif //ALICALOTRACKREADER_H
1016 
1017 
1018 
Bool_t IsPileUpFromSPD() const
virtual Int_t GetDebug() const
virtual Float_t GetZvertexCut() const
Bool_t IsBadMaxCellTriggerEvent() const
void SwitchOnLEDEventsRemoval(Int_t opt=1)
Double_t fEventWeight
Weight assigned to the event when filling histograms.
Bool_t fUseTrackDCACut
Do DCA selection.
virtual void SwitchOnAODTrackSharedClusterSelection()
virtual void SetDebug(Int_t d)
TString GetTaskName() const
virtual void SwitchOffConstrainTrackToVertex()
void SetLastCaloMixedEvent(Int_t e)
TArrayI GetTriggerPatches(Int_t tmin, Int_t tmax)
virtual void FillInputVZERO()
virtual AliMCEvent * GetMC() const
Int_t fV0ADC[2]
Integrated V0 signal.
Bool_t fComparePtHardAndClusterPt
In MonteCarlo, jet events, reject events with too large cluster energy.
AliAnaWeights * fWeightUtils
Pointer to AliAnaWeights.
void SetShowerShapeSmearWidth(Float_t w)
Double_t fTimeStampEventCTPBCCorrMax
Maximum value of time stamp corrected by CTP in run.
AliCalorimeterUtils * GetCaloUtils() const
TH2F * fhEMCALClusterEtaPhiFidCut
! Control histogram on EMCAL clusters acceptance, after fiducial cuts
Float_t fTimeStampEventFracMin
Minimum value of time stamp fraction event.
void AnalyzeOnlyEventsOfType(Int_t specie)
double Double_t
Definition: External.C:58
virtual void FillInputNonStandardJets()
Double_t fEMCALTimeCutMax
Remove clusters/cells with time larger than this value, in ns.
virtual void SetInputBackgroundJetBranchName(TString name)
void SetEMCALPtMax(Float_t pt)
Int_t fBitEJE
Trigger bit on VCaloTrigger for EJE.
void SwitchOffUnMatchedTriggerEventsRemoval()
TList * GetListWithMixedEventsForTracks(Int_t bi) const
TLorentzVector fMomentum
! Temporal TLorentzVector container, avoid declaration of TLorentzVectors per event.
Double_t fTimeStampRunMin
Minimum value of time stamp in run.
Bool_t fDoPileUpEventRejection
Select pile-up events by SPD.
virtual TClonesArray * GetNonStandardJets() const
TString GetEMCALCellsListName() const
TObjArray * fPHOSClusters
Temporal array with PHOS CaloClusters.
TString GetGeneratorNameAndIndex(Int_t index, Int_t &genIndex) const
Double_t fTrackDCACut[3]
Remove tracks with DCA larger than cut, parameters of function stored here.
Definition: External.C:236
virtual void SwitchOnStatusSelection()
Bool_t fUseEventsWithPrimaryVertex
Select events with primary vertex.
virtual void SwitchOnFiducialCut()
virtual AliVCaloCells * GetPHOSCells() const
Bool_t fIsBadCellEvent
Bad cell triggered event flag, any cell in cluster is bad.
Bool_t fEventTrigEMCALL1Gamma1
Event is L1-Gamma, threshold 1 on its name, it should correspond kEMCEGA.
virtual void AddStatusArray(TArrayI &)
virtual AliHeader * GetHeader() const
virtual void SwitchOffPi0Decay()
Bool_t IsEventEMCALL1Jet1() const
void SetTriggerPatchTimeWindow(Int_t min, Int_t max)
void SetPHOSPtMax(Float_t pt)
Bool_t IsEventEMCALL1Gamma1() const
virtual void SwitchOnAODHybridTrackSelection()
virtual Int_t GetNumberOfMCGeneratorsToAccept() const
void SwitchOnEMCALEventRejectionWith2Thresholds()
Int_t fRemoveLEDEvents
Remove events where LED was wrongly firing - only EMCAL LHC11a for this equal to 1, generalized to any SM for larger.
virtual void SetCentralityBin(Int_t min, Int_t max)
void SetPHOSPtMin(Float_t pt)
Bool_t AreBadTriggerEventsRemoved() const
Float_t GetEventTimeStampFractionMax() const
Int_t fSmearNLMMin
Do smearing for clusters with at least this value.
void SwitchOffExcludeEventTimeCTPBCCorrStamp()
void SetEMCALParametrizedMinTimeCut(Int_t i, Float_t par)
virtual Double_t GetBField() const
virtual void SetMC(AliMCEvent *const mc)
virtual void SetPHOSOverlapAngle(Float_t)
TString fEventPlaneMethod
Name of event plane method, by default "Q".
virtual TString GetNameOfMCEventHederGeneratorToAccept() const
Int_t fTrackBCEventCut[19]
Fill one entry per event if there is a track in a given BC, depend on track pT, acceptance cut...
void SwitchOffClusterELinearityCorrection()
virtual TObjArray * GetEMCALClusters() const
void SetCTSPtMax(Float_t pt)
Bool_t fDoVertexBCEventSelection
Select events with vertex on BC=0 or -100.
Float_t GetCTSPtMax() const
virtual void SetInputOutputMCEvent(AliVEvent *, AliAODEvent *, AliMCEvent *)
Bool_t WriteDeltaAODToFile() const
void SetListWithMixedEventsForTracks(TList **l)
TH2F * fhEMCALClusterTimeE
! Control histogram on EMCAL timing
TList * GetListWithMixedEventsForCalo(Int_t bi) const
AliMixedEvent * fMixedEvent
! Mixed event object. This class is not the owner.
virtual AliVEvent * GetInputEvent() const
virtual void SwitchOnOnlyGeneratorParticles()
void SetSmearingFunction(Int_t smfu)
Bool_t IsPileUpFromSPDAndNotEMCal() const
Check if event is from pile-up determined by SPD and not by EMCal.
Bool_t IsEventEMCALL1() const
Bool_t IsTriggerPatchMatchedToCluster() const
virtual Int_t GetIndexOfMCGeneratorsToAccept(Int_t ig) const
Float_t fPtHardAndClusterPtFactor
Factor between ptHard and cluster pT to reject/accept event.
Bool_t fAcceptFastCluster
Accept events from fast cluster, exclude these events for LHC11a.
virtual void SetTrackComplementaryCuts(AliESDtrackCuts *)
Double_t fTrackTimeCutMin
Remove tracks with time smaller than this value, in ns.
energy
Definition: HFPtSpectrum.C:44
Bool_t IsPrimaryVertexSelectionDone() const
void SetEMCALEMin(Float_t en)
Float_t GetEMCALBadChannelMinDist() const
virtual AliGenPythiaEventHeader * GetGenPythiaEventHeader() const
Int_t GetV0Signal(Int_t i) const
Bool_t fSmearShowerShape
Smear shower shape (use in MC).
void SetTrackDCACut(Int_t i, Float_t cut)
AliVEvent * fInputEvent
! pointer to esd or aod input.
Bool_t IsEventSemiCentral() const
Calculate the weight to the event to be applied when filling histograms.
Definition: AliAnaWeights.h:34
virtual void SetInputEvent(AliVEvent *input)
void SetPileUpParamForEMCal(Int_t param)
Double_t fTrackTimeCutMax
Remove tracks with time larger than this value, in ns.
virtual void AddNeutralParticlesArray(TArrayI &)
Int_t fTriggerClusterBC
Event triggered by a cluster in BC -5 0 to 5.
virtual AliMultSelection * GetMultSelCen() const
TString fEMCALClustersListName
Alternative list of clusters produced elsewhere and not from InputEvent.
ULong_t GetTrackStatus() const
Float_t fPHOSBadChMinDist
Minimal distance to bad channel to accept cluster in PHOS, cm.
Double_t GetRunTimeStampMin() const
Bool_t fWriteOutputDeltaAOD
Write the created delta AOD objects into file.
virtual void SetNameOfMCEventHederGeneratorToAccept(TString name)
TString GetFiredTriggerClassName() const
Int_t fV0Mul[2]
Integrated V0 Multiplicity.
Float_t fEMCALPtMin
pT Threshold on emcal clusters.
Bool_t fTriggerClusterTimeRecal
In case cluster already calibrated, do not try to recalibrate even if recalib on in AliEMCALRecoUtils...
Double_t ** fVertex
! Vertex array 3 dim for each mixed event buffer.
TH1F * fhCTSTrackCutsPt[6]
! Control histogram on the different CTS tracks selection cuts, pT
Bool_t IsEventWithNoTrackRejectionDone() const
UInt_t fEventTriggerMask
Select this triggerered event.
virtual Int_t GetEventCentrality() const
Double_t GetEMCALTimeCutMax() const
Int_t GetSmearingFunction() const
virtual void SetTPCSharedClusterFraction(Float_t)
virtual AliCentrality * GetCentrality() const
AliVCaloCells * fPHOSCells
! Temporal array with PHOS AliVCaloCells.
TList * fOutputContainer
! Output container with cut control histograms.
Bool_t IsEventEMCALL1Gamma2() const
virtual AliMixedEvent * GetMixedEvent() const
Int_t fEnergyHistogramNbins
Binning of the control histograms, min and max window.
Bool_t fFillInputBackgroundJetBranch
Flag to use data from background jets.
void SetTrackEventBC(Int_t bc)
TList * fAODBranchList
List with AOD branches created and needed in analysis.
virtual void SwitchOffStatusSelection()
Bool_t IsTriggerMatchedOpenCuts(Int_t i) const
Float_t GetTrackMultiplicityPtCut(Int_t cut=0) const
void RemapMCLabelForAODs(Int_t &label)
Float_t GetEMCALEMin() const
Bool_t fEventTrigSemiCentral
Event is AliVEvent::kSemiCentral on its name, it should correspond to PbPb.
TRandom3 fRandom
! Random generator.
Bool_t AcceptDCA(Float_t pt, Float_t dca)
Bool_t IsPileUpFromNotSPDAndNotEMCal() const
Check if event not from pile-up determined neither by SPD nor by EMCal.
virtual Float_t GetPtHardAndJetFactor() const
Bool_t fFillCTS
Use data from CTS.
virtual AliGenEventHeader * GetGenEventHeader() const
virtual void SetTrackFilterMaskComplementary(ULong_t)
virtual void InitParameters()
Initialize the parameters with default.
Float_t GetEMCALEMax() const
virtual void GetVertex(Double_t v[3]) const
virtual void SetPtHardAndJetPtComparison(Bool_t compare)
void SwitchOnEmbeddedClustersSelection()
Int_t fTrackMult[10]
Track multiplicity, count for different pT cuts.
Bool_t IsTriggerClusterTimeRecal() const
virtual void SwitchOffOverlapCheck()
virtual Bool_t FillInputEvent(Int_t iEntry, const char *currentFileName)
void SetSmearingNLMRange(Int_t mi, Int_t ma)
Bool_t IsBackgroundJetsSwitchedOn() const
void SetTrackMultiplicityNPtCut(Float_t ncut)
Float_t fPHOSPtMin
pT Threshold on phos clusters.
Bool_t fSelectEmbeddedClusters
Use only simulated clusters that come from embedding.
Bool_t fEventTrigMinBias
Event is min bias on its name, it should correspond to AliVEvent::kMB, AliVEvent::kAnyInt.
Float_t fEMCALParamTimeCutMin[4]
Remove clusters/cells with time smaller than parametrized value, in ns.
Int_t fEventNumber
Event number.
TString fTaskName
Name of task that executes the analysis.
void SetCTSPtMin(Float_t pt)
Bool_t fRemoveBadTriggerEvents
Remove triggered events because trigger was exotic, bad, or out of BC.
Float_t fTrackMultPtCut[10]
Track multiplicity and sum pt cuts list.
Bool_t IsPileUpFromSPDOrEMCal() const
Check if event is from pile-up determined by SPD or EMCal.
Bool_t IsPileUpFromEMCalAndNotSPD() const
Check if event is from pile-up determined by EMCal, not by SPD.
Bool_t fEventTrigEMCALL1Gamma2
Event is L1-Gamma, threshold 2 on its name, it should correspond kEMCEGA.
virtual Float_t GetCentralityBin(Int_t i) const
void SetEventTriggerMask(UInt_t evtTrig=AliVEvent::kAny)
Double_t GetRunTimeStampMax() const
Bool_t fEventTrigEMCALL1Jet1
Event is L1-Gamma, threshold 1 on its name, it should correspond kEMCEGA.
void SetEMCALParametrizedMaxTimeCut(Int_t i, Float_t par)
virtual Int_t GetEventNumber() const
Double_t fTimeStampEventCTPBCCorrMin
Minimum value of time stamp corrected by CTP in run.
Bool_t fFillEMCALCells
Use data from EMCAL.
AliGenPythiaEventHeader * fGenPythiaEventHeader
! Event header casted to pythia
void SwitchOffVertexBCEventSelection()
virtual void SetPtHardAndClusterPtFactor(Float_t factor)
Float_t fEnergyHistogramLimit[2]
Binning of the control histograms, number of bins.
Int_t fTriggerClusterId
Id of trigger cluster (cluster->GetID()).
Int_t fPHOSNCellsCut
Accept for the analysis PHOS clusters with more than fNCellsCut cells.
Float_t fCTSPtMax
pT Threshold on charged particles.
void SetTaskName(TString name)
Int_t GetCocktailGeneratorAndIndex(Int_t index, TString &nameGen) const
Double_t fEMCALParamTimeCutMax[4]
Remove clusters/cells with time larger than parametrized value, in ns.
Double_t GetTimeStampEventCTPBCCorrMin() const
virtual void FillInputEMCALCells()
Connects the array with EMCAL cells and the pointer.
Bool_t fFillPHOSCells
Use data from PHOS.
virtual AliVCaloCells * GetEMCALCells() const
TH2F * fhEMCALClusterEtaPhi
! Control histogram on EMCAL clusters acceptance, before fiducial cuts
Int_t GetPHOSNCellsCut() const
virtual Float_t GetPtHardAndClusterFactor() const
virtual ULong_t GetTrackFilterMaskComplementary() const
Bool_t IsDCACutOn() const
void SetListWithMixedEventsForCalo(TList **l)
virtual AliFiducialCut * GetFiducialCut()
virtual void SetCentralityOpt(Int_t opt)
Bool_t fIsBadMaxCellEvent
Bad cell triggered event flag, only max energy cell is bad.
int Int_t
Definition: External.C:63
Bool_t fSelectSPDHitTracks
Ensure that track hits SPD layers.
Float_t GetEventTriggerL0Threshold() const
TString fFiredTriggerClassName
Name of trigger event type used to do the analysis.
Float_t GetPHOSEMin() const
virtual TClonesArray * GetAODMCParticles() const
Definition: External.C:204
Int_t GetTrackMultiplicity(Int_t cut=0) const
TString GetFiredTriggerClasses() const
virtual void SwitchOffAODPrimaryTrackSelection()
unsigned int UInt_t
Definition: External.C:33
TObjArray * fEMCALClusters
Temporal array with EMCAL CaloClusters.
Float_t GetPHOSBadChannelMinDist() const
Bool_t IsEventEMCALL1Jet() const
Float_t GetPHOSEMax() const
AliGenEventHeader * fGenEventHeader
! Event header
Float_t fPHOSPtMax
pT Threshold on phos clusters.
virtual TList * GetAODBranchList() const
Bool_t fAccessTrackTOF
Access the track TOF, in case of problems when accessing GetTOFBunchCrossing.
float Float_t
Definition: External.C:68
virtual TString GetInputNonStandardJetBranchName()
void SetTrackStatus(ULong_t bit)
Bool_t IsTriggerMatched() const
Bool_t IsPileUpEventRejectionDone() const
virtual Bool_t CheckForPrimaryVertex() const
Int_t fEMCalBCEvent[19]
Fill one entry per event if there is a cluster in a given BC.
virtual void SetOutputEvent(AliAODEvent *aod)
TString fInputBackgroundJetBranchName
Name of background jet branch.
void SetLastTracksMixedEvent(Int_t e)
virtual AliEventplane * GetEventPlane() const
Bool_t fEventTriggerAtSE
Select triggered event at SE base task or here.
Bool_t IsLEDEventRemoved() const
Int_t fNMCGenerToAccept
Number of MC generators that should not be included in analysis.
void SetControlHistogramEnergyBinning(Int_t nBins, Float_t emin, Float_t emax)
Float_t fEMCALPtMax
pT Threshold on emcal clusters.
virtual void SetNumberOfMCGeneratorsToAccept(Int_t nGen)
Int_t fEventType
Set the event species: 7 physics, 0 MC, 8 LED (not useful now)
Bool_t IsEventCentral() const
void SetEMCALBadChannelMinDist(Float_t di)
virtual Int_t GetCentralityOpt() const
virtual AliAODEvent * GetOutputEvent() const
virtual Bool_t ComparePtHardAndClusterPt(Int_t process, TString processName)
Bool_t fEventTrigCentral
Event is AliVEvent::kCentral on its name, it should correspond to PbPb.
void SwitchOnTriggerClusterTimeRecal()
Bool_t IsPHOSSwitchedOn() const
virtual TObjString * GetListOfParameters()
Save parameters used for analysis in a string.
Float_t fTrackMultEtaCut
Track multiplicity eta cut.
void SetEMCALNCellsCut(Int_t nc)
void SwitchOnUnMatchedTriggerEventsRemoval()
Bool_t IsExcludeEventTimeStampCTPBCCorrOn()
TString fMCGenerToAccept[5]
List with name of generators that should not be included.
virtual void SetPtHardAndClusterPtComparison(Bool_t compare)
Bool_t IsFastClusterAccepted() const
void SetPHOSNCellsCut(Int_t nc)
AliCalorimeterUtils * fCaloUtils
Pointer to AliCalorimeterUtils.
Int_t fCentralityBin[2]
Minimum and maximum value of the centrality for the analysis.
void SwitchOffTriggerClusterTimeRecal()
virtual void FillInputPHOSCells()
Connects the array with PHOS cells and the pointer.
void SetAcceptEventsWithBit(UInt_t bit)
Base class for event, clusters and tracks filtering and preparation for the analysis.
Int_t GetEMCALNCellsCut() const
void SwitchOffBadTriggerEventsRemoval()
TObjArray * fDCALClusters
Temporal array with DCAL CaloClusters, not needed in the normal case, use just EMCal array with DCal ...
void SetEMCALClusterListName(TString &name)
Int_t GetTriggerClusterBC() const
Bool_t fUseTrackTimeCut
Do time cut selection.
AliCaloTrackReader & operator=(const AliCaloTrackReader &r)
Assignment operator not implemented.
virtual TString GetEventPlaneMethod() const
virtual Int_t GetTrackID(AliVTrack *track)
Double_t GetEventWeight() const
void SetEventTriggerL1Threshold(Float_t tr)
UInt_t GetEventTriggerMask() const
TArrayI fAcceptEventsWithBit
Accept events if trigger bit is on.
virtual void SwitchOffAODTrackSharedClusterSelection()
void SetEventTriggerL1Bit(Int_t ega, Int_t eje)
void SetTrackMultiplicityEtaCut(Float_t eta)
Int_t fLastMixedTracksEvent
Temporary container with the last event added to the mixing list for tracks.
unsigned long ULong_t
Definition: External.C:38
TH1F * fhEMCALClusterCutsE[8]
! Control histogram on the different EMCal cluster selection cuts, E
virtual Float_t GetTPCSharedClusterFraction() const
Int_t GetLastTracksMixedEvent() const
virtual Bool_t ComparePtHardAndJetPt(Int_t process, TString processName)
virtual void Print(const Option_t *opt) const
Print some relevant parameters set for the analysis.
void MatchTriggerCluster(TArrayI patches)
void SetTrackMultiplicityPtCut(Int_t cut, Float_t pt)
Bool_t fTimeStampEventSelect
Select events within a fraction of data taking time.
Double_t fTimeStampRunMax
Maximum value of time stamp in run.
TList ** fListMixedTracksEvents
! Container for tracks stored for different events, used in case of own mixing, set in analysis class...
Double_t fEMCALTimeCutMin
Remove clusters/cells with time smaller than this value, in ns.
virtual void SetTrackFilterMask(ULong_t)
Bool_t fEventTrigEMCALL1Jet2
Event is L1-Gamma, threshold 2 on its name, it should correspond kEMCEGA.
void SetEMCalEventBCcut(Int_t bc)
virtual TString GetInputBackgroundJetBranchName()
Int_t fNPileUpClustersCut
Cut to select event as pile-up.
virtual Bool_t IsPtHardAndClusterPtComparisonSet() const
Int_t fDebug
Debugging level.
Bool_t IsEMCALSwitchedOn() const
Bool_t fCheckFidCut
Do analysis for clusters in defined region.
virtual ~AliCaloTrackReader()
Destructor.
Double_t GetTrackTimeCutMin() const
Bool_t fEventTrigEMCALL0
Event is EMCal L0 on its name, it should correspond to AliVEvent::kEMC7, AliVEvent::kEMC1.
virtual void SwitchOnPi0Decay()
Int_t GetV0Multiplicity(Int_t i) const
Int_t fTrackBCEvent[19]
Fill one entry per event if there is a track in a given BC.
Bool_t AreUnMatchedTriggerEventsRemoved() const
virtual void SetZvertexCut(Float_t zcut=10.)
virtual TObjArray * GetPHOSClusters() const
Int_t GetEMCalEventBC(Int_t bc) const
virtual void FillInputEMCALAlgorithm(AliVCluster *clus, Int_t iclus)
Bool_t fComparePtHardAndJetPt
In MonteCarlo, jet events, reject fake events with wrong jet energy.
void SetRunTimeStamp(Double_t a, Double_t b)
Int_t fNNonPileUpClusters
Number of clusters with time below 20 ns.
virtual Double_t * GetVertex(Int_t evtIndex) const
Int_t fNMixedEvent
Number of events in mixed event buffer.
Int_t GetTriggerClusterIndex() const
Bool_t IsPHOSCellsSwitchedOn() const
Int_t fCentralityOpt
Option for the returned value of the centrality, possible options 5, 10, 100.
Float_t fZvtxCut
Cut on vertex position.
Double_t GetEMCALTimeCutMin() const
AliCaloTrackReader()
Constructor. Initialize parameters.
virtual void SwitchOnAliCentrality()
Bool_t fTriggerPatchClusterMatch
Search for the trigger patch and check if associated cluster was the trigger.
virtual void SetEMCALOverlapAngle(Float_t)
TList ** fListMixedCaloEvents
! Container for photon stored for different events, used in case of own mixing, set in analysis class...
Bool_t fUseParamTimeCut
Use simple or parametrized time cut.
virtual void SetPtHardAndJetPtFactor(Float_t factor)
AliFiducialCut * fFiducialCut
Acceptance cuts.
Bool_t fRejectEMCalTriggerEventsWith2Tresholds
Reject events EG2 also triggered by EG1 or EJ2 also triggered by EJ1.
void SetCaloUtils(AliCalorimeterUtils *caloutils)
void SetTimeStampEventCTPBCCorrRange(Double_t a, Double_t b)
TH1F * fhPHOSClusterCutsE[7]
! Control histogram on the different PHOS cluster selection cuts, E
virtual void SetEventPlaneMethod(TString m)
Double_t GetTimeStampEventCTPBCCorrMax() const
void SetPHOSEMin(Float_t en)
Bool_t IsAccessToTrackTimeOn() const
virtual AliESDtrackCuts * GetTrackComplementaryCuts() const
virtual TString GetCentralityClass() const
Bool_t AreClustersRecalculated() const
virtual void FillInputEMCAL()
Bool_t fFillEMCAL
Use data from EMCAL.
Bool_t fFillPHOS
Use data from PHOS.
AliVCaloCells * fEMCALCells
! Temporal array with EMCAL AliVCaloCells.
Bool_t IsEmbeddedClusterSelectionOn() const
virtual AliAODMCHeader * GetAODMCHeader() const
Int_t fEMCALNCellsCut
Accept for the analysis EMCAL clusters with more than fNCellsCut cells.
virtual void SetTrackCuts(AliESDtrackCuts *)
Float_t GetPHOSPtMin() const
Int_t GetLastCaloMixedEvent() const
Float_t fCTSPtMin
pT Threshold on charged particles.
Bool_t IsCTSSwitchedOn() const
UInt_t GetMixEventTriggerMask() const
Float_t GetEMCALPtMin() const
void SetPileUpParamForSPD(Int_t i, Double_t param)
virtual AliESDtrackCuts * GetTrackCuts() const
Float_t GetEventTriggerL1Threshold() const
virtual void SwitchOffFiducialCut()
Int_t fSmearNLMMax
Do smearing for clusters with at maximum this value.
virtual AliAODJetEventBackground * GetBackgroundJets() const
Bool_t IsVertexBCEventSelectionDone() const
virtual void SetCentralityClass(TString name)
Float_t fTriggerL0EventThreshold
L0 Threshold to look for triggered events, set outside.
Float_t DegToRad(Float_t deg) const
Float_t fTimeStampEventFracMax
Maximum value of time stamp fraction event.
void SetEMCALPtMin(Float_t pt)
virtual void ResetLists()
Reset lists, called in AliAnaCaloTrackCorrMaker.
Int_t fNPileUpClusters
Number of clusters with time avobe 20 ns.
void SwitchOnBadTriggerEventsRemoval()
Bool_t IsNonStandardJetsSwitchedOn() const
AliAODEvent * fOutputEvent
! pointer to aod output.
void SetPHOSBadChannelMinDist(Float_t di)
void SwitchOnClusterELinearityCorrection()
Bool_t IsExoticEvent() const
virtual ULong_t GetTrackFilterMask() const
Float_t GetEMCALPtMax() const
virtual void AddChargedParticlesArray(TArrayI &)
void SetTrackTimeCut(Double_t a, Double_t b)
Bool_t fRecalculateClusters
Correct clusters, recalculate them if recalibration parameters is given.
void SetEMCALTimeCut(Double_t a, Double_t b)
Bool_t IsEventMinimumBias() const
Bool_t fDoRejectNoTrackEvents
Reject events with no selected tracks in event.
Bool_t IsEventEMCALL1Jet2() const
smearingFunction
Smearing function enum.
Float_t fEMCALBadChMinDist
Minimal distance to bad channel to accept cluster in EMCal, cell units.
Bool_t fTimeStampEventCTPBCCorrExclude
Activate event selection within a range of data taking time CTP corrected. ESD only.
Bool_t fIsTriggerMatchOpenCut[3]
Could not match the event to a trigger patch?, retry opening cuts.
TString fEMCALCellsListName
Alternative list of cells produced elsewhere and not from InputEvent.
Bool_t ListWithMixedEventsForCaloExists() const
UInt_t fMixEventTriggerMask
Select this triggerered event for mixing, tipically kMB or kAnyINT.
Float_t RadToDeg(Float_t rad) const
Bool_t IsEventTriggerAtSEOn() const
Bool_t ListWithMixedEventsForTracksExists() const
virtual void FillVertexArray()
Bool_t IsInTimeWindow(Double_t tof, Float_t energy) const
Bool_t fRemoveUnMatchedTriggers
Analyze events where trigger patch and cluster where found or not.
void SetEMCALCellsListName(TString &name)
Float_t GetTrackMultiplicityEtaCut() const
Bool_t IsV0ANDEventSelectionDone() const
virtual Double_t GetEventPlaneAngle() const
void SwitchOffEmbeddedClustersSelection()
void SetRejectEventsWithBit(UInt_t bit)
TObjArray * fCTSTracks
Temporal array with tracks.
Int_t fTriggerPatchTimeWindow[2]
Trigger patch selection window.
virtual AliVEvent * GetOriginalInputEvent() const
Float_t GetEventTimeStampFractionMin() const
Bool_t AcceptParticleMCLabel(Int_t mcLabel) const
AliMCEvent * fMC
! Monte Carlo Event Handler.
virtual void SwitchOnOverlapCheck()
TH1I * fhNEventsAfterCut
! Each bin represents number of events resulting after a given selection cut: vertex, trigger, ...
Float_t fPtHardAndJetPtFactor
Factor between ptHard and jet pT to reject/accept event.
void SetEMCALEMax(Float_t en)
TString fMCGenerEventHeaderToAccept
Accept events that contain at least this event header name.
virtual void SwitchOnAODPrimaryTrackSelection()
void SetEventTriggerL0Threshold(Float_t tr)
const char Option_t
Definition: External.C:48
virtual Bool_t IsPtHardAndJetPtComparisonSet() const
Int_t GetTrackEventBC(Int_t bc) const
TString fDeltaAODFileName
Delta AOD file name.
virtual Int_t GetDataType() const
void SwitchOffEMCALEventRejectionWith2Thresholds()
TString GetEMCALClusterListName() const
Int_t GetVertexBC() const
TString GetDeltaAODFileName() const
Float_t fTrackSumPt[10]
Track sum pT, count for different pT cuts.
Bool_t IsPileUpFromEMCal() const
Check if event is from pile-up determined by EMCal.
Bool_t fFillInputNonStandardJetBranch
Flag to use data from non standard jets.
TClonesArray * fNonStandardJets
! Temporal array with jets.
void SetFiredTriggerClassName(TString name)
Int_t fEMCalBCEventCut[19]
Fill one entry per event if there is a cluster in a given BC, depend on cluster E, acceptance cut.
Int_t fTriggerClusterIndex
Index in clusters array of trigger cluster.
Bool_t IsDCALSwitchedOn() const
Bool_t fTriggerL1EventThresholdFix
L1 Threshold is fix and set outside.
bool Bool_t
Definition: External.C:53
Float_t fSmearShowerShapeWidth
Smear shower shape landau function "width" (use in MC).
void SetPHOSEMax(Float_t en)
Class with utils specific to calorimeter clusters/cells.
Int_t fBitEGA
Trigger bit on VCaloTrigger for EGA.
Int_t fTrackMultNPtCut
Track multiplicty, number of pt cuts.
Bool_t IsEventEMCALL1Gamma() const
Double_t GetTrackTimeCutMax() const
Double_t GetTrackDCACut(Int_t i) const
virtual void FillInputBackgroundJets()
virtual TString GetNameOfMCGeneratorsToAccept(Int_t ig) const
virtual void SetIndexOfMCGeneratorsToAccept(Int_t ig, Int_t index)
Bool_t fDoV0ANDEventSelection
Select events depending on V0AND.
virtual Int_t GetNMixedEvent() const
virtual void SwitchOnConstrainTrackToVertex()
virtual void SwitchOffAliCentrality()
virtual void SetNameOfMCGeneratorsToAccept(Int_t ig, TString name)
AliAODJetEventBackground * fBackgroundJets
! Background jets.
Bool_t fCorrectELinearity
Correct cluster linearity, always on.
void SetMixEventTriggerMask(UInt_t evtTrig=AliVEvent::kAnyINT)
virtual TList * GetCreateControlHistograms()
Int_t fVertexBC
Vertex BC.
virtual Bool_t IsFiducialCutOn() const
void SwitchOffPrimaryVertexSelection()
virtual void SwitchOffOnlyGeneratorParticles()
virtual TObjArray * GetDCALClusters() const
AliAnaWeights * GetWeightUtils()
virtual void SetInputNonStandardJetBranchName(TString name)
void SetEventTimeStampFraction(Float_t a, Float_t b)
Bool_t fIsExoticEvent
Exotic trigger event flag.
TString fInputNonStandardJetBranchName
Name of non standard jet branch.
Int_t GetEMCalEventBCcut(Int_t bc) const
TArrayI fRejectEventsWithBit
Reject events if trigger bit is on.
Bool_t fUseEMCALTimeCut
Do time cut selection.
Bool_t IsBadCellTriggerEvent() const
Float_t GetPhi(Float_t phi) const
Shift phi angle in case of negative value 360 degrees. Example TLorenzVector::Phi defined in -pi to p...
Store the acceptance cuts for clusters and tracks or particle objects.
Int_t fDataType
Select MC: Kinematics, Data: ESD/AOD, MCData: Both.
virtual Bool_t SelectTrack(AliVTrack *, Double_t *)
virtual void SetFiducialCut(AliFiducialCut *fc)
Bool_t fFillDCAL
Use data from DCAL, not needed in the normal case, use just EMCal array with DCal limits...
Bool_t IsEMCALCellsSwitchedOn() const
void SetTrackEventBCcut(Int_t bc)
void SwitchOffUseParametrizedTimeCut()
Bool_t IsShowerShapeSmeared() const
virtual void SetDataType(Int_t data)
Int_t GetTrackMultiplicityNPtCut() const
Float_t GetPHOSPtMax() const
Bool_t fIsTriggerMatch
Could match the event to a trigger patch?
Float_t fTriggerL1EventThreshold
L1 Threshold to look for triggered events, set in data.
TString fCentralityClass
Name of selected centrality class.
Int_t fMCGenerIndexToAccept[5]
List with index of generators that should not be included.
Int_t GetTrackEventBCcut(Int_t bc) const
void SwitchOnExcludeEventTimeCTPBCCorrStamp()
ULong_t fTrackStatus
Track selection bit, select tracks refitted in TPC, ITS ...
Bool_t IsPileUpFromSPDAndEMCal() const
Check if event is from pile-up determined by SPD and EMCal.
Float_t GetTrackSumPt(Int_t cut=0) const
virtual void FillInputPHOS()
Fill the array with PHOS filtered clusters.
Int_t fLastMixedCaloEvent
Temporary container with the last event added to the mixing list for photons.
Bool_t fUseAliCentrality
Select as centrality estimator AliCentrality (Run1) or AliMultSelection (Run1 and Run2) ...
virtual TObjArray * GetCTSTracks() const
Int_t fSmearingFunction
Choice of smearing function. 0 no smearing. 1 smearing from Gustavo (Landau center at 0)...
Bool_t fRecalculateVertexBC
Recalculate vertex BC from tracks pointing to vertex.
void SetEMCalEventBC(Int_t bc)
Int_t GetTriggerClusterId() const
virtual void SwitchOffAODHybridTrackSelection()
void SetDeltaAODFileName(TString name)
Bool_t IsEventEMCALL0() const
Float_t GetCTSPtMin() const