laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauKMatrixProdPole.hh
Go to the documentation of this file.
1 
2 /*
3 Copyright 2008 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 
35 #ifndef LAU_KMATRIX_PROD_POLE
36 #define LAU_KMATRIX_PROD_POLE
37 
38 #include "LauAbsResonance.hh"
39 
40 #include "TString.h"
41 
43 class LauDaughters;
44 class LauKinematics;
45 
47 
48  public:
50 
58  LauKMatrixProdPole( const TString& poleName,
59  Int_t poleIndex,
60  Int_t resPairAmpInt,
61  LauKMatrixPropagator* propagator,
62  const LauDaughters* daughters,
63  Bool_t useProdAdler = kFALSE );
64 
66  virtual ~LauKMatrixProdPole();
67 
68  // Initialise the model
69  virtual void initialise() { return; }
70 
72 
76  {
78  }
79 
81 
84  virtual const std::vector<LauParameter*>& getFloatingParameters();
85 
86  protected:
88 
93  virtual LauComplex resAmp( const Double_t mass, const Double_t spinTerm );
94 
95  private:
98 
101 
105  Int_t poleIndex_;
106 
109 
110  ClassDef( LauKMatrixProdPole, 0 ) // K-matrix production pole
111 };
112 
113 #endif
LauKMatrixPropagator * thePropagator_
The K-matrix propagator.
LauKMatrixProdPole & operator=(const LauKMatrixProdPole &rhs)
Copy assignment operator (not implemented)
virtual const std::vector< LauParameter * > & getFloatingParameters()
Retrieve the resonance parameters, e.g. so that they can be loaded into a fit.
LauKMatrixProdPole(const LauKMatrixProdPole &rhs)
Copy constructor (not implemented)
File containing declaration of LauAbsResonance class.
virtual LauComplex resAmp(const Double_t mass, const Double_t spinTerm)
The amplitude calculation.
Class for defining a complex number.
Definition: LauComplex.hh:61
Class for defining a K-matrix propagator.
LauKMatrixProdPole(const TString &poleName, Int_t poleIndex, Int_t resPairAmpInt, LauKMatrixPropagator *propagator, const LauDaughters *daughters, Bool_t useProdAdler=kFALSE)
Constructor.
virtual void initialise()
Initialise the model.
Class for defining a K-matrix production pole amplitude term.
Int_t poleIndex_
The number of the pole.
virtual LauAbsResonance::LauResonanceModel getResonanceModel() const
Get the resonance model type.
Abstract class for defining type for resonance amplitude models (Breit-Wigner, Flatte etc....
Class for calculating 3-body kinematic quantities.
Class that defines the particular 3-body decay under study.
Definition: LauDaughters.hh:47
LauResonanceModel
Define the allowed resonance types.
virtual ~LauKMatrixProdPole()
Destructor.
Bool_t useProdAdler_
Boolean to turn on/off the production Adler zero factor.