laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauRescattering2Res.hh
Go to the documentation of this file.
1 /*
2 Copyright 2018 University of Warwick
3 
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7 
8  http://www.apache.org/licenses/LICENSE-2.0
9 
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15 */
16 
17 /*
18 Laura++ package authors:
19 John Back
20 Paul Harrison
21 Thomas Latham
22 */
23 
35 #ifndef LAU_RESCATTERING2_RES
36 #define LAU_RESCATTERING2_RES
37 
38 #include "LauAbsResonance.hh"
39 #include "LauComplex.hh"
40 
41 #include "TString.h"
42 
43 class LauKinematics;
44 
46 
47  public:
49 
55  const Int_t resPairAmpInt,
56  const LauDaughters* daughters );
57 
59  virtual ~LauRescattering2Res();
60 
62  virtual void initialise();
63 
65 
69  {
71  }
72 
74 
78  virtual void setResonanceParameter( const TString& name, const Double_t value );
79 
81 
84  virtual void floatResonanceParameter( const TString& name );
85 
87 
91  virtual LauParameter* getResonanceParameter( const TString& name );
92 
94 
97  virtual const std::vector<LauParameter*>& getFloatingParameters();
98 
99  protected:
101  virtual LauComplex resAmp( Double_t mass, Double_t spinTerm );
102 
103  Double_t pn( const Double_t x, const Double_t n ) const;
104  Double_t x( const Double_t sqr_t, const Int_t i ) const;
105  Double_t phi00( const Double_t sqr_t, const Int_t i ) const;
106  Double_t g00( const Double_t sqr_t, const Int_t i ) const;
107 
108  void setB1Parameter( const Double_t B1 );
109  void setB2Parameter( const Double_t B2 );
110  void setB3Parameter( const Double_t B3 );
111  void setC1Parameter( const Double_t C1 );
112  void setC2Parameter( const Double_t C2 );
113  void setC3Parameter( const Double_t C3 );
114  void setC4Parameter( const Double_t C4 );
115  void setC5Parameter( const Double_t C5 );
116  void setD0Parameter( const Double_t D0 );
117  void setD1Parameter( const Double_t D1 );
118  void setD2Parameter( const Double_t D2 );
119  void setD3Parameter( const Double_t D3 );
120  void setF1Parameter( const Double_t F1 );
121  void setF2Parameter( const Double_t F2 );
122  void setF3Parameter( const Double_t F3 );
123  void setF4Parameter( const Double_t F4 );
124 
125  Double_t getB1Parameter() const { return ( B1_ != 0 ) ? B1_->value() : 0.0; }
126 
127  Bool_t fixB1Parameter() const { return ( B1_ != 0 ) ? B1_->fixed() : kTRUE; }
128 
129  Double_t getB2Parameter() const { return ( B2_ != 0 ) ? B2_->value() : 0.0; }
130 
131  Bool_t fixB2Parameter() const { return ( B2_ != 0 ) ? B2_->fixed() : kTRUE; }
132 
133  Double_t getB3Parameter() const { return ( B3_ != 0 ) ? B3_->value() : 0.0; }
134 
135  Bool_t fixB3Parameter() const { return ( B3_ != 0 ) ? B3_->fixed() : kTRUE; }
136 
137  Double_t getC1Parameter() const { return ( C1_ != 0 ) ? C1_->value() : 0.0; }
138 
139  Bool_t fixC1Parameter() const { return ( C1_ != 0 ) ? C1_->fixed() : kTRUE; }
140 
141  Double_t getC2Parameter() const { return ( C2_ != 0 ) ? C2_->value() : 0.0; }
142 
143  Bool_t fixC2Parameter() const { return ( C2_ != 0 ) ? C2_->fixed() : kTRUE; }
144 
145  Double_t getC3Parameter() const { return ( C3_ != 0 ) ? C3_->value() : 0.0; }
146 
147  Bool_t fixC3Parameter() const { return ( C3_ != 0 ) ? C3_->fixed() : kTRUE; }
148 
149  Double_t getC4Parameter() const { return ( C4_ != 0 ) ? C4_->value() : 0.0; }
150 
151  Bool_t fixC4Parameter() const { return ( C4_ != 0 ) ? C4_->fixed() : kTRUE; }
152 
153  Double_t getC5Parameter() const { return ( C5_ != 0 ) ? C5_->value() : 0.0; }
154 
155  Bool_t fixC5Parameter() const { return ( C5_ != 0 ) ? C5_->fixed() : kTRUE; }
156 
157  Double_t getD0Parameter() const { return ( D0_ != 0 ) ? D0_->value() : 0.0; }
158 
159  Bool_t fixD0Parameter() const { return ( D0_ != 0 ) ? D0_->fixed() : kTRUE; }
160 
161  Double_t getD1Parameter() const { return ( D1_ != 0 ) ? D1_->value() : 0.0; }
162 
163  Bool_t fixD1Parameter() const { return ( D1_ != 0 ) ? D1_->fixed() : kTRUE; }
164 
165  Double_t getD2Parameter() const { return ( D2_ != 0 ) ? D2_->value() : 0.0; }
166 
167  Bool_t fixD2Parameter() const { return ( D2_ != 0 ) ? D2_->fixed() : kTRUE; }
168 
169  Double_t getD3Parameter() const { return ( D3_ != 0 ) ? D3_->value() : 0.0; }
170 
171  Bool_t fixD3Parameter() const { return ( D3_ != 0 ) ? D3_->fixed() : kTRUE; }
172 
173  Double_t getF1Parameter() const { return ( F1_ != 0 ) ? F1_->value() : 0.0; }
174 
175  Bool_t fixF1Parameter() const { return ( F1_ != 0 ) ? F1_->fixed() : kTRUE; }
176 
177  Double_t getF2Parameter() const { return ( F2_ != 0 ) ? F2_->value() : 0.0; }
178 
179  Bool_t fixF2Parameter() const { return ( F2_ != 0 ) ? F2_->fixed() : kTRUE; }
180 
181  Double_t getF3Parameter() const { return ( F3_ != 0 ) ? F3_->value() : 0.0; }
182 
183  Bool_t fixF3Parameter() const { return ( F3_ != 0 ) ? F3_->fixed() : kTRUE; }
184 
185  Double_t getF4Parameter() const { return ( F4_ != 0 ) ? F4_->value() : 0.0; }
186 
187  Bool_t fixF4Parameter() const { return ( F4_ != 0 ) ? F4_->fixed() : kTRUE; }
188 
189  private:
192 
195 
198  LauParameter* B2_;
199  LauParameter* B3_;
200  LauParameter* C1_;
201  LauParameter* C2_;
202  LauParameter* C3_;
203  LauParameter* C4_;
204  LauParameter* C5_;
205  LauParameter* D0_;
206  LauParameter* D1_;
207  LauParameter* D2_;
208  LauParameter* D3_;
209  LauParameter* F1_;
210  LauParameter* F2_;
211  LauParameter* F3_;
212  LauParameter* F4_;
213 
214  Double_t sqr_tmin[3], sqr_tmax[3];
215  Double_t B0_, C0_, F0_;
216 
217  ClassDef( LauRescattering2Res, 0 ) // pipi S wave model by Schechter amplitude model
218 };
219 
220 #endif
Class for defining the fit parameter objects.
Definition: LauParameter.hh:49
Class for defining an alternative rescattering model.
Double_t value() const
The value of the parameter.
virtual void floatResonanceParameter(const TString &name)
Allow the various parameters to float in the fit.
File containing declaration of LauAbsResonance class.
virtual void initialise()
Initialise the model.
virtual LauComplex resAmp(Double_t mass, Double_t spinTerm)
This is not meant to be called.
virtual const std::vector< LauParameter * > & getFloatingParameters()
Retrieve the resonance parameters, e.g. so that they can be loaded into a fit.
LauParameter * B1_
Parameter.
Class for defining a complex number.
Definition: LauComplex.hh:61
File containing declaration of LauComplex class.
virtual LauParameter * getResonanceParameter(const TString &name)
Access the given resonance parameter.
Bool_t fixed() const
Check whether the parameter is fixed or floated.
Class for defining the properties of a resonant particle.
virtual void setResonanceParameter(const TString &name, const Double_t value)
Set value of a resonance parameter.
LauRescattering2Res(LauResonanceInfo *resInfo, const Int_t resPairAmpInt, const LauDaughters *daughters)
Constructor.
LauRescattering2Res & operator=(const LauRescattering2Res &rhs)
Copy assignment operator (not implemented)
Abstract class for defining type for resonance amplitude models (Breit-Wigner, Flatte etc....
Class for calculating 3-body kinematic quantities.
LauRescattering2Res(const LauRescattering2Res &rhs)
Copy constructor (not implemented)
virtual LauAbsResonance::LauResonanceModel getResonanceModel() const
Get the resonance model type.
Class that defines the particular 3-body decay under study.
Definition: LauDaughters.hh:47
virtual ~LauRescattering2Res()
Destructor.
LauResonanceModel
Define the allowed resonance types.