laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauDPPartialIntegralInfo.hh
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 
37 #ifndef LAU_DPPARTIALINTEGRAL_INFO
38 #define LAU_DPPARTIALINTEGRAL_INFO
39 
40 #include "LauComplex.hh"
41 
42 #include "TString.h"
43 
44 #include <iosfwd>
45 
46 class LauKinematics;
47 
49 
50  public:
52 
65  LauDPPartialIntegralInfo( const Double_t minm13,
66  const Double_t maxm13,
67  const Double_t minm23,
68  const Double_t maxm23,
69  const Double_t m13BinWidth,
70  const Double_t m23BinWidth,
71  const Double_t precision,
72  const UInt_t nAmp,
73  const UInt_t nIncohAmp,
74  const Bool_t squareDP = kFALSE,
75  const LauKinematics* kinematics = 0 );
76 
78  virtual ~LauDPPartialIntegralInfo();
79 
81 
84  inline Double_t getMinm13() const { return minm13_; }
85 
87 
90  inline Double_t getMaxm13() const { return maxm13_; }
91 
93 
96  inline Double_t getMinm23() const { return minm23_; }
97 
99 
102  inline Double_t getMaxm23() const { return maxm23_; }
103 
105 
108  inline Double_t getM13BinWidth() const { return m13BinWidth_; }
109 
111 
114  inline Double_t getM23BinWidth() const { return m23BinWidth_; }
115 
117 
120  inline UInt_t getnm13Points() const { return nm13Points_; }
121 
123 
126  inline UInt_t getnm23Points() const { return nm23Points_; }
127 
129 
132  inline Bool_t getSquareDP() const { return squareDP_; }
133 
135 
140  inline Double_t getWeight( const UInt_t m13Point, const UInt_t m23Point ) const
141  {
142  return weights_[m13Point][m23Point];
143  }
144 
146 
150  inline Double_t getM13Value( const UInt_t m13Point ) const { return m13Points_[m13Point]; }
151 
153 
157  inline Double_t getM23Value( const UInt_t m23Point ) const { return m23Points_[m23Point]; }
158 
160 
165  inline Double_t getEfficiency( const UInt_t m13Point, const UInt_t m23Point ) const
166  {
167  return efficiencies_[m13Point][m23Point];
168  }
169 
171 
176  inline void storeEfficiency( const UInt_t m13Point,
177  const UInt_t m23Point,
178  const Double_t efficiency )
179  {
180  efficiencies_[m13Point][m23Point] = efficiency;
181  }
182 
184 
190  inline const LauComplex& getAmplitude( const UInt_t m13Point,
191  const UInt_t m23Point,
192  const UInt_t iAmp ) const
193  {
194  return amplitudes_[m13Point][m23Point][iAmp];
195  }
196 
198 
204  inline void storeAmplitude( const UInt_t m13Point,
205  const UInt_t m23Point,
206  const UInt_t iAmp,
207  const LauComplex& amplitude )
208  {
209  amplitudes_[m13Point][m23Point][iAmp] = amplitude;
210  }
211 
213 
219  inline Double_t getIntensity( const UInt_t m13Point, const UInt_t m23Point, const UInt_t iAmp ) const
220  {
221  return incohIntensities_[m13Point][m23Point][iAmp];
222  }
223 
225 
231  inline void storeIntensity( const UInt_t m13Point,
232  const UInt_t m23Point,
233  const UInt_t iAmp,
234  const Double_t intensity )
235  {
236  incohIntensities_[m13Point][m23Point][iAmp] = intensity;
237  }
238 
239  private:
242 
245 
247  const Double_t minm13_;
248 
250  const Double_t maxm13_;
251 
253  const Double_t minm23_;
254 
256  const Double_t maxm23_;
257 
259  const Double_t m13BinWidth_;
260 
262  const Double_t m23BinWidth_;
263 
265  const UInt_t nm13Points_;
266 
268  const UInt_t nm23Points_;
269 
271  const UInt_t nAmp_;
272 
274  const UInt_t nIncohAmp_;
275 
277  const Bool_t squareDP_;
278 
280  std::vector<Double_t> m13Points_;
281 
283  std::vector<Double_t> m23Points_;
284 
286  std::vector<Double_t> m13Weights_;
287 
289  std::vector<Double_t> m23Weights_;
290 
292  std::vector<std::vector<Double_t>> weights_;
293 
295  std::vector<std::vector<Double_t>> efficiencies_;
296 
298  std::vector<std::vector<std::vector<LauComplex>>> amplitudes_;
299 
301  std::vector<std::vector<std::vector<Double_t>>> incohIntensities_;
302 
303  ClassDef( LauDPPartialIntegralInfo, 0 )
304 };
305 
307 std::ostream& operator<<( std::ostream& stream, const LauDPPartialIntegralInfo& infoRecord );
308 
309 #endif
std::vector< Double_t > m23Points_
The m23 positions of the grid points.
Double_t getWeight(const UInt_t m13Point, const UInt_t m23Point) const
Retrieve the weight for the given grid point.
const LauComplex & getAmplitude(const UInt_t m13Point, const UInt_t m23Point, const UInt_t iAmp) const
Retrieve the amplitude for the given grid point and amplitude index.
const Double_t minm23_
The minimum of the m23 range.
Bool_t getSquareDP() const
Retrieve the square DP flag.
Double_t getEfficiency(const UInt_t m13Point, const UInt_t m23Point) const
Retrieve the efficiency for the given grid point.
const Double_t maxm13_
The maximum of the m13 range.
Double_t getM13Value(const UInt_t m13Point) const
Retrieve the m13 value at the given grid point.
std::ostream & operator<<(std::ostream &stream, const LauDPPartialIntegralInfo &infoRecord)
output operator formatting
Double_t getIntensity(const UInt_t m13Point, const UInt_t m23Point, const UInt_t iAmp) const
Retrieve the intensity for the given grid point and intensity index.
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.
void storeEfficiency(const UInt_t m13Point, const UInt_t m23Point, const Double_t efficiency)
Store the efficiency for the given grid point.
std::vector< Double_t > m13Points_
The m13 positions of the grid points.
const Double_t m23BinWidth_
The bin width for m23.
Class for defining a complex number.
Definition: LauComplex.hh:61
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.
void storeAmplitude(const UInt_t m13Point, const UInt_t m23Point, const UInt_t iAmp, const LauComplex &amplitude)
Store the amplitude for the given grid point and amplitude index.
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.
File containing declaration of LauComplex class.
std::vector< std::vector< Double_t > > efficiencies_
The efficiency at each 2D grid point.
LauDPPartialIntegralInfo(const LauDPPartialIntegralInfo &other)
Copy constructor (not implemented)
void storeIntensity(const UInt_t m13Point, const UInt_t m23Point, const UInt_t iAmp, const Double_t intensity)
Store the intensity for the given grid point and intensity index.
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.
UInt_t getnm23Points() const
Retrieve the number of bins in m23.
LauDPPartialIntegralInfo & operator=(const LauDPPartialIntegralInfo &other)
Copy assignment operator (not implemented)
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.
Double_t getM23Value(const UInt_t m23Point) const
Retrieve the m23 value at the given grid point.
Class for calculating 3-body kinematic quantities.
UInt_t getnm13Points() const
Retrieve the number of bins in m13.
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.
Double_t getMinm23() const
Retrieve the minm23 of DP.