BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtD0TopipiEta Class Reference

#include <EvtD0TopipiEta.hh>

Inheritance diagram for EvtD0TopipiEta:

Public Member Functions

 EvtD0TopipiEta ()
virtual ~EvtD0TopipiEta ()
void getName (std::string &name)
EvtDecayBaseclone ()
void init ()
void initProbMax ()
void decay (EvtParticle *p)
Public Member Functions inherited from EvtDecayProb
void makeDecay (EvtParticle *p)
void setProb (double prob)
double getProb ()
void setWeight (double weight)
virtual ~EvtDecayProb ()
Public Member Functions inherited from EvtDecayBase
virtual std::string commandName ()
virtual void command (std::string cmd)
double getProbMax (double prob)
double resetProbMax (double prob)
 EvtDecayBase ()
virtual ~EvtDecayBase ()
virtual bool matchingDecay (const EvtDecayBase &other) const
EvtId getParentId ()
double getBranchingFraction ()
void disableCheckQ ()
void checkQ ()
int getNDaug ()
EvtIdgetDaugs ()
EvtId getDaug (int i)
int getNArg ()
int getPHOTOS ()
void setPHOTOS ()
void setVerbose ()
void setSummary ()
double * getArgs ()
std::string * getArgsStr ()
double getArg (int j)
std::string getArgStr (int j)
std::string getModelName ()
int getDSum ()
int summary ()
int verbose ()
void saveDecayInfo (EvtId ipar, int ndaug, EvtId *daug, int narg, std::vector< std::string > &args, std::string name, double brfr)
void printSummary ()
void setProbMax (double prbmx)
void noProbMax ()
void checkNArg (int a1, int a2=-1, int a3=-1, int a4=-1)
void checkNDaug (int d1, int d2=-1)
void checkSpinParent (EvtSpinType::spintype sp)
void checkSpinDaughter (int d1, EvtSpinType::spintype sp)
virtual int nRealDaughters ()

Additional Inherited Members

Static Public Member Functions inherited from EvtDecayBase
static void findMasses (EvtParticle *p, int ndaugs, EvtId daugs[10], double masses[10])
static void findMass (EvtParticle *p)
static double findMaxMass (EvtParticle *p)
Protected Member Functions inherited from EvtDecayBase
bool daugsDecayedByParentModel ()
Protected Attributes inherited from EvtDecayBase
bool _daugsDecayedByParentModel

Detailed Description

Definition at line 8 of file EvtD0TopipiEta.hh.

Constructor & Destructor Documentation

◆ EvtD0TopipiEta()

EvtD0TopipiEta::EvtD0TopipiEta ( )
inline

Definition at line 11 of file EvtD0TopipiEta.hh.

11{}

Referenced by clone().

◆ ~EvtD0TopipiEta()

EvtD0TopipiEta::~EvtD0TopipiEta ( )
virtual

Definition at line 32 of file EvtD0TopipiEta.cc.

32{}

Member Function Documentation

◆ clone()

EvtDecayBase * EvtD0TopipiEta::clone ( )
virtual

Implements EvtDecayBase.

Definition at line 36 of file EvtD0TopipiEta.cc.

36{ return new EvtD0TopipiEta; }

◆ decay()

void EvtD0TopipiEta::decay ( EvtParticle * p)
virtual

Implements EvtDecayBase.

Definition at line 96 of file EvtD0TopipiEta.cc.

