]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGJE/UserTasks/AliAnalysisTaskJetHBOM.h
Transition to new base class (Salvatore/Marta).
[u/mrichter/AliRoot.git] / PWGJE / UserTasks / AliAnalysisTaskJetHBOM.h
1 #ifndef ALIANALYSISTASKJETHBOM_H
2 #define ALIANALYSISTASKJETHBOM_H
3  
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 // **************************************
8 // Task used for the correction of detector effects for background fluctuations in jet spectra by the HBOM method
9 // *******************************************
10
11 #include  "AliAnalysisTaskSE.h"
12 #include  "THnSparse.h" // cannot forward declare ThnSparseF
13 #include "fastjet/ClusterSequenceArea.hh"
14 #include "fastjet/AreaDefinition.hh"
15 #include "fastjet/JetDefinition.hh"
16 #include "fastjet/PseudoJet.hh"
17 #include "TH1F.h"
18 #include "TH2D.h"
19
20
21 ////////////////
22 class AliJetHeader;
23 class AliESDEvent;
24 class AliAODEvent;
25 class AliAODExtension;
26 class AliAODJet;
27 class AliGenPythiaEventHeader;
28 class AliCFManager;
29 class AliAODJetEventBackground;
30 class AliJetFinder;
31 class TList;
32 class TChain;
33 class TH3F;
34 class TProfile;
35 class TRandom3;
36 class TRefArray;
37 class TClonesArray;
38 class TF1;
39
40 class AliAnalysisTaskJetHBOM : public AliAnalysisTaskSE
41 {
42  public:
43     AliAnalysisTaskJetHBOM();
44     AliAnalysisTaskJetHBOM(const char* name);
45     virtual ~AliAnalysisTaskJetHBOM();
46     // Implementation of interface methods
47     virtual void UserCreateOutputObjects();
48     virtual void Init();
49     virtual void LocalInit() { Init(); }
50     virtual void UserExec(Option_t *option);
51     virtual void Terminate(Option_t *option);
52     virtual Bool_t Notify();
53
54     
55
56     virtual void SetAODTrackInput(Bool_t b){fUseAODTrackInput = b;}
57     virtual void SetAODMCInput(Bool_t b){fUseAODMCInput = b;}
58     virtual void SetEventSelection(Bool_t b){fEventSelection = b;}
59     virtual void SetTrackEtaWindow(Float_t f){fTrackEtaWindow = f;}
60     virtual void SetTrackTypeGen(Int_t i){fTrackTypeGen = i;}
61     virtual void SetTrackTypeRec(Int_t i){fTrackTypeRec = i;}
62     virtual void SetTrackPtCut(Float_t x){fTrackPtCut = x;}
63     virtual void SetCentralityCut(Float_t xLo,Float_t xUp){fCentCutLo = xLo; fCentCutUp = xUp;}
64     virtual void SetFilterMask(UInt_t i,Int_t iType = 0){fFilterMask = i;
65       fFilterType = iType;}
66     virtual void SetJetTypes(UInt_t i){fJetTypes = i;}
67     virtual void SetVtxCuts(Float_t z,Float_t r = 1){fVtxZCut = z; fVtxR2Cut = r *r;}    
68     virtual void SetBackgroundBranch(const char* c){fBackgroundBranch = c;}
69     virtual const char* GetBackgroundBranch(){return fBackgroundBranch.Data();}    
70     virtual void SetNSkipLeadingRan(Int_t x){fNSkipLeadingRan = x;}
71     virtual void SetNSkipLeadingCone(Int_t x){fNSkipLeadingCone = x;}
72     virtual void SetNRandomCones(Int_t x){fNRandomCones = x;}
73     virtual void SetRandConePos(Double_t eta, Double_t phi){randCone_pos=1;randCone_Eta=eta;randCone_Phi=phi;}
74
75     virtual void SetfNHBOM(Int_t x){fNHBOM = x;};
76     virtual void SetEfficiencyPt(TH1F *h){fh1efficiencyPt = (TH1F*)h->Clone("h1efficiencyPt");}
77     virtual void SetEfficiencyPhi(TH2D *h){fh2efficiencyPhi = (TH2D*)h->Clone("h2efficiencyPhi");}
78
79     virtual void SetJetOutputBranch(const char *c){fNonStdBranch = c;}
80     virtual const char* GetJetOutputBranch(){return fNonStdBranch.Data();}
81     virtual void SetJetOutputFile(const char *c){fNonStdFile = c;}
82     virtual const char* GetJetOutputFile(){return fNonStdFile.Data();}
83     virtual void SetMaxTrackPtInJet(Float_t x){fMaxTrackPtInJet = x;}
84     virtual void SetJetOutputMinPt(Float_t x){fJetOutputMinPt = x;}
85
86     //Setters for detector level effects
87     virtual void SetSmearResolution(Bool_t b){fUseTrMomentumSmearing = b;} 
88     virtual void SetDiceEfficiency(Bool_t b){fUseDiceEfficiency = b;} 
89     virtual void SetMomentumResolutionHybrid(TProfile *p1, TProfile *p2, TProfile *p3);
90     virtual void SetEfficiencyHybrid(TH1 *h1, TH1 *h2, TH1 *h3);
91
92     Double_t GetMomentumSmearing(Int_t cat, Double_t pt);
93     void FitMomentumResolution();
94
95
96     // for Fast Jet
97     fastjet::JetAlgorithm        GetAlgorithm()         const {return fAlgorithm;}
98     fastjet::Strategy            GetStrategy()          const {return fStrategy;}
99     fastjet::RecombinationScheme GetRecombScheme()      const {return fRecombScheme;}
100     fastjet::AreaType            GetAreaType()          const {return fAreaType;}
101     // Setters
102     void SetRparam(Double_t f)                           {fRparam = f;}
103     void SetAlgorithm(fastjet::JetAlgorithm f)           {fAlgorithm = f;}
104     void SetStrategy(fastjet::Strategy f)                {fStrategy = f;}
105     void SetRecombScheme(fastjet::RecombinationScheme f) {fRecombScheme = f;}
106     void SetAreaType(fastjet::AreaType f)                {fAreaType = f;}
107     void SetGhostArea(Double_t f) {fGhostArea = f;}
108     void SetActiveAreaRepeats(Int_t f) {fActiveAreaRepeats = f;}
109     void SetGhostEtamax(Double_t f) {fGhostEtamax = f;}
110
111
112
113     // Helper
114     //
115
116     // we have different cases
117     // AOD reading -> MC from AOD
118     // ESD reading -> MC from Kinematics
119     // this has to match with our selection of input events
120     enum {kTrackUndef = 0, kTrackAOD, kTrackKineAll,kTrackKineCharged, kTrackAODMCAll, kTrackAODMCCharged, kTrackAODMCChargedAcceptance, kTrackAODextra, kTrackAODextraonly};
121     enum {kMaxJets = 4};
122     enum {kMaxCorrelation =  3};
123     enum {kMaxRadius =       5};
124     enum {kMaxCent =         4};
125     enum {kJet = 1<<0,
126           kJetRan = 1<<1,         
127           kRC = 1<<2,
128           kRCRan = 1<<3
129     };
130     
131
132  private:
133
134     AliAnalysisTaskJetHBOM(const AliAnalysisTaskJetHBOM&);
135     AliAnalysisTaskJetHBOM& operator=(const AliAnalysisTaskJetHBOM&);
136
137     Int_t GetListOfTracks(TList *list,Int_t type);
138
139     AliAODEvent     *fAOD;                // ! where we take the jets from can be input or output AOD
140     AliAODExtension *fAODExtension;       // ! AOD extension in case we write a non-sdt branch to a separate file and the aod is standard
141     TRefArray       *fRef;               // ! trefarray for track references within the jet
142     Bool_t        fUseAODTrackInput;      // take track from input AOD not from ouptu AOD
143     Bool_t        fUseAODMCInput;         // take MC from input AOD not from ouptu AOD
144     Bool_t        fEventSelection;        // use the event selection of this task, otherwise analyse all
145     UInt_t        fFilterMask;            // filter bit for slecected tracks
146     UInt_t        fFilterMaskBestPt;      // filter bit to mark jets with high quality leading tracks
147
148     UInt_t        fFilterType;            // filter type 0 = all, 1 = ITSTPC, 2 = TPC
149     UInt_t        fJetTypes;              // 1<<0 regular jets, 1<<1 << randomized event 1<<2 random cones 1<<3 random cones randomiuzed event
150     Int_t         fTrackTypeRec;          // type of tracks used for FF 
151     Int_t         fTrackTypeGen;          // type of tracks used for FF 
152     Int_t         fNSkipLeadingRan;       // number of leading tracks to be skipped in the randomized event
153     Int_t         fNSkipLeadingCone;      // number of leading jets to be for the random cones
154     Int_t         fNRandomCones;          // number of generated random cones
155     Bool_t        randCone_pos;           // use fixed position for random cones
156     Double_t      randCone_Eta;           // eta for random Cone at fixed position
157     Double_t      randCone_Phi;           // phi for random Cone at fixed position
158     Int_t         fNHBOM;                 // number of detector runs
159     Float_t       fTrackEtaWindow;        // eta window used for corraltion plots between rec and gen 
160     Float_t       fTrackPtCut;            // minimum track pt to be accepted
161     Float_t       fJetOutputMinPt;        // minimum p_t for jets to be written out
162     Float_t       fMaxTrackPtInJet;       // maximum track pt within a jet for flagging...
163     //    Float_t       fJetTriggerPtCut;       // minimum jwt pT for AOD to be written
164     Float_t       fVtxZCut;               // zvtx cut
165     Float_t       fVtxR2Cut;              // R vtx cut (squared) 
166     Float_t       fCentCutUp;             // upper limit on centrality
167     Float_t       fCentCutLo;             // lower limit on centrality
168     // output configurartion
169     TString       fNonStdBranch;      // the name of the non-std branch name, if empty no branch is filled
170     TString       fBackgroundBranch;  // name of the branch used for background subtraction
171     TString       fNonStdFile;        // The optional name of the output file the non-std branch is written to
172
173     //Detector level effects
174     TProfile *fMomResH1; // Momentum resolution from TrackQA Hybrid Category 1
175     TProfile *fMomResH2; // Momentum resolution from TrackQA Hybrid Category 2
176     TProfile *fMomResH3; // Momentum resolution from TrackQA Hybrid Category 3
177     TF1 *fMomResH1Fit; //fit
178     TF1 *fMomResH2Fit; //fit
179     TF1 *fMomResH3Fit; //fit
180
181     TH1      *fhEffH1;        // Efficiency for Spectra Hybrid Category 1
182     TH1      *fhEffH2;        // Efficiency for Spectra Hybrid Category 2
183     TH1      *fhEffH3;        // Efficiency for Spectra Hybrid Category 3
184     Bool_t    fUseTrMomentumSmearing;     // Apply momentum smearing on track level
185     Bool_t    fUseDiceEfficiency;         // Apply efficiency on track level by dicing
186
187     // Fast jet
188     Double_t fRparam;                  // fastjet distance parameter
189     fastjet::JetAlgorithm fAlgorithm; //fastjet::kt_algorithm
190     fastjet::Strategy fStrategy;  //= fastjet::Best;
191     fastjet::RecombinationScheme fRecombScheme; // = fastjet::BIpt_scheme;
192     fastjet::AreaType fAreaType;  // fastjet area type
193     Double_t fGhostArea;          // fasjet ghost area
194     Int_t fActiveAreaRepeats;     // fast jet active area repeats
195     Double_t fGhostEtamax;        // fast jet ghost area
196
197     Double_t background; //background rho in the event
198
199     TClonesArray  *fTCARandomConesOut;    //! TCA of output jets in randomized event
200
201     TRandom3*     fRandom;   //! random number generator
202     TProfile*     fh1Xsec;   //! pythia cross section and trials
203     TH1F*         fh1Trials; //! trials are added
204     TH1F*         fh1PtHard;  //! Pt har of the event...       
205     TH1F*         fh1PtHardNoW;  //! Pt har of the event without weigt       
206     TH1F*         fh1PtHardTrials;  //! Number of trials 
207
208     TH1F*         fh1Nch;            //! charged particle mult
209     TH1F*         fh1CentralityPhySel;          // ! centrality of anaylsed events 
210     TH1F*         fh1Centrality;                // ! centrality of selected events 
211     TH1F*         fh1DeltapT;        // pT of random Cone - background energy
212     TH1F*         fh1Rho;            //background rho
213     TH1F*         fh1RhoSigma;       //fluctuation of the background
214     TH1F*         fh1PtRandCone;     //pT of random Cone
215
216     TH1F*         fh1efficiencyPt;          //here efficiency is stored
217     TH2D*         fh2efficiencyPhi;         //here efficiency is stored
218
219     TH1F*         fh1ZPhySel;          // ! zvtx of anaylsed events 
220     TH1F*         fh1Z;                // ! zvtx of selected events 
221
222
223     TList *fHistList; //!leading tracks to be skipped in the randomized event Output list
224    
225
226     ClassDef(AliAnalysisTaskJetHBOM, 1) 
227 };
228  
229 #endif