]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGJE/AliAnalysisTaskPartonDisc.h
Adding task for Parton Discrimination/mult in jet (H. Leon Vargas)
[u/mrichter/AliRoot.git] / PWGJE / AliAnalysisTaskPartonDisc.h
1 #ifndef ALIANALYSISTASKPARTONDISC_H\r
2 #define ALIANALYSISTASKPARTONDISC_H\r
3 \r
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * \r
5  * See cxx source for full Copyright notice */ \r
6 \r
7 //////////////////////////////////////////////////////\r
8 //                                                  //\r
9 // Analysis task for parton discrimination studies  //\r
10 //                                                  //\r
11 //////////////////////////////////////////////////////\r
12 \r
13 class TH1F;\r
14 class TH1I;\r
15 class TH2F;\r
16 class TH2I;\r
17 class TH3F;\r
18 class TProfile;\r
19 class AliAODEvent;\r
20 class AliMCEvent;\r
21 class AliAODJet;\r
22 class AliAODMCParticle;\r
23 class AliAODVertex;\r
24 \r
25 #include "AliAnalysisTaskSE.h"\r
26 \r
27 class AliAnalysisTaskPartonDisc : public AliAnalysisTaskSE {\r
28  public:\r
29   AliAnalysisTaskPartonDisc();\r
30   AliAnalysisTaskPartonDisc(const char *name);\r
31   virtual ~AliAnalysisTaskPartonDisc() {}\r
32   \r
33   virtual Bool_t UserNotify();\r
34   virtual void   UserCreateOutputObjects();\r
35   virtual void   UserExec(Option_t *option);\r
36   virtual void   Terminate(const Option_t *);\r
37   \r
38   virtual void SetAODwithMC(Bool_t flag)     {fUseAODMC = flag;}\r
39   virtual void SetMCBranch(const char* mc)   {fBranchMC = mc;}\r
40   virtual void SetRecBranch(const char* rec) {fBranchRec = rec;}\r
41   virtual void SetSecondRecBranch(const char* secrec) {fBranchSecRec = secrec;}\r
42   virtual void SetSqrtS(const Double_t sqrts) {fSqrts = sqrts;}\r
43   virtual void SetXNtX(const Int_t x) {fNtX = x;}\r
44   virtual void SetJetRadius(const Double_t jetradius) {fJetRadius = jetradius;}\r
45   virtual void SetFilterBitTracks(const UInt_t bval) {fFilterBit = bval;}\r
46   virtual void SetFlavorRadius(const Double_t fradius) {fFlavorRadius = fradius;}\r
47   virtual void SetPhojetMC(Bool_t flagmc) {fPhojetMC = flagmc;}\r
48   Int_t        GetMCEventType(AliMCEvent *mcEvent);\r
49   Int_t        GetPhojetEventType(AliMCEvent *mcEvent);\r
50   Bool_t       IsInsideAcceptance(AliAODJet *jet);\r
51   Int_t        GetJetFlavour(AliAODJet *jet, Int_t ntracks,TClonesArray *mcarray);\r
52   Double_t     GetDeltaR(Double_t eta1, Double_t phi1,Double_t eta2, Double_t phi2);\r
53   Int_t        GetNumberOfMcChargedTracks(Int_t percentage,AliAODJet *Jet, Int_t ntracks, TClonesArray *mcarray, Double_t jr);\r
54   Int_t        GetNumberOfChargedTracks(Int_t percentage,AliAODJet *jet, Int_t ntracks, AliAODEvent *aode, Double_t jr);\r
55   virtual void AllocateStaticContainer(Int_t size);\r
56   virtual void InitializeStaticContainer(Int_t size);\r
57   virtual void SortArray(Double_t *pointer, Int_t arraySize);\r
58   Int_t        TracksForPercentage(Double_t *array, Int_t arraysize, Int_t percentage, Double_t jetenergy);\r
59   Bool_t       IsMCTrackInsideThisJet(AliAODMCParticle *MCParticle, AliAODJet *Jet, Double_t jr);\r
60   Bool_t       IsTrackInsideThisJet(AliAODTrack *aodT, AliAODJet *Jet, Double_t jr);\r
61   Bool_t       VertexInJet(AliAODVertex *pvtx, AliAODVertex *vtx, AliAODJet *jet, Double_t jr);\r
62   Double_t     GetEtaValue(Double_t theta) const;\r
63   Double_t     GetThetaAngle(Double_t xval, Double_t yval, Double_t zval);\r
64   Double_t     GetPhiAngle(Double_t xval, Double_t yval);\r
65   virtual void SetAODMCInput(Bool_t b){fUseAODJetInput = b;}\r
66   Double_t     DeltaPhiMC(AliAODJet *jet, AliAODMCParticle *particle);\r
67   Double_t     DeltaEtaMC(AliAODJet *jet, AliAODMCParticle *particle);\r
68   Double_t     DeltaPhiSqMC(AliAODJet *jet, AliAODMCParticle *particle);\r
69   Double_t     DeltaEtaSqMC(AliAODJet *jet, AliAODMCParticle *particle);\r
70   Double_t     DeltaPhiTrack(AliAODJet *jet, AliAODTrack *track);\r
71   Double_t     DeltaEtaTrack(AliAODJet *jet, AliAODTrack *track);\r
72   Double_t     DeltaPhiSqTrack(AliAODJet *jet, AliAODTrack *track);\r
73   Double_t     DeltaEtaSqTrack(AliAODJet *jet, AliAODTrack *track);\r
74   virtual void SetMinPtTrackCut(const Double_t minptval) {fMinpTVal = minptval;}\r
75   static Bool_t NumberOfReadEventsAOD(const char* currFile, Int_t &fNEvents);\r
76   virtual void  SetOnlyMC(Bool_t flagOnlyMC)     {fUseOnlyMC = flagOnlyMC;}\r
77   virtual void  SetCheckMCStatus(Bool_t flagMCStatus)     {fCheckMCStatus = flagMCStatus;}\r
78   virtual void  HasOverlapedCones(TClonesArray *JetArray);\r
79   virtual void  ResetJetFlags();\r
80   virtual void  SetEnablePrints(Bool_t flagEnablePrints) {fEnablePrints = flagEnablePrints;}\r
81   Bool_t        HasPerpendicularCone() const {return fHasPerpCone;}\r
82   virtual void  SetHIEvent(Bool_t flagHIEvent)     {fIsHIevent = flagHIEvent;}\r
83   Int_t         GetNMcChargedTracksAboveThreshold(AliAODJet *jet, Int_t ntracks, TClonesArray *mcarray, Double_t jr);\r
84   Int_t         GetRecalcNTXMc(Int_t percentage, AliAODJet *originaljet, Int_t ntracks, TClonesArray *mcarray, Double_t jr);\r
85   Int_t         GetRecalcNMcChTrUpThr(AliAODJet *jet, Int_t ntracks, TClonesArray *mcarray, Double_t jr);\r
86   Int_t         GetNRecChargedTracksAboveThreshold(AliAODJet *jet, Int_t ntracks, AliAODEvent *aode, Double_t jr);\r
87   Int_t         GetRecalcNTXRec(Int_t percentage,AliAODJet *originaljet, Int_t ntracks, AliAODEvent *aode, Double_t jr);\r
88   Int_t         GetRecalcNRecChTrUpThr(AliAODJet *jet, Int_t ntracks, AliAODEvent *aode, Double_t jr);\r
89   Int_t         TracksForPercentageRecalc(Double_t *array, Int_t arraysize, Int_t percentage, Double_t jetenergy);\r
90   Bool_t        IsTrackInsideExcludedArea(Double_t tracketa, Double_t trackphi, TClonesArray *recojets);\r
91   Double_t      GetV0ExcludedMultiplicity(TClonesArray *recojets);\r
92   virtual void  SetMinPtUE(const Double_t minptvalUE) {fMinpTValUE = minptvalUE;}\r
93   virtual void  SetMaxPtUE(const Double_t maxptvalUE) {fMaxpTValUE = maxptvalUE;}\r
94   virtual void  SetMinPtMC(const Double_t minptvalMC) {fMinpTValMC = minptvalMC;}\r
95   Int_t         GetV0LikeExcludedMultMC(TClonesArray *mcjets, TClonesArray *mcparticles);\r
96   virtual void  SetIncreaseOfExclusionR(const Double_t increaseExclR) {fIncExcR = increaseExclR;}\r
97   virtual void  ForceNotUseTrackRefs(const Bool_t flagForce) {fForceNotTR = flagForce;};\r
98   virtual void  NotExtendDiJetExclusion(const Bool_t flagNotDiJ) {fNotExtDiJEx = flagNotDiJ;};\r
99   virtual void  FillPerpConeHisto(TH3F *currenthisto, Int_t ntracks, AliAODEvent *aode, Int_t CentralityBin, Int_t pTBin);\r
100   virtual void  ForceSkipSingleTrackJets(const Bool_t flagForceSJ) {fForceSkipSJ = flagForceSJ;};\r
101   Bool_t        IsEqualRel(Double_t vA, Double_t vB);\r
102 \r
103  private:\r
104   AliAODEvent *fAOD;         //! AOD object\r
105   Bool_t      fUseAODMC;     // Flag for MC info in the AOD\r
106   Bool_t      fPhojetMC;     // Flag for Phojet MC\r
107   TString     fBranchMC;     // AOD branch name for MC jets\r
108   TString     fBranchRec;    // AOD branch name for reconstructed jets\r
109   TString     fBranchSecRec; // AOD branch name for secondary reconstructed jets \r
110   Double_t    fSqrts;        // Value of sqrt{s}  default 0 to spot errors\r
111   Int_t       fNtX;          // X Value of NTX  default 0 to spot errors\r
112   Double_t    fJetRadius;    // Radius used in jet finding default 0 to spot errors\r
113   Double_t    fFlavorRadius; // Radius used in flavor asignment\r
114   UInt_t      fFilterBit;    // Filterbit value: 16= tracks with standard cuts, 128 = tracks with hit in SDD, 144 (16+128) = all the previous\r
115   TList       *fOutputList;  //! Output list\r
116   TH1F        *fJetPt;      //! Pt spectrum of reco jets\r
117   TH1F        *fJetPtSec;   //! Pt spectrum of secondary reco jets\r
118   TH1F        *fJetPtMC;    //! Pt spectrum of mc jets\r
119   TH2F        *fJetEta;     //! Eta of reco jets\r
120   TH2F        *fJetEtaSec;  //! Eta of secondary reco jets\r
121   TH2F        *fJetPhi;     //! Phi of reco jets\r
122   TH2F        *fJetPhiSec;  //! Phi of secondary reco jets\r
123   TH2F        *fJetEtaMC;   //! Eta of MC jets\r
124   TH2F        *fJetPhiMC;   //! Phi of MC jets\r
125   TH2F        *fPtAODMC;    //! Pt spectrum of MC tracks in AOD \r
126   TH2F        *fPtAOD;      //! Pt spectrum of tracks in AOD (reco MC or real)\r
127   TH2F        *fEtaAODMC;   //! Eta distribution of MC AOD tracks \r
128   TH2F        *fPhiAODMC;   //! Phi distribution of MC AOD tracks \r
129   TH2F        *fEtaAOD;     //! Eta distribution of AOD tracks\r
130   TH2F        *fPhiAOD;     //! Phi distribution of AOD tracks\r
131   TH2F        *fFlavor;     //! Flavor distribution of jets\r
132   TH2F        *fNJetsMC;    //! Number of jets per event in MC\r
133   TH2F        *fNJetsRD;    //! Number of jets per event in real data or reco MC\r
134   TH2F        *fNJetsRDSeco;     //! Number of jets per event in real data or reco MC secondary branch\r
135   TH2F        *fJetsMultPtMC;    //! Jet multiplicity in jet pT in MC\r
136   TH2F        *fJetsMultPtRD;    //! Jet multiplicity in jet pT in real data or reco MC\r
137   static Double_t *fgContainer;     //! static container for track counting\r
138   TH2F        *fNChTr[12];          //! Number of charged tracks in the jets as a function of jet pt (MC)\r
139   TH2F        *fNChTrRD;            //! Number of charged tracks in the jets as a function of jet pt (Real Data)\r
140   TProfile    *fProfNChTrRD;        //! Number of charged tracks in the jets as a function of jet pt (Real Data)\r
141   TH2I        *fProcessPDG[6];      //! Pythia process and pT of the jet\r
142   TH1F        *fHistPtParton[12];   //! Pt distribution of jets per flavor, mc and reco\r
143   TH2F        *fFragPion[6];        //! Fragmentation of jet in pions, jet energy\r
144   TH2F        *fFragKaon[6];        //! Fragmentation of jet in kaons, jet energy\r
145   TH2F        *fFragProton[6];      //! Fragmentation of jet in protons, jet energy\r
146   TH2F        *fHistContainerR4[6];    //! Temporary containers for fragmentation of reco jets R4\r
147   TH2F        *fHistContainerR3[6];    //! Temporary containers for fragmentation of reco jets R3\r
148   TH2F        *fHistContainerR2[6];    //! Temporary containers for fragmentation of reco jets R2\r
149   TH2F        *fFragChargedR4[6];   //! Fragmentation of jet in charged part, jet energy R4\r
150   TH2F        *fFragChargedR3[6];   //! Fragmentation of jet in charged part, jet energy R3\r
151   TH2F        *fFragChargedR2[6];   //! Fragmentation of jet in charged part, jet energy R2\r
152   TH2F        *fFragCandidates[2];  //! Tagged candidates for FF\r
153   TH1F        *fFracQQ;             //! process qq as a function of x_{T} \r
154   TH1F        *fFracGQ;             //! process gq as a function of x_{T} \r
155   TH1F        *fFracGG;             //! process gg as a function of x_{T}\r
156   TH1F        *fFracOutGoingQQ;     //! process outgoing qq as a function of x_{T} \r
157   TH1F        *fFracOutGoingGQ;     //! process outgoing gq as a function of x_{T} \r
158   TH1F        *fFracOutGoingGG;     //! process outgoing gg as a function of x_{T}\r
159   TProfile    *fh1Xsec;             //! xsection from pyxsec.root\r
160   TH1F        *fh1Trials;           //! ntrials from pyxsec.root            \r
161   Short_t      fMpdg;               //! PDG code of mother of parton\r
162   TH2F        *fProcessJetPt;       //! Pythia Process and jet pT \r
163   TH2F        *fFlavorLead;         //! Flavor distribution of the leading jet\r
164   TH2F        *fProcessLeadJetPt;   //! Pythia Process and jet pT of the leading jet\r
165   TH3F        *fPDGMothLPart;       //! PDG code of the mother of the leading parton, leading parton, jet pT\r
166   TH2F        *fFlavProc;           //! Flavor, Flavor status code\r
167   Float_t      fAvgTrials;          //  Average number of trials\r
168   Bool_t       fUseAODJetInput;     //  take MC from input AOD not from output AOD\r
169   Double_t     fMinTrackPtInNTX;    //  Minimum track pT taken into the NTX calculation\r
170   Double_t     fMaxTrackPtInNTX;    //  Maximum track pT taken into the NTX calculation\r
171   TH2F        *fMinTrackPtInNTXh[2];//! Histo to save fMinTrackPtInNTX as a function of jet pT\r
172   TH2F        *fMaxTrackPtInNTXh[2];//! Histo to save fMaxTrackPtInNTX as a function of jet pT\r
173   TH2F        *fSCM[12];            //! Second central moment as a function of jet pt (MC)\r
174   TH2F        *fSCMRD;              //! Second central moment as a function of jet pt (Real Data)\r
175   Double_t     fMinpTVal;           //  Minimum pT track cut for SCM analysis\r
176   TH2F        *fZVertex;            //! Z coordinate vertex position, number of reco jets\r
177   TH1F        *fh1Events;           //! nevents read out from PWG4_JetTasksOutput.root\r
178   Bool_t       fUseOnlyMC;          //  Flag to signal only MC input\r
179   Bool_t       fCheckMCStatus;      //  Flag to check the status of MC, not working for old aliroot\r
180   Bool_t       fJetFlags[16];       //  Flag to mark if this jet is ok (acceptance and no overlap), kTRUE if usable\r
181   Int_t        fEvtCount;           //  Event counter for debugging\r
182   TH2F        *fNAccJetsMC;         //! Number of accepted jets per event in MC\r
183   TH2F        *fNAccJetsRD;         //! Number of accepted jets per event in real data or reco MC\r
184   TH2F        *fNAccJetsRDSeco;     //! Number of jets accepted per event in real data or reco MC secondary branch                    \r
185   Bool_t       fEnablePrints;       //  Flag to enable print outs\r
186   TH1F        *fRecJetPtInclusive;  //! Pt spectrum of inclusive reco jets\r
187   TH1F        *fMCJetPtInclusive;   //! Pt spectrum of inclusive MC jets\r
188   TH1F        *fRecJetPtLeading;    //! Pt spectrum of leading reco jets\r
189   TH1F        *fMCJetPtLeading;     //! Pt spectrum of leading MC jets\r
190   TH1F        *fSecRecJetPtInclusive;  //! Pt spectrum of inclusive reco jets (2nd branch)\r
191   TH1F        *fSecRecJetPtLeading;    //! Pt spectrum of leading reco jets (2nd branch)\r
192   Bool_t       fHasPerpCone;           // Flag to indicate if possible to use a perpendicular jet for bckg\r
193   Double_t     fEtaPerpCoord;          // Eta of perpendicular cone\r
194   Double_t     fPhiPerpCoord;          // Phi of perpendicular cone\r
195   Double_t     fPtPerpCoord;           // pT of perpendicular cone\r
196   Bool_t       fJetEvent;              // Flag to indicate a jet event(in acceptance)\r
197   AliAODJet   *fPerpCone;              // Perpendicular Cone\r
198   TH2F        *fNChTrMCPerp;           //! Number of charged tracks in the perpendicular cone MC\r
199   TH2F        *fNChTrRecPerp;          //! Number of charged tracks in the perpendicular cone Reco or Real\r
200   TH2F        *fSCMMCPerp;             //! Second central moment as a function of jet pt for the perp cone MC\r
201   TH2F        *fSCMRecPerp;            //! Second central moment as a function of jet pt for the perp cone Rec\r
202   Bool_t       fIsHIevent;             // Flag to indicate that is reading a HI event\r
203   Double_t     fCurrentJetMinPtNT90;   // Min pT used in the NT90 calculation of the current jet\r
204   Double_t    *fBckgSbsJet;            //! Current jet, background substracted\r
205   Double_t     fCurrentJetMinPtNT90Recalc;  // Min pT used in the NT90 re-calculation of the current jet \r
206                                             // after energy correction of the jet\r
207   TH2F        *fNChTrCorrMCQuark;           //! Number of charged tracks after jet energy correction, as a function of corrected pT, MC quarks\r
208   TH2F        *fNChTrCorrMCGluon;           //! Number of charged tracks after jet energy correction, as a function of corrected pT, MC gluons\r
209   TH2F        *fNChTrCorrMCPerp;            //! Number of charged tracks in the perpendicular cone MC, after correction\r
210   Bool_t       fIsPossibleToSubstBckg;      //  Flag to signal that there was a perpendicular cone, as is possible to substract background\r
211   TH3F        *fNChTrRecECorr;              //! Number of charged tracks in the energy corrected jet, as a function of corrected jet pt, centrality\r
212   TH3F        *fNChTrRecPerpECorr;          //! Number of charged tracks in the perpendicular after correction, as a func. of corr. jet pt, centrality\r
213   TH1F        *fRefMult;                    //! Reference multiplicity in the AOD\r
214   TH2F        *fNChTrRDMult[8];             //! Number of charged tracks in the jets as a function of jet pt (Real Data), for reference multiplicities in pp\r
215   TH1F        *fNAccJetsRDMult[8];          //! Number of accepted jets per event in real data or reco MC, for reference multiplicities in pp\r
216   Int_t        fCurrentJetCharge;           //  Charge in the current jet\r
217   TH1F        *fTotalJetCharge[8];          //! Charge of this jet (dependent on event multiplicity)\r
218   TH2F        *fRefMultWOJet;               //! Reference multiplicity in the AOD and multiplicity without jets\r
219   TH2F        *fSCMRDMult[8];               //! Second central moment as a function of jet pt (Real Data), for reference multiplicities in pp\r
220   TH2F        *fNChTrRDMultMC[8];           //! Number of charged tracks in the jets as a function of jet pt (MC Data), for reference multiplicities in pp\r
221   TH2F        *fSCMRDMultMC[8];             //! Second central moment as a function of jet pt (MC Data), for reference multiplicities in pp\r
222   TH2F        *fVZEROMult;                  //! Multiplicity in V0A and V0C\r
223   TH2F        *fMultWOJetVZero;             //! Multiplicity without jets, and VZERO multiplicity\r
224   AliAODVZERO *fVZero;                      //! AOD VZERO object\r
225   TH2F        *fNChTrRDMultSE[8];           //! Number of charged tracks in the jets as a function of jet pt (Real Data), for 2nd reference multiplicities in pp\r
226   TH1F        *fNAccJetsRDMultSE[8];        //! Number of accepted jets per event in real data or reco MC, for 2nd reference multiplicities in pp\r
227   TH1F        *fTotalJetChargeSE[8];        //! Charge of this jet (dependent on 2nd event multiplicity)\r
228   TH2F        *fSCMRDMultSE[8];             //! Second central moment as a function of jet pt (Real Data), for 2nd reference multiplicities in pp\r
229   TH2F        *fRefMultFullV0;              //! Reference multiplicity in the AOD and multiplicity from the full V0\r
230   TH2F        *fRefMultV0Corr;              //! Reference multiplicity in the AOD and multiplicity from the V0 sectors with no jets (2 leading)\r
231   TH2F        *fFullV0V0Corr;               //! Multiplicity from the full V0, Multiplicity from the V0 sectors with no jets (2 leading)\r
232   TH3F        *fNTXV0MultPt;                //! NTX, V0 corrected multiplicity, and jet pT\r
233   TH3F        *fNTXCBMultPt;                //! NTX, Central Barrel corrected multiplicity, and jet pT\r
234   TH2F        *fNChTrRDMultOJ[8];           //! Number of charged tracks in the jets as a function of jet pt (Real Data), for reference multiplicities in pp, 1 Jet\r
235   TH2F        *fSCMRDMultOJ[8];             //! Second central moment as a function of jet pt (Real Data), for reference multiplicities in pp, 1 Jet\r
236   TH2F        *fNChTrRDMultSEOJ[8];         //! Number of charged tracks in the jets as a function of jet pt (Real Data), for 2nd reference multiplicities in pp, 1 Jet\r
237   TH2F        *fSCMRDMultSEOJ[8];           //! Second central moment as a function of jet pt (Real Data), for 2nd reference multiplicities in pp, 1 Jet\r
238   Double_t     fMinpTValUE;                 //  Minimum pT track cut for the UE multiplicity, default 2 GeV for debugging\r
239   TH2F        *fRefMultFullV0UJ;            //! Reference multiplicity in the AOD and multiplicity from the full V0, un jet\r
240   TH2F        *fRefMultV0CorrUJ;            //! Reference multiplicity in the AOD and multiplicity from the V0 sectors with no jets (2 leading), un jet\r
241   TH2F        *fFullV0V0CorrUJ;             //! Multiplicity from the full V0, Multiplicity from the V0 sectors with no jets (2 leading), un jet\r
242   TH2F        *fMultWOJetVZeroUJ;           //! Multiplicity without jets, and VZERO multiplicity, un jet\r
243   TH2F        *fRefMultWOJetUJ;             //! Reference multiplicity in the AOD and multiplicity without jets, un jet\r
244   Double_t     fMaxpTValUE;                 //  Maximum pT track cut for the UE multiplicity, default 2 GeV for debugging\r
245   TH2F        *fRefAODTrackCount;           //! Correlation between ref aod mult. and my own counting\r
246   TH2F        *fRefAODTrackCountUJ;         //! Correlation between ref aod mult. and my own counting, single jet event\r
247   TH2F        *fTrackCountWOJet;            //! Correlation between my own counting TPC & soft TPC\r
248   TH2F        *fTrackCountWOJetUJ;          //! Correlation between my own counting TPC & soft TPC UJ\r
249   TH2F        *fTrackCountWOJetUJMC;        //! Correlation between my own counting TPC & soft TPC UJ solo MC\r
250   TH2F        *fFullV0V0CorrUJMC;           //! Multiplicity from the full V0, Multiplicity from the V0 sectors with no jets, un jet MC no real V0\r
251   TH2F        *fNChTrRDMultOJMC[8];         //! Number of charged tracks in the jets as a function of jet pt (MC), for reference multiplicities in pp, 1 Jet\r
252   TH2F        *fSCMRDMultOJMC[8];           //! Second central moment as a function of jet pt (MC), for reference multiplicities in pp, 1 Jet\r
253   TH2F        *fNChTrRDMultSEOJMC[8];       //! Number of charged tracks in the jets as a function of jet pt (MC), for 2nd reference multiplicities in pp, 1 Jet\r
254   TH2F        *fSCMRDMultSEOJMC[8];         //! Second central moment as a function of jet pt (MC), for 2nd reference multiplicities in pp, 1 Jet\r
255   Double_t     fMinpTValMC;                 //  Minimum pT track cut for the MC multiplicity, default 2 GeV for debugging\r
256   Double_t     fIncExcR;                    //  Increase in the exclusion radius value\r
257   Bool_t       fForceNotTR;                 //  Force NOT to use track references\r
258   Bool_t       fNotExtDiJEx;                //  Not extend the exclusion in the dijet area, old behaviour\r
259   TH2F        *fMinTrackPtInNTXRecalc;      //! Histo to save fMinTrackPtInNTX after recalculation as a function of jet pT\r
260   TH2F        *fMaxTrackPtInNTXRecalc;      //! Histo to save fMaxTrackPtInNTX after recalculation as a function of jet pT\r
261   TH3F        *fPtDistInJetConeRaw;         //! pT distributions of tracks inside the cone for jet pT (raw) ranges and centralities\r
262   TH3F        *fPtDistInPerpConeRaw;        //! pT distributions of tracks inside the perpendicular cone for jet pT (raw) ranges and centralities\r
263   TH3F        *fPtInPerpCon;                //! summed pT from the perpendicular cone for jet pT (raw) ranges and centralities\r
264   Double_t     fMinTrackPtInNTXR;           //  Minimum track pT taken into the NTX re-calculation\r
265   Double_t     fMaxTrackPtInNTXR;           //  Maximum track pT taken into the NTX re-calculation\r
266   Double_t     fEventCent;                  //  event centrality\r
267   TH2F        *fNChTrRecPerpMultSEOJ[8];    //! Number of charged tracks in the perpendicular cone reco or real, with multiplicities\r
268   TH1F        *fJetEtaAll;                  //! Eta distribution of all the found jets, no cuts\r
269   TH1F        *fJetEtaOnlyTPCcut;           //! Eta distribution of all the found jets, only with eta acceptance cut\r
270   TH1F        *fJetEtaJetPt[3];             //! Eta distribution of analyzed jets, 3 ranges of pT\r
271   TH3F        *fNChTrRecECorrPPMult;        //! Number of charged tracks in the energy corrected jet, as a function of corrected jet pt, pp mult\r
272   TH3F        *fNChTrRecPerpECorrPPMult;    //! Number of charged tracks in the perpendicular after correction, as a func. of corr. jet pt, pp mult\r
273   Bool_t       fForceSkipSJ;                //  Force to skip single track jets\r
274 \r
275   AliAnalysisTaskPartonDisc(const AliAnalysisTaskPartonDisc&); // not implemented\r
276   AliAnalysisTaskPartonDisc& operator=(const AliAnalysisTaskPartonDisc&); // not implemented\r
277   \r
278   ClassDef(AliAnalysisTaskPartonDisc, 1); \r
279 };\r
280 \r
281 #endif\r