BOSS 7.1.2
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtDsTopipi0pi0 Class Reference

#include <EvtDsTopipi0pi0.hh>

+ Inheritance diagram for EvtDsTopipi0pi0:

Public Member Functions

 EvtDsTopipi0pi0 ()
 
virtual ~EvtDsTopipi0pi0 ()
 
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 9 of file EvtDsTopipi0pi0.hh.

Constructor & Destructor Documentation

◆ EvtDsTopipi0pi0()

EvtDsTopipi0pi0::EvtDsTopipi0pi0 ( )
inline

Definition at line 12 of file EvtDsTopipi0pi0.hh.

12{}

Referenced by clone().

◆ ~EvtDsTopipi0pi0()

EvtDsTopipi0pi0::~EvtDsTopipi0pi0 ( )
virtual

Definition at line 32 of file EvtDsTopipi0pi0.cc.

32{}

Member Function Documentation

◆ clone()

EvtDecayBase * EvtDsTopipi0pi0::clone ( )
virtual

Implements EvtDecayBase.

Definition at line 38 of file EvtDsTopipi0pi0.cc.

38 {
39 return new EvtDsTopipi0pi0;
40}

◆ decay()

void EvtDsTopipi0pi0::decay ( EvtParticle * p)
virtual

Implements EvtDecayBase.

Definition at line 129 of file EvtDsTopipi0pi0.cc.

129 {
130/*
131 double maxprob = 0.0;
132 for(int ir=0;ir<=60000000;ir++){
133 p->initializePhaseSpace(getNDaug(),getDaugs());
134 EvtVector4R D1 = p->getDaug(0)->getP4();
135 EvtVector4R D2 = p->getDaug(1)->getP4();
136 EvtVector4R D3 = p->getDaug(2)->getP4();
137
138 double P1[4], P2[4], P3[4];
139 P1[0] = D1.get(0); P1[1] = D1.get(1); P1[2] = D1.get(2); P1[3] = D1.get(3);
140 P2[0] = D2.get(0); P2[1] = D2.get(1); P2[2] = D2.get(2); P2[3] = D2.get(3);
141 P3[0] = D3.get(0); P3[1] = D3.get(1); P3[2] = D3.get(2); P3[3] = D3.get(3);
142
143//P1[0] = 0.420940262140625; P1[1] = 0.186467651715440; P1[2] =-0.006370318623730;P1[3] =0.350571109833864;
144//P2[0] = 0.882122776747018; P2[1] =0.132998408143823; P2[2] =-0.666777627124688; P2[3] =-0.545566661456526;
145//P3[0] = 0.712403566511058; P3[1] =-0.587918056029798; P3[2] =0.378201754131628; P3[3] =0.024818375264997;
146
147 double value;
148 //value = calDalEva(P1, P2, P3);
149 int g0[5]={3,1,1,0,0};
150 int spin[5]={0,0,2,2,2};
151 int nstates=5;
152 calEva(P1, P2, P3, mass, width, rho, phi, g0, spin, modetype, nstates, value);
153 if (value<0) continue;
154 if(value>maxprob) {
155 maxprob=value;
156 cout << "ir= " << ir << endl;
157// cout << "double P1[4] = {" << P1[0] <<","<< P1[1] <<","<< P1[2] <<","<< P1[3] <<"};"<< endl;
158// cout << "double P2[4] = {" << P2[0] <<","<< P2[1] <<","<< P2[2] <<","<< P2[3] <<"};"<< endl;
159// cout << "double P3[4] = {" << P3[0] <<","<< P3[1] <<","<< P3[2] <<","<< P3[3] <<"};"<< endl;
160 cout << "MAX====> " << maxprob << endl;
161 }
162 }
163 printf("MAXprob = %.10f\n",maxprob);
164*/
166 EvtVector4R D1 = p->getDaug(0)->getP4();
167 EvtVector4R D2 = p->getDaug(1)->getP4();
168 EvtVector4R D3 = p->getDaug(2)->getP4();
169
170 double P1[4], P2[4], P3[4];
171 P1[0] = D1.get(0); P1[1] = D1.get(1); P1[2] = D1.get(2); P1[3] = D1.get(3);
172 P2[0] = D2.get(0); P2[1] = D2.get(1); P2[2] = D2.get(2); P2[3] = D2.get(3);
173 P3[0] = D3.get(0); P3[1] = D3.get(1); P3[2] = D3.get(2); P3[3] = D3.get(3);
174
175//P1[0] = 0.420940262140625; P1[1] = 0.186467651715440; P1[2] =-0.006370318623730;P1[3] =0.350571109833864;
176//P2[0] = 0.882122776747018; P2[1] =0.132998408143823; P2[2] =-0.666777627124688; P2[3] =-0.545566661456526;
177//P3[0] = 0.712403566511058; P3[1] =-0.587918056029798; P3[2] =0.378201754131628; P3[3] =0.024818375264997;
178
179 double value;
180 int g0[5]={3,1,1,0,0};
181 int spin[5]={0,0,2,2,2};
182 int nstates=5;
183
184 calEva(P1, P2, P3, mass, width, rho, phi, g0, spin, modetype, nstates, value);
185
186 setProb(value);
187 return ;
188
189}
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 EvtDsTopipi0pi0::getName ( std::string & name)
virtual

