laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauMagPhaseCPCoeffSet.hh
Go to the documentation of this file.
1 
2 /*
3 Copyright 2011 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 
40 #ifndef LAU_MAGPHASECP_COEFF_SET
41 #define LAU_MAGPHASECP_COEFF_SET
42 
43 #include "LauAbsCoeffSet.hh"
44 #include "LauComplex.hh"
45 #include "LauParameter.hh"
46 
47 #include "Rtypes.h"
48 
49 #include <iosfwd>
50 #include <vector>
51 
53 
54  public:
56 
67  LauMagPhaseCPCoeffSet( const TString& compName,
68  Double_t mag,
69  Double_t phase,
70  Double_t magBar,
71  Double_t phaseBar,
72  Bool_t magFixed,
73  Bool_t phaseFixed,
74  Bool_t magBarFixed,
75  Bool_t phaseBarFixed );
76 
79 
81 
84  virtual std::vector<LauParameter*> getParameters();
85 
87  virtual void printParValues() const;
88 
90 
93  virtual void printTableHeading( std::ostream& stream ) const;
94 
96 
99  virtual void printTableRow( std::ostream& stream ) const;
100 
102  virtual void randomiseInitValues();
103 
105  virtual void finaliseValues();
106 
108 
111  virtual const LauComplex& particleCoeff();
112 
114 
117  virtual const LauComplex& antiparticleCoeff();
118 
120 
125  virtual void setCoeffValues( const LauComplex& coeff, const LauComplex& coeffBar, Bool_t init );
126 
128 
131  virtual LauParameter acp();
132 
134 
140  virtual LauAbsCoeffSet* createClone( const TString& newName,
141  CloneOption cloneOption = All,
142  Double_t constFactor = 1.0 );
143 
144  private:
146 
154  CloneOption cloneOption = All,
155  Double_t constFactor = 1.0 );
156 
158 
162 
163  // the actual fit parameters
164  // (need to be pointers so they can be cloned)
173 
178 
181 
182  ClassDef( LauMagPhaseCPCoeffSet, 0 )
183 };
184 
185 #endif
Class for defining the abstract interface for complex coefficient classes.
Class for defining the fit parameter objects.
Definition: LauParameter.hh:49
virtual const LauComplex & antiparticleCoeff()
Retrieve the complex coefficient for an antiparticle.
LauParameter acp_
The CP asymmetry.
LauParameter * magBar_
The magnitude for antiparticles.
virtual void printTableRow(std::ostream &stream) const
Print the parameters of the complex coefficient as a row in the results table.
Class for defining a complex coefficient using seperate magnitudes and phases for particles and antip...
virtual void printTableHeading(std::ostream &stream) const
Print the column headings for a results table.
File containing declaration of LauParameter class.
File containing declaration of LauAbsCoeffSet class.
LauComplex particleCoeff_
The particle complex coefficient.
virtual void finaliseValues()
Make sure values are in "standard" ranges, e.g. phases should be between -pi and pi.
LauMagPhaseCPCoeffSet(const TString &compName, Double_t mag, Double_t phase, Double_t magBar, Double_t phaseBar, Bool_t magFixed, Bool_t phaseFixed, Bool_t magBarFixed, Bool_t phaseBarFixed)
Constructor.
Class for defining a complex number.
Definition: LauComplex.hh:61
virtual std::vector< LauParameter * > getParameters()
Retrieve the parameters of the coefficient, e.g. so that they can be loaded into a fit.
virtual void setCoeffValues(const LauComplex &coeff, const LauComplex &coeffBar, Bool_t init)
Set the parameters based on the complex coefficients for particles and antiparticles.
File containing declaration of LauComplex class.
LauParameter * phaseBar_
The phase for antiparticles.
LauComplex antiparticleCoeff_
The antiparticle complex coefficient.
LauMagPhaseCPCoeffSet & operator=(const LauMagPhaseCPCoeffSet &rhs)
Copy assignment operator (not implemented)
virtual LauAbsCoeffSet * createClone(const TString &newName, CloneOption cloneOption=All, Double_t constFactor=1.0)
Create a clone of the coefficient set.
LauParameter * phase_
The phase for particles.
LauParameter * mag_
The magnitude for particles.
virtual void randomiseInitValues()
Randomise the starting values of the parameters for a fit.
CloneOption
Options for cloning operation.
virtual ~LauMagPhaseCPCoeffSet()
Destructor.
virtual void printParValues() const
Print the current values of the parameters.
virtual LauParameter acp()
Calculate the CP asymmetry.
virtual const LauComplex & particleCoeff()
Retrieve the complex coefficient for a particle.