laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauAbsBkgndDPModel.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 
35 #ifndef LAU_ABS_BKGND_DP_MODEL
36 #define LAU_ABS_BKGND_DP_MODEL
37 
38 #include "Rtypes.h"
39 
40 class LauDaughters;
41 class LauKinematics;
42 class LauFitDataTree;
43 class LauVetoes;
44 
46 
47  public:
49  virtual ~LauAbsBkgndDPModel() {}
50 
52  virtual void initialise() = 0;
53 
55 
58  virtual Bool_t generate() = 0;
59 
61 
66  virtual Double_t getLikelihood( const Double_t m13Sq, const Double_t m23Sq ) = 0;
67 
69 
74  virtual Double_t getUnNormValue( const Double_t m13Sq, const Double_t m23Sq ) = 0;
75 
77 
81  virtual Double_t getLikelihood( UInt_t iEvt ) = 0;
82 
84 
88  virtual Double_t getUnNormValue( UInt_t iEvt ) = 0;
89 
91 
94  virtual Double_t getPdfNorm() const = 0;
95 
97 
100  virtual void fillDataTree( const LauFitDataTree& fitDataTree ) = 0;
101 
103 
106  const LauDaughters* getDaughters() const { return daughters_; }
107 
109 
113 
115 
118  const LauKinematics* getKinematics() const { return kinematics_; }
119 
121 
125 
127 
130  const LauVetoes* getVetoes() const { return vetoes_; }
131 
133 
136  LauVetoes* getVetoes() { return vetoes_; }
137 
138  protected:
140 
144  LauAbsBkgndDPModel( LauDaughters* daughters, LauVetoes* vetoes );
145 
147 
150  virtual void setDataEventNo( UInt_t iEvt ) = 0;
151 
152  private:
155 
158 
161 
164 
167 
168  ClassDef( LauAbsBkgndDPModel, 0 ) // Abstract DP background model
169 };
170 
171 #endif
virtual void initialise()=0
Initialise the model.
virtual void setDataEventNo(UInt_t iEvt)=0
Set data event number.
LauVetoes * vetoes_
Vetoes within the Dalitz plot.
The abstract interface for a background Dalitz plot model.
LauAbsBkgndDPModel(LauDaughters *daughters, LauVetoes *vetoes)
Constructor.
virtual Double_t getPdfNorm() const =0
Get PDF normalisation constant.
LauDaughters * getDaughters()
Get the daughter particles.
LauVetoes * getVetoes()
Get vetoes in the Dalitz plot.
LauAbsBkgndDPModel & operator=(const LauAbsBkgndDPModel &rhs)
Copy assignment operator (not implemented)
Class to store the input fit variables.
virtual Bool_t generate()=0
Generate a toy MC event from the model.
LauKinematics * kinematics_
Dalitz plot kinematics.
const LauVetoes * getVetoes() const
Get vetoes in the Dalitz plot.
const LauKinematics * getKinematics() const
Get the Dalitz plot kinematics.
LauKinematics * getKinematics()
Get the Dalitz plot kinematics.
virtual Double_t getUnNormValue(UInt_t iEvt)=0
Get unnormalised likelihood for a given event.
virtual void fillDataTree(const LauFitDataTree &fitDataTree)=0
Cache the input data and (if appropriate) the per-event likelihood values.
virtual Double_t getLikelihood(const Double_t m13Sq, const Double_t m23Sq)=0
Get likelihood for a given DP position.
virtual Double_t getLikelihood(UInt_t iEvt)=0
Get likelihood for a given event.
LauAbsBkgndDPModel(const LauAbsBkgndDPModel &rhs)
Copy constructor (not implemented)
virtual Double_t getUnNormValue(const Double_t m13Sq, const Double_t m23Sq)=0
Get unnormalised likelihood for a given DP position.
Class for defining vetoes within the Dalitz plot.
Definition: LauVetoes.hh:49
Class for calculating 3-body kinematic quantities.
const LauDaughters * getDaughters() const
Get the daughter particles.
Class that defines the particular 3-body decay under study.
Definition: LauDaughters.hh:47
LauDaughters * daughters_
The daughter particles.
virtual ~LauAbsBkgndDPModel()
Destructor.