]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG3/vertexingHF/AliCFHeavyFlavourTaskMultiVarMultiStep.h
Updates to run with deltas (L. Cunqueiro)
[u/mrichter/AliRoot.git] / PWG3 / vertexingHF / AliCFHeavyFlavourTaskMultiVarMultiStep.h
1 #ifndef ALICFHEAVYFLAVOURTASKMULTIVARMULTISTEP_H
2 #define ALICFHEAVYFLAVOURTASKMULTIVARMULTISTEP_H
3 /**************************************************************************
4  * Copyright(c) 1998-2009, ALICE Experiment at CERN, All rights reserved. *
5  *                                                                        *
6  * Author: The ALICE Off-line Project.                                    *
7  * Contributors are mentioned in the code where appropriate.              *
8  *                                                                        *
9  * Permission to use, copy, modify and distribute this software and its   *
10  * documentation strictly for non-commercial purposes is hereby granted   *
11  * without fee, provided that the above copyright notice appears in all   *
12  * copies and that both the copyright notice and this permission notice   *
13  * appear in the supporting documentation. The authors make no claims     *
14  * about the suitability of this software for any purpose. It is          *
15  * provided "as is" without express or implied warranty.                  *
16  **************************************************************************/
17
18 /* $Id$ */ 
19
20 //-----------------------------------------------------------------------
21 // Class for HF corrections as a function of many variables and step 
22 // Author : C. Zampolli, CERN
23 // Base class for HF Unfolding - agrelli@uu.nl
24 //-----------------------------------------------------------------------
25
26
27 #include "AliAnalysisTaskSE.h"
28
29 class TH1I;
30 class TParticle ;
31 class TFile ;
32 class TClonesArray ;
33 class AliCFManager;
34 class AliAODRecoDecay;
35 class AliAODRecoDecayHF2Prong;
36 class AliAODMCParticle;
37 class THnSparse;
38 class AliRDHFCutsD0toKpi;
39
40 class AliCFHeavyFlavourTaskMultiVarMultiStep : public AliAnalysisTaskSE {
41   public:
42
43   enum {
44     kStepGeneratedLimAcc = 0,
45     kStepGenerated       = 1,
46     kStepAcceptance      = 2,
47     kStepVertex          = 3,
48     kStepRefit           = 4,
49     kStepReconstructed   = 5,
50     kStepRecoAcceptance  = 6,
51     kStepRecoITSClusters = 7,
52     kStepRecoPPR         = 8,
53     kStepRecoPID         = 9
54   };
55
56   AliCFHeavyFlavourTaskMultiVarMultiStep();
57   AliCFHeavyFlavourTaskMultiVarMultiStep(const Char_t* name, AliRDHFCutsD0toKpi* cuts);
58   AliCFHeavyFlavourTaskMultiVarMultiStep& operator= (const AliCFHeavyFlavourTaskMultiVarMultiStep& c);
59   AliCFHeavyFlavourTaskMultiVarMultiStep(const AliCFHeavyFlavourTaskMultiVarMultiStep& c);
60   virtual ~AliCFHeavyFlavourTaskMultiVarMultiStep();
61
62   // ANALYSIS FRAMEWORK STUFF to loop on data and fill output objects
63   void     UserCreateOutputObjects();
64   void     UserExec(Option_t *option);
65   void     Init();
66   void     LocalInit() {Init();}
67   void     Terminate(Option_t *);
68
69  // UNFOLDING
70   void     SetCorrelationMatrix(THnSparse* h) {fCorrelation=h;}
71   void     SetAcceptanceUnf(Bool_t AcceptanceUnf) {fAcceptanceUnf = AcceptanceUnf;}
72   Bool_t   GetAcceptanceUnf() const {return fAcceptanceUnf;}
73
74   
75   // CORRECTION FRAMEWORK RELATED FUNCTIONS
76   void           SetCFManager(AliCFManager* io) {fCFManager = io;}   // global correction manager
77   AliCFManager * GetCFManager()                 {return fCFManager;} // get corr manager
78
79   void     SetPDG(Int_t code) {fPDG = code; }     // defines the PDG code of searched HF
80   Double_t CosThetaStar(const AliAODMCParticle* mcPart, const AliAODMCParticle* mcPartDaughter0, const AliAODMCParticle* mcPartDaughter1) const;  // returns cos(ThetaStar) of the D0 decay
81   Double_t CT(const AliAODMCParticle* mcPart, const AliAODMCParticle* mcPartDaughter0, const AliAODMCParticle* mcPartDaughter1) const;            // returns cT of the D0 decay
82   void     SetFillFromGenerated(Bool_t flag) {fFillFromGenerated = flag;}
83   Bool_t   GetFillFromGenerated() const {return fFillFromGenerated;}
84   Bool_t   GetGeneratedValuesFromMCParticle(AliAODMCParticle* mcPart, const TClonesArray* mcArray, Double_t* vectorMC) const;
85   void     SetMinITSClusters(Int_t minITSClusters) {fMinITSClusters = minITSClusters;}
86   Int_t    GetMinITSClusters() const {return fMinITSClusters;}
87   Int_t    CheckOrigin(const AliAODMCParticle* mcPart, const TClonesArray* mcArray) const;
88
89   void SetKeepD0fromB(Bool_t keepD0fromB) {fKeepD0fromB=keepD0fromB;}
90   Bool_t GetKeepD0fromB() const {return fKeepD0fromB;}
91   void SetKeepD0fromBOnly(Bool_t keepD0fromBOnly){ fKeepD0fromBOnly=keepD0fromBOnly; }
92   Bool_t GetKeepD0fromBOnly() const { return fKeepD0fromBOnly;}
93   void SetUseWeight(Bool_t useWeight){fUseWeight=useWeight;}
94   Bool_t GetUseWeight() const {return fUseWeight;}
95   Double_t GetWeight(Float_t pt);
96   Double_t DodNdptFit(Float_t pt, const Double_t* par) const;
97   void SetSign(Char_t isSign) {fSign = isSign;}
98   Char_t GetSign() const {return fSign;}
99
100  protected:
101   Int_t           fPDG;         //  PDG code of searched V0's
102   AliCFManager   *fCFManager;   //  pointer to the CF manager
103   TH1I *fHistEventsProcessed;   //! simple histo for monitoring the number of events processed
104   THnSparse* fCorrelation;      //  response matrix for unfolding
105   Int_t fCountMC;               //  MC particle found
106   Int_t fCountAcc;              //  MC particle found that satisfy acceptance cuts
107   Int_t fCountVertex;       //  Reco particle found that satisfy vertex constrained
108   Int_t fCountRefit;        //  Reco particle found that satisfy kTPCrefit and kITSrefit
109   Int_t fCountReco;             //  Reco particle found that satisfy cuts
110   Int_t fCountRecoAcc;          //  Reco particle found that satisfy cuts in requested acceptance
111   Int_t fCountRecoITSClusters;  //  Reco particle found that satisfy cuts in n. of ITS clusters
112   Int_t fCountRecoPPR;          //  Reco particle found that satisfy cuts in PPR
113   Int_t fCountRecoPID;          //  Reco particle found that satisfy cuts in PPR, and PID condition
114   Int_t fEvents;                //  n. of events
115   Bool_t fFillFromGenerated;    //  flag to indicate whether data container should be filled 
116                                 //  with generated values also for reconstructed particles
117   Int_t fMinITSClusters;        //  min n. of ITS clusters for RecoDecay
118   Bool_t fAcceptanceUnf;        //  flag for unfolding before or after cuts.
119
120   Bool_t fKeepD0fromB;          // flag to consider also D0 coming from B
121   Bool_t fKeepD0fromBOnly;      // flag to consider _only_ D0 coming from B
122   AliRDHFCutsD0toKpi* fCuts;    // cuts
123   Bool_t fUseWeight;            // flag to decide whether to use weights != 1 when filling the container or not
124   Double_t fWeight;             // weight used to fill the container
125   Char_t fSign;                 // flag to decide wheter to keep D0 only (0), D0bar only (1), or both D0 and D0bar (2)
126   
127   ClassDef(AliCFHeavyFlavourTaskMultiVarMultiStep,7); // class for HF corrections as a function of many variables
128 };
129
130 #endif