laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
Lau2DHistPdf.hh
Go to the documentation of this file.
1 
2 /*
3 Copyright 2008 University of Warwick
4 
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8 
9  http://www.apache.org/licenses/LICENSE-2.0
10 
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16 */
17 
18 /*
19 Laura++ package authors:
20 John Back
21 Paul Harrison
22 Thomas Latham
23 */
24 
38 #ifndef LAU_2DHIST_PDF
39 #define LAU_2DHIST_PDF
40 
41 #include "LauAbsPdf.hh"
42 
43 class TH2;
44 class TH1;
45 class Lau1DHistPdf;
46 
47 class Lau2DHistPdf : public LauAbsPdf {
48 
49  public:
51 
60  Lau2DHistPdf( const std::vector<TString>& theVarNames,
61  const TH2* hist,
62  const LauFitData& minVals,
63  const LauFitData& maxVals,
64  Bool_t useInterpolation = kTRUE,
65  Bool_t fluctuateBins = kFALSE );
66 
68  virtual ~Lau2DHistPdf();
69 
71  Double_t getMinX() const { return minX_; }
72 
74  Double_t getMaxX() const { return maxX_; }
75 
77  Double_t getRangeX() const { return rangeX_; }
78 
80  Double_t getMinY() const { return minY_; }
81 
83  Double_t getMaxY() const { return maxY_; }
84 
86  Double_t getRangeY() const { return rangeY_; }
87 
89 
92  virtual void cacheInfo( const LauFitDataTree& inputData );
93 
95 
98  virtual void calcLikelihoodInfo( const LauAbscissas& abscissas );
99 
101 
104  virtual void calcLikelihoodInfo( UInt_t iEvt );
105 
107 
111  virtual Double_t getLikelihood( const TString& theVarName ) const;
113 
115  virtual void calcNorm();
116 
118 
121  virtual void calcPDFHeight( const LauKinematics* kinematics );
122 
124 
128  virtual LauFitData generate( const LauKinematics* kinematics );
129 
130  protected:
132  void doBinFluctuation();
133 
135  void checkNormalisation();
136 
138 
143  Double_t getBinHistValue( Int_t i, Int_t j ) const;
144 
146 
151  Double_t interpolateXY( Double_t x, Double_t y ) const;
152 
154 
159  Double_t interpolateXYNorm( Double_t x, Double_t y ) const;
160 
161  private:
163  Lau2DHistPdf( const Lau2DHistPdf& other );
164 
167 
169  TH2* hist_;
171  TH1* xProj_;
173  TH1* yProj_;
174 
179 
181  TString xName_;
183  TString yName_;
184 
186  Int_t nBinsX_;
188  Int_t nBinsY_;
190  Double_t minX_;
192  Double_t maxX_;
194  Double_t minY_;
196  Double_t maxY_;
198  Double_t rangeX_;
200  Double_t rangeY_;
201 
203  Double_t binXWidth_;
205  Double_t binYWidth_;
206 
208  Double_t invBinXWidth_;
210  Double_t invBinYWidth_;
211 
216 
217  ClassDef( Lau2DHistPdf, 0 ) // 2D histogram pdf class
218 };
219 
220 #endif
Class for defining a 1D histogram PDF.
Definition: Lau1DHistPdf.hh:45
File containing declaration of LauAbsPdf class.
Class for defining a 2D histogram PDF.
Definition: Lau2DHistPdf.hh:47
void checkNormalisation()
Check the normalisation calculation.
Int_t nBinsX_
The number of bins on the x-axis of the histogram.
Double_t binYWidth_
The histogram y-axis bin width.
virtual void calcPDFHeight(const LauKinematics *kinematics)
Calculate the PDF height.
virtual void calcNorm()
Calculate the normalisation.
Double_t minY_
The histogram y-axis minimum.
Lau1DHistPdf * xVarPdf_
1D PDF for x variable
std::vector< Double_t > LauAbscissas
The type used for containing multiple abscissa values.
Definition: LauAbsPdf.hh:58
virtual LauFitData generate(const LauKinematics *kinematics)
Generate an event from the PDF.
Double_t minX_
The histogram x-axis minimum.
Double_t interpolateXYNorm(Double_t x, Double_t y) const
Perform the interpolation and divide by the normalisation.
Double_t invBinXWidth_
The histogram x-axis inverse bin width.
Double_t rangeX_
The histogram x-axis range.
Double_t maxY_
The histogram y-axis maximum.
Class to store the input fit variables.
Lau2DHistPdf(const Lau2DHistPdf &other)
Copy constructor (not implemented)
virtual void calcLikelihoodInfo(const LauAbscissas &abscissas)
Calculate the likelihood (and intermediate info) for a given value of the abscissas.
TString yName_
y variable name
Double_t getMaxY() const
Get the maximum value of y-axis abscissa.
Definition: Lau2DHistPdf.hh:83
Int_t nBinsY_
The number of bins on the y-axis of the histogram.
TH1 * xProj_
Projection of histogram x-axis.
virtual ~Lau2DHistPdf()
Destructor.
Double_t getRangeY() const
Get the range of y-axis abscissa values.
Definition: Lau2DHistPdf.hh:86
Double_t rangeY_
The histogram y-axis range.
Double_t binXWidth_
The histogram x-axis bin width.
Class for defining the abstract interface for PDF classes.
Definition: LauAbsPdf.hh:54
virtual void cacheInfo(const LauFitDataTree &inputData)
Cache information from data.
virtual Double_t getLikelihood() const
Retrieve the normalised likelihood value.
Definition: LauAbsPdf.cc:403
Bool_t useInterpolation_
Control boolean for using the linear interpolation.
Bool_t fluctuateBins_
Control boolean for performing the fluctuation of the histogram bin contents.
Lau1DHistPdf * yVarPdf_
1D PDF for y variable
std::map< TString, Double_t > LauFitData
Type for holding event data.
Double_t maxX_
The histogram x-axis maximum.
Double_t getRangeX() const
Get the range of x-axis abscissa values.
Definition: Lau2DHistPdf.hh:77
TH2 * hist_
The underlying histogram.
Lau2DHistPdf(const std::vector< TString > &theVarNames, const TH2 *hist, const LauFitData &minVals, const LauFitData &maxVals, Bool_t useInterpolation=kTRUE, Bool_t fluctuateBins=kFALSE)
Constructor.
Definition: Lau2DHistPdf.cc:45
Lau2DHistPdf & operator=(const Lau2DHistPdf &other)
Copy assignment operator (not implemented)
Class for calculating 3-body kinematic quantities.
Double_t interpolateXY(Double_t x, Double_t y) const
Perform the interpolation (unnormalised)
Double_t getBinHistValue(Int_t i, Int_t j) const
Get the bin content from the histogram.
Double_t getMinX() const
Get the minimum value of x-axis abscissa.
Definition: Lau2DHistPdf.hh:71
Double_t invBinYWidth_
The histogram y-axis inverse bin width.
void doBinFluctuation()
Fluctuate the histogram bin contents in accordance with their errors.
TString xName_
x variable name
Double_t getMaxX() const
Get the maximum value of x-axis abscissa.
Definition: Lau2DHistPdf.hh:74
Double_t getMinY() const
Get the minimum value of y-axis abscissa.
Definition: Lau2DHistPdf.hh:80
TH1 * yProj_
Projection of histogram y-axis.