Line data Source code
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: EvtSVSNONCPEIGEN.cc
12 : //
13 : // Description: Routine to decay scalar -> vectors scalar
14 : // and has CP violation.
15 : //
16 : // Modification history:
17 : //
18 : // RYD April 26, 1997 Module created
19 : //
20 : //------------------------------------------------------------------------
21 : //
22 : #include "EvtGenBase/EvtPatches.hh"
23 : #include <stdlib.h>
24 : #include "EvtGenBase/EvtParticle.hh"
25 : #include "EvtGenBase/EvtRandom.hh"
26 : #include "EvtGenBase/EvtGenKine.hh"
27 : #include "EvtGenBase/EvtCPUtil.hh"
28 : #include "EvtGenBase/EvtPDL.hh"
29 : #include "EvtGenBase/EvtReport.hh"
30 : #include "EvtGenBase/EvtVector4C.hh"
31 : #include "EvtGenModels/EvtSVSNONCPEIGEN.hh"
32 : #include <string>
33 : #include "EvtGenBase/EvtConst.hh"
34 :
35 0 : EvtSVSNONCPEIGEN::~EvtSVSNONCPEIGEN() {}
36 :
37 : std::string EvtSVSNONCPEIGEN::getName(){
38 :
39 0 : return "SVS_NONCPEIGEN";
40 :
41 : }
42 :
43 :
44 : EvtDecayBase* EvtSVSNONCPEIGEN::clone(){
45 :
46 0 : return new EvtSVSNONCPEIGEN;
47 :
48 0 : }
49 :
50 : void EvtSVSNONCPEIGEN::init(){
51 :
52 : // check that there are 11 arguments
53 0 : checkNArg(11,7);
54 0 : checkNDaug(2);
55 :
56 0 : checkSpinDaughter(0,EvtSpinType::VECTOR);
57 0 : checkSpinDaughter(1,EvtSpinType::SCALAR);
58 :
59 0 : _dm=getArg(1);
60 0 : _phickm=2*getArg(0)+getArg(2);
61 :
62 0 : _A_f=EvtComplex(getArg(3)*cos(getArg(4)),getArg(3)*sin(getArg(4)));
63 0 : _Abar_f=EvtComplex(getArg(5)*cos(getArg(6)),getArg(5)*sin(getArg(6)));
64 :
65 0 : _A_fbar=_Abar_f;
66 0 : _Abar_fbar=_A_f;
67 :
68 0 : if (getNArg()==11){
69 0 : _A_fbar=EvtComplex(getArg(7)*cos(getArg(8)),getArg(7)*sin(getArg(8)));
70 0 : _Abar_fbar=EvtComplex(getArg(9)*cos(getArg(10)),getArg(9)*sin(getArg(10)));
71 0 : }
72 0 : }
73 :
74 : void EvtSVSNONCPEIGEN::initProbMax() {
75 : double theProbMax =
76 0 : abs(_A_f) * abs(_A_f) +
77 0 : abs(_Abar_f) * abs(_Abar_f) +
78 0 : abs(_A_fbar) * abs(_A_fbar) +
79 0 : abs(_Abar_fbar) * abs(_Abar_fbar);
80 :
81 0 : setProbMax(theProbMax);
82 0 : }
83 :
84 : void EvtSVSNONCPEIGEN::decay( EvtParticle *p){
85 :
86 : //added by Lange Jan4,2000
87 0 : static EvtId B0=EvtPDL::getId("B0");
88 0 : static EvtId B0B=EvtPDL::getId("anti-B0");
89 :
90 0 : double t;
91 0 : EvtId other_b;
92 0 : EvtId daugs[2];
93 :
94 : // MB: flip selects the final of the decay
95 0 : int flip = ((p->getId() == B0) ? 0 : 1);
96 0 : daugs[0]=getDaug(0);
97 0 : daugs[1]=getDaug(1);
98 0 : p->initializePhaseSpace(2, daugs);
99 :
100 0 : EvtCPUtil::getInstance()->OtherB(p,t,other_b,0.5);
101 :
102 0 : EvtComplex amp;
103 0 : double dmt2 = (_dm * t) / (2 * EvtConst::c);
104 0 : EvtComplex ePlusIPhi(cos(_phickm), sin(_phickm));
105 0 : EvtComplex eMinusIPhi(cos(-_phickm), -sin(_phickm));
106 :
107 : // flip == 0 : D-rho+
108 : // flip == 1 : D+rho-
109 :
110 0 : if (!flip) {
111 0 : if (other_b==B0B){
112 : // At t=0 we have a B0
113 0 : amp = cos(dmt2)*_A_f + eMinusIPhi*EvtComplex(0.0,sin(dmt2))*_Abar_f;
114 0 : }
115 0 : if (other_b==B0){
116 : // At t=0 we have a B0bar
117 0 : amp = ePlusIPhi*EvtComplex(0.0,sin(dmt2))*_A_f + cos(dmt2)*_Abar_f;
118 0 : }
119 : }
120 : else{
121 0 : if (other_b==B0B){
122 : // At t=0 we have a B0
123 0 : amp = cos(dmt2)*_A_fbar + eMinusIPhi*EvtComplex(0.0,sin(dmt2))*_Abar_fbar;
124 0 : }
125 0 : if (other_b==B0){
126 : // At t=0 we have a B0bar
127 0 : amp = ePlusIPhi*EvtComplex(0.0,sin(dmt2))*_A_fbar + cos(dmt2)*_Abar_fbar;
128 0 : }
129 : }
130 :
131 :
132 : EvtParticle *v;
133 0 : v= p->getDaug(0);
134 :
135 0 : EvtVector4R momv = p->getDaug(0)->getP4();
136 0 : EvtVector4R moms = p->getDaug(1)->getP4();
137 0 : EvtVector4R p4_parent=momv+moms;
138 :
139 0 : double norm=momv.mass()/(momv.d3mag()*p->mass());
140 :
141 0 : vertex(0,amp*norm*p4_parent*(v->epsParent(0)));
142 0 : vertex(1,amp*norm*p4_parent*(v->epsParent(1)));
143 0 : vertex(2,amp*norm*p4_parent*(v->epsParent(2)));
144 :
145 : return ;
146 0 : }
147 :
|