]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGLF/STRANGENESS/Cascades/AliAnalysisTaskExtractCascade.h
Added extra control histograms for V0A, ZNA, TRK, SPD centrality estimators. Added...
[u/mrichter/AliRoot.git] / PWGLF / STRANGENESS / Cascades / AliAnalysisTaskExtractCascade.h
CommitLineData
76029adc 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
17//
18// Modified version of AliAnalysisTaskCheckCascade.h
19// Used bits of code from AliAnalysisTaskCheckPerformanceStrange
20//
21// --- David Dobrigkeit Chinellato
22//
23// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
24
25#ifndef ALIANALYSISTASKEXTRACTCASCADE_H
26#define ALIANALYSISTASKEXTRACTCASCADE_H
27
28class TList;
29class TH1F;
30class TH2F;
31class TH3F;
32class TVector3;
33class THnSparse;
34
35class AliESDpid;
36class AliESDtrackCuts;
37class AliESDEvent;
38class AliPhysicsSelection;
39class AliCFContainer;
40
41//#include "TString.h"
42//#include "AliESDtrackCuts.h"
43#include "AliAnalysisTaskSE.h"
44
45class AliAnalysisTaskExtractCascade : public AliAnalysisTaskSE {
46 public:
47 AliAnalysisTaskExtractCascade();
48 AliAnalysisTaskExtractCascade(const char *name);
49 virtual ~AliAnalysisTaskExtractCascade();
50
51 virtual void UserCreateOutputObjects();
52 virtual void UserExec(Option_t *option);
53 virtual void Terminate(Option_t *);
54 Double_t MyRapidity(Double_t rE, Double_t rPz) const;
55
56 void SetIsNuclear (Bool_t lIsNuclear = kTRUE ) { fkIsNuclear = lIsNuclear; }
2213f6fc 57 void SetINT7Trigger (Bool_t lSwitchINT7 = kTRUE ) { fkSwitchINT7 = lSwitchINT7; }
da3539d8 58 void SetCentralityEstimator (TString lCentralityEstimator = "V0M" ) { fCentralityEstimator = lCentralityEstimator; }
76029adc 59
60 private:
61 // Note : In ROOT, "//!" means "do not stream the data from Master node to Worker node" ...
62 // your data member object is created on the worker nodes and streaming is not needed.
63 // http://root.cern.ch/download/doc/11InputOutput.pdf, page 14
64 TList *fListHist; //! List of Cascade histograms
65 TTree *fTreeCascade; //! Output Tree, Cascades
66
67 //Objects that have to be streamed:
68 AliPIDResponse *fPIDResponse; // PID response object
69 AliESDtrackCuts *fESDtrackCuts; // ESD track cuts used for primary track definition
70
71 //Objects Controlling Task Behaviour
72 // (have to be streamed too or configuration is lost)
73
74 Bool_t fkIsNuclear; //if true, replace multiplicity est. by centrality (default FALSE)
2213f6fc 75 Bool_t fkSwitchINT7; //if true, skip FASTOnly (default FALSE)
da3539d8 76 TString fCentralityEstimator; //Centrality Estimator String value (default V0M)
76029adc 77
d8841e95 78 Double_t fV0Sels[7]; // Array to store the 7 values for the different selections V0 related
79 Double_t fCascSels[8]; // Array to store the 8 values for the different selections Casc. related
80
76029adc 81//===========================================================================================
82// Variables for tree, cascades
83//===========================================================================================
84
85 Int_t fTreeCascVarCharge; //!
86 Float_t fTreeCascVarMassAsXi; //!
87 Float_t fTreeCascVarMassAsOmega; //!
88 Float_t fTreeCascVarPt; //!
89 Float_t fTreeCascVarPtMC; //!
90 Float_t fTreeCascVarRapMC; //!
91 Float_t fTreeCascVarRapXi; //!
92 Float_t fTreeCascVarRapOmega; //!
93 Float_t fTreeCascVarNegEta; //!
94 Float_t fTreeCascVarPosEta; //!
95 Float_t fTreeCascVarBachEta; //!
96 Float_t fTreeCascVarDCACascDaughters; //!
97 Float_t fTreeCascVarDCABachToPrimVtx; //!
98 Float_t fTreeCascVarDCAV0Daughters; //!
99 Float_t fTreeCascVarDCAV0ToPrimVtx; //!
100 Float_t fTreeCascVarDCAPosToPrimVtx; //!
101 Float_t fTreeCascVarDCANegToPrimVtx; //!
102 Float_t fTreeCascVarCascCosPointingAngle; //!
103 Float_t fTreeCascVarCascRadius; //!
104 Float_t fTreeCascVarV0Mass; //!
105 Float_t fTreeCascVarV0CosPointingAngle; //!
106 Float_t fTreeCascVarV0Radius; //!
107 Int_t fTreeCascVarLeastNbrClusters; //!
108 Int_t fTreeCascVarMultiplicity; //!
109 Float_t fTreeCascVarDistOverTotMom; //!
110 Int_t fTreeCascVarPID; //!
111 Int_t fTreeCascVarPIDBachelor; //!
112 Int_t fTreeCascVarPIDNegative; //!
113 Int_t fTreeCascVarPIDPositive; //!
114 Float_t fTreeCascVarPosTransMom; //!
115 Float_t fTreeCascVarNegTransMom; //!
116 Float_t fTreeCascVarPosTransMomMC; //!
117 Float_t fTreeCascVarNegTransMomMC; //!
118
119 Float_t fTreeCascVarNegNSigmaPion; //!
120 Float_t fTreeCascVarNegNSigmaProton; //!
121 Float_t fTreeCascVarPosNSigmaPion; //!
122 Float_t fTreeCascVarPosNSigmaProton; //!
123 Float_t fTreeCascVarBachNSigmaPion; //!
124 Float_t fTreeCascVarBachNSigmaKaon; //!
125
126//===========================================================================================
127// Histograms
128//===========================================================================================
129
130 TH1F *fHistV0MultiplicityBeforeTrigSel; //! V0 multiplicity distribution
131 TH1F *fHistV0MultiplicityForTrigEvt; //! V0 multiplicity distribution
132 TH1F *fHistV0MultiplicityForSelEvt; //! V0 multiplicity distribution
133 TH1F *fHistV0MultiplicityForSelEvtNoTPCOnly; //! V0 multiplicity distribution
134 TH1F *fHistV0MultiplicityForSelEvtNoTPCOnlyNoPileup; //! V0 multiplicity distribution
135
136 TH1F *fHistMultiplicityBeforeTrigSel; //! multiplicity distribution
137 TH1F *fHistMultiplicityForTrigEvt; //! multiplicity distribution
138 TH1F *fHistMultiplicity; //! multiplicity distribution
139 TH1F *fHistMultiplicityNoTPCOnly; //! multiplicity distribution
140 TH1F *fHistMultiplicityNoTPCOnlyNoPileup; //! multiplicity distribution
141
142//---> Generated Histograms
143
144 TH1F *fHistPVx; //! PVx distrib
145 TH1F *fHistPVy; //! PVy distrib
146 TH1F *fHistPVz; //! PVz distrib
147 TH1F *fHistPVxAnalysis; //! PVx distrib
148 TH1F *fHistPVyAnalysis; //! PVy distrib
149 TH1F *fHistPVzAnalysis; //! PVz distrib
150
151 AliAnalysisTaskExtractCascade(const AliAnalysisTaskExtractCascade&); // not implemented
152 AliAnalysisTaskExtractCascade& operator=(const AliAnalysisTaskExtractCascade&); // not implemented
153
154 ClassDef(AliAnalysisTaskExtractCascade, 11);
155};
156
157#endif