]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGJE/EMCALJetTasks/AliJetModelBaseTask.h
From Salvatore:
[u/mrichter/AliRoot.git] / PWGJE / EMCALJetTasks / AliJetModelBaseTask.h
CommitLineData
762e8424 1#ifndef ALIJETMODELBASETASK_H
2#define ALIJETMODELBASETASK_H
3
4// $Id$
5
6class TClonesArray;
7class AliEMCALGeometry;
8class AliVCluster;
9class AliPicoTrack;
b16bb001 10class AliVCaloCells;
787a3c4f 11class AliAODMCParticle;
5be3857d 12class AliNamedArrayI;
43032ce2 13class TF2;
65bb5510 14
15#include <TH1F.h>
16#include <TF1.h>
762e8424 17
18#include "AliAnalysisTaskSE.h"
19
20class AliJetModelBaseTask : public AliAnalysisTaskSE {
21 public:
22 AliJetModelBaseTask();
b16bb001 23 AliJetModelBaseTask(const char *name, Bool_t drawqa=kFALSE);
762e8424 24 virtual ~AliJetModelBaseTask();
25
ffe32451 26 void UserExec(Option_t* /*option*/);
b16bb001 27 void UserCreateOutputObjects();
762e8424 28
a825589f 29 void SetEtaRange(Float_t min, Float_t max) { fEtaMin = min; fEtaMax = max; }
a825589f 30 void SetPhiRange(Float_t min, Float_t max) { fPhiMin = min; fPhiMax = max; }
43032ce2 31 void SetPtRange(Float_t min, Float_t max) { fPtMin = min; fPtMax = max; }
65bb5510 32 void SetPtSpectrum(TH1 *f) { fPtSpectrum = f; }
27f77648 33 void SetPtSpectrum(TF1 *f) { fPtSpectrum = new TH1F("ptSpectrum","ptSpectrum",1000,f->GetXmin(),f->GetXmax());
65bb5510 34 fPtSpectrum->Add(f); }
43032ce2 35 void SetPtPhiEvPlDistribution(TF2 *f) { fPtPhiEvPlDistribution = f; }
27f77648 36 void SetDensitySpectrum(TH1 *f) { fDensitySpectrum = f; }
37 void SetDensitySpectrum(TF1 *f) { fDensitySpectrum = new TH1F("densitypectrum","densitypectrum",1000,f->GetXmin(),f->GetXmax());
38 fDensitySpectrum->Add(f); }
b16bb001 39
4358e58a 40 void SetMC(Bool_t a) { fIsMC = a ; }
41
b16bb001 42 void SetCopyArray(Bool_t copy) { fCopyArray = copy; }
a825589f 43 void SetTracksName(const char *n) { fTracksName = n; }
b16bb001 44 void SetClusName(const char *n) { fCaloName = n; }
45 void SetCellsName(const char *n) { fCellsName = n; }
787a3c4f 46 void SetMCParticlesName(const char *n) { fMCParticlesName = n; }
b16bb001 47 void SetSuffix(const char *s) { fSuffix = s; }
48
49 void SetGeometryName(const char *n) { fGeomName = n; }
f660c2d6 50 void SetMarkMC(Int_t m) { fMarkMC = m; }
b16bb001 51 virtual void SetNClusters(Int_t n) { fNClusters = n; }
52 virtual void SetNCells(Int_t n) { fNCells = n; }
53 virtual void SetNTracks(Int_t n) { fNTracks = n; }
54
762e8424 55
56 protected:
b16bb001 57 Int_t SetNumberOfOutCells(Int_t n); // set the number of cells
58 Int_t AddCell(Double_t e = -1, Double_t eta = -999, Double_t phi = -1); // add a cell; if values are -1 generate random parameters
787a3c4f 59 Int_t AddCell(Double_t e, Int_t absId, Double_t time = 0, Int_t label=0); // add a cell with given energy, position and times
60 AliVCluster *AddCluster(Double_t e = -1, Double_t eta = -999, Double_t phi = -1, Int_t label=0); // add a cluster; if values are -1 generate random parameters
61 AliVCluster *AddCluster(Double_t e, Int_t absId, Int_t label=0); // add a cluster with given energy and position
507f74bc 62 AliVCluster *AddCluster(AliVCluster *oc); // add a cluster (copy)
6fd2f1a9 63 AliPicoTrack *AddTrack(Double_t pt = -1, Double_t eta = -999, Double_t phi = -1, Byte_t type=0,
56bd3193 64 Double_t etaemc=0, Double_t phiemc=0, Double_t ptemc=0, Bool_t ise=kFALSE,
6fd2f1a9 65 Int_t label=0, Short_t charge=1); // add a track; if values are -1 generate random parameters
787a3c4f 66 AliAODMCParticle *AddMCParticle(AliAODMCParticle *part, Int_t origIndex); // add a MC particle
b16bb001 67 void CopyCells();
e44e8726 68 void CopyClusters();
69 void CopyTracks();
787a3c4f 70 void CopyMCParticles();
ffe32451 71 void GetRandomCell(Double_t &eta, Double_t &phi, Int_t &absId); // generate a random cell in the calorimeter
2103dc6a 72 Double_t GetRandomEta(Bool_t emcal=kFALSE); // generate a random eta value in the given range
73 Double_t GetRandomPhi(Bool_t emcal=kFALSE); // generate a random phi value in the given range
ffe32451 74 Double_t GetRandomPt(); // generate a random pt value in the given range
43032ce2 75 void GetRandomParticle(Double_t &pt, Double_t &eta, Double_t &phi, Bool_t emcal=kFALSE); // generate a particle with random eta,phi,pt values
b16bb001 76 virtual Bool_t ExecOnce(); // intialize task
ffe32451 77 virtual void Run(); // do jet model action
762e8424 78
79 TString fGeomName; // EMCal geometry name
80 TString fTracksName; // name of track collection
81 TString fOutTracksName; // name of output track collection
82 TString fCaloName; // name of calo cluster collection
83 TString fOutCaloName; // name of output cluster collection
b16bb001 84 TString fCellsName; // name of calo cells collection
85 TString fOutCellsName; // name of output cells collection
787a3c4f 86 TString fMCParticlesName; // name of MC particle collection
87 TString fOutMCParticlesName; // name of output MC particle collection
4358e58a 88 Bool_t fIsMC; // whether the current event is MC or not
762e8424 89 TString fSuffix; // suffix to add in the name of new collections
90 Float_t fEtaMin; // eta minimum value
91 Float_t fEtaMax; // eta maximum value
92 Float_t fPhiMin; // phi minimum value
93 Float_t fPhiMax; // phi maximum value
94 Float_t fPtMin; // pt minimum value
95 Float_t fPtMax; // pt maximum value
96 Bool_t fCopyArray; // whether or not the array will be copied to a new one before modelling
97 Int_t fNClusters; // how many clusters are being processed
b16bb001 98 Int_t fNCells; // how many cells are being processed
762e8424 99 Int_t fNTracks; // how many tracks are being processed
f660c2d6 100 Int_t fMarkMC; // which MC label is to be used (default=100)
27f77648 101 TH1 *fPtSpectrum; // pt spectrum to extract random pt values
43032ce2 102 TF2 *fPtPhiEvPlDistribution; // pt vs. (phi-psi) distribution to extract random pt/phi values
27f77648 103 TH1 *fDensitySpectrum; // particle density spectrum to extract random density values
b16bb001 104 Bool_t fQAhistos; // draw QA histograms
43032ce2 105 Double_t fPsi; //!simmetry plane for the elliptic flow
4358e58a 106 Bool_t fIsInit; //!=true if initialized
762e8424 107 AliEMCALGeometry *fGeom; //!pointer to EMCal geometry
6fd2f1a9 108 Double_t fVertex[3]; //!event vertex
762e8424 109 TClonesArray *fClusters; //!cluster collection
110 TClonesArray *fOutClusters; //!output cluster collection
111 TClonesArray *fTracks; //!track collection
112 TClonesArray *fOutTracks; //!output track collection
b16bb001 113 AliVCaloCells *fCaloCells; //!cells collection
114 AliVCaloCells *fOutCaloCells; //!output cells collection
115 Int_t fAddedCells; //!number of added cells
787a3c4f 116 TClonesArray *fMCParticles; //!MC particles collection
5be3857d 117 AliNamedArrayI *fMCParticlesMap; //!MC particles mapping
787a3c4f 118 TClonesArray *fOutMCParticles; //!output MC particles collection
5be3857d 119 AliNamedArrayI *fOutMCParticlesMap; //!MC particles mapping
787a3c4f 120 Int_t fMCLabelShift; //!MC label shift
b16bb001 121 Bool_t fEsdMode; //!ESD/AOD mode
122 TList *fOutput; //!output list for QA histograms
762e8424 123
124 private:
125 AliJetModelBaseTask(const AliJetModelBaseTask&); // not implemented
126 AliJetModelBaseTask &operator=(const AliJetModelBaseTask&); // not implemented
127
43032ce2 128 ClassDef(AliJetModelBaseTask, 10) // Jet modelling task
762e8424 129};
130#endif