]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG0/AliUnfolding.h
Fix in HaveCommonParent routine, updated version of AliTrackletTaskUni
[u/mrichter/AliRoot.git] / PWG0 / AliUnfolding.h
1 /* $Id$ */
2
3 #ifndef ALIUNFOLDING_H
4 #define ALIUNFOLDING_H
5
6 //
7 // class that implements several unfolding methods
8 // I.e. chi2 minimization and bayesian unfolding
9 // The whole class is static and not thread-safe (due to the fact that MINUIT unfolding is not thread-safe)
10 //
11
12 // TMatrixD, TVectorD defined here, because it does not seem possible to predeclare these (or i do not know how)
13 // -->
14 // $ROOTSYS/include/TVectorDfwd.h:21: conflicting types for `typedef struct TVectorT<Double_t> TVectorD'
15 // PWG0/AliUnfolding.h:21: previous declaration as `struct TVectorD'
16
17 #include "TObject.h"
18 #include <TMatrixD.h>
19 #include <TVectorD.h>
20
21 class TH1;
22 class TH2;
23 class TF1;
24 class TCanvas;
25 class TVirtualPad;
26 class TAxis;
27
28 class AliUnfolding : public TObject
29 {
30   public:
31   enum RegularizationType { kNone = 0, kPol0, kPol1, kLog, kEntropy, kCurvature, kRatio, kPowerLaw, kLogLog };
32     enum MethodType { kInvalid = -1, kChi2Minimization = 0, kBayesian = 1, kFunction = 2};
33
34     virtual ~AliUnfolding() {};
35
36     static void SetUnfoldingMethod(MethodType methodType);
37     static void SetCreateOverflowBin(Float_t overflowBinLimit);
38     static void SetSkipBinsBegin(Int_t nBins);
39     static void SetNbins(Int_t nMeasured, Int_t nUnfolded);
40     static void SetChi2Regularization(RegularizationType type, Float_t weight);
41     static void SetMinuitStepSize(Float_t stepSize) { fgMinuitStepSize = stepSize; }
42     static void SetMinuitPrecision(Float_t pres) {fgMinuitPrecision = pres;}
43     static void SetMinimumInitialValue(Bool_t flag, Float_t value = -1) { fgMinimumInitialValue = flag; fgMinimumInitialValueFix = value; }
44     static void SetNormalizeInput(Bool_t flag) { fgNormalizeInput = flag; }
45     static void SetNotFoundEvents(Float_t notFoundEvents) { fgNotFoundEvents = notFoundEvents; }
46     static void SetSkip0BinInChi2(Bool_t flag) { fgSkipBin0InChi2 = flag; }
47     static void SetBayesianParameters(Float_t smoothing, Int_t nIterations);
48     static void SetFunction(TF1* function);
49     static void SetDebug(Bool_t flag) { fgDebug = flag; }
50     static void SetPowern(Int_t n) {fgPowern = -1*n;}
51
52     static Int_t Unfold(TH2* correlation, TH1* efficiency, TH1* measured, TH1* initialConditions, TH1* result, Bool_t check = kFALSE);
53     static Int_t UnfoldGetBias(TH2* correlation, TH1* efficiency, TH1* measured, TH1* initialConditions, TH1* result);
54
55     static TH1* GetPenaltyPlot(Double_t* params);
56     static TH1* GetPenaltyPlot(TH1* corrected);
57
58     static TH1* GetResidualsPlot(Double_t* params);
59     static TH1* GetResidualsPlot(TH1* corrected);
60
61     static Double_t GetChi2FromFit() {return fChi2FromFit;}
62     static Double_t GetPenaltyVal()  {return fPenaltyVal;}
63     static Double_t GetAvgResidual() {return fAvgResidual;}
64
65     static void DrawResults(TH2* correlation, TH1* efficiency, TH1* measured, TH1* initialConditions, TCanvas *canvas = 0, Int_t reuseHists = kFALSE,TH1 *unfolded=0);
66     static void InteractiveUnfold(TH2* correlation, TH1* efficiency, TH1* measured, TH1* initialConditions);
67     static void RedrawInteractive();  
68
69   protected:
70     AliUnfolding() {};
71
72     static Int_t UnfoldWithMinuit(TH2* correlation, TH1* efficiency, TH1* measured, TH1* initialConditions, TH1* result, Bool_t check);
73     static Int_t UnfoldWithBayesian(TH2* correlation, TH1* aEfficiency, TH1* measured, TH1* initialConditions, TH1* aResult);
74     static Int_t UnfoldWithFunction(TH2* correlation, TH1* efficiency, TH1* measured, TH1* /* initialConditions */, TH1* aResult);
75
76     static void CreateOverflowBin(TH2* correlation, TH1* measured); 
77     static void SetStaticVariables(TH2* correlation, TH1* measured, TH1* efficiency);
78
79     static void MakePads();
80     static void DrawGuess(Double_t *params, TVirtualPad *pfolded=0, TVirtualPad *pres=0, TVirtualPad *ppen=0, Int_t reuseHists = kFALSE, TH1* unfolded=0);
81
82     static Double_t RegularizationPol0(TVectorD& params);
83     static Double_t RegularizationPol1(TVectorD& params);
84     static Double_t RegularizationTotalCurvature(TVectorD& params);
85     static Double_t RegularizationEntropy(TVectorD& params);
86     static Double_t RegularizationLog(TVectorD& params);
87     static Double_t RegularizationRatio(TVectorD& params);
88     static Double_t RegularizationPowerLaw(TVectorD& params);
89     static Double_t RegularizationLogLog(TVectorD& params);
90
91     static void Chi2Function(Int_t&, Double_t*, Double_t& chi2, Double_t *params, Int_t);
92     static void TF1Function(Int_t& unused1, Double_t* unused2, Double_t& chi2, Double_t *params, Int_t unused3);
93
94     // static variable to be accessed by MINUIT
95     static TMatrixD* fgCorrelationMatrix;            // contains fCurrentCorrelation in matrix form
96     static TMatrixD* fgCorrelationMatrixSquared;     // contains squared fCurrentCorrelation in matrix form
97     static TMatrixD* fgCorrelationCovarianceMatrix;  // contains the errors of fCurrentESD
98     static TVectorD* fgCurrentESDVector;             // contains fCurrentESD
99     static TVectorD* fgEntropyAPriori;               // a-priori distribution for entropy regularization
100     static TVectorD* fgEfficiency;                   // efficiency
101     /*
102     static TVectorD* fgBinWidths;                    // bin widths to be taken into account in regularization
103     static TVectorD* fgBinPos;                       // bin positions of unfolded
104     */
105     static TAxis *fgUnfoldedAxis;                    // bin widths and positions for unfolded
106     static TAxis *fgMeasuredAxis;                    // bin widths and positions for measured
107
108     static TF1* fgFitFunction;                       // fit function
109
110     // --- configuration params follow ---
111     static MethodType fgMethodType;                  // unfolding method to be used
112     static Int_t fgMaxParams;                        // bins in unfolded histogram = number of fit params
113     static Int_t fgMaxInput;                         // bins in measured histogram
114     static Float_t fgOverflowBinLimit;               // to fix fluctuations at high multiplicities, all entries above the limit are summarized in one bin
115
116     static RegularizationType fgRegularizationType;  // regularization that is used during Chi2 method
117     static Float_t fgRegularizationWeight;           // factor for regularization term
118     static Int_t fgSkipBinsBegin;                    // (optional) skip the given number of bins in the regularization
119     static Float_t fgMinuitStepSize;                 // (usually not needed to be changed) step size in minimization
120     static Float_t fgMinuitPrecision;                // precision used by minuit. default = 1e-6
121     static Bool_t fgMinimumInitialValue;             // set all initial values at least to the smallest value among the initial values
122     static Float_t fgMinimumInitialValueFix;         // use this as the minimum initial value instead of determining it automatically
123     static Bool_t fgNormalizeInput;                  // normalize input spectrum
124     static Float_t fgNotFoundEvents;                 // constraint on the total number of not found events sum(guess * (1/eff -1))
125     static Bool_t fgSkipBin0InChi2;                  // skip bin 0 (= 0 measured) in chi2 function
126
127     static Float_t fgBayesianSmoothing;              // smoothing parameter (0 = no smoothing)
128     static Int_t   fgBayesianIterations;             // number of iterations in Bayesian method
129
130     static Bool_t fgDebug;                           // debug flag
131     // --- end of configuration ---
132     
133     static Int_t fgCallCount;                        // call count to chi2 function
134
135     static Int_t fgPowern;                           // power of power law for regularization with power law
136
137     static Double_t fChi2FromFit;                    // Chi2 from fit at current iteration
138     static Double_t fPenaltyVal;                     // Penalty value at current iteration (\beta * PU)
139     static Double_t fAvgResidual;                    // Sum residuals / nbins
140
141     static Int_t fgPrintChi2Details;                 // debug for chi2 calc
142
143     // Pointers for interactive unfolder
144     static TCanvas *fgCanvas;                        // Canvas for interactive unfolder
145     static TH1 *fghUnfolded;                         // Unfolding result for interactive unfolder
146     static TH2 *fghCorrelation;                      // Response matrix for interactive unfolder
147     static TH1 *fghEfficiency;                       // Efficiency histo for interactive unfolder
148     static TH1 *fghMeasured;                         // Measured distribution for interactive unfolder
149
150 private:
151     AliUnfolding(const AliUnfolding&);
152     AliUnfolding& operator=(const AliUnfolding&);
153
154   ClassDef(AliUnfolding, 0);
155 };
156
157 #endif
158