laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauFlatteRes.hh
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 
36 #ifndef LAU_FLATTE_RES
37 #define LAU_FLATTE_RES
38 
39 #include "LauAbsResonance.hh"
40 #include "LauComplex.hh"
41 
42 #include "TString.h"
43 
44 class LauFlatteRes : public LauAbsResonance {
45 
46  public:
48 
53  LauFlatteRes( LauResonanceInfo* resInfo, const Int_t resPairAmpInt, const LauDaughters* daughters );
54 
56  virtual ~LauFlatteRes();
57 
59  virtual void initialise();
60 
62 
66  {
68  }
69 
71 
75  virtual void setResonanceParameter( const TString& name, const Double_t value );
76 
78 
81  virtual void floatResonanceParameter( const TString& name );
82 
84 
88  virtual LauParameter* getResonanceParameter( const TString& name );
89 
91 
94  virtual const std::vector<LauParameter*>& getFloatingParameters();
95 
96  protected:
98 
101  void setg1Parameter( const Double_t g1 );
102 
104 
107  void setg2Parameter( const Double_t g2 );
108 
110 
113  Double_t getg1Parameter() const { return ( g1_ != 0 ) ? g1_->unblindValue() : 0.0; }
114 
116 
119  Double_t getg2Parameter() const { return ( g2_ != 0 ) ? g2_->unblindValue() : 0.0; }
120 
122 
125  Double_t fixg1Parameter() const { return ( g1_ != 0 ) ? g1_->fixed() : kTRUE; }
126 
128 
131  Double_t fixg2Parameter() const { return ( g2_ != 0 ) ? g2_->fixed() : kTRUE; }
132 
134 
138  virtual LauComplex resAmp( Double_t mass, Double_t spinTerm );
139 
140  private:
142  LauFlatteRes( const LauFlatteRes& rhs );
143 
146 
151 
153  Double_t mSumSq0_;
155  Double_t mSumSq1_;
157  Double_t mSumSq2_;
159  Double_t mSumSq3_;
160 
163 
165  Double_t sA_;
166 
168  Bool_t absorbM0_;
169 
170  ClassDef( LauFlatteRes, 0 )
171 };
172 
173 #endif
Bool_t useAdlerTerm_
Flag to turn on Adler term in the width.
virtual void floatResonanceParameter(const TString &name)
Allow the various parameters to float in the fit.
Class for defining the fit parameter objects.
Definition: LauParameter.hh:49
Double_t getg1Parameter() const
Get the g1 parameter.
Double_t unblindValue() const
The unblinded value of the parameter.
Double_t mSumSq1_
Channel 1, subchannel 2 invariant mass.
virtual ~LauFlatteRes()
Destructor.
virtual LauAbsResonance::LauResonanceModel getResonanceModel() const
Get the resonance model type.
Definition: LauFlatteRes.hh:65
File containing declaration of LauAbsResonance class.
virtual LauComplex resAmp(Double_t mass, Double_t spinTerm)
Complex resonant amplitude.
LauParameter * g1_
Channel 1 coupling parameter.
virtual const std::vector< LauParameter * > & getFloatingParameters()
Retrieve the resonance parameters, e.g. so that they can be loaded into a fit.
virtual void setResonanceParameter(const TString &name, const Double_t value)
Set value of a resonance parameter.
LauFlatteRes(LauResonanceInfo *resInfo, const Int_t resPairAmpInt, const LauDaughters *daughters)
Constructor.
Definition: LauFlatteRes.cc:38
void setg2Parameter(const Double_t g2)
Set the g2 parameter.
Double_t mSumSq0_
Channel 1, subchannel 1 invariant mass.
Double_t sA_
The Adler zero.
Class for defining a complex number.
Definition: LauComplex.hh:61
Double_t getg2Parameter() const
Get the g2 parameter.
Double_t fixg2Parameter() const
See if the g2 parameter is fixed or floating.
File containing declaration of LauComplex class.
Double_t fixg1Parameter() const
See if the g1 parameter is fixed or floating.
virtual LauParameter * getResonanceParameter(const TString &name)
Access the given resonance parameter.
Bool_t absorbM0_
Flag to specify whether the couplings absorb the m_0 factor.
LauFlatteRes & operator=(const LauFlatteRes &rhs)
Copy assignment operator (not implemented)
virtual void initialise()
Initialise the model.
Bool_t fixed() const
Check whether the parameter is fixed or floated.
Class for defining the properties of a resonant particle.
Double_t mSumSq2_
Channel 2, subchannel 1 invariant mass.
void setg1Parameter(const Double_t g1)
Set the g1 parameter.
Class for defining the Flatte resonance model.
Definition: LauFlatteRes.hh:44
Abstract class for defining type for resonance amplitude models (Breit-Wigner, Flatte etc....
Double_t mSumSq3_
Channel 2, subchannel 2 invariant mass.
Class that defines the particular 3-body decay under study.
Definition: LauDaughters.hh:47
LauFlatteRes(const LauFlatteRes &rhs)
Copy constructor (not implemented)
LauResonanceModel
Define the allowed resonance types.
LauParameter * g2_
Channel 1 coupling parameter.