laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauKMatrixProdPole.cc
Go to the documentation of this file.
1 
2 /*
3 Copyright 2008 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 "LauKMatrixProdPole.hh"
30 
31 #include "LauKMatrixPropagator.hh"
32 #include "LauResonanceMaker.hh"
33 
34 #include <iostream>
35 
36 LauKMatrixProdPole::LauKMatrixProdPole( const TString& poleName,
37  Int_t poleIndex,
38  Int_t resPairAmpInt,
39  LauKMatrixPropagator* propagator,
40  const LauDaughters* daughters,
41  Bool_t useProdAdler ) :
42  LauAbsResonance( poleName, resPairAmpInt, daughters, propagator->getL( propagator->getIndex() ) ),
43  thePropagator_( propagator ),
44  poleIndex_( poleIndex - 1 ), // poleIndex goes from 1 to nPoles
45  useProdAdler_( useProdAdler )
46 {
47 
48  if ( useProdAdler_ ) {
49  std::cout << "Creating K matrix production pole " << poleName
50  << " with poleIndex = " << poleIndex
51  << " with s-dependent production Adler zero term" << std::endl;
52  } else {
53  std::cout << "Creating K matrix production pole " << poleName
54  << " with poleIndex = " << poleIndex << " with production Adler zero factor = 1"
55  << std::endl;
56  }
57 
58  // `Resonance' Blatt-Weisskopf factor is handled internally, but parent must be set here. For other lineshapes, LauResonanceMaker handles this.
59  this->setBarrierRadii(
60  nullptr,
61  LauResonanceMaker::get().getParentBWFactor( propagator->getL( propagator->getIndex() ),
63 }
64 
66 {
67 }
68 
69 LauComplex LauKMatrixProdPole::resAmp( const Double_t mass, const Double_t spinTerm )
70 {
71  // Calculate the amplitude for the K-matrix production pole.
72  LauComplex amp( 0.0, 0.0 );
73 
74  if ( thePropagator_ == 0 ) {
75  std::cerr << "ERROR in LauKMatrixProdPole::amplitude : The propagator is null" << std::endl;
76  return amp;
77  }
78 
79  // Get barrier factors ('resonance' factor is already accounted for internally via propagator 'Gamma' matrix)
80  Double_t fFactorB( 1.0 );
81 
82  const Int_t resSpin = this->getSpin();
83  const Double_t pstar = this->getPstar();
84 
85  if ( resSpin > 0 ) {
86  const LauBlattWeisskopfFactor* parBWFactor = this->getParBWFactor();
87  if ( parBWFactor != nullptr ) {
88  switch ( parBWFactor->getRestFrame() ) {
90  fFactorB = parBWFactor->calcFormFactor( this->getP() );
91  break;
93  fFactorB = parBWFactor->calcFormFactor( pstar );
94  break;
96  Double_t covFactor = this->getCovFactor();
97  if ( resSpin > 2 ) {
98  covFactor = TMath::Power( covFactor, 1.0 / resSpin );
99  } else if ( resSpin == 2 ) {
100  covFactor = TMath::Sqrt( covFactor );
101  }
102  fFactorB = parBWFactor->calcFormFactor( pstar * covFactor );
103  break;
104  }
105  }
106  }
107  }
108 
109  // Make sure the K-matrix propagator is up-to-date for
110  // the given centre-of-mass squared value ("s")
111  thePropagator_->updatePropagator( mass * mass );
112 
113  // Sum the pole denominator terms over all channels j, multiplying by
114  // the propagator terms. Note that we do not sum over poles, since we
115  // only want one of the production pole terms.
116  Int_t nChannels = thePropagator_->getNChannels();
117  Int_t jChannel;
118 
119  for ( jChannel = 0; jChannel < nChannels; jChannel++ ) {
120 
121  Double_t gj = thePropagator_->getCouplingConstant( poleIndex_, jChannel );
122  LauComplex prodTerm = thePropagator_->getPropTerm( jChannel );
123 
124  prodTerm.rescale( gj );
125 
126  amp += prodTerm;
127  }
128 
129  Double_t poleDenom = thePropagator_->getPoleDenomTerm( poleIndex_ );
130 
131  // Include Adler zero factor if requested
132  Double_t adlerZero( 1.0 );
133  if ( useProdAdler_ ) {
134  adlerZero = thePropagator_->getAdlerZero();
135  }
136 
137  amp.rescale( poleDenom * adlerZero );
138 
139  // Scale by the spin term
140  Double_t scale = spinTerm;
141 
142  // Include Blatt-Weisskopf barrier factor for parent
143  scale *= fFactorB;
144 
145  amp.rescale( scale );
146 
147  return amp;
148 }
149 
150 const std::vector<LauParameter*>& LauKMatrixProdPole::getFloatingParameters()
151 {
152 
153  this->clearFloatingParameters();
154 
155  Int_t nChannels = thePropagator_->getNChannels();
156 
157  for ( int jChannel = 0; jChannel < nChannels; jChannel++ ) {
159  if ( ! par_gj_.fixed() ) {
160  this->addFloatingParameter( &par_gj_ );
161  }
162  }
163 
165  if ( ! par_polemasssq_.fixed() ) {
166  this->addFloatingParameter( &par_polemasssq_ );
167  }
168 
169  return this->getParameters();
170 }
LauKMatrixPropagator * thePropagator_
The K-matrix propagator.
static LauResonanceMaker & get()
Get the factory instance.
RestFrame getRestFrame() const
Retrieve the rest frame information.
Int_t getIndex() const
Get index of final channel.
Class for defining the fit parameter objects.
Definition: LauParameter.hh:49
Double_t calcFormFactor(const Double_t p) const
Calculate form factor value.
LauBlattWeisskopfFactor * getParBWFactor()
Get the centrifugal barrier for the parent decay.
virtual const std::vector< LauParameter * > & getFloatingParameters()
Retrieve the resonance parameters, e.g. so that they can be loaded into a fit.
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.
virtual LauComplex resAmp(const Double_t mass, const Double_t spinTerm)
The amplitude calculation.
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.
void setBarrierRadii(LauBlattWeisskopfFactor *resFactor, LauBlattWeisskopfFactor *parFactor)
Set the form factor model and parameters.
Double_t getCovFactor() const
Get the current value of the full spin-dependent covariant factor.
Class for defining a K-matrix propagator.
Double_t getCouplingConstant(const Int_t poleIndex, const Int_t channelIndex) const
Get coupling constants that were loaded from the input file.
Double_t getPoleDenomTerm(const Int_t poleIndex) const
Get the 1/(m_pole^2 -s) terms for the scattering and production K-matrix formulae.
void rescale(Double_t scaleVal)
Scale this by a factor.
Definition: LauComplex.hh:301
Int_t getNChannels() const
Get the number of channels.
LauKMatrixProdPole(const TString &poleName, Int_t poleIndex, Int_t resPairAmpInt, LauKMatrixPropagator *propagator, const LauDaughters *daughters, Bool_t useProdAdler=kFALSE)
Constructor.
LauParameter & getCouplingParameter(const Int_t poleIndex, const Int_t channelIndex)
Get coupling parameters, set according to the input file.
void updatePropagator(const Double_t s)
Calculate the K-matrix propagator for the given s value.
Int_t poleIndex_
The number of the pole.
Bool_t fixed() const
Check whether the parameter is fixed or floated.
LauParameter & getPoleMassSqParameter(const Int_t poleIndex)
Get pole mass parameters, set according to the input file.
Double_t getAdlerZero() const
Get the Adler zero factor, which is set when updatePropagator is called.
void clearFloatingParameters()
Clear list of floating parameters.
Abstract class for defining type for resonance amplitude models (Breit-Wigner, Flatte etc....
Int_t getL(const Int_t iChannel) const
Get spin of K-matrix.
File containing declaration of LauKMatrixPropagator class.
LauComplex getPropTerm(const Int_t channelIndex) const
Get the full complex propagator term for a given channel.
File containing declaration of LauKMatrixProdPole class.
Class that defines the particular 3-body decay under study.
Definition: LauDaughters.hh:47
Double_t getP() const
Get the current value of the bachelor momentum in the resonance rest frame.
File containing declaration of LauResonanceMaker class.
virtual ~LauKMatrixProdPole()
Destructor.
Bool_t useProdAdler_
Boolean to turn on/off the production Adler zero factor.
Class that implements the Blatt-Weisskopf barrier factor.