CGEM BOSS 6.6.5.f
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtAbsLineShape.hh
Go to the documentation of this file.
1//--------------------------------------------------------------------------
2//
3// Environment:
4// This software is part of the EvtGen package developed jointly
5// for the BaBar and CLEO collaborations. If you use all or part
6// of it, please give an appropriate acknowledgement.
7//
8// Copyright Information: See EvtGen/COPYRIGHT
9// Copyright (C) 1998 Caltech, UCSB
10//
11// Module: EvtGen/EvtAbsLineShape.hh
12//
13// Description: Class to keep the particle properties for
14// one particle
15//
16// Modification history:
17//
18// Lange March 10, 2001 Module created
19//
20//------------------------------------------------------------------------
21
22#ifndef EVTABSLINESHAPE_HH
23#define EVTABSLINESHAPE_HH
24
26#include "EvtGenBase/EvtId.hh"
27#include <vector>
28
29class EvtId;
30
32
33public:
34
36 EvtAbsLineShape(double mass, double width, double maxRange, EvtSpinType::spintype sp);
37 virtual ~EvtAbsLineShape();
40
41 double getMass() {return _mass;}
42 double getMassMin() {return _massMin;}
43 double getMassMax() {return _massMax;}
44 double getMaxRange() {return _maxRange;}
45 double getWidth() {return _width;}
47 virtual double rollMass();
48 virtual EvtAbsLineShape* clone();
49
50 void reSetMass(double mass) { _mass=mass;}
51 void reSetWidth(double width) { _width=width;}
52 void reSetMassMin(double mass) { _massMin=mass;}
53 void reSetMassMax(double mass) { _massMax=mass;}
54 virtual void reSetBlatt(double blatt) {};
55 void includeBirthFactor(bool yesno) { _includeBirthFact = yesno; }
56 void addFactorPn(double factor=0.) { _addFactorPn = factor;}
57 void includeDecayFactor(bool yesno) { _includeDecayFact = yesno; }
58 void setPWForDecay( int spin, EvtId d1, EvtId d2) {
59 _userSetPW.push_back(spin);
60 _userSetPWD1.push_back(d1);
61 _userSetPWD2.push_back(d2);
62 }
63 void setPWForBirthL( int spin, EvtId par, EvtId othD) {
64 _userSetBirthPW.push_back(spin);
65 _userSetBirthOthD.push_back(othD);
66 _userSetBirthPar.push_back(par);
67 }
68
69 virtual double getRandMass(EvtId *parId, int nDaug, EvtId *dauId, EvtId *othDaugId,double maxMass, double *dauMasses);
70 virtual double getMassProb(double mass, double massPar, int nDaug, double *massDau);
71
72 void fixForSP8() { _applyFixForSP8=true;}
73protected:
74
78 double _mass;
79 double _massMin;
80 double _massMax;
81 double _width;
82 double _maxRange;
83
84 // allow for special cases where the default method of picking the
85 //lowest allowed partial wave for a decay is not the right answer.
86 // string is "<spin> <daughter1> <daughter2>"
87 //new 9/12/2003 Lange
88 std::vector<EvtId> _userSetPWD1,_userSetPWD2;
89 std::vector<int> _userSetPW;
90
91 // also do it for birth factors
93 std::vector<int> _userSetBirthPW;
94
96
98};
99
100#endif
101
double mass
Double_t x[10]
void reSetWidth(double width)
std::vector< EvtId > _userSetBirthOthD
virtual EvtAbsLineShape * clone()
EvtSpinType::spintype _spin
virtual double getMassProb(double mass, double massPar, int nDaug, double *massDau)
std::vector< EvtId > _userSetPWD1
void reSetMass(double mass)
std::vector< int > _userSetPW
virtual ~EvtAbsLineShape()
void includeDecayFactor(bool yesno)
void addFactorPn(double factor=0.)
EvtSpinType::spintype getSpinType()
EvtAbsLineShape & operator=(const EvtAbsLineShape &x)
virtual double getRandMass(EvtId *parId, int nDaug, EvtId *dauId, EvtId *othDaugId, double maxMass, double *dauMasses)
void setPWForBirthL(int spin, EvtId par, EvtId othD)
std::vector< int > _userSetBirthPW
void reSetMassMax(double mass)
virtual double rollMass()
virtual void reSetBlatt(double blatt)
std::vector< EvtId > _userSetPWD2
void includeBirthFactor(bool yesno)
void setPWForDecay(int spin, EvtId d1, EvtId d2)
std::vector< EvtId > _userSetBirthPar
void reSetMassMin(double mass)
Definition: EvtId.hh:27