AliPhysics  e841483 (e841483)
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AliAnalysisTaskEmcalDiJetBase.h
Go to the documentation of this file.
1 #ifndef ALIANALYSISTASKEMCALDIJETBASE_H
2 #define ALIANALYSISTASKEMCALDIJETBASE_H
3 
4 class TH1;
5 class TH2;
6 class TH3;
7 class TH3F;
8 class THnSparse;
9 class TClonesArray;
10 class TArrayI;
11 class AliAnalysisManager;
12 class AliJetContainer;
13 
15 
17  public:
19  kFraction = 0, // match full and charged jets with largest shared charged pt fraction
20  kGeo = 1, // match full and charged jets geometrically
21  kNoMatching = 3 // include autocorrelation in dijet correlation
22  };
23 
25  kCorrelateAll = 0, // correlate all jets with all jets in event
26  kCorrelateTwo = 1, // correlate all jets with leading jet in opposite hemisphere
27  kCorrelateLS = 2 // correlate leading and subleading jet
28  };
29 
31  AliAnalysisTaskEmcalDiJetBase(const char *name);
33 
35  void Terminate(Option_t *option);
36 
37  Bool_t SelectEvent(); //decides if event is used for analysis
38 
39  //Setters
40  void SetDebug(Int_t d) { fDebug = d;}
41 
43 
45 
46  void SetTriggerClass(const char *n) { fTriggerClass = n; }
47 
48  void SetContainerFull(Int_t c) { fContainerFull = c;}
49  void SetContainerCharged(Int_t c) { fContainerCharged = c;}
50  void SetContainerFullMC(Int_t c) { fContainerFullMC = c;}
52 
53  void SetRhoType(Int_t i) { fRhoType = i;}
54 
55  void SetDoChargedCharged(Bool_t b) { fDoChargedCharged = b;}
56  void SetDoFullCharged(Bool_t b) { fDoFullCharged = b;}
57  void SetDoFullFull(Bool_t b) { fDoFullFull = b;}
58 
60  void SetDoPtBias(Bool_t b) { fDoPtBias = b;}
61 
62  void SetMinSharedFraction(Double_t f) { fMinFractionShared = f;}
63 
64  void ResetMatchFlag() { fMatchingDone = kFALSE; }
65 
66  //Getters
67  Double_t GetDeltaPhi(const AliEmcalJet* jet1, const AliEmcalJet* jet2);
68  Double_t GetDeltaPhi(Double_t phi1,Double_t phi2);
69  Double_t GetDeltaR(const AliEmcalJet* jet1, const AliEmcalJet* jet2) const;
70 
71  Double_t GetZ(const AliVParticle *trk, const AliEmcalJet *jet) const;
72  Double_t GetZ(Double_t trkPx, Double_t trkPy, Double_t trkPz, Double_t jetPx, Double_t jetPy, Double_t jetPz) const;
73 
74  AliEmcalJet* GetLeadingJetOppositeHemisphere(Int_t type, Int_t typea, const AliEmcalJet *jetTrig);
75  AliEmcalJet* GetSecondLeadingJetOppositeHemisphere(Int_t type, Int_t typea, const AliEmcalJet *jetTrig);
76 
77  protected:
78  virtual Bool_t RetrieveEventObjects();
79 
80  Bool_t IsSameJet(Int_t jt, Int_t ja, Int_t type, Bool_t isMC = kFALSE);
81  Double_t GetJetPt(const AliEmcalJet *jet, Int_t type);
82 
83  void MatchJetsGeo(Int_t cFull, Int_t cCharged,
84  Int_t iDebug = 0, Float_t maxDist = 0.3, Int_t type = 0);
85  Double_t GetFractionSharedPt(const AliEmcalJet *jetFull, const AliEmcalJet *jetCharged) const;
86 
89 
90  Bool_t fDebug; // debug level
91  JetCorrelationType fJetCorrelationType; // type of correlation between jets
92  JetFullChargedMatchingType fJetFullChargedMatchingType; //matching type between full and charged jets to be used
93  TString fTriggerClass; // trigger class to analyze EJ1 or EJ2
94 
95  Int_t fContainerCharged; // number of container with charged jets DET
96  Int_t fContainerFull; // number of container with full jets DET
97  Int_t fContainerChargedMC; // number of container with charged jets MC
98  Int_t fContainerFullMC; // number of container with full jets MC
99 
100  Int_t fRhoType; // rho type
101  Double_t fRhoChVal; // charged rho value
102  Double_t fRhoFullVal; // scaled charged rho value
103 
104  Bool_t fDoChargedCharged; // do charged-charged ana
105  Bool_t fDoFullCharged; // do full-charged ana
106  Bool_t fDoFullFull; // do full-full ana
107 
108  Double_t fPtMinTriggerJet; // minimum pT of trigger jet
109  Bool_t fDoPtBias; // pT trigger jet > pT assoc jet
110  Double_t fMinFractionShared; // minimum fraction charged pT
111 
112  Bool_t fMatchingDone; // flag to indicate if matching is done or not
113  TArrayI faFullFracIndex; // index of charged jet with largest shared charged fraction - detector level
114  TArrayI faFullFracIndexMC; // index of charged jet with largest shared charged fraction - particle level
115 
116  TH1F *fhNEvents;
118 
119  private:
122 
123  ClassDef(AliAnalysisTaskEmcalDiJetBase, 6) // dijet base task
124 };
125 #endif
TH1 * fHistTrialsSelEvents
Histo number of events.
Double_t GetFractionSharedPt(const AliEmcalJet *jetFull, const AliEmcalJet *jetCharged) const
Bool_t IsSameJet(Int_t jt, Int_t ja, Int_t type, Bool_t isMC=kFALSE)
Double_t GetJetPt(const AliEmcalJet *jet, Int_t type)
AliAnalysisTaskEmcalDiJetBase & operator=(const AliAnalysisTaskEmcalDiJetBase &)
void MatchJetsGeo(Int_t cFull, Int_t cCharged, Int_t iDebug=0, Float_t maxDist=0.3, Int_t type=0)
JetFullChargedMatchingType fJetFullChargedMatchingType
Double_t GetDeltaR(const AliEmcalJet *jet1, const AliEmcalJet *jet2) const
Double_t GetZ(const AliVParticle *trk, const AliEmcalJet *jet) const
const Double_t ptmin
void SetFullChargedMatchingType(JetFullChargedMatchingType m)
Bool_t isMC
Base task in the EMCAL jet framework.
Represent a jet reconstructed using the EMCal jet framework.
Definition: AliEmcalJet.h:44
void SetJetCorrelationType(JetCorrelationType c)
AliEmcalJet * GetSecondLeadingJetOppositeHemisphere(Int_t type, Int_t typea, const AliEmcalJet *jetTrig)
AliEmcalJet * GetLeadingJetOppositeHemisphere(Int_t type, Int_t typea, const AliEmcalJet *jetTrig)
Container for jet within the EMCAL jet framework.
Double_t GetDeltaPhi(const AliEmcalJet *jet1, const AliEmcalJet *jet2)