laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauRelBreitWignerRes.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 "LauRelBreitWignerRes.hh"
30 
31 #include "LauConstants.hh"
32 
33 #include <iostream>
34 
36  const Int_t resPairAmpInt,
37  const LauDaughters* daughters ) :
38  LauAbsResonance( resInfo, resPairAmpInt, daughters ),
39  q0_( 0.0 ),
40  resMass_( 0.0 ),
41  resMassSq_( 0.0 ),
42  resWidth_( 0.0 ),
43  resRadius_( 0.0 ),
44  parRadius_( 0.0 ),
45  mDaugSum_( 0.0 ),
46  mDaugSumSq_( 0.0 ),
47  mDaugDiff_( 0.0 ),
48  mDaugDiffSq_( 0.0 ),
49  mParentSq_( 0.0 ),
50  mBachSq_( 0.0 ),
51  FR0_( 1.0 )
52 {
53 }
54 
56 {
57 }
58 
60 {
61  // Set-up various constants. This must be called again if the mass/width/spin
62  // of a resonance changes...
63 
64  resMass_ = this->getMass();
65  resWidth_ = this->getWidth();
66  resRadius_ = this->getResRadius();
67  parRadius_ = this->getParRadius();
68 
69  Double_t massDaug1 = this->getMassDaug1();
70  Double_t massDaug2 = this->getMassDaug2();
71  Double_t massBachelor = this->getMassBachelor();
72  Double_t massParent = this->getMassParent();
73 
74  // Create the mass squares, sums, differences etc.
76  mDaugSum_ = massDaug1 + massDaug2;
78  mDaugDiff_ = massDaug1 - massDaug2;
80  mParentSq_ = massParent * massParent;
81  mBachSq_ = massBachelor * massBachelor;
82 
83  // Create an effective resonance pole mass to protect against resonances
84  // that are below threshold
85  Double_t effResMass = resMass_;
86  Double_t effResMassSq = resMassSq_;
87  if ( resMassSq_ - mDaugSumSq_ < 0.0 ) {
88  Double_t minMass = mDaugSum_;
89  Double_t maxMass = massParent - massBachelor;
90  Double_t tanhTerm = std::tanh( ( resMass_ - ( ( minMass + maxMass ) / 2 ) ) /
91  ( maxMass - minMass ) );
92  effResMass = minMass + ( maxMass - minMass ) * ( 1 + tanhTerm ) / 2;
93  effResMassSq = effResMass * effResMass;
94  }
95 
96  // Decay momentum of either daughter in the resonance rest frame
97  // when resonance mass = rest-mass value, m_0 (PDG value)
98  Double_t term1 = effResMassSq - mDaugSumSq_;
99  Double_t term2 = effResMassSq - mDaugDiffSq_;
100  Double_t term12 = term1 * term2;
101  if ( term12 > 0.0 ) {
102  q0_ = TMath::Sqrt( term12 ) / ( 2.0 * effResMass );
103  } else {
104  q0_ = 0.0;
105  }
106 
107  // Calculate the resonance Blatt-Weisskopf form factor for the case when m = m_0
108  FR0_ = 1.0;
109  if ( this->getSpin() > 0 ) {
110  const LauBlattWeisskopfFactor* resBWFactor = this->getResBWFactor();
111  if ( resBWFactor != nullptr ) {
112  FR0_ = resBWFactor->calcFormFactor( q0_ );
113  }
114  }
115 }
116 
117 LauComplex LauRelBreitWignerRes::resAmp( Double_t mass, Double_t spinTerm )
118 {
119  // This function returns the complex dynamical amplitude for a Breit-Wigner resonance,
120  // given the invariant mass and cos(helicity) values.
121 
122  LauComplex resAmplitude( 0.0, 0.0 );
123 
124  if ( mass < 1e-10 ) {
125  std::cerr << "WARNING in LauRelBreitWignerRes::amplitude : mass < 1e-10." << std::endl;
126  return LauComplex( 0.0, 0.0 );
127  } else if ( q0_ < 1e-30 ) {
128  return LauComplex( 0.0, 0.0 );
129  }
130 
131  // Calculate the width of the resonance (as a function of mass)
132  // First, calculate the various form factors.
133  // NB
134  // q is the momentum of either daughter in the resonance rest-frame,
135  // p is the momentum of the bachelor in the resonance rest-frame,
136  // pstar is the momentum of the bachelor in the parent rest-frame.
137  // These quantities have been calculate in LauAbsResonance::amplitude(...)
138 
139  const Double_t resMass = this->getMass();
140  const Double_t resWidth = this->getWidth();
141  const Double_t resRadius = this->getResRadius();
142  const Double_t parRadius = this->getParRadius();
143 
144  // If the mass is floating and its value has changed we need to
145  // recalculate everything that assumes that value
146  // Similarly for the BW radii
147  if ( ( ( ! this->fixMass() ) && resMass != resMass_ ) ||
148  ( ( ! this->fixResRadius() ) && resRadius != resRadius_ ) ||
149  ( ( ! this->fixParRadius() ) && parRadius != parRadius_ ) ) {
150 
151  this->initialise();
152  }
153 
154  const Int_t resSpin = this->getSpin();
155  const Double_t q = this->getQ();
156  const Double_t p = this->getP();
157  const Double_t pstar = this->getPstar();
158 
159  // Get barrier scaling factors
160  Double_t fFactorR( 1.0 );
161  Double_t fFactorB( 1.0 );
162  if ( resSpin > 0 ) {
163  const LauBlattWeisskopfFactor* resBWFactor = this->getResBWFactor();
164  if ( resBWFactor != nullptr ) {
165  fFactorR = resBWFactor->calcFormFactor( q );
166  }
167 
168  const LauBlattWeisskopfFactor* parBWFactor = this->getParBWFactor();
169  if ( parBWFactor != nullptr ) {
170  switch ( parBWFactor->getRestFrame() ) {
172  fFactorB = parBWFactor->calcFormFactor( p );
173  break;
175  fFactorB = parBWFactor->calcFormFactor( pstar );
176  break;
178  Double_t covFactor = this->getCovFactor();
179  if ( resSpin > 2 ) {
180  covFactor = TMath::Power( covFactor, 1.0 / resSpin );
181  } else if ( resSpin == 2 ) {
182  covFactor = TMath::Sqrt( covFactor );
183  }
184  fFactorB = parBWFactor->calcFormFactor( pstar * covFactor );
185  break;
186  }
187  }
188  }
189  }
190 
191  // If ignoreMomenta is set, set the total width simply as the pole width, and do
192  // not include any momentum-dependent barrier factors (set them to unity)
193  Double_t totWidth( resWidth );
194 
195  if ( ! this->ignoreMomenta() ) {
196 
197  const Double_t qRatio = q / q0_;
198  Double_t qTerm( 0.0 );
199  if ( resSpin == 0 ) {
200  qTerm = qRatio;
201  } else if ( resSpin == 1 ) {
202  qTerm = qRatio * qRatio * qRatio;
203  } else if ( resSpin == 2 ) {
204  qTerm = qRatio * qRatio * qRatio * qRatio * qRatio;
205  } else {
206  qTerm = TMath::Power( qRatio, 2.0 * resSpin + 1.0 );
207  }
208 
209  const Double_t fFactorRRatio = fFactorR / FR0_;
210 
211  totWidth = resWidth * qTerm * ( resMass / mass ) * fFactorRRatio * fFactorRRatio;
212  }
213 
214  const Double_t massSq = mass * mass;
215  const Double_t massSqTerm = resMassSq_ - massSq;
216 
217  // Compute the complex amplitude
218  resAmplitude = LauComplex( massSqTerm, resMass * totWidth );
219 
220  // Scale by the denominator factor, as well as the spin term
221  Double_t scale = spinTerm / ( massSqTerm * massSqTerm + resMassSq_ * totWidth * totWidth );
222 
223  // Include Blatt-Weisskopf barrier factors
224  if ( ! this->ignoreBarrierScaling() ) {
225  scale *= fFactorR * fFactorB;
226  }
227 
228  resAmplitude.rescale( scale );
229 
230  return resAmplitude;
231 }
232 
233 const std::vector<LauParameter*>& LauRelBreitWignerRes::getFloatingParameters()
234 {
235  this->clearFloatingParameters();
236 
237  if ( ! this->fixMass() ) {
238  this->addFloatingParameter( this->getMassPar() );
239  }
240  if ( ! this->fixWidth() ) {
241  this->addFloatingParameter( this->getWidthPar() );
242  }
243  if ( ! this->fixResRadius() ) {
244  this->addFloatingParameter( this->getResBWFactor()->getRadiusParameter() );
245  }
246  if ( ! this->fixParRadius() ) {
247  this->addFloatingParameter( this->getParBWFactor()->getRadiusParameter() );
248  }
249 
250  return this->getParameters();
251 }
Double_t getWidth() const
Get the width of the resonance.
RestFrame getRestFrame() const
Retrieve the rest frame information.
Double_t calcFormFactor(const Double_t p) const
Calculate form factor value.
LauParameter * getMassPar()
Get the mass parameter of the resonance.
LauBlattWeisskopfFactor * getParBWFactor()
Get the centrifugal barrier for the parent decay.
virtual void initialise()
Initialise the model.
Double_t resMass_
The resonance mass.
Double_t q0_
Momentum of the daughters in the resonance rest frame (at pole mass)
std::vector< LauParameter * > & getParameters()
Access the list of floating parameters.
Double_t getPstar() const
Get the current value of the bachelor momentum in the parent rest frame.
File containing declaration of LauRelBreitWignerRes class.
Bool_t fixResRadius() const
Get the status of resonance barrier radius (fixed or released)
Double_t mParentSq_
Square of the parent mass.
Bool_t ignoreMomenta() const
Get the ignore momenta flag.
Int_t getSpin() const
Get the spin of the resonance.
Class for defining a complex number.
Definition: LauComplex.hh:61
void addFloatingParameter(LauParameter *param)
Add parameter to the list of floating parameters.
Double_t getCovFactor() const
Get the current value of the full spin-dependent covariant factor.
void rescale(Double_t scaleVal)
Scale this by a factor.
Definition: LauComplex.hh:301
Double_t getMassParent() const
Get the parent particle mass.
Bool_t fixWidth() const
Get the status of resonance width (fixed or released)
Double_t FR0_
Value of the form factor for resonance decay (at pole mass)
Double_t getMass() const
Get the mass of the resonance.
Double_t resWidth_
The resonance width.
Double_t parRadius_
The parent barrier radius.
Class for defining the properties of a resonant particle.
virtual ~LauRelBreitWignerRes()
Destructor.
LauRelBreitWignerRes(LauResonanceInfo *resInfo, const Int_t resPairAmpInt, const LauDaughters *daughters)
Constructor.
File containing LauConstants namespace.
Double_t mDaugSum_
Sum of the two daughter masses.
Bool_t ignoreBarrierScaling() const
Get the ignore barrier factor scaling flag.
Double_t getMassDaug1() const
Get the mass of daughter 1.
Double_t getQ() const
Get the current value of the daughter momentum in the resonance rest frame.
Bool_t fixMass() const
Get the status of resonance mass (fixed or released)
Double_t mDaugDiff_
Difference of the two daughter masses.
Double_t getParRadius() const
Get the radius of the parent barrier factor.
Double_t getResRadius() const
Get the radius of the resonance barrier factor.
virtual const std::vector< LauParameter * > & getFloatingParameters()
Retrieve the resonance parameters, e.g. so that they can be loaded into a fit.
Double_t getMassDaug2() const
Get the mass of daughter 2.
Bool_t fixParRadius() const
Get the status of parent barrier radius (fixed or released)
void clearFloatingParameters()
Clear list of floating parameters.
Abstract class for defining type for resonance amplitude models (Breit-Wigner, Flatte etc....
Double_t resMassSq_
Square of the resonance mass.
Class that defines the particular 3-body decay under study.
Definition: LauDaughters.hh:47
LauBlattWeisskopfFactor * getResBWFactor()
Get the centrifugal barrier for the resonance decay.
Double_t getP() const
Get the current value of the bachelor momentum in the resonance rest frame.
Double_t mDaugSumSq_
Square of the sum of the two daughter masses.
Double_t mBachSq_
Square of the bachelor mass.
LauParameter * getWidthPar()
Get the width parameter of the resonance.
Double_t getMassBachelor() const
Get the mass of the bachelor daughter.
Double_t mDaugDiffSq_
Square of the difference of the two daughter masses.
virtual LauComplex resAmp(Double_t mass, Double_t spinTerm)
Complex resonant amplitude.
Class that implements the Blatt-Weisskopf barrier factor.
Double_t resRadius_
The resonance barrier radius.