laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauDPPartialIntegralInfo.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 
30 
31 #include "LauIntegrals.hh"
32 #include "LauKinematics.hh"
33 
34 #include <iostream>
35 
37  const Double_t maxm13,
38  const Double_t minm23,
39  const Double_t maxm23,
40  const Double_t m13BinWidth,
41  const Double_t m23BinWidth,
42  const Double_t precision,
43  const UInt_t nAmp,
44  const UInt_t nIncohAmp,
45  const Bool_t squareDP,
46  const LauKinematics* kinematics ) :
47  minm13_( minm13 ),
48  maxm13_( maxm13 ),
49  minm23_( minm23 ),
50  maxm23_( maxm23 ),
51  m13BinWidth_( m13BinWidth ),
52  m23BinWidth_( m23BinWidth ),
53  nm13Points_( static_cast<UInt_t>( ( maxm13 - minm13 ) / m13BinWidth ) ),
54  nm23Points_( static_cast<UInt_t>( ( maxm23 - minm23 ) / m23BinWidth ) ),
55  nAmp_( nAmp ),
56  nIncohAmp_( nIncohAmp ),
57  squareDP_( squareDP )
58 {
59  const Double_t meanm13 = 0.5 * ( minm13 + maxm13 );
60  const Double_t rangem13 = maxm13 - minm13;
61  const Double_t halfRangem13 = 0.5 * rangem13;
62 
63  const Double_t meanm23 = 0.5 * ( minm23 + maxm23 );
64  const Double_t rangem23 = maxm23 - minm23;
65  const Double_t halfRangem23 = 0.5 * rangem23;
66 
67  const Double_t intFactor = halfRangem13 * halfRangem23;
68 
69  // Raise error if squareDP is true but the kinematics object is not provided
70  if ( squareDP_ && kinematics == 0 ) {
71  std::cerr << "ERROR in LauDPPartialIntegralInfo constructor : Integration in the square DP has been specified but no valid kinematics object has been provided!"
72  << std::endl;
73  return;
74  }
75 
76  // Avoid integral if we have no points in either x or y space
77  if ( nm13Points_ == 0 || nm23Points_ == 0 ) {
78  std::cerr << "ERROR in LauDPPartialIntegralInfo constructor : Range has zero grid points in one or both of the dimensions!"
79  << std::endl;
80  return;
81  }
82 
83  // Print a warning if we have a very large number of points
84  if ( ( nm13Points_ * nm23Points_ ) > 8000000 ) {
85  std::cerr << "WARNING in LauDPPartialIntegralInfo constructor : The integration binning scheme has a very large number of bins, this could cause high memory consumption!"
86  << std::endl;
87  std::cerr << " : In case of problems, consider using LauIsobarDynamics::setNarrowResonanceThreshold and/or LauIsobarDynamics::setIntegralBinningFactor to tune the binning behaviour."
88  << std::endl;
89  }
90 
91  LauIntegrals dpIntegrals( precision );
94 
95  // Print out total weights for the integration
96  Double_t totm13Weight( 0.0 ), totm23Weight( 0.0 );
97  for ( UInt_t i = 0; i < nm13Points_; ++i ) {
98  totm13Weight += m13Weights_[i];
99  }
100  for ( UInt_t i = 0; i < nm23Points_; ++i ) {
101  totm23Weight += m23Weights_[i];
102  }
103 
104  if ( squareDP_ ) {
105  std::cout << "INFO in LauDPPartialIntegralInfo constructor : nmPrimePoints = " << nm13Points_
106  << ", nthPrimePoints = " << nm23Points_ << std::endl;
107  std::cout << " : mPrimeBinWidth = "
108  << m13BinWidth_ << ", thPrimeBinWidth = " << m23BinWidth_ << std::endl;
109  std::cout << " : Integrating over mPrime = "
110  << minm13_ << " to " << maxm13_ << ", thPrime = " << minm23_ << " to " << maxm23_
111  << std::endl;
112  std::cout << " : totmPrimeWeight = "
113  << totm13Weight << ", totthPrimeWeight = " << totm23Weight << std::endl;
114  } else {
115  std::cout << "INFO in LauDPPartialIntegralInfo constructor : nm13Points = " << nm13Points_
116  << ", nm23Points = " << nm23Points_ << std::endl;
117  std::cout << " : m13BinWidth = " << m13BinWidth_
118  << ", m23BinWidth = " << m23BinWidth_ << std::endl;
119  std::cout << " : Integrating over m13 = " << minm13_
120  << " to " << maxm13_ << ", m23 = " << minm23_ << " to " << maxm23_ << std::endl;
121  std::cout << " : totm13Weight = " << totm13Weight
122  << ", totm23Weight = " << totm23Weight << std::endl;
123  }
124 
125  // Calculate the m13 and m23 values at the grid points
126 
127  UInt_t midpoint = ( nm13Points_ + 1 ) / 2;
128  for ( UInt_t i = 0; i < midpoint; ++i ) {
129 
130  UInt_t ii = nm13Points_ - 1 - i; // symmetric i index
131 
132  Double_t dm13 = halfRangem13 * m13Points_[i];
133  Double_t m13Val = meanm13 - dm13;
134  m13Points_[i] = m13Val;
135 
136  m13Val = meanm13 + dm13;
137  m13Points_[ii] = m13Val;
138  }
139 
140  midpoint = ( nm23Points_ + 1 ) / 2;
141  for ( UInt_t i = 0; i < midpoint; i++ ) {
142 
143  UInt_t ii = nm23Points_ - 1 - i; // symmetric i index
144 
145  Double_t dm23 = halfRangem23 * m23Points_[i];
146  Double_t m23Val = meanm23 - dm23;
147  m23Points_[i] = m23Val;
148 
149  m23Val = meanm23 + dm23;
150  m23Points_[ii] = m23Val;
151  }
152 
153  // Now compute the combined weights at each grid point
154  weights_.resize( nm13Points_ );
155  efficiencies_.resize( nm13Points_ );
156  amplitudes_.resize( nm13Points_ );
157  incohIntensities_.resize( nm13Points_ );
158  for ( UInt_t i = 0; i < nm13Points_; ++i ) {
159 
160  weights_[i].resize( nm23Points_ );
161  efficiencies_[i].resize( nm23Points_ );
162  amplitudes_[i].resize( nm23Points_ );
163  incohIntensities_[i].resize( nm23Points_ );
164 
165  for ( UInt_t j = 0; j < nm23Points_; ++j ) {
166 
167  Double_t weight = m13Weights_[i] * m23Weights_[j];
168 
169  Double_t jacobian( 0.0 );
170  if ( squareDP_ ) {
171  jacobian = kinematics->calcSqDPJacobian( m13Points_[i], m23Points_[j] );
172  } else {
173  jacobian = 4.0 * m13Points_[i] * m23Points_[j];
174  }
175  weight *= ( jacobian * intFactor );
176 
177  weights_[i][j] = weight;
178 
179  amplitudes_[i][j].resize( nAmp_ );
180  incohIntensities_[i][j].resize( nIncohAmp_ );
181 
182  } // j weights loop
183  } // i weights loop
184 }
185 
187 {
188 }
189 
190 std::ostream& operator<<( std::ostream& stream, const LauDPPartialIntegralInfo& infoRecord )
191 {
192  stream << "minm13 = " << infoRecord.getMinm13() << ", ";
193  stream << "maxm13 = " << infoRecord.getMaxm13() << ", ";
194  stream << "minm23 = " << infoRecord.getMinm23() << ", ";
195  stream << "maxm23 = " << infoRecord.getMaxm23() << ", ";
196  stream << "m13BinWidth = " << infoRecord.getM13BinWidth() << ", ";
197  stream << "m23BinWidth = " << infoRecord.getM23BinWidth() << std::endl;
198  return stream;
199 }
std::vector< Double_t > m23Points_
The m23 positions of the grid points.
Class for performing numerical integration routines.
Definition: LauIntegrals.hh:43
File containing declaration of LauDPPartialIntegralInfo class.
const Double_t minm23_
The minimum of the m23 range.
std::ostream & operator<<(std::ostream &stream, const LauDPPartialIntegralInfo &infoRecord)
output operator formatting
const Double_t maxm13_
The maximum of the m13 range.
File containing declaration of LauIntegrals class.
const UInt_t nm13Points_
The number of bins in m13.
Double_t getMaxm13() const
Retrieve the maxm13 of DP.
std::vector< Double_t > m13Weights_
The Gauss-Legendre weights of the m13 grid points.
std::vector< Double_t > m23Weights_
The Gauss-Legendre weights of the m23 grid points.
std::vector< Double_t > m13Points_
The m13 positions of the grid points.
const Double_t m23BinWidth_
The bin width for m23.
void calcGaussLegendreWeights(const Int_t numPoints, std::vector< Double_t > &abscissas, std::vector< Double_t > &weights)
Calculate the Gauss-Legendre weights.
Definition: LauIntegrals.cc:60
std::vector< std::vector< std::vector< LauComplex > > > amplitudes_
The amplitude values at each 2D grid point.
std::vector< std::vector< std::vector< Double_t > > > incohIntensities_
The incoherent intensity values at each 2D grid point.
const Double_t minm13_
The minimum of the m13 range.
Class for defining (a section of) the Dalitz plot integration binning scheme.
const Double_t maxm23_
The maximum of the m23 range.
Double_t getM23BinWidth() const
Retrieve the m23BinWidth of DP.
std::vector< std::vector< Double_t > > efficiencies_
The efficiency at each 2D grid point.
Double_t getM13BinWidth() const
Retrieve the m13BinWidth of DP.
virtual ~LauDPPartialIntegralInfo()
Destructor.
const Bool_t squareDP_
Flag whether or not we're using the square DP for the integration.
Double_t getMaxm23() const
Retrieve the maxm23 of DP.
const UInt_t nm23Points_
The number of bins in m23.
const UInt_t nIncohAmp_
The number of amplitude components.
LauDPPartialIntegralInfo(const Double_t minm13, const Double_t maxm13, const Double_t minm23, const Double_t maxm23, const Double_t m13BinWidth, const Double_t m23BinWidth, const Double_t precision, const UInt_t nAmp, const UInt_t nIncohAmp, const Bool_t squareDP=kFALSE, const LauKinematics *kinematics=0)
Constructor.
Class for calculating 3-body kinematic quantities.
Double_t calcSqDPJacobian(const Double_t mPrime, const Double_t thPrime) const
Calculate the Jacobian for the transformation m23^2, m13^2 -> m', theta' (square DP) at the given poi...
Double_t getMinm13() const
Retrieve the minm13 of DP.
const Double_t m13BinWidth_
The bin width for m13.
const UInt_t nAmp_
The number of amplitude components.
std::vector< std::vector< Double_t > > weights_
The combined weights at each 2D grid point.
File containing declaration of LauKinematics class.
Double_t getMinm23() const
Retrieve the minm23 of DP.