laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauBelleNR.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_BELLE_NR
37 #define LAU_BELLE_NR
38 
39 #include "LauAbsResonance.hh"
40 #include "LauComplex.hh"
41 
42 #include "TString.h"
43 
44 class LauKinematics;
45 class LauParameter;
46 
47 class LauBelleNR : public LauAbsResonance {
48 
49  public:
51 
57  LauBelleNR( LauResonanceInfo* resInfo,
59  const Int_t resPairAmpInt,
60  const LauDaughters* daughters );
61 
63  virtual ~LauBelleNR();
64 
66 
74  void enforceLegendreSpinFactors( const Bool_t forceLegendre )
75  {
76  forceLegendre_ = forceLegendre;
77  }
78 
80  virtual void initialise();
81 
83 
87 
89 
93  virtual void setResonanceParameter( const TString& name, const Double_t value );
94 
96 
99  virtual void floatResonanceParameter( const TString& name );
100 
102 
106  virtual LauParameter* getResonanceParameter( const TString& name );
107 
109 
112  virtual const std::vector<LauParameter*>& getFloatingParameters();
113 
114  protected:
116 
119  void setAlpha( const Double_t alpha );
120 
122 
125  Double_t getAlpha() const { return ( alpha_ != 0 ) ? alpha_->unblindValue() : 0.0; }
126 
128 
131  Bool_t fixAlpha() const { return ( alpha_ != 0 ) ? alpha_->fixed() : kTRUE; }
132 
134 
138  virtual LauComplex resAmp( Double_t mass, Double_t spinTerm );
139 
140  private:
142  LauBelleNR( const LauBelleNR& rhs );
143 
146 
149 
152 
155 
156  ClassDef( LauBelleNR, 0 )
157 };
158 
159 #endif
virtual void initialise()
Initialise the model.
Definition: LauBelleNR.cc:62
Class for defining the fit parameter objects.
Definition: LauParameter.hh:49
Double_t unblindValue() const
The unblinded value of the parameter.
virtual LauParameter * getResonanceParameter(const TString &name)
Access the given resonance parameter.
Definition: LauBelleNR.cc:140
void enforceLegendreSpinFactors(const Bool_t forceLegendre)
Override the enforcement of pure Legendre polynomial spin factors.
Definition: LauBelleNR.hh:74
File containing declaration of LauAbsResonance class.
Double_t getAlpha() const
Get the effective range parameter.
Definition: LauBelleNR.hh:125
virtual LauAbsResonance::LauResonanceModel getResonanceModel() const
Get the resonance model type.
Definition: LauBelleNR.hh:86
void setAlpha(const Double_t alpha)
Set the parameter alpha, the effective range.
Definition: LauBelleNR.cc:151
LauAbsResonance::LauResonanceModel model_
The model to use.
Definition: LauBelleNR.hh:151
LauBelleNR(const LauBelleNR &rhs)
Copy constructor (not implemented)
Class for defining a complex number.
Definition: LauComplex.hh:61
LauBelleNR & operator=(const LauBelleNR &rhs)
Copy assignment operator (not implemented)
LauBelleNR(LauResonanceInfo *resInfo, const LauAbsResonance::LauResonanceModel resType, const Int_t resPairAmpInt, const LauDaughters *daughters)
Constructor.
Definition: LauBelleNR.cc:39
LauParameter * alpha_
The range parameter.
Definition: LauBelleNR.hh:148
File containing declaration of LauComplex class.
Class for defining the Belle nonresonant model.
Definition: LauBelleNR.hh:47
Bool_t fixed() const
Check whether the parameter is fixed or floated.
virtual ~LauBelleNR()
Destructor.
Definition: LauBelleNR.cc:58
Class for defining the properties of a resonant particle.
Bool_t fixAlpha() const
See if the alpha parameter is fixed or floating.
Definition: LauBelleNR.hh:131
virtual LauComplex resAmp(Double_t mass, Double_t spinTerm)
Complex resonant amplitude.
Definition: LauBelleNR.cc:83
Abstract class for defining type for resonance amplitude models (Breit-Wigner, Flatte etc....
virtual void floatResonanceParameter(const TString &name)
Allow the various parameters to float in the fit.
Definition: LauBelleNR.cc:124
Bool_t forceLegendre_
Force use of Legendre spin factors.
Definition: LauBelleNR.hh:154
Class for calculating 3-body kinematic quantities.
virtual const std::vector< LauParameter * > & getFloatingParameters()
Retrieve the resonance parameters, e.g. so that they can be loaded into a fit.
Definition: LauBelleNR.cc:100
Class that defines the particular 3-body decay under study.
Definition: LauDaughters.hh:47
virtual void setResonanceParameter(const TString &name, const Double_t value)
Set value of the various parameters.
Definition: LauBelleNR.cc:111
LauResonanceModel
Define the allowed resonance types.