#include <EvtPartProp.hh>
|
| EvtPartProp () |
|
| EvtPartProp (const EvtPartProp &x) |
|
| ~EvtPartProp () |
|
double | getMass () |
|
double | getMassMin () |
|
double | getMassMax () |
|
double | getMaxRange () |
|
double | getWidth () |
|
double | getRandMass (EvtId *parId, int nDaug, EvtId *dauId, EvtId *othDauId, double maxMass, double *dauMasses) |
|
double | getMassProb (double mass, double massPar, int nDaug, double *massDau) |
|
double | getctau () |
|
void | setctau (double tau) |
|
int | getChg3 () |
|
void | setChg3 (int c3) |
|
EvtSpinType::spintype | getSpinType () |
|
void | setSpinType (EvtSpinType::spintype stype) |
|
const std::string & | getName () |
|
void | setName (std::string pname) |
|
EvtId | getId () |
|
void | setId (EvtId id) |
|
EvtId | getIdChgConj () |
|
void | setIdChgConj (EvtId idchgconj) |
|
int | getStdHep () |
|
void | setStdHep (int stdhep) |
|
int | getLundKC () |
|
void | setLundKC (int lundkc) |
|
EvtAbsLineShape * | getLineShape () |
|
void | initLineShape (double mass, double width, double maxRange) |
|
void | setLineShape (EvtAbsLineShape *l) |
|
double | rollMass () |
|
EvtPartProp & | operator= (const EvtPartProp &x) |
|
void | reSetMass (double mass) |
|
void | reSetWidth (double width) |
|
void | reSetMassMin (double mass) |
|
void | reSetMassMax (double mass) |
|
void | reSetBlatt (double blatt) |
|
void | includeBirthFactor (bool yesno) |
|
void | includeDecayFactor (bool yesno) |
|
void | addFactorPn (double factor) |
|
void | newLineShape (std::string type) |
|
void | setPWForDecay (int spin, EvtId d1, EvtId d2) |
|
void | setPWForBirthL (int spin, EvtId par, EvtId othD) |
|
void | fixLSForSP8 () |
|
Definition at line 31 of file EvtPartProp.hh.
◆ EvtPartProp() [1/2]
EvtPartProp::EvtPartProp |
( |
| ) |
|
Definition at line 34 of file EvtPartProp.cc.
34 :
35 _id(-1,-1)
36 ,_idchgconj(-1,-1)
37 ,_chg3(0)
38 ,_stdhep(0)
39 ,_lundkc(0)
40{
41 _lineShape=0;
42 _ctau=0.0;
43 _name="*******";
45}
Referenced by EvtPartProp(), and operator=().
◆ EvtPartProp() [2/2]
Definition at line 47 of file EvtPartProp.cc.
47 {
48
50 _lineShape=
x._lineShape->clone();
51 }
52 else{
53 _lineShape=0;
54 }
57 _spintype=
x._spintype;
59 _idchgconj=
x._idchgconj;
63
64}
◆ ~EvtPartProp()
EvtPartProp::~EvtPartProp |
( |
| ) |
|
Definition at line 66 of file EvtPartProp.cc.
66 {
67 if ( _lineShape ) delete _lineShape;
68 _lineShape=0;
69}
◆ addFactorPn()
void EvtPartProp::addFactorPn |
( |
double | factor = 0 | ) |
|
Definition at line 164 of file EvtPartProp.cc.
164 {
165 if (!_lineShape) ::abort();
166 _lineShape->addFactorPn(factor);
167
168}
◆ fixLSForSP8()
void EvtPartProp::fixLSForSP8 |
( |
| ) |
|
|
inline |
◆ getChg3()
int EvtPartProp::getChg3 |
( |
| ) |
|
|
inline |
◆ getctau()
double EvtPartProp::getctau |
( |
| ) |
|
|
inline |
◆ getId()
EvtId EvtPartProp::getId |
( |
| ) |
|
|
inline |
◆ getIdChgConj()
EvtId EvtPartProp::getIdChgConj |
( |
| ) |
|
|
inline |
◆ getLineShape()
◆ getLundKC()
int EvtPartProp::getLundKC |
( |
| ) |
|
|
inline |
◆ getMass()
double EvtPartProp::getMass |
( |
| ) |
|
|
inline |
◆ getMassMax()
double EvtPartProp::getMassMax |
( |
| ) |
|
|
inline |
Definition at line 42 of file EvtPartProp.hh.
42{return _lineShape->getMassMax();}
◆ getMassMin()
double EvtPartProp::getMassMin |
( |
| ) |
|
|
inline |
Definition at line 41 of file EvtPartProp.hh.
41{return _lineShape->getMassMin();}
◆ getMassProb()
double EvtPartProp::getMassProb |
( |
double | mass, |
|
|
double | massPar, |
|
|
int | nDaug, |
|
|
double * | massDau ) |
|
inline |
Definition at line 47 of file EvtPartProp.hh.
47{
return _lineShape->getMassProb(
mass,massPar,nDaug,massDau);}
◆ getMaxRange()
double EvtPartProp::getMaxRange |
( |
| ) |
|
|
inline |
Definition at line 43 of file EvtPartProp.hh.
43{return _lineShape->getMaxRange();}
◆ getName()
const std::string & EvtPartProp::getName |
( |
| ) |
|
|
inline |
◆ getRandMass()
double EvtPartProp::getRandMass |
( |
EvtId * | parId, |
|
|
int | nDaug, |
|
|
EvtId * | dauId, |
|
|
EvtId * | othDauId, |
|
|
double | maxMass, |
|
|
double * | dauMasses ) |
|
inline |
Definition at line 46 of file EvtPartProp.hh.
46{return _lineShape->getRandMass(parId,nDaug,dauId,othDauId,maxMass,dauMasses);}
◆ getSpinType()
◆ getStdHep()
int EvtPartProp::getStdHep |
( |
| ) |
|
|
inline |
◆ getWidth()
double EvtPartProp::getWidth |
( |
| ) |
|
|
inline |
Definition at line 44 of file EvtPartProp.hh.
44{return _lineShape->getWidth();}
◆ includeBirthFactor()
void EvtPartProp::includeBirthFactor |
( |
bool | yesno | ) |
|
Definition at line 155 of file EvtPartProp.cc.
155 {
156 if (!_lineShape) ::abort();
157 _lineShape->includeBirthFactor(yesno);
158}
◆ includeDecayFactor()
void EvtPartProp::includeDecayFactor |
( |
bool | yesno | ) |
|
Definition at line 159 of file EvtPartProp.cc.
159 {
160 if (!_lineShape) ::abort();
161 _lineShape->includeDecayFactor(yesno);
162}
◆ initLineShape()
void EvtPartProp::initLineShape |
( |
double | mass, |
|
|
double | width, |
|
|
double | maxRange ) |
◆ newLineShape()
void EvtPartProp::newLineShape |
( |
std::string | type | ) |
|
Definition at line 96 of file EvtPartProp.cc.
96 {
97
98 double m=_lineShape->getMass();
99 double w=_lineShape->getWidth();
100 double mR=_lineShape->getMaxRange();
102 delete _lineShape;
103 if ( type == "RELBW" ) {
104 _lineShape=
new EvtRelBreitWignerBarrierFact(m,
w,mR,st);
105 }
106 if ( type == "NONRELBW" ) {
107 _lineShape =
new EvtAbsLineShape(m,
w,mR,st);
108 }
109 if ( type == "FLAT" ) {
110 _lineShape =
new EvtFlatLineShape(m,
w,mR,st);
111 }
112 if ( type == "MANYDELTAFUNC" ) {
113 _lineShape =
new EvtManyDeltaFuncLineShape(m,
w,mR,st);
114 }
115}
◆ operator=()
Definition at line 79 of file EvtPartProp.cc.
79 {
80
81 _lineShape=
x._lineShape->clone();
82
86 _spintype=
x._spintype;
87 return *this;
88}
◆ reSetBlatt()
void EvtPartProp::reSetBlatt |
( |
double | blatt | ) |
|
Definition at line 151 of file EvtPartProp.cc.
151 {
152 if (!_lineShape) ::abort();
153 _lineShape->reSetBlatt(blatt);
154}
◆ reSetMass()
void EvtPartProp::reSetMass |
( |
double | mass | ) |
|
Definition at line 123 of file EvtPartProp.cc.
123 {
124 if (!_lineShape) ::abort();
125 _lineShape->reSetMass(
mass);
126}
◆ reSetMassMax()
void EvtPartProp::reSetMassMax |
( |
double | mass | ) |
|
Definition at line 147 of file EvtPartProp.cc.
147 {
148 if (!_lineShape) ::abort();
149 _lineShape->reSetMassMax(
mass);
150}
◆ reSetMassMin()
void EvtPartProp::reSetMassMin |
( |
double | mass | ) |
|
Definition at line 143 of file EvtPartProp.cc.
143 {
144 if (!_lineShape) ::abort();
145 _lineShape->reSetMassMin(
mass);
146}
◆ reSetWidth()
void EvtPartProp::reSetWidth |
( |
double | width | ) |
|
Definition at line 127 of file EvtPartProp.cc.
127 {
128 if (!_lineShape) ::abort();
129 _lineShape->reSetWidth(width);
130}
◆ rollMass()
double EvtPartProp::rollMass |
( |
| ) |
|
|
inline |
Definition at line 79 of file EvtPartProp.hh.
79{return _lineShape->rollMass();}
◆ setChg3()
void EvtPartProp::setChg3 |
( |
int | c3 | ) |
|
|
inline |
◆ setctau()
void EvtPartProp::setctau |
( |
double | tau | ) |
|
|
inline |
◆ setId()
void EvtPartProp::setId |
( |
EvtId | id | ) |
|
|
inline |
◆ setIdChgConj()
void EvtPartProp::setIdChgConj |
( |
EvtId | idchgconj | ) |
|
|
inline |
◆ setLineShape()
◆ setLundKC()
void EvtPartProp::setLundKC |
( |
int | lundkc | ) |
|
|
inline |
◆ setName()
void EvtPartProp::setName |
( |
std::string | pname | ) |
|
◆ setPWForBirthL()
void EvtPartProp::setPWForBirthL |
( |
int | spin, |
|
|
EvtId | par, |
|
|
EvtId | othD ) |
Definition at line 137 of file EvtPartProp.cc.
137 {
138 if (!_lineShape) ::abort();
139 _lineShape->setPWForBirthL(spin,par,othD);
140}
◆ setPWForDecay()
void EvtPartProp::setPWForDecay |
( |
int | spin, |
|
|
EvtId | d1, |
|
|
EvtId | d2 ) |
Definition at line 132 of file EvtPartProp.cc.
132 {
133 if (!_lineShape) ::abort();
134 _lineShape->setPWForDecay(spin,d1,d2);
135}
◆ setSpinType()
◆ setStdHep()
void EvtPartProp::setStdHep |
( |
int | stdhep | ) |
|
|
inline |
The documentation for this class was generated from the following files: