laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauModIndPartWaveMagPhase.cc
Go to the documentation of this file.
1 
2 /*
3 Copyright 2015 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 "Lau1DCubicSpline.hh"
32 #include "LauConstants.hh"
33 #include "LauKinematics.hh"
34 #include "LauResonanceInfo.hh"
35 
36 #include <cstdlib>
37 #include <iostream>
38 
40  Int_t resPairAmpInt,
41  const LauDaughters* daughters ) :
42  LauAbsModIndPartWave( resInfo, resPairAmpInt, daughters )
43 {
44 }
45 
47 {
48 }
49 
51 {
52  const TString& parNameBase = this->getSanitisedName();
53  const Bool_t secondStage = this->floatKnotsSecondStage();
54 
55  std::vector<LauParameter*>& magnitudePars = this->getAmp1Pars();
56  std::vector<LauParameter*>& phasePars = this->getAmp2Pars();
57 
58  TString magName( parNameBase );
59  magName += "_A";
60  magName += iKnot;
61 
62  magnitudePars.push_back( this->getResInfo()->getExtraParameter( magName ) );
63  if ( magnitudePars[iKnot] == 0 ) {
64  magnitudePars[iKnot] = new LauParameter( magName, 1.0, 0.0, 10.0, kFALSE );
65  magnitudePars[iKnot]->secondStage( secondStage );
66  this->getResInfo()->addExtraParameter( magnitudePars[iKnot] );
67  }
68 
69  TString phaseName( parNameBase );
70  phaseName += "_d";
71  phaseName += iKnot;
72 
73  phasePars.push_back( this->getResInfo()->getExtraParameter( phaseName ) );
74  if ( phasePars[iKnot] == 0 ) {
75  phasePars[iKnot] =
76  new LauParameter( phaseName, 1.0, -6.0 * LauConstants::pi, 6.0 * LauConstants::pi, kFALSE );
77  phasePars[iKnot]->secondStage( secondStage );
78  this->getResInfo()->addExtraParameter( phasePars[iKnot] );
79  }
80 }
81 
82 void LauModIndPartWaveMagPhase::setKnotAmp( const UInt_t knot,
83  const Double_t magVal,
84  const Double_t phaseVal,
85  const Bool_t fixMagnitude,
86  const Bool_t fixPhase )
87 {
88  const UInt_t nknots = this->nKnots();
89 
90  if ( knot >= nknots ) {
91  std::cerr << "WARNING in LauModIndPartWaveMagPhase::setKnotAmp : Index " << knot
92  << " does not correspond to an existing knot in resonance "
93  << this->getResonanceName() << std::endl;
94  std::cerr << " : Index must be in range 0 to "
95  << nknots - 1 << std::endl;
96  return;
97  }
98 
99  const std::vector<Double_t>& masses = this->getMasses();
100 
101  std::vector<Double_t>& magnitudes = this->getAmp1Vals();
102  std::vector<Double_t>& phases = this->getAmp2Vals();
103 
104  std::vector<LauParameter*>& magnitudePars = this->getAmp1Pars();
105  std::vector<LauParameter*>& phasePars = this->getAmp2Pars();
106 
107  magnitudes[knot] = magVal;
108  magnitudePars[knot]->value( magVal );
109  magnitudePars[knot]->genValue( magVal );
110  magnitudePars[knot]->initValue( magVal );
111  magnitudePars[knot]->fixed( fixMagnitude );
112  phases[knot] = phaseVal;
113  phasePars[knot]->value( phaseVal );
114  phasePars[knot]->genValue( phaseVal );
115  phasePars[knot]->initValue( phaseVal );
116  phasePars[knot]->fixed( fixPhase );
117 
118  if ( knot == 0 ) {
119  std::cout << "INFO in LauModIndPartWaveMagPhase::setKnotAmp : Knot updated in resonance "
120  << this->getResonanceName() << " at lower kinematic limit (" << masses[knot]
121  << ")" << std::endl;
122  } else if ( knot == nknots - 1 ) {
123  std::cout << "INFO in LauModIndPartWaveMagPhase::setKnotAmp : Knot updated in resonance "
124  << this->getResonanceName() << " at upper kinematic limit (" << masses[knot]
125  << ")" << std::endl;
126  } else {
127  std::cout << "INFO in LauModIndPartWaveMagPhase::setKnotAmp : Knot updated in resonance "
128  << this->getResonanceName() << " at mass " << masses[knot] << std::endl;
129  }
130 
131  if ( fixMagnitude ) {
132  std::cout << " : Magnitude fixed to " << magVal
133  << std::endl;
134  } else {
135  std::cout << " : Magnitude set to " << magVal
136  << std::endl;
137  }
138 
139  if ( fixPhase ) {
140  std::cout << " : Phase fixed to " << phaseVal
141  << std::endl;
142  } else {
143  std::cout << " : Phase set to " << phaseVal
144  << std::endl;
145  }
146 }
147 
149 {
150  const Lau1DCubicSpline* splineMag = this->getSpline1();
151  const Lau1DCubicSpline* splinePhase = this->getSpline2();
152 
153  const Double_t mag = splineMag->evaluate( mass );
154  const Double_t phase = splinePhase->evaluate( mass );
155 
156  this->setAmp( mag * TMath::Cos( phase ), mag * TMath::Sin( phase ) );
157 }
File containing declaration of LauResonanceInfo class.
const TString & getSanitisedName() const
Get the name of the resonance.
const TString & getResonanceName() const
Get the name of the resonance.
LauModIndPartWaveMagPhase(LauResonanceInfo *resInfo, Int_t resPairAmpInt, const LauDaughters *daughters)
Constructor.
const Double_t pi
Pi.
const std::vector< Double_t > & getMasses()
Helper function to access the masses.
File containing declaration of LauModIndPartWaveMagPhase class.
std::vector< Double_t > & getAmp1Vals()
Helper function to access the 1st parameter set.
std::vector< LauParameter * > & getAmp2Pars()
Helper function to access the 2nd parameter set.
Bool_t secondStage() const
Check whether the parameter should be floated only in the second stage of a two stage fit.
Class for defining a 1D cubic spline based on a set of knots.
std::vector< LauParameter * > & getAmp1Pars()
Helper function to access the 1st parameter set.
File containing declaration of Lau1DCubicSpline class.
void setAmp(const Double_t realPart, const Double_t imagPart)
Helper function to set the current amplitude value.
void addExtraParameter(LauParameter *param, const Bool_t independentPar=kFALSE)
Add an extra parameter of the resonance.
LauParameter()
Default constructor.
Definition: LauParameter.cc:40
Class for defining the properties of a resonant particle.
File containing LauConstants namespace.
virtual ~LauModIndPartWaveMagPhase()
Destructor.
virtual void evaluateAmplitude(const Double_t mass)
Evaluate the amplitude at the given point from the splines.
virtual void setKnotAmp(const UInt_t knot, const Double_t magVal, const Double_t phaseVal, const Bool_t fixMagnitude, const Bool_t fixPhase)
Set the values of the two real parameters that define the amplitude at a given knot.
virtual void createAmpParameters(const UInt_t iKnot)
Method to create the parameter objects for the given knot.
UInt_t nKnots() const
Return the number of knots that have been defined (including those at the upper and lower kinematic l...
const Lau1DCubicSpline * getSpline2() const
Helper function to access the 1st spline.
Double_t evaluate(Double_t x) const
Evaluate the function at given point.
Class that defines the particular 3-body decay under study.
Definition: LauDaughters.hh:47
const Lau1DCubicSpline * getSpline1() const
Helper function to access the 1st spline.
LauResonanceInfo * getResInfo() const
Access the resonance info object.
Bool_t floatKnotsSecondStage() const
Retrieve the value of the second stage flag.
Abstract base class for defining a model independent partial wave component.
std::vector< Double_t > & getAmp2Vals()
Helper function to access the 2nd parameter set.
File containing declaration of LauKinematics class.