1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
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 **************************************************************************/
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
21 #ifndef ALIHFEVARMANAGER_H
22 #define ALIHFEVARMANAGER_H
35 typedef class THnSparseT<TArrayF> THnSparseF;
39 class AliHFEcontainer;
40 class AliHFEsignalCuts;
44 class AliHFEvarManager : public TNamed{
56 AliHFEvarManager(const Char_t *name);
57 AliHFEvarManager(const AliHFEvarManager &ref);
58 AliHFEvarManager &operator=(const AliHFEvarManager &ref);
59 void Copy(TObject &o) const;
62 TObjArray *GetVariables() const { return fVariables; }
64 void SetOwner(Bool_t owner = kTRUE) { SetBit(kOwner, owner); }
65 Bool_t IsOwner() const { return TestBit(kOwner); }
67 void AddVariable(TString name);
68 void AddVariable(TString name, Int_t nBins, Double_t min, Double_t max, Bool_t isLogarithmic = kFALSE);
69 void AddVariable(TString name, Int_t nBins, const Double_t *binning);
70 Bool_t IsVariableDefined(TString name);
71 void DefineVariables(AliHFEcontainer *cont);
72 void NewTrack(AliVParticle *track, AliVParticle *mcTrack = NULL, Float_t centrality = 99.0, Int_t aprioriPID = -1, Bool_t signal = kTRUE);
73 Bool_t IsSignalTrack() const { return fSignalTrack; }
74 void FillContainer(AliCFContainer *const cont, Int_t step, Bool_t useMC = kFALSE) const;
75 void FillContainer(const AliHFEcontainer *const cont, const Char_t *contname, UInt_t step, Bool_t useMC = kFALSE, Double_t externalWeight = 1.) const;
76 void FillContainerStepname(const AliHFEcontainer *const cont, const Char_t *contname, const Char_t *step, Bool_t useMC = kFALSE, Double_t externalWeight = 1.) const;
77 void FillCorrelationMatrix(THnSparseF *matrix) const;
79 void SetSignalCuts(AliHFEsignalCuts *signal) { fSignal = signal; }
80 void SetWeightFactors(TH3F *weightFactors);
81 void SetWeightFactorsFunction(TF3*weightFactorsFunction);
83 struct AliHFEvariable : public TNamed{
86 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);
87 AliHFEvariable(const Char_t *name, const Char_t *title, UInt_t fCode, UInt_t nBins, const Double_t *binning);
88 AliHFEvariable(const AliHFEvariable &ref);
89 AliHFEvariable &operator=(const AliHFEvariable &ref);
92 UInt_t GetVarCode() const { return fCode; }
93 UInt_t GetNumberOfBins() const { return fNBins; }
94 Double_t* GetBinning();
95 Bool_t HasUserDefinedBinning() const { return fUserDefinedBinning; }
96 Double_t GetMinimum() const { return fMin; }
97 Double_t GetMaximum() const { return fMax; }
98 Int_t IsLogarithmic() const { return fIsLogarithmic; }
100 UInt_t fCode; // Unique variable code
101 UInt_t fNBins; // Number of bins
102 Double_t fMin; // Minimum
103 Double_t fMax; // Maximum
104 TArrayD fBinning; // User defined binning
105 Bool_t fIsLogarithmic; // Logarithmic binning
106 Bool_t fUserDefinedBinning;// Has User defined binning
108 ClassDef(AliHFEvarManager::AliHFEvariable, 1) // HFE variable definition
112 Double_t GetValue(AliVParticle *track, UInt_t code, Float_t centrality = 99.0, Int_t aprioriPID = -1) const;
113 void FillArray(AliVParticle *track, Double_t *container, Float_t centrality = 99.0, Int_t aprioriPID = -1) const;
114 Double_t FindWeight(Double_t pt, Double_t eta, Double_t phi) const;
120 TObjArray *fVariables; // Variables to process
121 Double_t *fContent; //! Cache values for track in classmember
122 Double_t *fContentMC; //! Cache content of the asssociated MC track in class member
123 Double_t fWeightFactor; // Cache weighting factor
124 Bool_t fSignalTrack; // Signal Track
125 Bool_t fWeighting; // Weighting or not for the efficiency maps
126 AliHFEsignalCuts *fSignal; // MC Signal Definition
127 TH3F *fWeightFactors; // Weight factors
128 TF3 *fWeightFactorsFunction; // Weight factors
130 ClassDef(AliHFEvarManager, 1) // The variable Manager for the HFE Analysis
133 #endif /* ALIHFEVARMANAGER_H */