laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
Lau2DSplineDP.cc
Go to the documentation of this file.
1 
2 /*
3 Copyright 2013 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 "Lau2DSplineDP.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  const LauDaughters* daughters,
45  Bool_t fluctuateBins,
46  Double_t avEff,
47  Double_t avEffError,
48  Bool_t useUpperHalfOnly,
49  Bool_t squareDP ) :
50  Lau2DAbsHistDP( daughters, useUpperHalfOnly, squareDP ),
51  spline_( 0 )
52 {
53  //We may need to modify the histogram so clone it
54  TH2* tempHist( hist ? dynamic_cast<TH2*>( hist->Clone() ) : 0 );
55 
56  if ( ! tempHist ) {
57  std::cerr << "ERROR in Lau2DSplineDP constructor : the histogram pointer is null."
58  << std::endl;
59  gSystem->Exit( EXIT_FAILURE );
60  }
61 
62  if ( fluctuateBins ) {
63  this->doBinFluctuation( tempHist );
64  }
65  if ( avEff > 0.0 && avEffError > 0.0 ) {
66  this->raiseOrLowerBins( tempHist, avEff, avEffError );
67  }
68 
69  spline_ = new Lau2DCubicSpline( *tempHist );
70 
71  delete tempHist;
72 }
73 
75  const TH2* errorHi,
76  const TH2* errorLo,
77  const LauDaughters* daughters,
78  Bool_t fluctuateBins,
79  Double_t avEff,
80  Double_t avEffError,
81  Bool_t useUpperHalfOnly,
82  Bool_t squareDP ) :
83  Lau2DAbsHistDP( daughters, useUpperHalfOnly, squareDP ),
84  spline_( 0 )
85 {
86  //We may need to modify the histogram so clone it
87  TH2* tempHist( hist ? dynamic_cast<TH2*>( hist->Clone() ) : 0 );
88  TH2* tempErrorHi( errorHi ? dynamic_cast<TH2*>( errorHi->Clone() ) : 0 );
89  TH2* tempErrorLo( errorLo ? dynamic_cast<TH2*>( errorLo->Clone() ) : 0 );
90 
91  if ( ! tempHist ) {
92  std::cerr << "ERROR in Lau2DSplineDP constructor : the histogram pointer is null."
93  << std::endl;
94  gSystem->Exit( EXIT_FAILURE );
95  }
96  if ( ! tempErrorHi ) {
97  std::cerr << "ERROR in Lau2DHistDP constructor : the upper error histogram pointer is null."
98  << std::endl;
99  gSystem->Exit( EXIT_FAILURE );
100  }
101  if ( ! tempErrorLo ) {
102  std::cerr << "ERROR in Lau2DHistDP constructor : the lower error histogram pointer is null."
103  << std::endl;
104  gSystem->Exit( EXIT_FAILURE );
105  }
106 
107  TAxis* xAxis = tempHist->GetXaxis();
108  Double_t minX = static_cast<Double_t>( xAxis->GetXmin() );
109  Double_t maxX = static_cast<Double_t>( xAxis->GetXmax() );
110 
111  TAxis* yAxis = tempHist->GetYaxis();
112  Double_t minY = static_cast<Double_t>( yAxis->GetXmin() );
113  Double_t maxY = static_cast<Double_t>( yAxis->GetXmax() );
114 
115  Int_t nBinsX = static_cast<Int_t>( tempHist->GetNbinsX() );
116  Int_t nBinsY = static_cast<Int_t>( tempHist->GetNbinsY() );
117 
118  if ( static_cast<Int_t>( tempErrorLo->GetNbinsX() ) != nBinsX ||
119  static_cast<Int_t>( tempErrorLo->GetNbinsY() ) != nBinsY ) {
120  std::cerr << "ERROR in Lau2DHistDP constructor : the lower error histogram has a different number of bins to the main histogram."
121  << std::endl;
122  gSystem->Exit( EXIT_FAILURE );
123  }
124 
125  if ( static_cast<Int_t>( tempErrorHi->GetNbinsX() ) != nBinsX ||
126  static_cast<Int_t>( tempErrorHi->GetNbinsY() ) != nBinsY ) {
127  std::cerr << "ERROR in Lau2DHistDP constructor : the upper error histogram has a different number of bins to the main histogram."
128  << std::endl;
129  gSystem->Exit( EXIT_FAILURE );
130  }
131 
132  xAxis = tempErrorLo->GetXaxis();
133  yAxis = tempErrorLo->GetYaxis();
134 
135  if ( static_cast<Double_t>( xAxis->GetXmin() ) != minX ||
136  static_cast<Double_t>( xAxis->GetXmax() ) != maxX ) {
137  std::cerr << "ERROR in Lau2DHistDP constructor : the lower error histogram has a different x range to the main histogram."
138  << std::endl;
139  gSystem->Exit( EXIT_FAILURE );
140  }
141 
142  if ( static_cast<Double_t>( yAxis->GetXmin() ) != minY ||
143  static_cast<Double_t>( yAxis->GetXmax() ) != maxY ) {
144  std::cerr << "ERROR in Lau2DHistDP constructor : the lower error histogram has a different y range to the main histogram."
145  << std::endl;
146  gSystem->Exit( EXIT_FAILURE );
147  }
148 
149  xAxis = tempErrorHi->GetXaxis();
150  yAxis = tempErrorHi->GetYaxis();
151 
152  if ( static_cast<Double_t>( xAxis->GetXmin() ) != minX ||
153  static_cast<Double_t>( xAxis->GetXmax() ) != maxX ) {
154  std::cerr << "ERROR in Lau2DHistDP constructor : the upper error histogram has a different x range to the main histogram."
155  << std::endl;
156  gSystem->Exit( EXIT_FAILURE );
157  }
158 
159  if ( static_cast<Double_t>( yAxis->GetXmin() ) != minY ||
160  static_cast<Double_t>( yAxis->GetXmax() ) != maxY ) {
161  std::cerr << "ERROR in Lau2DHistDP constructor : the upper error histogram has a different y range to the main histogram."
162  << std::endl;
163  gSystem->Exit( EXIT_FAILURE );
164  }
165 
166  if ( fluctuateBins ) {
167  this->doBinFluctuation( tempHist, tempErrorHi, tempErrorLo );
168  }
169  if ( avEff > 0.0 && avEffError > 0.0 ) {
170  this->raiseOrLowerBins( tempHist, avEff, avEffError );
171  }
172 
173  spline_ = new Lau2DCubicSpline( *tempHist );
174 
175  delete tempHist;
176  delete tempErrorHi;
177  delete tempErrorLo;
178 }
179 
181 {
182  delete spline_;
183  spline_ = 0;
184 }
185 
186 Double_t Lau2DSplineDP::interpolateXY( Double_t x, Double_t y ) const
187 {
188  // This function returns the interpolated value of the histogram function
189  // for the given values of x and y by finding the adjacent bins and extrapolating
190  // using weights based on the inverse distance of the point from the adajcent
191  // bin centres.
192  // Here, x = m13^2, y = m23^2, or m', theta' for square DP co-ordinates
193 
194  // If we're only using one half then flip co-ordinates
195  // appropriately for conventional or square DP
196  this->getUpperHalf( x, y );
197 
198  // First ask whether the point is inside the kinematic region.
199  if ( this->withinDPBoundaries( x, y ) == kFALSE ) {
200  std::cerr << "WARNING in Lau2DSplineDP::interpolateXY : Given position is outside the DP boundary, returning 0.0."
201  << std::endl;
202  return 0.0;
203  }
204 
205  return spline_->evaluate( x, y );
206 }
Abstract base class for defining a variation across a 2D DP based on a histogram.
File containing LauRandom namespace.
virtual ~Lau2DSplineDP()
Destructor.
Class for defining a 2D cubic spline based on an input histogram.
void doBinFluctuation(TH2 *hist)
Fluctuate the contents of each histogram bin independently, in accordance with their errors.
Bool_t withinDPBoundaries(Double_t x, Double_t y) const
Check whether the given co-ordinates are within the kinematic boundary.
virtual Double_t evaluate(Double_t x, Double_t y) const
Evaluate the function at given point.
void raiseOrLowerBins(TH2 *hist, const Double_t avEff, const Double_t avEffError)
Rescale the histogram bin contents based on the desired average efficiency and its uncertainty.
Lau2DCubicSpline * spline_
A 2D cubic spline generated from the histogram.
Lau2DSplineDP(const TH2 *hist, const LauDaughters *daughters, Bool_t fluctuateBins=kFALSE, Double_t avEff=-1.0, Double_t avEffError=-1.0, Bool_t useUpperHalfOnly=kFALSE, Bool_t squareDP=kFALSE)
Constructor.
File containing declaration of LauDaughters class.
Double_t interpolateXY(Double_t x, Double_t y) const
Perform the interpolation.
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.
File containing declaration of Lau2DSplineDP class.
File containing declaration of Lau2DCubicSpline class.
Class that defines the particular 3-body decay under study.
Definition: LauDaughters.hh:47
File containing declaration of LauKinematics class.