]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGJE/AliAnalysisTaskJetServices.h
fix from Salvatore
[u/mrichter/AliRoot.git] / PWGJE / AliAnalysisTaskJetServices.h
1 #ifndef ALIANALYSISTASKJETSERVICES_H
2 #define ALIANALYSISTASKJETSERVICES_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 determiantion of reconstructed jet spectra
9 // Compares input (gen) and output (rec) jets   
10 // *******************************************
11
12 #include  "AliAnalysisTaskSE.h"
13 #include  "THnSparse.h" // cannot forward declare ThnSparseF
14
15 ////////////////
16 class AliJetHeader;
17 class AliESDEvent;
18 class AliESDVertex;
19 class AliAODEvent;
20 class AliAODVertex;
21 class AliAODVZERO;
22 class AliAODJet;
23 class AliGenPythiaEventHeader;
24 class AliCFManager;
25 class AliTriggerAnalysis;
26
27 class TList;
28 class TClonesArray;
29 class TObjArray;
30 class TChain;
31 class TH1F;
32 class TH2F;
33 class TH3F;
34 class TProfile;
35 class TRandom3;
36
37
38
39 class AliAnalysisTaskJetServices : public AliAnalysisTaskSE
40 {
41  public:
42     AliAnalysisTaskJetServices();
43     AliAnalysisTaskJetServices(const char* name);
44     virtual ~AliAnalysisTaskJetServices();
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 void SetZVertexCut(Float_t f){fVtxZCut = f;}
52     virtual void SetPtMinCosmic(Float_t ptMin) {fPtMinCosmic = ptMin;}
53     virtual void SetRMinCosmic(Float_t rMin) {fRIsolMinCosmic = rMin;}
54     virtual void SetMaxCosmicAngle(Float_t angle)   {fMaxCosmicAngle = angle;}
55     virtual Bool_t Notify();
56
57     virtual void SetAODInput(Bool_t b){fUseAODInput = b;}
58     virtual void SetRunRange(Float_t fLo,Float_t fUp){fRunRange[0] = fLo;fRunRange[1] = fUp;}
59     virtual void SetMCData(Bool_t b){fMC = b;}
60     virtual void SetCollisionType(Int_t iType){fCollisionType = iType;}
61     virtual void SetUsePhysicsSelection(Bool_t b){fUsePhysicsSelection = b;}
62     virtual void SetPhysicsSelectionFlag(Int_t i){fPhysicsSelectionFlag = i;}
63     virtual void SetFilterAODCollisions(Bool_t b){fFilterAODCollisions = b;}
64
65     virtual void SetNonStdFile(char *c){fNonStdFile = c;}
66     Bool_t IsEventSelected(const AliESDEvent* esd);
67     Bool_t IsEventSelected(const AliAODEvent* aod) const;
68
69     Bool_t IsEventPileUp(const AliESDEvent* esd) const;
70
71     Bool_t IsEventCosmic(const AliESDEvent* esd) const;
72
73     Bool_t IsVertexValid(const AliESDVertex *vtx);
74     Bool_t IsVertexValid(const AliAODVertex *vtx) const;
75
76     Bool_t IsVertexIn(const AliESDVertex *vtx);
77     Bool_t IsVertexIn(const AliAODVertex *vtx) const;
78     Int_t GetEventClass(AliESDEvent *esd);
79     Int_t GetEventClass(AliAODEvent *aod);
80
81
82     virtual void SetFilterMask(UInt_t i){fFilterMask = i;}
83     virtual void SetMinTrackPt(Float_t f){fMinTrackPt = f;}
84     virtual void SetTrackEtaWindow(Float_t f){fTrackRecEtaWindow = f;}
85     virtual void SetRPMethod(Int_t i){fRPMethod = i;}
86     virtual void SetV0Centroids(TProfile *xa,TProfile *ya,
87                                TProfile *xc,TProfile *yc);
88
89     virtual void SetNTrigger(Int_t n);
90     virtual void SetTrigger(Int_t i,UInt_t it,const char* c = "");
91
92
93     Bool_t   CalculateReactionPlaneAngleVZERO(AliAODEvent *aod);
94     Int_t   GetListOfTracks(TList *list);
95
96
97     enum { kAllTriggered = 0,
98            kTriggeredVertex,          //1
99            kTriggeredVertexIn,        //2
100            kSelectedALICE,            //3
101            kSelectedALICEVertexValid, //4
102            kSelectedALICEVertexIn,    //5
103            kSelected,                 //6
104            kConstraints};             //7
105     enum { kRPTracks = 0, kRPVZEROA,kRPVZEROC,kRPMethods};
106
107     enum { kNoEventCut=1<<0,
108            kPhysicsSelectionCut=1<<1,
109            kContributorsCut1=1<<2,
110            kContributorsCut2=1<<3,
111            kContributorsCut3=1<<4,
112            kVertexTPC=1<<5,
113            kVertexSPD=1<<6,
114            kVertexGlobal=1<<7,
115            kSPDDispersionCut=1<<8,
116            kVertexZCut=1<<9,
117            kVertexRCut=1<<10,
118            kTotalEventCuts=(1<<11)-1};
119     enum {kPbPb = 0,kPP,kPbP};
120
121  private:
122
123     AliAnalysisTaskJetServices(const AliAnalysisTaskJetServices&);
124     AliAnalysisTaskJetServices& operator=(const AliAnalysisTaskJetServices&);
125
126     Bool_t        fUseAODInput;        // take jet from input AOD not from ouptu AOD
127     Bool_t        fUsePhysicsSelection;// decide wether we take into account physicsselction task
128     Bool_t        fMC;                 // true for MC data to allow correct trigger slection
129     Bool_t        fFilterAODCollisions; // filter out collision canditates to the AOD
130     UInt_t        fPhysicsSelectionFlag; // defines the glag for acceptance of events from physics selection
131     UInt_t        fSelectionInfoESD;   // slection info bit mask
132     UInt_t        fEventCutInfoESD;   // event selection info of what is cutted after physics selection
133     UInt_t        fFilterMask;         // filter bit for slecected tracks
134     Int_t         fRPMethod;           // method for subevent calculation
135     Int_t         fCollisionType;      // type of collisions
136     Int_t         fNTrigger;           // Number of different triggers
137     Float_t       fAvgTrials;          // Average number of trials
138     Float_t       fVtxXMean;           // mean x for cuts
139     Float_t       fVtxYMean;           // mean y for cuts
140     Float_t       fVtxZMean;           // mean z for cuts
141     Float_t       fVtxRCut;            // vtx cut in R
142     Float_t       fVtxZCut;            // vtzx cut in Z
143     Float_t       fPtMinCosmic;        // Minimum pT to be considered as cosmic candidate
144     Float_t       fRIsolMinCosmic;     // Minimum R = sqrt{deltaPhi^2 + deltaEta^2} to be considered as cosmic candidate
145     Float_t       fMaxCosmicAngle;     // Max deviation from pi (angle between two tracks) in case of cosmic candidate
146     Float_t       fRunRange[2];        // only important for real data for 
147     Float_t       fCentrality;         // ! centrality
148     Float_t       fTrackRecEtaWindow;  // eta window for rec tracks
149     Float_t       fMinTrackPt;         // limits the track p_T 
150     Float_t       fRPAngle;            // ! RP angle of the reaction plane
151     Float_t       fPsiVZEROA;          // ! RP angle from vzeroa
152     Float_t       fPsiVZEROC;          // ! RP angle from vzeroc
153     UInt_t        *fTriggerBit  ;      //[fNTrigger]
154
155     TRandom3      *fRandomizer;        // ! randomizer
156
157     TString       fNonStdFile;         // outputName for replication
158     TString       *fTriggerName;  //[fNTrigger] array of trigger names
159     TProfile*     fh1Xsec;             //! pythia cross section is averaged
160     TH1F*         fh1Trials;           //! trials are added per notify...
161     TH1F*         fh1AvgTrials;        //! average trials are added per event
162     TH1F*         fh1PtHard;           //! Pt har of the event...       
163     TH1F*         fh1PtHardTrials;     //! Number of trials 
164     TH1F*         fh1SelectionInfoESD; //! Masks that satisfy fSelectionInfo
165     TH1F*         fh1EventCutInfoESD;  //! Masks that satisfy fSelectionInfo
166     TH1F*         fh1CentralityESD;    //! centrality 
167     TH1F*         fh1Centrality;       //! centrality 
168     TH1F*         fh1RP;               //! RP distribution
169     TH2F*         fh2ReducedTrigger;   //! reduced trigger count 
170     TH2F*         fh2CentralityTriggerESD;    //! centrality 
171     TH2F*         fh2CentralityTrigger;       //! centrality 
172     TH2F*         fh2TriggerCount;     //! number of fire triggers in each case
173     TH2F*         fh2ESDTriggerCount;  //! number of fire triggers in each case
174     TH2F*         fh2TriggerVtx;       //! vtx. position vs. trigger decision
175     TH2F*         fh2ESDTriggerVtx;    //! vtx. position vs. trigger decision 
176     TH2F*         fh2ESDTriggerRun;    //! fired triggers vs. run number
177     TH2F*         fh2VtxXY;            //! XY position of VTX were available
178     TH1F*         fh1NCosmicsPerEvent; //! Number of coscmic candidates found in event
179     TProfile*     fp1RPXA;              //! mean XA vs run
180     TProfile*     fp1RPYA;              //! mean YA vs run
181     TProfile*     fp1RPXC;              //! mean XA vs run
182     TProfile*     fp1RPYC;              //! mean YA vs run
183     TProfile*     fp1CalibRPXA;              // calib mean XA vs run
184     TProfile*     fp1CalibRPYA;              // calib YA vs run
185     TProfile*     fp1CalibRPXC;              // calib XA vs run
186     TProfile*     fp1CalibRPYC;              // calib YA vs run
187     TH2F*         fh2RPAC;              //! RP A vs C 
188     TH2F*         fh2RPAT;              //! RP A vs tracks 
189     TH2F*         fh2RPCT;              //! RP C vs tracks 
190     TH2F*         fh2XYA;               //! XY correlations VZERO C
191     TH2F*         fh2XYC;               //! XY correlations VZERO C
192     TH2F*         fh2RPCentrality;      //! RP vs centrality
193     TH2F*         fh2RPACentrality;     //! RP vs centrality
194     TH2F*         fh2RPCCentrality;     //! RP vs centrality
195
196     AliTriggerAnalysis *fTriggerAnalysis; //! Trigger Analysis to get the background rates etc.
197     TList *fHistList; //! Output list
198
199         // Provisions for replication
200     static AliAODHeader*    fgAODHeader;        //! Header for replication
201     static AliAODVZERO*    fgAODVZERO;        //! vzero for replication
202     static TClonesArray*  fgAODVertices;        //! primary vertex for replication
203     ClassDef(AliAnalysisTaskJetServices,16)
204 };
205  
206 #endif