laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauPolarFormFactorNR.hh
Go to the documentation of this file.
1 
2 /*
3 Copyright 2018 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 
37 #ifndef LAU_POLAR_FORM_FACTOR_NR
38 #define LAU_POLAR_FORM_FACTOR_NR
39 
40 #include "LauAbsResonance.hh"
41 #include "LauComplex.hh"
42 
43 #include "TString.h"
44 
45 class LauKinematics;
46 class LauParameter;
47 
49 
50  public:
52 
60  const Int_t resPairAmpInt,
61  const LauDaughters* daughters );
62 
64  virtual ~LauPolarFormFactorNR();
65 
67  virtual void initialise();
68 
70 
74 
76 
80  virtual void setResonanceParameter( const TString& name, const Double_t value );
81 
83 
86  virtual void floatResonanceParameter( const TString& name );
87 
89 
93  virtual LauParameter* getResonanceParameter( const TString& name );
94 
96 
99  virtual const std::vector<LauParameter*>& getFloatingParameters();
100 
101  protected:
103 
106  void setLambda( const Double_t lambda );
107 
109 
112  Double_t getLambda() const { return ( lambda_ != 0 ) ? lambda_->value() : 0.0; }
113 
115 
118  Bool_t fixLambda() const { return ( lambda_ != 0 ) ? lambda_->fixed() : kTRUE; }
119 
121 
125  virtual LauComplex resAmp( Double_t mass, Double_t spinTerm );
126 
127  private:
130 
133 
136 
139 
140  ClassDef( LauPolarFormFactorNR, 0 )
141 };
142 
143 #endif
Double_t getLambda() const
Get the parameter lambda, the NR shape parameter.
Class for defining the fit parameter objects.
Definition: LauParameter.hh:49
Double_t value() const
The value of the parameter.
virtual ~LauPolarFormFactorNR()
Destructor.
File containing declaration of LauAbsResonance class.
virtual LauParameter * getResonanceParameter(const TString &name)
Access the given resonance parameter.
virtual void floatResonanceParameter(const TString &name)
Allow the various parameters to float in the fit.
LauParameter * lambda_
The NR shape parameter.
virtual LauAbsResonance::LauResonanceModel getResonanceModel() const
Get the resonance model type.
Class for defining a complex number.
Definition: LauComplex.hh:61
LauPolarFormFactorNR(LauResonanceInfo *resInfo, const LauAbsResonance::LauResonanceModel resType, const Int_t resPairAmpInt, const LauDaughters *daughters)
Constructor.
Bool_t fixLambda() const
See if the lambda parameter is fixed or floating.
File containing declaration of LauComplex class.
Bool_t fixed() const
Check whether the parameter is fixed or floated.
virtual LauComplex resAmp(Double_t mass, Double_t spinTerm)
Complex resonant amplitude.
void setLambda(const Double_t lambda)
Set the parameter lambda, the NR shape parameter.
Class for defining the properties of a resonant particle.
virtual const std::vector< LauParameter * > & getFloatingParameters()
Retrieve the resonance parameters, e.g. so that they can be loaded into a fit.
virtual void initialise()
Initialise the model.
Abstract class for defining type for resonance amplitude models (Breit-Wigner, Flatte etc....
virtual void setResonanceParameter(const TString &name, const Double_t value)
Set value of the various parameters.
Class for calculating 3-body kinematic quantities.
LauPolarFormFactorNR & operator=(const LauPolarFormFactorNR &rhs)
Copy assignment operator (not implemented)
LauAbsResonance::LauResonanceModel model_
The model to use.
Class that defines the particular 3-body decay under study.
Definition: LauDaughters.hh:47
Class for defining a nonresonant form factor model.
LauResonanceModel
Define the allowed resonance types.
LauPolarFormFactorNR(const LauPolarFormFactorNR &rhs)
Copy constructor (not implemented)