]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGJE/AliAnalysisTaskJetSpectrum2.h
793ab78bcc587699a60d1bebe314bc86658d0720
[u/mrichter/AliRoot.git] / PWGJE / AliAnalysisTaskJetSpectrum2.h
1
2 #ifndef ALIANALYSISTASKJETSPECTRUM2_H
3 #define ALIANALYSISTASKJETSPECTRUM2_H
4  
5 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
6  * See cxx source for full Copyright notice                               */
7
8 // **************************************
9 // Task used for the correction of determiantion of reconstructed jet spectra
10 // Compares input (gen) and output (rec) jets   
11 // *******************************************
12
13 #include  "AliAnalysisTaskSE.h"
14 #include  "THnSparse.h" // cannot forward declare ThnSparseF
15
16 ////////////////
17 class AliJetHeader;
18 class AliESDEvent;
19 class AliAODEvent;
20 class AliAODExtension;
21 class AliAODJet;
22 class AliVParticle;
23 class AliAODJetEventBackground;
24 class AliGenPythiaEventHeader;
25 class AliCFManager;
26 class AliTHn;
27
28 class TList;
29 class TChain;
30 class TH1F;
31 class TH2F;
32 class TH3F;
33 class TRandom3;
34 class TProfile;
35 class TProfile2D;
36 class TSTring;
37
38
39 class AliAnalysisTaskJetSpectrum2 : public AliAnalysisTaskSE
40 {
41  public:
42     AliAnalysisTaskJetSpectrum2();
43     AliAnalysisTaskJetSpectrum2(const char* name);
44     virtual ~AliAnalysisTaskJetSpectrum2() {;}
45     // Implementation of interface methods
46     virtual void UserCreateOutputObjects();
47     virtual void Init();
48     virtual void LocalInit() { Init(); }
49     virtual void UserExec(Option_t *option);
50     virtual void Terminate(Option_t *option);
51     virtual Bool_t Notify();
52
53     virtual void SetUseGlobalSelection(Bool_t b){fUseGlobalSelection = b;}
54     virtual void SetEventClass(Int_t i){fEventClass = i;}
55     virtual void SetExternalWeight(Float_t f){fExternalWeight = f;}
56     virtual void SetUseExternalWeightOnly(Bool_t b){fUseExternalWeightOnly = b;}
57     virtual void SetAODJetInput(Bool_t b){fUseAODJetInput = b;}
58     virtual void SetAODTrackInput(Bool_t b){fUseAODTrackInput = b;}
59     virtual void SetAODMCInput(Bool_t b){fUseAODMCInput = b;}
60     virtual void SetLimitGenJetEta(Bool_t b){fLimitGenJetEta = b;}
61     virtual void SetJetEtaWindow(Float_t f){fJetRecEtaWindow = f;}
62     virtual void SetTrackEtaWindow(Float_t f){fTrackRecEtaWindow = f;}
63     virtual void SetNMatchJets(Short_t f){fNMatchJets = f;}
64     virtual void SetMinJetPt(Float_t f){fMinJetPt = f;}
65     virtual void SetNRPBins(Short_t i){fNRPBins = i;} 
66     virtual void SetFlagJetType(Int_t iType,Int_t iF){fFlagJetType[iType] = iF;}
67     virtual void SetMinTrackPt(Float_t f){fMinTrackPt = f;}
68     virtual void SetDeltaPhiWindow(Float_t f){fDeltaPhiWindow = f;}
69     virtual void SetAnalysisType(Int_t i){fAnalysisType = i;}
70     virtual void SetBranchGen(const char* c){fBranchGen = c;}
71     virtual void SetBranchRec(const char* c){fBranchRec = c;}
72     virtual void SetBranchBkgRec(const char* c){fBranchBkgRec = c;}  
73     virtual void SetBranchBkgGen(const char* c){fBranchBkgGen = c;}  
74     virtual void SetTrackTypeGen(Int_t i){fTrackTypeGen = i;}
75     virtual void SetTrackTypeRec(Int_t i){fTrackTypeRec = i;}
76     virtual void SetFilterMask(UInt_t i){fFilterMask = i;}
77     virtual void SetJetTriggerExclude(UChar_t i){fJetTriggerExcludeMask = i;}
78     virtual void SetMatching(Bool_t b = kTRUE){fDoMatching = b;}
79     virtual void SetRPMethod(Int_t i){fRPMethod = i;}
80     virtual void SetEventSelectionMask(UInt_t i){fEventSelectionMask = i;}
81
82     virtual void SetNonStdFile(char* c){fNonStdFile = c;} 
83
84
85     // Helper
86     //
87
88     // we have different cases
89     // AOD reading -> MC from AOD
90     // ESD reading -> MC from Kinematics
91     // this has to match with our selection of input events
92     enum {kTrackUndef = 0, kTrackAOD, kTrackKineAll,kTrackKineCharged, kTrackAODMCAll, kTrackAODMCCharged, kTrackAODMCChargedAcceptance};
93     enum {kAnaMC =  0x1, kAnaMCESD = 0x2};
94     enum {kMaxJets = 2};
95     enum {kJetRec = 0, kJetGen, kJetRecFull, kJetGenFull, kJetTypes}; //
96     enum {kMaxCorrelation =  3};
97     
98     // 
99     // 0 all jets
100     // 1 all jet in eta window
101     // 2 all jets with partner
102     // 3 all jets in eta window with partner
103     // 4 all jets with partner in eta window
104     enum {kStep0 = 0, kStep1, kStep2, kStep3, kStep4,kMaxStep};
105
106
107  private:
108
109     AliAnalysisTaskJetSpectrum2(const AliAnalysisTaskJetSpectrum2&);
110     AliAnalysisTaskJetSpectrum2& operator=(const AliAnalysisTaskJetSpectrum2&);
111
112     void    MakeJetContainer();
113     Int_t   GetListOfTracks(TList *list,Int_t type);
114     void    FillTrackHistos(TList &particlesList,int iType);
115     Float_t GetCentrality();
116     Bool_t  CalculateReactionPlaneAngle(const TList *trackList);
117     Int_t   GetPhiBin(Double_t phi);
118     Double_t GetPhiWeight(Double_t phi,Double_t signedpt);
119     Int_t   GetListOfJets(TList *list,TClonesArray* jarray,Int_t type);
120     void    FillJetHistos(TList &jetsList,TList &particlesList,Int_t iType);
121
122     void    FillMatchHistos(TList &recJetsList,TList &genJetsList);
123
124     Bool_t  JetSelected(AliAODJet *jet);
125     Int_t MultFromJetRefs(TClonesArray *jets);
126     AliVParticle *LeadingTrackFromJetRefs(AliAODJet* jet);
127     AliVParticle *LeadingTrackInCone(AliAODJet* jet,TList *list,Float_t r = 0.4);
128
129
130     AliJetHeader *fJetHeaderRec;//! The jet header that can be fetched from the userinfo
131     AliJetHeader *fJetHeaderGen;//! The jet header that can fetched from the userinfo
132     AliAODEvent  *fAODIn; //! where we take the jets from 
133     AliAODEvent  *fAODOut; //! where we take the jets from 
134     AliAODExtension  *fAODExtension; //! where we take the jets from can be input or output AOD
135     AliTHn   *fhnJetContainer;               //! like particle container in corrfw with different steps need AliCFContainer with Scale(), and clone() to do the same
136     AliTHn   *fhnCorrelation;                //! response matrix for unfolding 
137     THnSparseF   *fhnEvent;                  //! event counts 
138     TF1          *f1PtScale;                 //! correction function to correct to the average true jet energy depending on p_T,rec
139
140     TString       fBranchRec;  // AOD branch name for reconstructed
141     TString       fBranchGen;  // AOD brnach for genereated
142     TString       fBranchBkgRec;  //AOD branch for background 
143     TString       fBranchBkgGen;  //AOD branch for background 
144     TString       fNonStdFile; // name of delta aod file to catch the extension
145
146     TRandom3*     fRandomizer; //! randomizer
147
148     Bool_t        fUseAODJetInput;        // take jet from input AOD not from ouptu AOD
149     Bool_t        fUseAODTrackInput;      // take track from input AOD not from ouptu AOD
150     Bool_t        fUseAODMCInput;         // take MC from input AOD not from ouptu AOD
151     Bool_t        fUseGlobalSelection;    // Limit the eta of the generated jets
152     Bool_t        fUseExternalWeightOnly; // use only external weight
153     Bool_t        fLimitGenJetEta;        // Limit the eta of the generated jets
154     Bool_t        fDoMatching;            // switch on the matching between rec and gen
155     Short_t       fNMatchJets;            // number of leading jets considered from the list
156     Short_t       fNRPBins;               // number of bins with respect to RP
157     UChar_t        fJetTriggerExcludeMask; // mask for jet triggers to exclude
158     UInt_t        fFilterMask;            // filter bit for slecected tracks
159     UInt_t        fEventSelectionMask;    // Selection information used to filter events
160     Int_t         fAnalysisType;          // Analysis type 
161     Int_t         fTrackTypeRec;          // type of tracks used for FF 
162     Int_t         fTrackTypeGen;          // type of tracks used for FF 
163     Int_t         fFlagJetType[kJetTypes]; // disable the filling and booking of certain JetType histos
164     Int_t         fEventClass;            // event class to be looked at for this instance of the task
165     Int_t         fRPMethod;              // method for subevent calculation
166     Float_t       fAvgTrials;             // Average nimber of trials
167     Float_t       fExternalWeight;        // external weight
168     Float_t       fJetRecEtaWindow;       // eta window for rec jets
169     Float_t       fTrackRecEtaWindow;     // eta window for rec tracks
170     Float_t       fMinJetPt;              // limits the jet p_T in addition to what already is done in the jet finder, this is important for jet matching for JF with lo threshold
171     Float_t       fMinTrackPt;            // limits the track p_T 
172     Float_t       fDeltaPhiWindow;        // minium angle between dijets
173     Float_t       fCentrality;            // ! centrality
174     Float_t       fRPAngle;               // ! RP angle of the reaction plane
175     Int_t         fMultRec;               // ! reconstructed track multiplicity
176     Int_t         fMultGen;               // ! generated track multiplicity
177     
178
179     TProfile*     fh1Xsec;   //! pythia cross section and trials
180     TH1F*         fh1Trials; //! trials are added
181     TH1F*         fh1PtHard;  //! Pt har of the event...       
182     TH1F*         fh1PtHardNoW;  //! Pt har of the event without weigt       
183     TH1F*         fh1PtHardTrials;  //! Number of trials 
184     TH1F*         fh1ZVtx;          //! z-vtx distribution
185     TH1F*         fh1RP;            //! RP distribution
186     TH1F*         fh1Centrality;    //! centrality distribution
187     TH1F*         fh1TmpRho;        //! just temporary histo for calculation    
188     TH2F*         fh2MultRec;       //! reconstructed track multiplicity   
189     TH2F*         fh2MultGen;       //! generated track multiplicity   
190     TH2F*         fh2RPCentrality;   //! RP vs centrality
191
192     TH2F*         fh2PtFGen;                //! found vs generated 
193     TH2F*         fh2RelPtFGen;             //! relative difference between generated and found 
194
195     
196
197     // Jet histos second go
198
199     TH1F*         fh1NJets[kJetTypes];      //! nr of gen jets
200     TH1F*         fh1SumPtTrack[kJetTypes]; //! sum over all track pT    
201
202     TH1F*         fh1PtIn[kJetTypes][kMaxJets+1];  //! Jet pt  
203     TH1F*         fh1PtJetsIn[kJetTypes];       //! Jet pt for all jets
204     TH1F*         fh1PtJetsInRej[kJetTypes];    //! Jet pt for all rejected jets
205     TH1F*         fh1PtTracksIn[kJetTypes];     //! track pt for all tracks
206     TH1F*         fh1PtTracksInLow[kJetTypes];  //! track pt for all tracks
207     
208     TH2F*         fh2NJetsPt[kJetTypes];    //! Number of found jets above threshold
209     TH2F*         fh2NTracksPt[kJetTypes];  //! Number of tracks above threshold
210     TProfile2D    *fp2MultRPPhiTrackPt[kJetTypes];         //! for mean pT vs RP   
211     TProfile2D    *fp2CentRPPhiTrackPt[kJetTypes];         //! for mean pT vs RP   
212     THnSparseF    *fhnJetPt[kJetTypes];                  //! jet pt information for analysis
213     THnSparseF    *fhnJetPtQA[kJetTypes];                //! jet pt information for QA
214     THnSparseF    *fhnTrackPt[kJetTypes];                //! track pt information for analysis
215     THnSparseF    *fhnTrackPtQA[kJetTypes];              //! track pt information for analysis
216
217     TH2F*         fh2LTrackPtJetPt[kJetTypes][kMaxJets+1];       //! leading track within the jet vs jet pt 
218
219     TH1F*   fh1DijetMinv[kJetTypes];            //! dijet inv mass
220     TH2F*   fh2DijetDeltaPhiPt[kJetTypes];      //! dijet delta phi vs pt
221     TH2F*   fh2DijetAsymPt[kJetTypes];          //! dijet asym vs pt after delta phi cut
222     TH2F*   fh2DijetPt2vsPt1[kJetTypes];        //! dijet pt2 vs pt1
223     TH2F*   fh2DijetDifvsSum[kJetTypes];        //! dijet dif vs sum
224
225
226     TList *fHistList;                  //! Output list
227    
228
229     ClassDef(AliAnalysisTaskJetSpectrum2, 18) // Analysis task for standard jet analysis
230 };
231  
232 #endif