96 {
97 /*
98 // This piece of code could in principle be used to calculate maximum
99 // probablity on fly. But as it uses high number of points and model
100 // deals with single final state, we keep hardcoded number for now rather
101 // than adapting code to work here.
102
103 double maxprob = 0.0;
104 for(int ir=0;ir<=60000000;ir++){
105 p->initializePhaseSpace(getNDaug(),getDaugs());
106 EvtVector4R D1 = p->getDaug(0)->getP4();
107 EvtVector4R D2 = p->getDaug(1)->getP4();
108 EvtVector4R D3 = p->getDaug(2)->getP4();
109
110 double P1[4], P2[4], P3[4];
111 P1[0] = D1.get(0); P1[1] = D1.get(1); P1[2] = D1.get(2); P1[3] = D1.get(3);
112 P2[0] = D2.get(0); P2[1] = D2.get(1); P2[2] = D2.get(2); P2[3] = D2.get(3);
113 P3[0] = D3.get(0); P3[1] = D3.get(1); P3[2] = D3.get(2); P3[3] = D3.get(3);
114
115 double value;
116 value = calDalEva(P1, P2, P3);
117 if(value>maxprob) {
118 maxprob=value;
119 cout << "ir = " << ir << " maxProb= " << value << endl;
120 }
121 }
122 cout << "maxProb = " << maxprob << endl;
123 */
125 EvtVector4R D1 = p->getDaug( 0 )->getP4();
126 EvtVector4R D2 = p->getDaug( 1 )->getP4();
127 EvtVector4R D3 = p->getDaug( 2 )->getP4();
128
129 double P1[4], P2[4], P3[4];
130 P1[0] = D1.get( 0 );
131 P1[1] = D1.get( 1 );
132 P1[2] = D1.get( 2 );
133 P1[3] = D1.get( 3 );
134 P2[0] = D2.get( 0 );
135 P2[1] = D2.get( 1 );
136 P2[2] = D2.get( 2 );
137 P2[3] = D2.get( 3 );
138 P3[0] = D3.get( 0 );
139 P3[1] = D3.get( 1 );
140 P3[2] = D3.get( 2 );
141 P3[3] = D3.get( 3 );
142
143 double value;
144 value = calDalEva( P1, P2, P3 );
145 setProb( value );
146
147 return;
148}
EvtId * getDaugs()
void setProb(double prob)
const EvtVector4R & getP4() const
EvtParticle * getDaug(int i)
double initializePhaseSpace(int numdaughter, EvtId *daughters, double poleSize=-1., int whichTwo1=0, int whichTwo2=1)
double get(int i) const

◆ getName()

void EvtD0TopipiEta::getName ( std::string & name)
virtual

Implements EvtDecayBase.

Definition at line 34 of file EvtD0TopipiEta.cc.

34{ model_name = "D0TopipiEta"; }

◆ init()

void EvtD0TopipiEta::init ( )
virtual

Reimplemented from EvtDecayBase.

Definition at line 38 of file EvtD0TopipiEta.cc.

38 {
39 // check that there are 0 arguments
40 checkNArg( 0 );
41 checkNDaug( 3 );
46
47 phi[0] = 0;
48 rho[0] = 1; // rho eta
49 phi[1] = -0.98109;
50 rho[1] = -0.02447; // omega eta (rho-omega mixing)
51 phi[2] = 0.71358;
52 rho[2] = 1.0848; // a0- pi+
53 phi[3] = -0.83115;
54 rho[3] = 2.6444; // a0+ pi-
55 phi[4] = -0.058521;
56 rho[4] = 7.0274; //(pi+ eta)_{2+} pi-
57
58 // cout << "Initializing D0TopipiEta" << endl;
59 // for (int i=0; i<5; i++) {
60 // cout << i << " rho= " << rho[i] << " phi= " << phi[i] << endl;
61 // }
62 mrho = 0.77511;
63 ma0 = 0.99;
64 Grho = 0.1491;
65 Ga0 = 0.0756;
66
67 const double mk0 = 0.497614;
68 const double mass_Kaon = 0.49368;
69 const double mass_Pion = 0.13957;
70 const double mass_Pi0 = 0.1349766;
71 const double meta = 0.547862;
72 mpi = 0.13957;
73 mD = 1.86483;
74 sD = mD * mD;
75 spi = mpi * mpi;
76 snk = mk0 * mk0;
77 sck = mass_Kaon * mass_Kaon;
78 scpi = mass_Pion * mass_Pion;
79 snpi = mass_Pi0 * mass_Pi0;
80 seta = meta * meta;
81
82 pi = 3.1415926;
83
84 ci = EvtComplex( 0.0, 1.0 );
85 one = EvtComplex( 1.0, 0.0 );
86
87 int GG[4][4] = { { 1, 0, 0, 0 }, { 0, -1, 0, 0 }, { 0, 0, -1, 0 }, { 0, 0, 0, -1 } };
88 for ( int i = 0; i < 4; i++ )
89 {
90 for ( int j = 0; j < 4; j++ ) { G[i][j] = GG[i][j]; }
91 }
92}
const double mass_Pion
double meta
void checkSpinDaughter(int d1, EvtSpinType::spintype sp)
void checkSpinParent(EvtSpinType::spintype sp)
void checkNDaug(int d1, int d2=-1)
void checkNArg(int a1, int a2=-1, int a3=-1, int a4=-1)
const double mk0
Definition inclks.cxx:33

◆ initProbMax()

void EvtD0TopipiEta::initProbMax ( )
virtual

Reimplemented from EvtDecayBase.

Definition at line 94 of file EvtD0TopipiEta.cc.

94{ setProbMax( 476.5 ); }
void setProbMax(double prbmx)

The documentation for this class was generated from the following files: