laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauBlattWeisskopfFactor.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 
30 
31 #include "LauParameter.hh"
32 #include "LauResonanceInfo.hh"
33 
34 #include "TMath.h"
35 
36 #include <iostream>
37 
38 // Constructor
40  const BarrierType barrierType,
41  const RestFrame restFrame,
42  const BlattWeisskopfCategory category ) :
43  spin_( resInfo.getSpin() ),
44  radius_( new LauParameter( "NEED_A_GOOD_NAME", resInfo.getBWRadius(), 0.0, 10.0, kTRUE ) ),
45  barrierType_( barrierType ),
46  restFrame_( restFrame )
47 {
48  TString categoryName = this->setRadiusName( resInfo, category );
49  std::cout << "INFO in LauBlattWeisskopfFactor constructor : creating radius parameter for category \""
50  << categoryName << "\", with initial value " << resInfo.getBWRadius() << std::endl;
51 }
52 
54  const Double_t resRadius,
55  const BarrierType barrierType,
56  const RestFrame restFrame,
57  const BlattWeisskopfCategory category ) :
58  spin_( resInfo.getSpin() ),
59  radius_( new LauParameter( "NEED_A_GOOD_NAME", resRadius, 0.0, 10.0, kTRUE ) ),
60  barrierType_( barrierType ),
61  restFrame_( restFrame )
62 {
63  TString categoryName = this->setRadiusName( resInfo, category );
64  std::cout << "INFO in LauBlattWeisskopfFactor constructor : creating radius parameter for category \""
65  << categoryName << "\", with initial value " << resRadius << std::endl;
66 }
67 
69  const Double_t resRadius,
70  const BarrierType barrierType,
71  const RestFrame restFrame,
72  const BlattWeisskopfCategory category ) :
73  spin_( spin ),
74  radius_( new LauParameter( "NEED_A_GOOD_NAME", resRadius, 0.0, 10.0, kTRUE ) ),
75  barrierType_( barrierType ),
76  restFrame_( restFrame )
77 {
78  TString categoryName = this->setRadiusName( category );
79  std::cout << "INFO in LauBlattWeisskopfFactor constructor : creating radius parameter for category \""
80  << categoryName << "\", with initial value " << resRadius << std::endl;
81 }
82 
84  const UInt_t newSpin,
85  const BarrierType newBarrierType ) :
86  spin_( newSpin ),
87  radius_( other.radius_->createClone() ),
88  barrierType_( newBarrierType ),
89  restFrame_( other.restFrame_ )
90 {
91 }
92 
94  const BlattWeisskopfCategory category )
95 {
96  switch ( category ) {
97  case Indep :
98  return this->setRadiusName( resInfo.getSanitisedName() );
99  default :
100  return this->setRadiusName( category );
101  }
102 }
103 
105 {
106  switch ( category ) {
107  case Default :
108  return this->setRadiusName( "Unknown" );
109  case Indep :
110  // We shouldn't ever end up here
111  return this->setRadiusName( "Unknown" );
112  case Parent :
113  return this->setRadiusName( "Parent" );
114  case Light :
115  return this->setRadiusName( "Light" );
116  case Kstar :
117  return this->setRadiusName( "Kstar" );
118  case Charm :
119  return this->setRadiusName( "Charm" );
120  case StrangeCharm :
121  return this->setRadiusName( "StrangeCharm" );
122  case Charmonium :
123  return this->setRadiusName( "Charmonium" );
124  case Beauty :
125  return this->setRadiusName( "Beauty" );
126  case StrangeBeauty :
127  return this->setRadiusName( "StrangeBeauty" );
128  case CharmBeauty :
129  return this->setRadiusName( "CharmBeauty" );
130  case Custom1 :
131  return this->setRadiusName( "Custom1" );
132  case Custom2 :
133  return this->setRadiusName( "Custom2" );
134  case Custom3 :
135  return this->setRadiusName( "Custom3" );
136  case Custom4 :
137  return this->setRadiusName( "Custom4" );
138  }
139  // We should never get here but gcc seems to think we can
140  return this->setRadiusName( "Unknown" );
141 }
142 
143 TString LauBlattWeisskopfFactor::setRadiusName( const TString& categoryName )
144 {
145  TString name = "BarrierRadius_";
146  name.Append( categoryName );
147 
148  radius_->name( name );
149 
150  return categoryName;
151 }
152 
154  const BarrierType newBarrierType )
155 {
156  LauBlattWeisskopfFactor* clone = new LauBlattWeisskopfFactor( *this, newSpin, newBarrierType );
157  return clone;
158 }
159 
160 Double_t LauBlattWeisskopfFactor::calcFormFactor( const Double_t p ) const
161 {
162  // Calculate the requested form factor for the resonance, given the momentum value
163  Double_t fFactor( 1.0 );
164 
165  // For scalars the form factor is always unity
166  // TODO: and we currently don't have formulae for spin > 5
167  if ( ( spin_ == 0 ) || ( spin_ > 5 ) ) {
168  return fFactor;
169  }
170 
171  const Double_t radius = radius_->unblindValue();
172  const Double_t z = radius * radius * p * p;
173 
174  if ( barrierType_ == BWBarrier ) {
175  if ( spin_ == 1 ) {
176  fFactor = TMath::Sqrt( 2.0 * z / ( z + 1.0 ) );
177  } else if ( spin_ == 2 ) {
178  fFactor = TMath::Sqrt( 13.0 * z * z / ( z * z + 3.0 * z + 9.0 ) );
179  } else if ( spin_ == 3 ) {
180  fFactor = TMath::Sqrt( 277.0 * z * z * z /
181  ( z * z * z + 6.0 * z * z + 45.0 * z + 225.0 ) );
182  } else if ( spin_ == 4 ) {
183  fFactor = TMath::Sqrt(
184  12746.0 * z * z * z * z /
185  ( z * z * z * z + 10.0 * z * z * z + 135.0 * z * z + 1575.0 * z + 11025.0 ) );
186  } else if ( spin_ == 5 ) {
187  fFactor = TMath::Sqrt( 998881.0 * z * z * z * z * z /
188  ( z * z * z * z * z + 15.0 * z * z * z * z + 315.0 * z * z * z +
189  6300.0 * z * z + 99225.0 * z + 893025.0 ) );
190  }
191  } else if ( barrierType_ == BWPrimeBarrier ) {
192  if ( spin_ == 1 ) {
193  fFactor = TMath::Sqrt( 1.0 / ( z + 1.0 ) );
194  } else if ( spin_ == 2 ) {
195  fFactor = TMath::Sqrt( 1.0 / ( z * z + 3.0 * z + 9.0 ) );
196  } else if ( spin_ == 3 ) {
197  fFactor = TMath::Sqrt( 1.0 / ( z * z * z + 6.0 * z * z + 45.0 * z + 225.0 ) );
198  } else if ( spin_ == 4 ) {
199  fFactor = TMath::Sqrt(
200  1.0 / ( z * z * z * z + 10.0 * z * z * z + 135.0 * z * z + 1575.0 * z + 11025.0 ) );
201  } else if ( spin_ == 5 ) {
202  fFactor = TMath::Sqrt( 1.0 /
203  ( z * z * z * z * z + 15.0 * z * z * z * z + 315.0 * z * z * z +
204  6300.0 * z * z + 99225.0 * z + 893025.0 ) );
205  }
206  } else if ( barrierType_ == ExpBarrier ) {
207  if ( spin_ == 1 ) {
208  fFactor = TMath::Exp( -TMath::Sqrt( z ) );
209  } else if ( spin_ == 2 ) {
210  fFactor = TMath::Exp( -z );
211  } else if ( spin_ == 3 ) {
212  fFactor = TMath::Exp( -TMath::Sqrt( z * z * z ) );
213  } else if ( spin_ == 4 ) {
214  fFactor = TMath::Exp( -z * z );
215  } else if ( spin_ == 5 ) {
216  fFactor = TMath::Exp( -TMath::Sqrt( z * z * z * z * z ) );
217  }
218  }
219 
220  return fFactor;
221 }
File containing declaration of LauResonanceInfo class.
File containing declaration of LauBlattWeisskopfFactor class.
TString setRadiusName(const LauResonanceInfo &resInfo, const BlattWeisskopfCategory category)
Set the name of the radius parameter.
Class for defining the fit parameter objects.
Definition: LauParameter.hh:49
Double_t unblindValue() const
The unblinded value of the parameter.
Double_t calcFormFactor(const Double_t p) const
Calculate form factor value.
LauBlattWeisskopfFactor(const LauResonanceInfo &resInfo, const BarrierType barrierType, const RestFrame restFrame, const BlattWeisskopfCategory category)
Constructor.
LauBlattWeisskopfFactor * createClone(const UInt_t newSpin, const BarrierType newBarrierType)
Method to create a new factor with cloned radius parameter.
File containing declaration of LauParameter class.
Bool_t clone() const
Check whether is a clone or not.
LauParameter * radius_
Radius parameter.
BarrierType
Define the allowed types of barrier factors.
LauParameter * createClone(Double_t constFactor=1.0)
Method to create a clone from the parent parameter using the copy constructor.
const UInt_t spin_
Resonance spin.
TString getSanitisedName() const
Retrieve the sanitised name of the resonant particle.
Class for defining the properties of a resonant particle.
const TString & name() const
The parameter name.
const BarrierType barrierType_
Barrier type.
BlattWeisskopfCategory
Define resonance categories that will share common barrier factor radii.
Double_t getBWRadius() const
Retrieve the BW radius of the resonant particle.
RestFrame
Define the rest frame in which the momentum should be calculated (only relevant for bachelor)
Class that implements the Blatt-Weisskopf barrier factor.