]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGGA/CaloTrackCorrelations/AliAnaGeneratorKine.h
Add name of the detectors for fiducial cut selection, remove hardcoded fiducial selec...
[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() { ; } //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( TString name ) { fTriggerDetector = name ; }
58   void    SetCalorimeter    ( TString name ) { fCalorimeter     = name ; }
59   
60   
61     
62 private:
63   
64   TString     fTriggerDetector;             //! trigger detector, for fiducial region
65   TString     fCalorimeter;                 //! detector neutral particles, for fiducial region
66   
67   AliStack  * fStack;                       //! access stack
68   
69   TParticle * fParton2;                     //! Initial state Parton
70   TParticle * fParton3;                     //! Initial state Parton
71   
72   TParticle * fParton6;                     //! Final state Parton
73   TParticle * fParton7;                     //! Final state Parton
74   
75   TLorentzVector fJet6;                     //! Pythia jet close to parton in position 6
76   TLorentzVector fJet7;                     //! Pythia jet close to parton in position 7
77
78   Float_t     fPtHard;                      //! Generated pT hard
79   
80   TH1F      * fhPtHard;                     //! pt of parton 
81   TH1F      * fhPtParton;                   //! pt of parton  
82   TH1F      * fhPtJet;                      //! pt of jet 
83   
84   TH2F      * fhPtPartonPtHard;             //! pt of parton divided to pt hard, trigger is photon 
85   TH2F      * fhPtJetPtHard;                //! pt of jet divided to pt hard, trigger is photon 
86   TH2F      * fhPtJetPtParton;              //! pt of parton divided to pt parton, trigger is photon 
87
88   TH1F      * fhPtPhoton;                   //! Input photon
89   TH1F      * fhPtPi0;                      //! Input pi0
90   
91   // Histograms arrays for 4 isolation options and 2 options on leading or not leading particle
92   
93   TH1F      * fhPtPhotonLeading[4];         //! Leading photon
94   TH1F      * fhPtPi0Leading[4];            //! Leading pi0
95   
96   TH1F      * fhPtPhotonLeadingIsolated[4]; //! Leading photon, isolated
97   TH1F      * fhPtPi0LeadingIsolated[4];    //! Leading pi0, isolated
98
99   TH2F      * fhPtPartonTypeNearPhoton[2][4];           //! Leading photon, particle pt versus originating parton type
100   TH2F      * fhPtPartonTypeNearPi0[2][4];              //! Leading pi0, particle pt versus originating parton type
101   TH2F      * fhPtPartonTypeNearPhotonIsolated[2][4];   //! Leading photon, particle pt versus originating parton type
102   TH2F      * fhPtPartonTypeNearPi0Isolated[2][4];      //! Leading pi0, particle pt versus originating parton type
103   
104   TH2F      * fhPtPartonTypeAwayPhoton[2][4];           //! Leading photon, particle pt versus away side parton type
105   TH2F      * fhPtPartonTypeAwayPi0[2][4];              //! Leading pi0, particle pt versus away side parton type
106   TH2F      * fhPtPartonTypeAwayPhotonIsolated[2][4];   //! Leading photon, isolated, particle pt versus away side parton type 
107   TH2F      * fhPtPartonTypeAwayPi0Isolated[2][4];      //! Leading pi0, isolated, particle pt versus away side parton type
108   
109   TH2F      * fhZHardPhoton[2][4];           //! Leading photon, zHard
110   TH2F      * fhZHardPi0[2][4];              //! Leading pi0, zHard
111   TH2F      * fhZHardPhotonIsolated[2][4];   //! Leading photon, isolated, zHard
112   TH2F      * fhZHardPi0Isolated[2][4];      //! Leading pi0, isolated, zHard
113   
114   TH2F      * fhZPartonPhoton[2][4];         //! Leading photon, zHard
115   TH2F      * fhZPartonPi0[2][4];            //! Leading pi0, zHard
116   TH2F      * fhZPartonPhotonIsolated[2][4]; //! Leading photon, isolated, zHard
117   TH2F      * fhZPartonPi0Isolated[2][4];    //! Leading pi0, isolated, zHard
118
119   TH2F      * fhZJetPhoton[2][4];            //! Leading photon, zHard
120   TH2F      * fhZJetPi0[2][4];               //! Leading pi0, zHard
121   TH2F      * fhZJetPhotonIsolated[2][4];    //! Leading photon, isolated, zHard
122   TH2F      * fhZJetPi0Isolated[2][4];       //! Leading pi0, isolated, zHard
123   
124   TH2F      * fhXEPhoton[2][4];              //! Leading photon, xE away side
125   TH2F      * fhXEPi0[2][4];                 //! Leading pi0, xE away side
126   TH2F      * fhXEPhotonIsolated[2][4];      //! Leading photon, xE away side
127   TH2F      * fhXEPi0Isolated[2][4];         //! Leading pi0, isolated, xE away side
128   
129   TH2F      * fhXEUEPhoton[2][4];              //! Leading photon, xE away side
130   TH2F      * fhXEUEPi0[2][4];                 //! Leading pi0, xE away side
131   TH2F      * fhXEUEPhotonIsolated[2][4];      //! Leading photon, xE away side
132   TH2F      * fhXEUEPi0Isolated[2][4];         //! Leading pi0, isolated, xE away side
133   
134   AliAnaGeneratorKine              (const AliAnaGeneratorKine & gk) ; // cpy ctor
135   AliAnaGeneratorKine & operator = (const AliAnaGeneratorKine & gk) ; // cpy assignment
136   
137   ClassDef(AliAnaGeneratorKine,3)
138   
139 } ;
140
141
142 #endif //ALIANAGENERATORKINE_H
143
144
145