Implements EvtDecayBase.

Definition at line 34 of file EvtDsTopipi0pi0.cc.

34 {
35 model_name="DsTopipi0pi0";
36}

◆ init()

void EvtDsTopipi0pi0::init ( )
virtual

Reimplemented from EvtDecayBase.

Definition at line 42 of file EvtDsTopipi0pi0.cc.

42 {
43 // check that there are 0 arguments
44 checkNArg(0);
45 checkNDaug(3);
50
51 phi[0] = 0;
52 rho[0] = 1.0;
53 phi[1] = 0;
54 rho[1] = 0;
55 phi[2] = 0;
56 rho[2] = 0;
57 phi[3] = 0;
58 rho[3] = 0;
59 phi[4] = 0;
60 rho[4] = 0;
61
62 phi[0] = 0.0;
63 phi[1] = -7.3409e-01;
64 phi[2] = -9.4467e-01;
65 phi[3] = -4.3801e+00;
66 phi[4] = -2.3138e+00;
67
68 rho[0] = 1.0000e+00;
69 rho[1] = 8.5416e-01;
70 rho[2] = 6.8573e-01;
71 rho[3] = 1.7286e+00;
72 rho[4] = 7.5781e-01;
73
74 modetype[0]= 23;
75 modetype[1]= 23;
76 modetype[2]= 23;
77 modetype[3]= 23;
78 modetype[4]= 12;
79
80 //cout << "DsTopipi0pi0 :" << endl;
81 //for (int i=0; i<5; i++) {
82 // cout << i << " rho= " << rho[i] << " phi= " << phi[i] << endl;
83 //}
84
85 width[0] = 6.7400e-02;
86 width[1] = 2.6500e-01;
87 width[2] = 1.8500e-01;
88 width[3] = 1.7400e-01;
89 width[4] = 1.7400e-01;
90
91 mass[0] = 9.5500e-01;
92 mass[1] = 1.3500e+00;
93 mass[2] = 1.2755e+00;
94 mass[3] = 1.0000e+00;
95 mass[4] = 1.0000e+00;
96
97 mD = 1.86486;
98 mDs = 1.9683;
99 rRes = 9.0;
100 rD = 5.0;
101 metap = 0.95778;
102 mkstr = 0.89594;
103 mk0 = 0.497614;
104 mass_Kaon = 0.49368;
105 mass_Pion = 0.13957;
106 mass_Pi0 = 0.1349766;
107 math_pi = 3.1415926;
108 ma0 = 0.99;
109 Ga0 = 0.0756;
110 meta = 0.547862;
111
112 GS1 = 0.636619783;
113 GS2 = 0.01860182466;
114 GS3 = 0.1591549458; // 1/(2*math_2pi)
115 GS4 = 0.00620060822; // mass_Pion2/math_pi
116
117 int GG[4][4] = { {1,0,0,0}, {0,-1,0,0}, {0,0,-1,0}, {0,0,0,-1} };
118 for (int i=0; i<4; i++) {
119 for (int j=0; j<4; j++) {
120 G[i][j] = GG[i][j];
121 }
122 }
123}
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)

◆ initProbMax()

void EvtDsTopipi0pi0::initProbMax ( )
virtual

Reimplemented from EvtDecayBase.

Definition at line 125 of file EvtDsTopipi0pi0.cc.

125 {
126 setProbMax(51.1);
127}
void setProbMax(double prbmx)

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