laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauGaussIncohRes.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 "LauGaussIncohRes.hh"
30 
31 #include "LauConstants.hh"
32 #include "LauKinematics.hh"
33 
34 #include <iostream>
35 
37  const Int_t resPairAmpInt,
38  const LauDaughters* daughters ) :
39  LauAbsIncohRes( resInfo, resPairAmpInt, daughters )
40 {
41 }
42 
44 {
45 }
46 
48 {
49 }
50 
51 Double_t LauGaussIncohRes::intensityFactor( const LauKinematics* kinematics )
52 {
53  Int_t pair = this->getPairInt();
54  Double_t mass( 0. );
55 
56  switch ( pair ) {
57  case 1 :
58  mass = kinematics->getm23();
59  break;
60  case 2 :
61  mass = kinematics->getm13();
62  break;
63  case 3 :
64  mass = kinematics->getm12();
65  break;
66  default :
67  std::cerr << "ERROR in LauGaussIncohRes::intensityFactor : Incorrect daughter pair defined."
68  << std::endl;
69  std::cerr << " Returning zero intensity." << std::endl;
70  return 0.;
71  }
72 
73  Double_t m0 = this->getMass();
74  Double_t G0 = this->getWidth();
75 
76  if ( G0 == 0 ) {
77  std::cerr << "ERROR in LauGaussIncohRes::intensityFactor : Gaussian width cannot be zero."
78  << std::endl;
79  std::cerr << " Returning zero intensity." << std::endl;
80  return 0.;
81  }
82 
83  Double_t exponent = -0.5 * ( mass - m0 ) * ( mass - m0 ) / ( G0 * G0 );
84  Double_t intensity = TMath::Exp( exponent );
85 
86  return intensity;
87 }
88 
89 const std::vector<LauParameter*>& LauGaussIncohRes::getFloatingParameters()
90 {
92 
93  if ( ! this->fixMass() ) {
94  this->addFloatingParameter( this->getMassPar() );
95  }
96  if ( ! this->fixWidth() ) {
97  this->addFloatingParameter( this->getWidthPar() );
98  }
99 
100  return this->getParameters();
101 }
Double_t getWidth() const
Get the width of the resonance.
Abstract class for defining incoherent resonant amplitude models.
LauParameter * getMassPar()
Get the mass parameter of the resonance.
virtual void initialise()
Initialise the model.
virtual Double_t intensityFactor(const LauKinematics *kinematics)
Get intensity factor.
std::vector< LauParameter * > & getParameters()
Access the list of floating parameters.
virtual const std::vector< LauParameter * > & getFloatingParameters()
Retrieve the resonance parameters, e.g. so that they can be loaded into a fit.
void addFloatingParameter(LauParameter *param)
Add parameter to the list of floating parameters.
Int_t getPairInt() const
Get the integer to identify which DP axis the resonance belongs to.
Double_t getm23() const
Get the m23 invariant mass.
Bool_t fixWidth() const
Get the status of resonance width (fixed or released)
Double_t getMass() const
Get the mass of the resonance.
Double_t getm12() const
Get the m12 invariant mass.
Double_t getm13() const
Get the m13 invariant mass.
Class for defining the properties of a resonant particle.
File containing LauConstants namespace.
File containing declaration of LauGaussIncohRes class.
Bool_t fixMass() const
Get the status of resonance mass (fixed or released)
void clearFloatingParameters()
Clear list of floating parameters.
Class for calculating 3-body kinematic quantities.
Class that defines the particular 3-body decay under study.
Definition: LauDaughters.hh:47
LauGaussIncohRes(LauResonanceInfo *resInfo, const Int_t resPairAmpInt, const LauDaughters *daughters)
Constructor.
LauParameter * getWidthPar()
Get the width parameter of the resonance.
virtual ~LauGaussIncohRes()
Destructor.
File containing declaration of LauKinematics class.