laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauCartesianCPCoeffSet.cc
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 
30 
31 #include "LauComplex.hh"
32 #include "LauConstants.hh"
33 #include "LauParameter.hh"
34 #include "LauPrint.hh"
35 
36 #include "TMath.h"
37 #include "TRandom.h"
38 
39 #include <fstream>
40 #include <iostream>
41 #include <vector>
42 
44  Double_t x,
45  Double_t y,
46  Double_t deltaX,
47  Double_t deltaY,
48  Bool_t xFixed,
49  Bool_t yFixed,
50  Bool_t deltaXFixed,
51  Bool_t deltaYFixed,
52  Bool_t deltaXSecondStage,
53  Bool_t deltaYSecondStage ) :
54  LauAbsCoeffSet( compName ),
55  x_( new LauParameter( "X", x, minRealImagPart_, maxRealImagPart_, xFixed ) ),
56  y_( new LauParameter( "Y", y, minRealImagPart_, maxRealImagPart_, yFixed ) ),
57  deltaX_( new LauParameter( "DeltaX", deltaX, minDelta_, maxDelta_, deltaXFixed ) ),
58  deltaY_( new LauParameter( "DeltaY", deltaY, minDelta_, maxDelta_, deltaYFixed ) ),
59  particleCoeff_( x + deltaX, y + deltaY ),
60  antiparticleCoeff_( x - deltaX, y - deltaY ),
61  acp_( "ACP",
62  -2.0 * ( x * deltaX + y * deltaY ) / ( x * x + deltaX * deltaX + y * y + deltaY * deltaY ),
63  -1.0,
64  1.0,
65  deltaXFixed && deltaYFixed )
66 {
67  if ( deltaXSecondStage && ! deltaXFixed ) {
68  deltaX_->secondStage( kTRUE );
69  deltaX_->initValue( 0.0 );
70  }
71  if ( deltaYSecondStage && ! deltaYFixed ) {
72  deltaY_->secondStage( kTRUE );
73  deltaY_->initValue( 0.0 );
74  }
75 }
76 
78  CloneOption cloneOption,
79  Double_t constFactor ) :
80  LauAbsCoeffSet( rhs.name() ),
81  x_( 0 ),
82  y_( 0 ),
83  deltaX_( 0 ),
84  deltaY_( 0 ),
85  particleCoeff_( rhs.particleCoeff_ ),
86  antiparticleCoeff_( rhs.antiparticleCoeff_ ),
87  acp_( rhs.acp_ )
88 {
89  if ( cloneOption == All || cloneOption == TieRealPart ) {
90  x_ = rhs.x_->createClone( constFactor );
91  } else {
92  x_ = new LauParameter( "X",
93  rhs.x_->value(),
96  rhs.x_->fixed() );
97  if ( rhs.x_->blind() ) {
98  const LauBlind* blinder = rhs.x_->blinder();
100  }
101  }
102 
103  if ( cloneOption == All || cloneOption == TieImagPart ) {
104  y_ = rhs.y_->createClone( constFactor );
105  } else {
106  y_ = new LauParameter( "Y",
107  rhs.y_->value(),
110  rhs.y_->fixed() );
111  if ( rhs.y_->blind() ) {
112  const LauBlind* blinder = rhs.y_->blinder();
114  }
115  }
116 
117  if ( cloneOption == All || cloneOption == TieCPPars ) {
118  deltaX_ = rhs.deltaX_->createClone( constFactor );
119  deltaY_ = rhs.deltaY_->createClone( constFactor );
120  } else {
121  deltaX_ = new LauParameter( "DeltaX",
122  rhs.deltaX_->value(),
123  minDelta_,
124  maxDelta_,
125  rhs.deltaX_->fixed() );
126  deltaY_ = new LauParameter( "DeltaY",
127  rhs.deltaY_->value(),
128  minDelta_,
129  maxDelta_,
130  rhs.deltaY_->fixed() );
131  if ( rhs.deltaX_->secondStage() && ! rhs.deltaX_->fixed() ) {
132  deltaX_->secondStage( kTRUE );
133  deltaX_->initValue( 0.0 );
134  }
135  if ( rhs.deltaY_->secondStage() && ! rhs.deltaY_->fixed() ) {
136  deltaY_->secondStage( kTRUE );
137  deltaY_->initValue( 0.0 );
138  }
139  if ( rhs.deltaX_->blind() ) {
140  const LauBlind* blinder = rhs.deltaX_->blinder();
142  }
143  if ( rhs.deltaY_->blind() ) {
144  const LauBlind* blinder = rhs.deltaY_->blinder();
146  }
147  }
148 }
149 
150 std::vector<LauParameter*> LauCartesianCPCoeffSet::getParameters()
151 {
152  std::vector<LauParameter*> pars;
153  pars.push_back( x_ );
154  pars.push_back( y_ );
155  pars.push_back( deltaX_ );
156  pars.push_back( deltaY_ );
157  return pars;
158 }
159 
161 {
162  std::cout << "INFO in LauCartesianCPCoeffSet::printParValues : Component \"" << this->name()
163  << "\" has ";
164  std::cout << "x = " << x_->value() << ",\t";
165  std::cout << "y = " << y_->value() << ",\t";
166  std::cout << "Delta x = " << deltaX_->value() << ",\t";
167  std::cout << "Delta y = " << deltaY_->value() << "." << std::endl;
168 }
169 
170 void LauCartesianCPCoeffSet::printTableHeading( std::ostream& stream ) const
171 {
172  stream << "\\begin{tabular}{|l|c|c|c|c|}" << std::endl;
173  stream << "\\hline" << std::endl;
174  stream << "Component & Real Part & Imaginary Part & $\\Delta$ Real Part & $\\Delta$ Imaginary Part \\\\"
175  << std::endl;
176  stream << "\\hline" << std::endl;
177 }
178 
179 void LauCartesianCPCoeffSet::printTableRow( std::ostream& stream ) const
180 {
181  LauPrint print;
182  TString resName = this->name();
183  resName = resName.ReplaceAll( "_", "\\_" );
184  stream << resName << " & $";
185  print.printFormat( stream, x_->value() );
186  stream << " \\pm ";
187  print.printFormat( stream, x_->error() );
188  stream << "$ & $";
189  print.printFormat( stream, y_->value() );
190  stream << " \\pm ";
191  print.printFormat( stream, y_->error() );
192  stream << "$ & $";
193  print.printFormat( stream, deltaX_->value() );
194  stream << " \\pm ";
195  print.printFormat( stream, deltaX_->error() );
196  stream << "$ & $";
197  print.printFormat( stream, deltaY_->value() );
198  stream << " \\pm ";
199  print.printFormat( stream, deltaY_->error() );
200  stream << "$ \\\\" << std::endl;
201 }
202 
204 {
205  if ( x_->fixed() == kFALSE ) {
206  // Choose a value for "X" between -3.0 and 3.0
207  Double_t value = LauAbsCoeffSet::getRandomiser()->Rndm() * 6.0 - 3.0;
208  x_->initValue( value );
209  x_->value( value );
210  }
211  if ( y_->fixed() == kFALSE ) {
212  // Choose a value for "Y" between -3.0 and 3.0
213  Double_t value = LauAbsCoeffSet::getRandomiser()->Rndm() * 6.0 - 3.0;
214  y_->initValue( value );
215  y_->value( value );
216  }
217  if ( deltaX_->fixed() == kFALSE && deltaX_->secondStage() == kFALSE ) {
218  // Choose a value for "Delta X" between -0.5 and 0.5
219  Double_t value = LauAbsCoeffSet::getRandomiser()->Rndm() * 1.0 - 0.5;
220  deltaX_->initValue( value );
221  deltaX_->value( value );
222  }
223  if ( deltaY_->fixed() == kFALSE && deltaY_->secondStage() == kFALSE ) {
224  // Choose a value for "Delta Y" between -0.5 and 0.5
225  Double_t value = LauAbsCoeffSet::getRandomiser()->Rndm() * 1.0 - 0.5;
226  deltaY_->initValue( value );
227  deltaY_->value( value );
228  }
229 }
230 
232 {
233  // update the pulls
234  x_->updatePull();
235  y_->updatePull();
236  deltaX_->updatePull();
237  deltaY_->updatePull();
238 }
239 
241 {
244  return particleCoeff_;
245 }
246 
248 {
251  return antiparticleCoeff_;
252 }
253 
255  const LauComplex& coeffBar,
256  Bool_t init )
257 {
258  LauComplex average( coeff );
259  average += coeffBar;
260  average.rescale( 0.5 );
261 
262  Double_t xVal( average.re() );
263  Double_t yVal( average.im() );
264  Double_t deltaXVal( coeff.re() - average.re() );
265  Double_t deltaYVal( coeff.im() - average.im() );
266 
267  x_->value( xVal );
268  y_->value( yVal );
269  deltaX_->value( deltaXVal );
270  deltaY_->value( deltaYVal );
271 
272  if ( init ) {
273  x_->genValue( xVal );
274  y_->genValue( yVal );
275  deltaX_->genValue( deltaXVal );
276  deltaY_->genValue( deltaYVal );
277 
278  x_->initValue( xVal );
279  y_->initValue( yVal );
280  deltaX_->initValue( deltaXVal );
281  deltaY_->initValue( deltaYVal );
282  }
283 }
284 
286 {
287  // set the name
288  TString parName( this->baseName() );
289  parName += "_ACP";
290  acp_.name( parName );
291 
292  // work out the ACP value
293  Double_t numer = x_->value() * deltaX_->value() + y_->value() * deltaY_->value();
294  Double_t denom = x_->value() * x_->value() + deltaX_->value() * deltaX_->value() +
295  y_->value() * y_->value() + deltaY_->value() * deltaY_->value();
296  Double_t value = -2.0 * numer / denom;
297 
298  // is it fixed?
299  Bool_t fixed = deltaX_->fixed() && deltaY_->fixed();
300  acp_.fixed( fixed );
301 
302  // we can't work out the error without the covariance matrix
303  Double_t error( 0.0 );
304 
305  // set the value and error
307 
308  return acp_;
309 }
310 
312  CloneOption cloneOption,
313  Double_t constFactor )
314 {
315  LauAbsCoeffSet* clone( 0 );
316  if ( cloneOption == All || cloneOption == TieRealPart || cloneOption == TieImagPart ||
317  cloneOption == TieCPPars ) {
318  clone = new LauCartesianCPCoeffSet( *this, cloneOption, constFactor );
319  clone->name( newName );
320  } else {
321  std::cerr << "ERROR in LauCartesianCPCoeffSet::createClone : Invalid clone option"
322  << std::endl;
323  }
324  return clone;
325 }
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 coefficient using the Cartesian CP convention.
virtual void printTableRow(std::ostream &stream) const
Print the parameters of the complex coefficient as a row in the results table.
void valueAndErrors(Double_t newValue, Double_t newError, Double_t newNegError=0.0, Double_t newPosError=0.0)
Set the value and errors on the parameter.
Class for defining the abstract interface for complex coefficient classes.
Class for defining the fit parameter objects.
Definition: LauParameter.hh:49
Double_t unblindValue() const
The unblinded value of the parameter.
Double_t value() const
The value of the parameter.
LauParameter * x_
The average real part.
const LauBlind * blinder() const
Access the blinder object.
virtual LauParameter acp()
Calculate the CP asymmetry.
virtual TString name() const
Retrieve the name of the coefficient set.
File containing declaration of LauCartesianCPCoeffSet class.
File containing declaration of LauParameter class.
virtual std::vector< LauParameter * > getParameters()
Retrieve the parameters of the coefficient, e.g. so that they can be loaded into a fit.
virtual const LauComplex & particleCoeff()
Retrieve the complex coefficient for a particle.
LauComplex particleCoeff_
The particle complex coefficient.
virtual void printTableHeading(std::ostream &stream) const
Print the column headings for a results table.
LauCartesianCPCoeffSet(const TString &compName, Double_t x, Double_t y, Double_t deltaX, Double_t deltaY, Bool_t xFixed, Bool_t yFixed, Bool_t deltaXFixed, Bool_t deltaYFixed, Bool_t deltaXSecondStage=kFALSE, Bool_t deltaYSecondStage=kFALSE)
Constructor.
virtual void printParValues() const
Print the current values of the parameters.
static Double_t minDelta_
Minimum allowed value of CP-violating real/imaginary part parameters.
virtual const LauComplex & antiparticleCoeff()
Retrieve the complex coefficient for an antiparticle.
virtual const TString & baseName() const
Retrieve the base name of the coefficient set.
Bool_t secondStage() const
Check whether the parameter should be floated only in the second stage of a two stage fit.
Class for defining a complex number.
Definition: LauComplex.hh:61
Bool_t blind() const
The blinding state.
Class for blinding and unblinding a number based on a blinding string.
Definition: LauBlind.hh:42
void rescale(Double_t scaleVal)
Scale this by a factor.
Definition: LauComplex.hh:301
void setRealImagPart(Double_t realpart, Double_t imagpart)
Set both real and imaginary part.
Definition: LauComplex.hh:324
Bool_t clone() const
Check whether is a clone or not.
File containing declaration of LauComplex class.
virtual LauAbsCoeffSet * createClone(const TString &newName, CloneOption cloneOption=All, Double_t constFactor=1.0)
Create a clone of the coefficient set.
LauParameter * createClone(Double_t constFactor=1.0)
Method to create a clone from the parent parameter using the copy constructor.
LauParameter * deltaY_
The asymmetric imaginary part.
void blindParameter(const TString &blindingString, const Double_t width)
Blind the parameter.
Double_t blindingWidth() const
Obtain the Gaussian width.
Definition: LauBlind.hh:82
Bool_t fixed() const
Check whether the parameter is fixed or floated.
LauParameter()
Default constructor.
Definition: LauParameter.cc:40
File containing LauConstants namespace.
Double_t re() const
Get the real part.
Definition: LauComplex.hh:242
const TString & name() const
The parameter name.
virtual void randomiseInitValues()
Randomise the starting values of the parameters for a fit.
LauParameter * y_
The average imaginary part.
const TString & blindingString() const
Obtain the blinding string.
Definition: LauBlind.hh:76
Double_t error() const
The error on the parameter.
static TRandom * getRandomiser()
Access the randomiser.
void updatePull()
Call to update the bias and pull values.
File containing declaration of LauPrint class and LauOutputLevel enum.
CloneOption
Options for cloning operation.
static Double_t maxRealImagPart_
Maximum allowed value of real/imaginary part parameters.
Class to define various output print commands.
Definition: LauPrint.hh:54
LauParameter * deltaX_
The asymmetric real part.
Double_t genValue() const
The value generated for the parameter.
static Double_t minRealImagPart_
Minimum allowed value of real/imaginary part parameters.
Double_t im() const
Get the imaginary part.
Definition: LauComplex.hh:248
void printFormat(std::ostream &stream, Double_t value) const
Method to choose the printing format to a specified level of precision.
Definition: LauPrint.cc:43
LauParameter acp_
The CP asymmetry.
virtual void finaliseValues()
Make sure values are in "standard" ranges, e.g. phases should be between -pi and pi.
LauComplex antiparticleCoeff_
The antiparticle complex coefficient.
static Double_t maxDelta_
Maximum allowed value of CP-violating real/imaginary part parameters.
Double_t initValue() const
The initial value of the parameter.