laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauKappaRes.cc
Go to the documentation of this file.
1 
2 /*
3 Copyright 2004 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 "LauKappaRes.hh"
30 
31 #include "LauConstants.hh"
32 #include "LauResonanceInfo.hh"
33 
34 #include <iostream>
35 
37  const Int_t resPairAmpInt,
38  const LauDaughters* daughters ) :
39  LauAbsResonance( resInfo, resPairAmpInt, daughters ),
40  mSumSq_( ( LauConstants::mPi + LauConstants::mK ) * ( LauConstants::mPi + LauConstants::mK ) ),
41  sAdler_( LauConstants::mKSq - 0.5 * LauConstants::mPiSq ),
42  b1_( 0 ),
43  b2_( 0 ),
44  a_( 0 ),
45  m0_( 0 )
46 {
47  // Default constant factors from BES data
48  const Double_t b1Val = 24.49;
49  const Double_t b2Val = 0.0;
50  const Double_t aVal = 2.5;
51  const Double_t m0Val = 3.3;
52 
53  const TString& parNameBase = this->getSanitisedName();
54 
55  TString b1Name( parNameBase );
56  b1Name += "_b1";
57  b1_ = resInfo->getExtraParameter( b1Name );
58  if ( b1_ == 0 ) {
59  b1_ = new LauParameter( b1Name, b1Val, 0.0, 100.0, kTRUE );
60  b1_->secondStage( kTRUE );
61  resInfo->addExtraParameter( b1_ );
62  }
63 
64  TString b2Name( parNameBase );
65  b2Name += "_b2";
66  b2_ = resInfo->getExtraParameter( b2Name );
67  if ( b2_ == 0 ) {
68  b2_ = new LauParameter( b2Name, b2Val, 0.0, 100.0, kTRUE );
69  b2_->secondStage( kTRUE );
70  resInfo->addExtraParameter( b2_ );
71  }
72 
73  TString aName( parNameBase );
74  aName += "_A";
75  a_ = resInfo->getExtraParameter( aName );
76  if ( a_ == 0 ) {
77  a_ = new LauParameter( aName, aVal, 0.0, 10.0, kTRUE );
78  a_->secondStage( kTRUE );
79  resInfo->addExtraParameter( a_ );
80  }
81 
82  TString m0Name( parNameBase );
83  m0Name += "_m0";
84  m0_ = resInfo->getExtraParameter( m0Name );
85  if ( m0_ == 0 ) {
86  m0_ = new LauParameter( m0Name, m0Val, 0.0, 10.0, kTRUE );
87  m0_->secondStage( kTRUE );
88  resInfo->addExtraParameter( m0_ );
89  }
90 }
91 
93 {
94 }
95 
97 {
98  this->checkDaughterTypes();
99 
100  Double_t resSpin = this->getSpin();
101  if ( resSpin != 0 ) {
102  std::cerr << "WARNING in LauKappaRes::initialise : Resonance spin is " << resSpin << "."
103  << std::endl;
104  std::cerr << " : Kappa amplitude is only for scalers, resetting spin to 0."
105  << std::endl;
106  this->changeResonance( -1.0, -1.0, 0 );
107  }
108 }
109 
111 {
112  // Check that the daughter tracks are K and pi. Otherwise issue a warning.
113 
114  Int_t resPairAmpInt = this->getPairInt();
115  if ( resPairAmpInt < 1 || resPairAmpInt > 3 ) {
116  std::cerr << "WARNING in LauKappaRes::checkDaughterTypes : resPairAmpInt = " << resPairAmpInt
117  << " is out of the range [1,2,3]." << std::endl;
118  return;
119  }
120 
121  const TString& nameDaug1 = this->getNameDaug1();
122  const TString& nameDaug2 = this->getNameDaug2();
123  if ( ! ( nameDaug1.Contains( "pi", TString::kIgnoreCase ) &&
124  nameDaug2.Contains( "k", TString::kIgnoreCase ) ) ) {
125  if ( ! ( nameDaug2.Contains( "pi", TString::kIgnoreCase ) &&
126  nameDaug1.Contains( "k", TString::kIgnoreCase ) ) ) {
127  std::cerr << "ERROR in LauKappaRes::checkDaughterTypes : Kappa model is using daughters \""
128  << nameDaug1 << "\" and \"" << nameDaug2
129  << "\" that are not a kaon and a pion." << std::endl;
130  }
131  }
132 }
133 
134 LauComplex LauKappaRes::resAmp( Double_t mass, Double_t spinTerm )
135 {
136  // This function returns the complex dynamical amplitude for a Kappa distribution
137  // given the invariant mass and cos(helicity) values.
138 
139  // First check that the appropriate daughters are either pi+pi- or K+K-
140  // Check that the daughter tracks are the same type. Otherwise issue a warning
141  // and set the type to be pion for the Kappa distribution. Returns the
142  // integer defined by the enum LauKappaRes::KappaPartType.
143 
144  Double_t s = mass * mass; // Invariant mass squared combination for the system
145  Double_t rho( 0.0 ); // Phase-space factor
146  if ( s > mSumSq_ ) {
147  rho = TMath::Sqrt( 1.0 - mSumSq_ / s );
148  }
149 
150  const Double_t m0Val = this->getM0Value();
151  const Double_t m0Sq = m0Val * m0Val;
152 
153  const Double_t aVal = this->getAValue();
154  const Double_t b1Val = this->getB1Value();
155  const Double_t b2Val = this->getB2Value();
156 
157  Double_t f = b2Val * s + b1Val; // f(s) function
158  Double_t numerator = s - sAdler_;
159  Double_t denom = m0Sq - sAdler_;
160  Double_t gamma( 0.0 );
161  if ( TMath::Abs( denom ) > 1e-10 && TMath::Abs( aVal ) > 1e-10 ) {
162  // Decay width of the system
163  gamma = rho * ( numerator / denom ) * f * TMath::Exp( -( s - m0Sq ) / aVal );
164  }
165 
166  // Now form the complex amplitude - use relativistic BW form (without barrier factors)
167  // Note that the M factor in the denominator is not the "pole" at ~500 MeV, but is
168  // m0_ = 0.9264, the mass when the phase shift goes through 90 degrees.
169 
170  Double_t dMSq = m0Sq - s;
171  Double_t widthTerm = gamma * m0Val;
172  LauComplex resAmplitude( dMSq, widthTerm );
173 
174  Double_t denomFactor = dMSq * dMSq + widthTerm * widthTerm;
175 
176  Double_t invDenomFactor = 0.0;
177  if ( denomFactor > 1e-10 ) {
178  invDenomFactor = 1.0 / denomFactor;
179  }
180 
181  resAmplitude.rescale( spinTerm * invDenomFactor );
182 
183  return resAmplitude;
184 }
185 
186 const std::vector<LauParameter*>& LauKappaRes::getFloatingParameters()
187 {
188  this->clearFloatingParameters();
189 
190  if ( ! this->fixB1Value() ) {
191  this->addFloatingParameter( b1_ );
192  }
193 
194  if ( ! this->fixB2Value() ) {
195  this->addFloatingParameter( b2_ );
196  }
197 
198  if ( ! this->fixAValue() ) {
199  this->addFloatingParameter( a_ );
200  }
201 
202  if ( ! this->fixM0Value() ) {
203  this->addFloatingParameter( m0_ );
204  }
205 
206  return this->getParameters();
207 }
208 
209 void LauKappaRes::setResonanceParameter( const TString& name, const Double_t value )
210 {
211  // Set various parameters for the lineshape
212  if ( name == "b1" ) {
213  this->setB1Value( value );
214  std::cout << "INFO in LauKappaRes::setResonanceParameter : Setting parameter b1 = "
215  << this->getB1Value() << std::endl;
216  } else if ( name == "b2" ) {
217  this->setB2Value( value );
218  std::cout << "INFO in LauKappaRes::setResonanceParameter : Setting parameter b2 = "
219  << this->getB2Value() << std::endl;
220  } else if ( name == "A" ) {
221  this->setAValue( value );
222  std::cout << "INFO in LauKappaRes::setResonanceParameter : Setting parameter A = "
223  << this->getAValue() << std::endl;
224  } else if ( name == "m0" ) {
225  this->setM0Value( value );
226  std::cout << "INFO in LauKappaRes::setResonanceParameter : Setting parameter m0 = "
227  << this->getM0Value() << std::endl;
228  } else {
229  std::cerr << "WARNING in LauKappaRes::setResonanceParameter: Parameter name not reconised. No parameter changes made."
230  << std::endl;
231  }
232 }
233 
235 {
236  if ( name == "b1" ) {
237  if ( b1_->fixed() ) {
238  b1_->fixed( kFALSE );
239  this->addFloatingParameter( b1_ );
240  } else {
241  std::cerr << "WARNING in LauKappaRes::floatResonanceParameter: Parameter already floating. No parameter changes made."
242  << std::endl;
243  }
244  } else if ( name == "b2" ) {
245  if ( b2_->fixed() ) {
246  b2_->fixed( kFALSE );
247  this->addFloatingParameter( b2_ );
248  } else {
249  std::cerr << "WARNING in LauKappaRes::floatResonanceParameter: Parameter already floating. No parameter changes made."
250  << std::endl;
251  }
252  } else if ( name == "A" ) {
253  if ( a_->fixed() ) {
254  a_->fixed( kFALSE );
255  this->addFloatingParameter( a_ );
256  } else {
257  std::cerr << "WARNING in LauKappaRes::floatResonanceParameter: Parameter already floating. No parameter changes made."
258  << std::endl;
259  }
260  } else if ( name == "m0" ) {
261  if ( m0_->fixed() ) {
262  m0_->fixed( kFALSE );
263  this->addFloatingParameter( m0_ );
264  } else {
265  std::cerr << "WARNING in LauKappaRes::floatResonanceParameter: Parameter already floating. No parameter changes made."
266  << std::endl;
267  }
268  } else {
269  std::cerr << "WARNING in LauKappaRes::fixResonanceParameter: Parameter name not reconised. No parameter changes made."
270  << std::endl;
271  }
272 }
273 
275 {
276  if ( name == "b1" ) {
277  return b1_;
278  } else if ( name == "b2" ) {
279  return b2_;
280  } else if ( name == "A" ) {
281  return a_;
282  } else if ( name == "m0" ) {
283  return m0_;
284  } else {
285  std::cerr << "WARNING in LauKappaRes::getResonanceParameter: Parameter name not reconised."
286  << std::endl;
287  return 0;
288  }
289 }
290 
291 void LauKappaRes::setB1Value( const Double_t b1 )
292 {
293  b1_->value( b1 );
294  b1_->genValue( b1 );
295  b1_->initValue( b1 );
296 }
297 
298 void LauKappaRes::setB2Value( const Double_t b2 )
299 {
300  b2_->value( b2 );
301  b2_->genValue( b2 );
302  b2_->initValue( b2 );
303 }
304 
305 void LauKappaRes::setAValue( const Double_t A )
306 {
307  a_->value( A );
308  a_->genValue( A );
309  a_->initValue( A );
310 }
311 
312 void LauKappaRes::setM0Value( const Double_t m0 )
313 {
314  m0_->value( m0 );
315  m0_->genValue( m0 );
316  m0_->initValue( m0 );
317 }
virtual void floatResonanceParameter(const TString &name)
Allow the various parameters to float in the fit.
Definition: LauKappaRes.cc:234
File containing declaration of LauResonanceInfo class.
const Double_t mPiSq
Square of pi+- mass.
Definition: LauConstants.hh:80
virtual LauComplex resAmp(Double_t mass, Double_t spinTerm)
Complex resonant amplitude.
Definition: LauKappaRes.cc:134
const TString & getSanitisedName() const
Get the name of the resonance.
Class for defining the fit parameter objects.
Definition: LauParameter.hh:49
Double_t getAValue() const
Get the A parameter value.
Definition: LauKappaRes.hh:138
Double_t value() const
The value of the parameter.
Bool_t fixB1Value() const
Fix the b1 parameter value.
Definition: LauKappaRes.hh:150
void setM0Value(const Double_t m0)
Set the m0 parameter.
Definition: LauKappaRes.cc:312
std::vector< LauParameter * > & getParameters()
Access the list of floating parameters.
Double_t getB2Value() const
Get the b2 parameter value.
Definition: LauKappaRes.hh:132
void setAValue(const Double_t A)
Set the A parameter.
Definition: LauKappaRes.cc:305
Bool_t fixAValue() const
Fix the A parameter value.
Definition: LauKappaRes.hh:162
Bool_t fixB2Value() const
Fix the b2 parameter value.
Definition: LauKappaRes.hh:156
LauParameter * getExtraParameter(const TString &parName)
Retrieve an extra parameter of the resonance.
void setB2Value(const Double_t b2)
Set the b2 parameter.
Definition: LauKappaRes.cc:298
virtual void initialise()
Initialise the model.
Definition: LauKappaRes.cc:96
virtual LauParameter * getResonanceParameter(const TString &name)
Access the given resonance parameter.
Definition: LauKappaRes.cc:274
Int_t getSpin() const
Get the spin of the resonance.
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 complex number.
Definition: LauComplex.hh:61
void changeResonance(const Double_t newMass, const Double_t newWidth, const Int_t newSpin)
Allow the mass, width and spin of the resonance to be changed.
void addFloatingParameter(LauParameter *param)
Add parameter to the list of floating parameters.
Namespace to contain various constants.
Int_t getPairInt() const
Get the integer to identify which DP axis the resonance belongs to.
void rescale(Double_t scaleVal)
Scale this by a factor.
Definition: LauComplex.hh:301
File containing declaration of LauKappaRes class.
LauParameter * m0_
Factor from BES data.
Definition: LauKappaRes.hh:199
LauParameter * b1_
Factor from BES data.
Definition: LauKappaRes.hh:193
const Double_t mKSq
Square of K+- mass.
Definition: LauConstants.hh:84
void checkDaughterTypes() const
Check that Kappa daughters are K and pi.
Definition: LauKappaRes.cc:110
void setB1Value(const Double_t b1)
Set the b1 parameter.
Definition: LauKappaRes.cc:291
void addExtraParameter(LauParameter *param, const Bool_t independentPar=kFALSE)
Add an extra parameter of the resonance.
const Double_t sAdler_
Defined as mK*mK - 0.5*mPi*mPi.
Definition: LauKappaRes.hh:190
Bool_t fixed() const
Check whether the parameter is fixed or floated.
Double_t getB1Value() const
Get the b1 parameter value.
Definition: LauKappaRes.hh:126
LauParameter()
Default constructor.
Definition: LauParameter.cc:40
LauParameter * b2_
Factor from BES data.
Definition: LauKappaRes.hh:195
Class for defining the properties of a resonant particle.
File containing LauConstants namespace.
const TString & name() const
The parameter name.
virtual ~LauKappaRes()
Destructor.
Definition: LauKappaRes.cc:92
Double_t getM0Value() const
Get the m0 parameter value.
Definition: LauKappaRes.hh:144
const Double_t mK
Mass of K+- (GeV/c^2)
Definition: LauConstants.hh:59
void clearFloatingParameters()
Clear list of floating parameters.
Abstract class for defining type for resonance amplitude models (Breit-Wigner, Flatte etc....
virtual const std::vector< LauParameter * > & getFloatingParameters()
Retrieve the resonance parameters, e.g. so that they can be loaded into a fit.
Definition: LauKappaRes.cc:186
LauKappaRes(LauResonanceInfo *resInfo, const Int_t resPairAmpInt, const LauDaughters *daughters)
Constructor.
Definition: LauKappaRes.cc:36
Bool_t fixM0Value() const
Fix the m0 parameter value.
Definition: LauKappaRes.hh:168
Double_t genValue() const
The value generated for the parameter.
const Double_t mSumSq_
Square of (mK + mPi)
Definition: LauKappaRes.hh:188
const Double_t mPi
Mass of pi+- (GeV/c^2)
Definition: LauConstants.hh:55
LauParameter * a_
Factor from BES data.
Definition: LauKappaRes.hh:197
Class that defines the particular 3-body decay under study.
Definition: LauDaughters.hh:47
TString getNameDaug1() const
Get the name of the first daughter of the resonance.
TString getNameDaug2() const
Get the name of the second daughter of the resonance.
Double_t initValue() const
The initial value of the parameter.
virtual void setResonanceParameter(const TString &name, const Double_t value)
Set value of the various parameters.
Definition: LauKappaRes.cc:209