laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauModIndPartWaveRealImag.hh
Go to the documentation of this file.
1 
2 /*
3 Copyright 2015 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_MODINDPARTWAVE_REALIMAG
37 #define LAU_MODINDPARTWAVE_REALIMAG
38 
39 #include "LauAbsModIndPartWave.hh"
40 #include "LauComplex.hh"
41 
42 class TSpline3;
43 
45 
46  public:
48 
54  Int_t resPairAmpInt,
55  const LauDaughters* daughters );
56 
59 
61 
68  virtual void setKnotAmp( const UInt_t knot,
69  const Double_t realVal,
70  const Double_t imagVal,
71  const Bool_t fixRealPart,
72  const Bool_t fixImagPart );
73 
75 
80  {
81  this->setSplineType( realType, imagType );
82  }
83 
85 
99  Double_t realLeftGrad = 0.0,
100  Double_t realRightGrad = 0.0,
101  Double_t imagLeftGrad = 0.0,
102  Double_t imagRightGrad = 0.0 )
103  {
104  this->setSplineBoundaryConditions( realLeftBound,
105  realRightBound,
106  imagLeftBound,
107  imagRightBound,
108  realLeftGrad,
109  realRightGrad,
110  imagLeftGrad,
111  imagRightGrad );
112  }
113 
115 
119  {
121  }
122 
123  protected:
125 
128  virtual void evaluateAmplitude( const Double_t mass );
129 
131 
134  virtual void createAmpParameters( const UInt_t iKnot );
135 
136  private:
137  ClassDef( LauModIndPartWaveRealImag, 0 ) // model independent partial wave
138 };
139 
140 #endif
void setSplineType(Lau1DCubicSpline::LauSplineType type1, Lau1DCubicSpline::LauSplineType type2)
Method to set the type of interpolation used for the splines.
virtual LauAbsResonance::LauResonanceModel getResonanceModel() const
Get the resonance model type.
void setBoundaryConditions(Lau1DCubicSpline::LauSplineBoundaryType realLeftBound, Lau1DCubicSpline::LauSplineBoundaryType realRightBound, Lau1DCubicSpline::LauSplineBoundaryType imagLeftBound, Lau1DCubicSpline::LauSplineBoundaryType imagRightBound, Double_t realLeftGrad=0.0, Double_t realRightGrad=0.0, Double_t imagLeftGrad=0.0, Double_t imagRightGrad=0.0)
Method to set the boundary conditions of the splines.
virtual void evaluateAmplitude(const Double_t mass)
Evaluate the amplitude at the given point from the splines.
void setSplineBoundaryConditions(Lau1DCubicSpline::LauSplineBoundaryType leftBound1, Lau1DCubicSpline::LauSplineBoundaryType rightBound1, Lau1DCubicSpline::LauSplineBoundaryType leftBound2, Lau1DCubicSpline::LauSplineBoundaryType rightBound2, Double_t leftGrad1=0.0, Double_t rightGrad1=0.0, Double_t leftGrad2=0.0, Double_t rightGrad2=0.0)
Method to set the boundary conditions of the splines.
LauSplineType
Define the allowed interpolation types.
File containing declaration of LauComplex class.
Class for defining a model independent partial wave component where the amplitudes are parameterised ...
LauModIndPartWaveRealImag(LauResonanceInfo *resInfo, Int_t resPairAmpInt, const LauDaughters *daughters)
Constructor.
virtual void setKnotAmp(const UInt_t knot, const Double_t realVal, const Double_t imagVal, const Bool_t fixRealPart, const Bool_t fixImagPart)
Set the values of the two real parameters that define the amplitude at a given knot.
virtual ~LauModIndPartWaveRealImag()
Destructor.
void setType(Lau1DCubicSpline::LauSplineType realType, Lau1DCubicSpline::LauSplineType imagType)
Method to set the type of interpolation used for the splines.
Class for defining the properties of a resonant particle.
virtual void createAmpParameters(const UInt_t iKnot)
Method to create the parameter objects for the given knot.
LauSplineBoundaryType
Define the allowed boundary condition types.
Class that defines the particular 3-body decay under study.
Definition: LauDaughters.hh:47
File containing declaration of LauAbsModIndPartWave class.
LauResonanceModel
Define the allowed resonance types.
Abstract base class for defining a model independent partial wave component.