laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauMagPhaseCoeffSet.hh
Go to the documentation of this file.
1 
2 /*
3 Copyright 2006 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_MAGPHASE_COEFF_SET
37 #define LAU_MAGPHASE_COEFF_SET
38 
39 #include "LauAbsCoeffSet.hh"
40 #include "LauComplex.hh"
41 #include "LauParameter.hh"
42 
43 #include "Rtypes.h"
44 
45 #include <iosfwd>
46 #include <vector>
47 
49 
50  public:
52 
59  LauMagPhaseCoeffSet( const TString& compName,
60  Double_t magnitude,
61  Double_t phase,
62  Bool_t magFixed,
63  Bool_t phaseFixed );
64 
66  virtual ~LauMagPhaseCoeffSet() {}
67 
69 
72  virtual std::vector<LauParameter*> getParameters();
73 
75  virtual void printParValues() const;
76 
78 
81  virtual void printTableHeading( std::ostream& stream ) const;
82 
84 
87  virtual void printTableRow( std::ostream& stream ) const;
88 
90  virtual void randomiseInitValues();
91 
93  virtual void finaliseValues();
94 
96 
99  virtual const LauComplex& particleCoeff();
100 
102 
105  virtual const LauComplex& antiparticleCoeff();
106 
108 
115  virtual void setCoeffValues( const LauComplex& coeff, const LauComplex& coeffBar, Bool_t init );
116 
118 
121  virtual LauParameter acp();
122 
124 
130  virtual LauAbsCoeffSet* createClone( const TString& newName,
131  CloneOption cloneOption = All,
132  Double_t constFactor = 1.0 );
133 
134  private:
136 
144  CloneOption cloneOption = All,
145  Double_t constFactor = 1.0 );
146 
148 
152 
153  // the actual fit parameters
154  // (need to be pointers so they can be cloned)
159 
162 
163  ClassDef( LauMagPhaseCoeffSet, 0 )
164 };
165 
166 #endif
virtual ~LauMagPhaseCoeffSet()
Destructor.
Class for defining the abstract interface for complex coefficient classes.
Class for defining the fit parameter objects.
Definition: LauParameter.hh:49
virtual const LauComplex & particleCoeff()
Retrieve the complex coefficient for a particle.
File containing declaration of LauParameter class.
virtual LauAbsCoeffSet * createClone(const TString &newName, CloneOption cloneOption=All, Double_t constFactor=1.0)
Create a clone of the coefficient set.
virtual void randomiseInitValues()
Randomise the starting values of the parameters for a fit.
LauMagPhaseCoeffSet & operator=(const LauMagPhaseCoeffSet &rhs)
Copy assignment operator (not implemented)
File containing declaration of LauAbsCoeffSet class.
LauMagPhaseCoeffSet(const TString &compName, Double_t magnitude, Double_t phase, Bool_t magFixed, Bool_t phaseFixed)
Constructor.
virtual std::vector< LauParameter * > getParameters()
Retrieve the parameters of the coefficient, e.g. so that they can be loaded into a fit.
virtual void finaliseValues()
Make sure values are in "standard" ranges, e.g. phases should be between -pi and pi.
virtual void setCoeffValues(const LauComplex &coeff, const LauComplex &coeffBar, Bool_t init)
Set the parameters based on the complex coefficients for particles and antiparticles.
Class for defining a complex number.
Definition: LauComplex.hh:61
File containing declaration of LauComplex class.
LauParameter * phase_
The phase.
virtual void printTableRow(std::ostream &stream) const
Print the parameters of the complex coefficient as a row in the results table.
LauParameter * magnitude_
The magnitude.
LauComplex coeff_
The complex coefficient.
virtual const LauComplex & antiparticleCoeff()
Retrieve the complex coefficient for an antiparticle.
CloneOption
Options for cloning operation.
Class for defining a complex coefficient using a magnitude and a phase.
virtual void printTableHeading(std::ostream &stream) const
Print the column headings for a results table.
virtual void printParValues() const
Print the current values of the parameters.
virtual LauParameter acp()
Calculate the CP asymmetry.