BOSS 6.6.4.p03
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtBTo3piCP Class Reference

#include <EvtBTo3piCP.hh>

+ Inheritance diagram for EvtBTo3piCP:

Public Member Functions

 EvtBTo3piCP ()
 
virtual ~EvtBTo3piCP ()
 
void getName (std::string &name)
 
EvtDecayBaseclone ()
 
void init ()
 
void initProbMax ()
 
void decay (EvtParticle *p)
 
- Public Member Functions inherited from EvtDecayAmp
void makeDecay (EvtParticle *p)
 
void setWeight (double weight)
 
void vertex (const EvtComplex &amp)
 
void vertex (int i1, const EvtComplex &amp)
 
void vertex (int i1, int i2, const EvtComplex &amp)
 
void vertex (int i1, int i2, int i3, const EvtComplex &amp)
 
void vertex (int *i1, const EvtComplex &amp)
 
virtual ~EvtDecayAmp ()
 
- Public Member Functions inherited from EvtDecayBase
virtual void getName (std::string &name)=0
 
virtual void decay (EvtParticle *p)=0
 
virtual void makeDecay (EvtParticle *p)=0
 
virtual EvtDecayBaseclone ()=0
 
virtual void init ()
 
virtual void initProbMax ()
 
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 EvtDecayAmp
EvtAmp _amp2
 
- Protected Attributes inherited from EvtDecayBase
bool _daugsDecayedByParentModel
 

Detailed Description

Definition at line 30 of file EvtBTo3piCP.hh.

Constructor & Destructor Documentation

◆ EvtBTo3piCP()

EvtBTo3piCP::EvtBTo3piCP ( )
inline

Definition at line 34 of file EvtBTo3piCP.hh.

34{}

Referenced by clone().

◆ ~EvtBTo3piCP()

EvtBTo3piCP::~EvtBTo3piCP ( )
virtual

Definition at line 40 of file EvtBTo3piCP.cc.

40{}

Member Function Documentation

◆ clone()

EvtDecayBase * EvtBTo3piCP::clone ( )
virtual

Implements EvtDecayBase.

Definition at line 50 of file EvtBTo3piCP.cc.

50 {
51
52 return new EvtBTo3piCP;
53
54}

◆ decay()

void EvtBTo3piCP::decay ( EvtParticle p)
virtual

Implements EvtDecayBase.

Definition at line 77 of file EvtBTo3piCP.cc.

77 {
78
79 //added by Lange Jan4,2000
80 static EvtId B0=EvtPDL::getId("B0");
81 static EvtId B0B=EvtPDL::getId("anti-B0");
82
83 double t;
84 EvtId other_b;
85
86 EvtCPUtil::OtherB(p,t,other_b);
87
88 EvtParticle *pip,*pim,*pi0;
89
91
92 // p->init_daug(SCALAR,&pip,SCALAR,&pim,SCALAR,&pi0);
93 pip=p->getDaug(0);
94 pim=p->getDaug(1);
95 pi0=p->getDaug(2);
96
97 EvtVector4R p4[3];
98
99 double dm=getArg(0);
100 double alpha=getArg(1);
101 int iset;
102
103 static int first=1;
104
105 if (first==1) {
106 iset=10000;
107 first=0;
108 }
109 else{
110 iset=0;
111 }
112
113 double p4piplus[4],p4piminus[4],p4gamm1[4],p4gamm2[4];
114
115 double realA,imgA,realbarA,imgbarA;
116
117 evt3pions_(&alpha,&iset,p4piplus,p4piminus,p4gamm1,p4gamm2,
118 &realA,&imgA,&realbarA,&imgbarA);
119
120 p4[0].set(p4piplus[3],p4piplus[0],p4piplus[1],p4piplus[2]);
121 p4[1].set(p4piminus[3],p4piminus[0],p4piminus[1],p4piminus[2]);
122 p4[2].set(p4gamm1[3]+p4gamm2[3],p4gamm1[0]+p4gamm2[0],
123 p4gamm1[1]+p4gamm2[1],p4gamm1[2]+p4gamm2[2]);
124
125 if (pip->getId()==EvtPDL::getId("pi+")) {
126 pip->init( getDaug(0), p4[0] );
127 pim->init( getDaug(1), p4[1] );
128 }
129 else {
130 pip->init( getDaug(0), p4[1] );
131 pim->init( getDaug(1), p4[0] );
132 }
133
134 pi0->init( getDaug(2), p4[2] );
135
136 EvtComplex amp;
137
138 EvtComplex A(realA,imgA);
139 EvtComplex Abar(realbarA,imgbarA);
140
141 if (other_b==B0B){
142 amp=A*cos(dm*t/(2*EvtConst::c))+
143 EvtComplex(0.,1.)*Abar*sin(dm*t/(2*EvtConst::c));
144 }
145 if (other_b==B0){
146 amp=Abar*cos(dm*t/(2*EvtConst::c))+
147 EvtComplex(0.,1.)*A*sin(dm*t/(2*EvtConst::c));
148 }
149
150 vertex(amp);
151
152 return ;
153}
double sin(const BesAngle a)
Definition: BesAngle.h:210
double cos(const BesAngle a)
Definition: BesAngle.h:213
void evt3pions_(double *, int *, double *, double *, double *, double *, double *, double *, double *, double *)
const double alpha
static void OtherB(EvtParticle *p, double &t, EvtId &otherb)
Definition: EvtCPUtil.cc:229
static const double c
Definition: EvtConst.hh:32
void vertex(const EvtComplex &amp)
Definition: EvtDecayAmp.hh:37
double getArg(int j)
EvtId * getDaugs()
Definition: EvtDecayBase.hh:65
EvtId getDaug(int i)
Definition: EvtDecayBase.hh:66
Definition: EvtId.hh:27
static EvtId getId(const std::string &name)
Definition: EvtPDL.cc:287
void makeDaughters(int ndaug, EvtId *id)
virtual void init(EvtId part_n, const EvtVector4R &p4)=0
EvtId getId() const
Definition: EvtParticle.cc:113
EvtParticle * getDaug(int i)
Definition: EvtParticle.cc:85
void set(int i, double d)
Definition: EvtVector4R.hh:183
Index first(Pair i)
Definition: EvtCyclic3.cc:195
int t()
Definition: t.c:1

◆ getName()

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

Implements EvtDecayBase.

Definition at line 43 of file EvtBTo3piCP.cc.

43 {
44
45 model_name="BTO3PI_CP";
46
47}

◆ init()

void EvtBTo3piCP::init ( )
virtual

Reimplemented from EvtDecayBase.

Definition at line 56 of file EvtBTo3piCP.cc.

56 {
57
58 // check that there are 2 arguments
59 checkNArg(2);
60 checkNDaug(3);
61
63
67}
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 EvtBTo3piCP::initProbMax ( )
virtual

Reimplemented from EvtDecayBase.

Definition at line 71 of file EvtBTo3piCP.cc.

71 {
72
73 setProbMax(1.5);
74
75}
void setProbMax(double prbmx)

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