laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
Lau2DSplineDPPdf.cc
Go to the documentation of this file.
1 
2 /*
3 Copyright 2014 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 
29 #include "Lau2DSplineDPPdf.hh"
30 
31 #include "Lau2DCubicSpline.hh"
32 #include "LauDaughters.hh"
33 #include "LauKinematics.hh"
34 #include "LauRandom.hh"
35 
36 #include "TAxis.h"
37 #include "TH2.h"
38 #include "TRandom.h"
39 #include "TSystem.h"
40 
41 #include <iostream>
42 
44  LauKinematics* kinematics,
45  const LauVetoes* vetoes,
46  Bool_t fluctuateBins,
47  Bool_t useUpperHalfOnly,
48  Bool_t squareDP ) :
49  Lau2DAbsHistDPPdf( kinematics, vetoes, useUpperHalfOnly, squareDP ),
50  spline_( 0 )
51 {
52  //We may need to modify the histogram so clone it
53  TH2* tempHist( hist ? dynamic_cast<TH2*>( hist->Clone() ) : 0 );
54 
55  if ( ! tempHist ) {
56  std::cerr << "ERROR in Lau2DSplineDPPdf constructor : the histogram pointer is null."
57  << std::endl;
58  gSystem->Exit( EXIT_FAILURE );
59  }
60 
61  if ( fluctuateBins ) {
62  this->doBinFluctuation( tempHist );
63  }
64 
65  spline_ = new Lau2DCubicSpline( *tempHist );
66 
67  // Calculate the PDF normalisation.
68  this->calcHistNorm();
69 
70  // Also obtain the maximum height
71  this->calcMaxHeight( tempHist );
72 
73  delete tempHist;
74 }
75 
77 {
78  delete spline_;
79  spline_ = 0;
80 }
81 
82 Double_t Lau2DSplineDPPdf::interpolateXYNorm( Double_t x, Double_t y ) const
83 {
84  // Get the normalised interpolated value.
85  Double_t value = this->interpolateXY( x, y );
86  return value / norm_;
87 }
88 
89 Double_t Lau2DSplineDPPdf::interpolateXY( Double_t x, Double_t y ) const
90 {
91  // This function returns the interpolated value of the histogram function
92  // for the given values of x and y by finding the adjacent bins and extrapolating
93  // using weights based on the inverse distance of the point from the adajcent
94  // bin centres.
95  // Here, x = m13^2, y = m23^2, or m', theta' for square DP co-ordinates
96 
97  // If we're only using one half then flip co-ordinates
98  // appropriately for conventional or square DP
99  getUpperHalf( x, y );
100 
101  // First ask whether the point is inside the kinematic region.
102  if ( withinDPBoundaries( x, y ) == kFALSE ) {
103  std::cerr << "WARNING in Lau2DSplineDPPdf::interpolateXY : Given position is outside the DP boundary, returning 0.0."
104  << std::endl;
105  return 0.0;
106  }
107 
108  return spline_->evaluate( x, y );
109 }
110 
112 {
114 }
File containing LauRandom namespace.
Class for defining a 2D cubic spline based on an input histogram.
void doBinFluctuation(TH2 *hist)
Fluctuate the histogram bin contents in accordance with their errors.
void getUpperHalf(Double_t &x, Double_t &y) const
If only using the upper half of the (symmetric) DP then transform into the correct half.
Abstract base class for defining a variation across a 2D DP based on a histogram.
Double_t value() const
The value of the parameter.
virtual Double_t evaluate(Double_t x, Double_t y) const
Evaluate the function at given point.
Double_t norm_
The histogram normalisation.
File containing declaration of Lau2DSplineDPPdf class.
File containing declaration of LauDaughters class.
Lau2DSplineDPPdf(const TH2 *hist, LauKinematics *kinematics, const LauVetoes *vetoes, Bool_t fluctuateBins=kFALSE, Bool_t useUpperHalfOnly=kFALSE, Bool_t squareDP=kFALSE)
Constructor.
Double_t interpolateXYNorm(Double_t x, Double_t y) const
Perform the interpolation and divide by the normalisation.
Double_t interpolateXY(Double_t x, Double_t y) const
Perform the interpolation (unnormalised)
virtual ~Lau2DSplineDPPdf()
Destructor.
Lau2DCubicSpline * spline_
A 2D cubic spline generated from the histogram.
Bool_t withinDPBoundaries(Double_t x, Double_t y) const
Check whether the given co-ordinates are within the kinematic boundary.
Class for defining vetoes within the Dalitz plot.
Definition: LauVetoes.hh:49
File containing declaration of Lau2DCubicSpline class.
Class for calculating 3-body kinematic quantities.
virtual Double_t analyticalIntegral(Double_t x1, Double_t x2, Double_t y1, Double_t y2) const
Evaluate analytical integral in x, y, or x and y.
void calcHistNorm()
Calculate the PDF normalisation.
File containing declaration of LauKinematics class.
void calcMaxHeight(TH2 *hist)
Calculate maximum height.