]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGGA/CaloTrackCorrelations/AliAnaGeneratorKine.h
use new method to check the fiducial cut
[u/mrichter/AliRoot.git] / PWGGA / CaloTrackCorrelations / AliAnaGeneratorKine.h
1 #ifndef ALIANAGENERATORKINE_H
2 #define ALIANAGENERATORKINE_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice     */
5
6 //___________________________________________________________________________
7 // Do photon/pi0 analysis for isolation and correlation
8 // at the generator level. Only for kine stack (ESDs)
9 //
10 //
11 //-- Author: Gustavo Conesa (LPSC-CNRS-Grenoble)
12
13 // --- ROOT ---
14 class TH2F ;
15 class TParticle ;
16 class AliStack ;
17 class TLorentzVector ;
18
19 // --- ANALYSIS ---
20 #include "AliAnaCaloTrackCorrBaseClass.h"
21
22 class AliAnaGeneratorKine : public AliAnaCaloTrackCorrBaseClass {
23        
24 public:
25   
26   AliAnaGeneratorKine() ; // default ctor
27   virtual ~AliAnaGeneratorKine() { delete fFidCutTrigger ; } //virtual dtor
28   
29   Bool_t CorrelateWithPartonOrJet(TLorentzVector trigger,
30                                   Int_t   indexTrig,
31                                   Int_t   pdgTrig,
32                                   Bool_t  leading[4],
33                                   Bool_t  isolated[4],
34                                   Int_t & iparton) ; 
35   
36   TList * GetCreateOutputObjects() ;
37   
38   void    GetPartonsAndJets() ;
39     
40   void    GetXE(TLorentzVector trigger,
41                 Int_t   indexTrig,
42                 Int_t   pdgTrig,
43                 Bool_t  leading[4],
44                 Bool_t  isolated[4],
45                 Int_t   iparton) ;
46   
47   void    InitParameters() ;
48   
49   void    IsLeadingAndIsolated(TLorentzVector trigger,
50                                Int_t  indexTrig,
51                                Int_t  pdgTrig,
52                                Bool_t leading[4],     
53                                Bool_t isolated[4]) ;
54     
55   void    MakeAnalysisFillHistograms() ;
56   
57   void    SetTriggerDetector( Int_t det )    { fTriggerDetector = det  ; }
58   
59   void    SetMinChargedPt   ( Float_t pt )   { fMinChargedPt    = pt   ; }
60   void    SetMinNeutralPt   ( Float_t pt )   { fMinNeutralPt    = pt   ; }
61   
62   // Detector for trigger particles acceptance
63   AliFiducialCut * GetFiducialCutForTrigger()
64   { if(!fFidCutTrigger)  fFidCutTrigger  = new AliFiducialCut(); return  fFidCutTrigger  ; }
65   virtual void     SetFiducialCut(AliFiducialCut * fc)
66   { delete fFidCutTrigger;  fFidCutTrigger  = fc      ; }
67
68   
69 private:
70   
71   Int_t       fTriggerDetector;             //! trigger detector, for fiducial region
72
73   AliFiducialCut* fFidCutTrigger;           //! fiducial cut for the trigger detector
74   
75   Float_t     fMinChargedPt;                //! Minimum energy for charged particles in correlation
76   Float_t     fMinNeutralPt;                //! Minimum energy for neutral particles in correlation
77   
78   AliStack  * fStack;                       //! access stack
79   
80   TParticle * fParton2;                     //! Initial state Parton
81   TParticle * fParton3;                     //! Initial state Parton
82   
83   TParticle * fParton6;                     //! Final state Parton
84   TParticle * fParton7;                     //! Final state Parton
85   
86   TLorentzVector fJet6;                     //! Pythia jet close to parton in position 6
87   TLorentzVector fJet7;                     //! Pythia jet close to parton in position 7
88
89   Float_t     fPtHard;                      //! Generated pT hard
90   
91   TH1F      * fhPtHard;                     //! pt of parton 
92   TH1F      * fhPtParton;                   //! pt of parton  
93   TH1F      * fhPtJet;                      //! pt of jet 
94   
95   TH2F      * fhPtPartonPtHard;             //! pt of parton divided to pt hard, trigger is photon 
96   TH2F      * fhPtJetPtHard;                //! pt of jet divided to pt hard, trigger is photon 
97   TH2F      * fhPtJetPtParton;              //! pt of parton divided to pt parton, trigger is photon 
98
99   TH1F      * fhPtPhoton;                   //! Input photon
100   TH1F      * fhPtPi0;                      //! Input pi0
101   
102   // Histograms arrays for 4 isolation options and 2 options on leading or not leading particle
103   
104   TH1F      * fhPtPhotonLeading[4];         //! Leading photon pT
105   TH1F      * fhPtPi0Leading[4];            //! Leading pi0 pT
106
107   TH2F      * fhPtPhotonLeadingSumPt[4];    //! Leading photon pT vs sum in cone
108   TH2F      * fhPtPi0LeadingSumPt[4];       //! Leading pi0 pT vs sum in cone
109   
110   TH1F      * fhPtPhotonLeadingIsolated[4]; //! Leading photon, isolated
111   TH1F      * fhPtPi0LeadingIsolated[4];    //! Leading pi0, isolated
112
113   TH2F      * fhPtPartonTypeNearPhoton[2][4];           //! Leading photon, particle pt versus originating parton type
114   TH2F      * fhPtPartonTypeNearPi0[2][4];              //! Leading pi0, particle pt versus originating parton type
115   TH2F      * fhPtPartonTypeNearPhotonIsolated[2][4];   //! Leading photon, particle pt versus originating parton type
116   TH2F      * fhPtPartonTypeNearPi0Isolated[2][4];      //! Leading pi0, particle pt versus originating parton type
117   
118   TH2F      * fhPtPartonTypeAwayPhoton[2][4];           //! Leading photon, particle pt versus away side parton type
119   TH2F      * fhPtPartonTypeAwayPi0[2][4];              //! Leading pi0, particle pt versus away side parton type
120   TH2F      * fhPtPartonTypeAwayPhotonIsolated[2][4];   //! Leading photon, isolated, particle pt versus away side parton type 
121   TH2F      * fhPtPartonTypeAwayPi0Isolated[2][4];      //! Leading pi0, isolated, particle pt versus away side parton type
122   
123   TH2F      * fhZHardPhoton[2][4];           //! Leading photon, zHard
124   TH2F      * fhZHardPi0[2][4];              //! Leading pi0, zHard
125   TH2F      * fhZHardPhotonIsolated[2][4];   //! Leading photon, isolated, zHard
126   TH2F      * fhZHardPi0Isolated[2][4];      //! Leading pi0, isolated, zHard
127   
128   TH2F      * fhZPartonPhoton[2][4];         //! Leading photon, zHard
129   TH2F      * fhZPartonPi0[2][4];            //! Leading pi0, zHard
130   TH2F      * fhZPartonPhotonIsolated[2][4]; //! Leading photon, isolated, zHard
131   TH2F      * fhZPartonPi0Isolated[2][4];    //! Leading pi0, isolated, zHard
132
133   TH2F      * fhZJetPhoton[2][4];            //! Leading photon, zHard
134   TH2F      * fhZJetPi0[2][4];               //! Leading pi0, zHard
135   TH2F      * fhZJetPhotonIsolated[2][4];    //! Leading photon, isolated, zHard
136   TH2F      * fhZJetPi0Isolated[2][4];       //! Leading pi0, isolated, zHard
137   
138   TH2F      * fhXEPhoton[2][4];              //! Leading photon, xE away side
139   TH2F      * fhXEPi0[2][4];                 //! Leading pi0, xE away side
140   TH2F      * fhXEPhotonIsolated[2][4];      //! Leading photon, xE away side
141   TH2F      * fhXEPi0Isolated[2][4];         //! Leading pi0, isolated, xE away side
142   
143   TH2F      * fhXEUEPhoton[2][4];              //! Leading photon, xE away side
144   TH2F      * fhXEUEPi0[2][4];                 //! Leading pi0, xE away side
145   TH2F      * fhXEUEPhotonIsolated[2][4];      //! Leading photon, xE away side
146   TH2F      * fhXEUEPi0Isolated[2][4];         //! Leading pi0, isolated, xE away side
147   
148   AliAnaGeneratorKine              (const AliAnaGeneratorKine & gk) ; // cpy ctor
149   AliAnaGeneratorKine & operator = (const AliAnaGeneratorKine & gk) ; // cpy assignment
150   
151   ClassDef(AliAnaGeneratorKine,3)
152   
153 } ;
154
155
156 #endif //ALIANAGENERATORKINE_H
157
158
159