laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauAbsResonance.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 
38 #ifndef LAU_ABS_RESONANCE
39 #define LAU_ABS_RESONANCE
40 
42 #include "LauComplex.hh"
43 #include "LauParameter.hh"
44 
45 #include "TString.h"
46 
47 class LauDaughters;
48 class LauKinematics;
49 class LauResonanceInfo;
50 
52 
53  public:
56  BW,
58  GS,
63  LASS,
76  Pole,
90  };
91 
93  enum LauSpinType {
97  Legendre
98  };
99 
101 
105  static bool isIncoherentModel( LauResonanceModel model );
106 
108 
114  const Int_t resPairAmpInt,
115  const LauDaughters* daughters );
116 
118 
124  LauAbsResonance( const TString& resName,
125  const Int_t resPairAmpInt,
126  const LauDaughters* daughters,
127  const Int_t resSpin );
128 
130  virtual ~LauAbsResonance();
131 
133  virtual void initialise() = 0;
134 
136 
140  virtual LauComplex amplitude( const LauKinematics* kinematics );
141 
143 
147 
149 
152  LauSpinType getSpinType() const { return spinType_; }
153 
155 
158  const TString& getResonanceName() const { return resName_; }
159 
161 
164  const TString& getSanitisedName() const { return sanitisedName_; }
165 
167 
170  Int_t getPairInt() const { return resPairAmpInt_; }
171 
173 
176  Int_t getSpin() const { return resSpin_; }
177 
179 
182  Int_t getCharge() const { return resCharge_; }
183 
185 
188  Double_t getMass() const { return ( resMass_ != 0 ) ? resMass_->unblindValue() : -1.0; }
189 
191 
194  Double_t getWidth() const { return ( resWidth_ != 0 ) ? resWidth_->unblindValue() : -1.0; }
195 
197 
201 
203 
207 
209 
212  virtual const std::vector<LauParameter*>& getFloatingParameters()
213  {
214  return this->getParameters();
215  };
216 
218 
223  virtual Bool_t preSymmetrised() const { return kFALSE; }
224 
226 
229  Bool_t flipHelicity() const { return flipHelicity_; }
230 
232 
235  void flipHelicity( const Bool_t boolean ) { flipHelicity_ = boolean; }
236 
238 
243  Bool_t ignoreMomenta() const { return ignoreMomenta_; }
244 
246 
251  void ignoreMomenta( const Bool_t boolean ) { ignoreMomenta_ = boolean; }
252 
254 
259  Bool_t ignoreSpin() const { return ignoreSpin_; }
260 
262 
267  void ignoreSpin( const Bool_t boolean ) { ignoreSpin_ = boolean; }
268 
270 
275  Bool_t ignoreBarrierScaling() const { return ignoreBarrierScaling_; }
276 
278 
283  void ignoreBarrierScaling( const Bool_t boolean ) { ignoreBarrierScaling_ = boolean; }
284 
286 
295  void changeResonance( const Double_t newMass, const Double_t newWidth, const Int_t newSpin );
296 
298 
306  void changeBWBarrierRadii( const Double_t resRadius, const Double_t parRadius );
307 
309 
313  virtual void setResonanceParameter( const TString& name, const Double_t value );
314 
316 
319  virtual void floatResonanceParameter( const TString& name );
320 
322 
326  virtual LauParameter* getResonanceParameter( const TString& name );
327 
329 
332  void fixMass( const Bool_t parFixed )
333  {
334  if ( resMass_ != 0 ) {
335  resMass_->fixed( parFixed );
336  }
337  }
338 
340 
343  void fixWidth( const Bool_t parFixed )
344  {
345  if ( resWidth_ != 0 ) {
346  resWidth_->fixed( parFixed );
347  }
348  }
349 
351 
354  Bool_t fixMass() const { return ( resMass_ != 0 ) ? resMass_->fixed() : kTRUE; }
355 
357 
360  Bool_t fixWidth() const { return ( resWidth_ != 0 ) ? resWidth_->fixed() : kTRUE; }
361 
363 
366  void setSpinType( const LauSpinType spinType ) { spinType_ = spinType; }
367 
369 
374  {
375  resBWFactor_ = resFactor;
376  parBWFactor_ = parFactor;
377  }
378 
380  void fixBarrierRadii( const Bool_t fixResRadius, const Bool_t fixParRadius );
381 
383  Bool_t fixResRadius() const;
384 
386  Bool_t fixParRadius() const;
387 
389  Double_t getResRadius() const;
390 
392  Double_t getParRadius() const;
393 
394  protected:
396  TString getNameParent() const;
398  TString getNameDaug1() const;
400  TString getNameDaug2() const;
402  TString getNameBachelor() const;
404  Double_t getMassParent() const;
406  Double_t getMassDaug1() const;
408  Double_t getMassDaug2() const;
410  Double_t getMassBachelor() const;
412  Int_t getChargeParent() const;
414  Int_t getChargeDaug1() const;
416  Int_t getChargeDaug2() const;
418  Int_t getChargeBachelor() const;
419 
421  Double_t getQ() const { return q_; }
422 
424  Double_t getP() const { return p_; }
425 
427  Double_t getPstar() const { return pstar_; }
428 
430  Double_t getCovFactor() const { return covFactor_; }
431 
434 
437 
440 
443 
445  LauResonanceInfo* getResInfo() const { return resInfo_; }
446 
448  const LauDaughters* getDaughters() const { return daughters_; }
449 
451 
454  Double_t calcZemachSpinFactor( const Double_t pProd ) const;
455 
457 
460  Double_t calcCovSpinFactor( const Double_t pProd );
461 
463 
466  void calcCovFactor( const Double_t erm );
467 
469 
472  Double_t calcLegendrePoly() const;
473 
475 
478  Double_t calcLegendrePoly( const Double_t cosHel );
479 
481 
485  virtual LauComplex resAmp( Double_t mass, Double_t spinTerm ) = 0;
486 
489 
491 
494  void addFloatingParameter( LauParameter* param );
495 
497  std::vector<LauParameter*>& getParameters() { return resParameters_; }
498 
499  private:
502 
505 
508 
511 
513  TString nameParent_ { "" };
515  TString nameDaug1_ { "" };
517  TString nameDaug2_ { "" };
519  TString nameBachelor_ { "" };
520 
522  Int_t chargeParent_ { 0 };
524  Int_t chargeDaug1_ { 0 };
526  Int_t chargeDaug2_ { 0 };
528  Int_t chargeBachelor_ { 0 };
529 
531  Double_t massParent_ { 0.0 };
533  Double_t massDaug1_ { 0.0 };
535  Double_t massDaug2_ { 0.0 };
537  Double_t massBachelor_ { 0.0 };
538 
540  TString resName_;
541 
543  TString sanitisedName_;
544 
549 
551  std::vector<LauParameter*> resParameters_;
552 
554  Int_t resSpin_;
556  Int_t resCharge_ { 0 };
563 
566 
568  Bool_t flipHelicity_ { kFALSE };
570  Bool_t ignoreMomenta_ { kFALSE };
572  Bool_t ignoreSpin_ { kFALSE };
574  Bool_t ignoreBarrierScaling_ { kFALSE };
575 
576  // Event kinematics information
577 
579  Double_t mass_ { 0.0 };
581  Double_t cosHel_ { 0.0 };
582 
584  Double_t q_ { 0.0 };
586  Double_t p_ { 0.0 };
588  Double_t pstar_ { 0.0 };
589 
591 
600  Double_t erm_ { 1.0 };
601 
603  Double_t covFactor_ { 1.0 };
604 
605  ClassDef( LauAbsResonance, 0 ) // Abstract resonance class
606 };
607 
608 #endif
Int_t resCharge_
Resonance charge.
const TString & getSanitisedName() const
Get the name of the resonance.
File containing declaration of LauBlattWeisskopfFactor class.
virtual Bool_t preSymmetrised() const
Is the amplitude pre-symmetrised?
Double_t getWidth() const
Get the width of the resonance.
Class for defining the fit parameter objects.
Definition: LauParameter.hh:49
const TString & getResonanceName() const
Get the name of the resonance.
Double_t unblindValue() const
The unblinded value of the parameter.
virtual const std::vector< LauParameter * > & getFloatingParameters()
Retrieve the resonance parameters, e.g. so that they can be loaded into a fit.
Double_t mass_
Invariant mass.
Int_t resSpin_
Resonance spin.
Int_t chargeBachelor_
Bachelor charge.
Double_t pstar_
Bachelor momentum in parent rest frame.
LauParameter * getMassPar()
Get the mass parameter of the resonance.
Double_t cosHel_
Helicity angle cosine.
Int_t getCharge() const
Get the charge of the resonance.
LauSpinType spinType_
Spin formalism.
const LauBlattWeisskopfFactor * getResBWFactor() const
Get the centrifugal barrier for the resonance decay.
static bool isIncoherentModel(LauResonanceModel model)
Is the resonance model incoherent?
LauBlattWeisskopfFactor * getParBWFactor()
Get the centrifugal barrier for the parent decay.
const LauBlattWeisskopfFactor * getParBWFactor() const
Get the centrifugal barrier for the parent decay.
void calcCovFactor(const Double_t erm)
Calculate the spin-dependent covariant factor.
void ignoreBarrierScaling(const Bool_t boolean)
Set the ignore barrier factor scaling flag.
Double_t massDaug2_
Daughter 2 mass.
TString nameBachelor_
Bachelor name.
Double_t q_
Daughter momentum in resonance rest frame.
Int_t chargeDaug2_
Daughter 2 charge.
Bool_t ignoreSpin() const
Get the ignore spin flag.
Double_t erm_
Covariant factor.
LauAbsResonance(LauResonanceInfo *resInfo, const Int_t resPairAmpInt, const LauDaughters *daughters)
Constructor (for use by standard resonances)
TString sanitisedName_
Resonance name with illegal characters removed.
LauBlattWeisskopfFactor * resBWFactor_
Blatt Weisskopf barrier for resonance decay.
Bool_t ignoreBarrierScaling_
Boolean to ignore barrier factor scaling in the amplitude numerator, they are still used for the mass...
LauParameter * resMass_
Resonance mass.
std::vector< LauParameter * > & getParameters()
Access the list of floating parameters.
Double_t getPstar() const
Get the current value of the bachelor momentum in the parent rest frame.
File containing declaration of LauParameter class.
Bool_t ignoreSpin_
Boolean to set the spinTerm to unity always.
Double_t massParent_
Parent mass.
void fixBarrierRadii(const Bool_t fixResRadius, const Bool_t fixParRadius)
Fix or release the Blatt-Weisskopf barrier radii.
Bool_t fixResRadius() const
Get the status of resonance barrier radius (fixed or released)
virtual LauComplex resAmp(Double_t mass, Double_t spinTerm)=0
Complex resonant amplitude.
Bool_t ignoreMomenta() const
Get the ignore momenta flag.
LauResonanceInfo * resInfo_
Information on the resonance.
Int_t getSpin() const
Get the spin of the resonance.
Int_t getChargeParent() const
Get the Charge of the parent particle.
TString resName_
Resonance name.
Class for defining a complex number.
Definition: LauComplex.hh:61
Double_t calcCovSpinFactor(const Double_t pProd)
Calculate the amplitude spin term using the covariant tensor formalism.
void changeResonance(const Double_t newMass, const Double_t newWidth, const Int_t newSpin)
Allow the mass, width and spin of the resonance to be changed.
void changeBWBarrierRadii(const Double_t resRadius, const Double_t parRadius)
Allow the Blatt-Weisskopf radius for the resonance and parent factors to be changed.
void addFloatingParameter(LauParameter *param)
Add parameter to the list of floating parameters.
void setBarrierRadii(LauBlattWeisskopfFactor *resFactor, LauBlattWeisskopfFactor *parFactor)
Set the form factor model and parameters.
Double_t getCovFactor() const
Get the current value of the full spin-dependent covariant factor.
LauParameter * resWidth_
Resonance width.
Int_t getPairInt() const
Get the integer to identify which DP axis the resonance belongs to.
const LauDaughters * getDaughters() const
Access the daughters object.
Int_t chargeParent_
Parent charge.
Int_t chargeDaug1_
Daughter 1 charge.
Double_t covFactor_
Covariant factor (full spin-dependent expression)
LauAbsResonance & operator=(const LauAbsResonance &rhs)
Copy assignment operator (not implemented)
File containing declaration of LauComplex class.
Double_t getMassParent() const
Get the parent particle mass.
void fixMass(const Bool_t parFixed)
Fix or release the resonance mass.
Bool_t fixWidth() const
Get the status of resonance width (fixed or released)
Double_t getMass() const
Get the mass of the resonance.
virtual void setResonanceParameter(const TString &name, const Double_t value)
Set value of the various parameters.
Bool_t flipHelicity() const
Get the helicity flip flag.
Bool_t ignoreMomenta_
Boolean to ignore the momentum factors in both the spin factor and the mass-dependent width.
TString getNameBachelor() const
Get the name of the daughter that does not originate form the resonance.
Bool_t fixed() const
Check whether the parameter is fixed or floated.
Class for defining the properties of a resonant particle.
virtual ~LauAbsResonance()
Destructor.
virtual LauComplex amplitude(const LauKinematics *kinematics)
Calculate the complex amplitude.
Int_t getChargeDaug1() const
Get the charge of daughter 1.
Int_t resPairAmpInt_
DP axis identifier.
Bool_t ignoreBarrierScaling() const
Get the ignore barrier factor scaling flag.
Double_t getMassDaug1() const
Get the mass of daughter 1.
TString nameDaug1_
Daughter 1 name.
Double_t getQ() const
Get the current value of the daughter momentum in the resonance rest frame.
TString getNameParent() const
Get the name of the parent particle.
Bool_t fixMass() const
Get the status of resonance mass (fixed or released)
void ignoreMomenta(const Bool_t boolean)
Set the ignore momenta flag.
Int_t getChargeDaug2() const
Get the charge of daughter 2.
virtual void initialise()=0
Initialise the model.
Double_t getParRadius() const
Get the radius of the parent barrier factor.
Double_t getResRadius() const
Get the radius of the resonance barrier factor.
void ignoreSpin(const Bool_t boolean)
Set the ignore spin flag.
Int_t getChargeBachelor() const
Get the charge of the bachelor daughter.
Bool_t flipHelicity_
Boolean to flip helicity.
std::vector< LauParameter * > resParameters_
All parameters of the resonance.
const LauDaughters * daughters_
Information on the particles.
Double_t getMassDaug2() const
Get the mass of daughter 2.
Bool_t fixParRadius() const
Get the status of parent barrier radius (fixed or released)
Double_t calcLegendrePoly() const
Calculate the Legendre polynomial for the spin factor.
Double_t calcZemachSpinFactor(const Double_t pProd) const
Calculate the amplitude spin term using the Zemach tensor formalism.
LauSpinType
Define the allowed spin formalisms.
void flipHelicity(const Bool_t boolean)
Set the helicity flip flag.
void clearFloatingParameters()
Clear list of floating parameters.
Abstract class for defining type for resonance amplitude models (Breit-Wigner, Flatte etc....
Double_t massDaug1_
Daughter 1 mass.
LauAbsResonance(const LauAbsResonance &rhs)
Copy constructor (not implemented)
Class for calculating 3-body kinematic quantities.
Double_t massBachelor_
Bachelor mass.
void setSpinType(const LauSpinType spinType)
Set the spin formalism to be used.
TString nameParent_
Parent name.
virtual LauResonanceModel getResonanceModel() const =0
Get the resonance model type.
virtual void floatResonanceParameter(const TString &name)
Allow the various parameters to float in the fit.
virtual LauParameter * getResonanceParameter(const TString &name)
Access the given resonance parameter.
Class that defines the particular 3-body decay under study.
Definition: LauDaughters.hh:47
LauBlattWeisskopfFactor * getResBWFactor()
Get the centrifugal barrier for the resonance decay.
Double_t getP() const
Get the current value of the bachelor momentum in the resonance rest frame.
LauParameter * getWidthPar()
Get the width parameter of the resonance.
TString getNameDaug1() const
Get the name of the first daughter of the resonance.
Double_t getMassBachelor() const
Get the mass of the bachelor daughter.
void fixWidth(const Bool_t parFixed)
Fix or release the resonance width.
LauResonanceInfo * getResInfo() const
Access the resonance info object.
TString getNameDaug2() const
Get the name of the second daughter of the resonance.
Double_t p_
Bachelor momentum in resonance rest frame.
LauSpinType getSpinType() const
Get the spin type.
TString nameDaug2_
Daughter 2 name.
LauBlattWeisskopfFactor * parBWFactor_
Blatt Weisskopf barrier for parent decay.
LauResonanceModel
Define the allowed resonance types.
Class that implements the Blatt-Weisskopf barrier factor.