]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG3/hfe/AliHFEvarManager.h
Major update of the HFE package (comments inside the code
[u/mrichter/AliRoot.git] / PWG3 / hfe / AliHFEvarManager.h
CommitLineData
3a72645a 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// Class AliHFEvarManager
17// Common place for definiton of variables to be filled into the
18// correction framework container
19// More information can be found inside the implementation file
20//
21#ifndef ALIHFEVARMANAGER_H
22#define ALIHFEVARMANAGER_H
23
24#ifndef ROOT_TNamed
25#include <TNamed.h>
26#endif
27
28template <class X>
29class THnSparseT;
30class TArrayF;
31typedef class THnSparseT<TArrayF> THnSparseF;
32class TH3F;
33class TF3;
34class AliCFContainer;
35class AliHFEcontainer;
36class AliHFEsignalCuts;
37class AliVParticle;
38
39
40class AliHFEvarManager : public TNamed{
41public:
42 enum EVarCode_t{
43 kPt = 1,
44 kEta,
45 kPhi,
46 kCharge,
47 kSource,
48 kCentrality,
49 kSpecies,
50 };
51 AliHFEvarManager();
52 AliHFEvarManager(const Char_t *name);
53 AliHFEvarManager(const AliHFEvarManager &ref);
54 AliHFEvarManager &operator=(const AliHFEvarManager &ref);
55 void Copy(TObject &o) const;
56 ~AliHFEvarManager();
57
58 void SetOwner(Bool_t owner = kTRUE) { SetBit(kOwner, owner); }
59 Bool_t IsOwner() const { return TestBit(kOwner); }
60
61 void AddVariable(TString name);
62 void DefineVariables(AliHFEcontainer *cont);
63 void NewTrack(AliVParticle *track, AliVParticle *mcTrack = NULL, Float_t centrality = 99.0, Int_t aprioriPID = -1, Bool_t signal = kTRUE);
64 Bool_t IsSignalTrack() const { return fSignalTrack; }
65 void FillContainer(AliCFContainer *cont, Int_t step, Bool_t useMC = kFALSE) const;
66 void FillContainer(AliHFEcontainer *cont, const Char_t *contname, UInt_t step, Bool_t useMC = kFALSE, Double_t externalWeight = 1.) const;
67 void FillContainerStepname(AliHFEcontainer *cont, const Char_t *contname, const Char_t *step, Bool_t useMC = kFALSE, Double_t externalWeight = 1.) const;
68 void FillCorrelationMatrix(THnSparseF *matrix) const;
69
70 void SetSignalCuts(AliHFEsignalCuts *signal) { fSignal = signal; }
71 void SetWeightFactors(TH3F *weightFactors);
72 void SetWeightFactorsFunction(TF3*weightFactorsFunction);
73
74 struct AliHFEvariable : public TNamed{
75 public:
76 AliHFEvariable();
77 AliHFEvariable(const Char_t *name, const Char_t *title, UInt_t fCode, UInt_t nBins, Double_t min, Double_t max, Bool_t isLogarithmic = kFALSE);
78 AliHFEvariable(const AliHFEvariable &ref);
79 AliHFEvariable &operator=(const AliHFEvariable &ref);
80 ~AliHFEvariable(){}
81
82 UInt_t GetVarCode() const { return fCode; }
83 UInt_t GetNumberOfBins() const { return fNBins; }
84 Double_t GetMinimum() const { return fMin; }
85 Double_t GetMaximum() const { return fMax; }
86 Int_t IsLogarithmic() const { return fIsLogarithmic; }
87 private:
88 UInt_t fCode; // Unique variable code
89 UInt_t fNBins; // Number of bins
90 Double_t fMin; // Minimum
91 Double_t fMax; // Maximum
92 Bool_t fIsLogarithmic; // Logarithmic binning
93
94 ClassDef(AliHFEvarManager::AliHFEvariable, 1) // HFE variable definition
95 };
96
97protected:
98 Double_t GetValue(AliVParticle *track, UInt_t code, Float_t centrality = 99.0, Int_t aprioriPID = -1) const;
99 void FillArray(AliVParticle *track, Double_t *container, Float_t centrality = 99.0, Int_t aprioriPID = -1) const;
100 Double_t FindWeight(Double_t pt, Double_t eta, Double_t phi) const;
101
102private:
103 enum{
104 kOwner = BIT(14)
105 };
106 TObjArray *fVariables; // Variables to process
107 Double_t *fContent; //! Cache values for track in classmember
108 Double_t *fContentMC; //! Cache content of the asssociated MC track in class member
109 Double_t fWeightFactor; // Cache weighting factor
110 Bool_t fSignalTrack; // Signal Track
111 Bool_t fWeighting; // Weighting or not for the efficiency maps
112 AliHFEsignalCuts *fSignal; // MC Signal Definition
113 TH3F *fWeightFactors; // Weight factors
114 TF3 *fWeightFactorsFunction; // Weight factors
115
116 ClassDef(AliHFEvarManager, 1) // The variable Manager for the HFE Analysis
117};
118
119#endif /* ALIHFEVARMANAGER_H */