1 //--------------------------------------------------------------------------
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.
8 // Copyright Information: See EvtGen/COPYRIGHT
9 // Copyright (C) 2001 Caltech
11 // Module: EvtSSDCP.cc
13 // Description: See EvtSSDCP.hh
15 // Modification history:
17 // RYD August 12, 2001 Module created
18 // F. Sandrelli, Fernando M-V March 1, 2002 Debugged and added z parameter (CPT violation)
19 //------------------------------------------------------------------------
21 #include "EvtGenBase/EvtPatches.hh"
23 #include "EvtGenBase/EvtParticle.hh"
24 #include "EvtGenBase/EvtRandom.hh"
25 #include "EvtGenBase/EvtGenKine.hh"
26 #include "EvtGenBase/EvtCPUtil.hh"
27 #include "EvtGenBase/EvtPDL.hh"
28 #include "EvtGenBase/EvtReport.hh"
29 #include "EvtGenBase/EvtVector4C.hh"
30 #include "EvtGenBase/EvtTensor4C.hh"
31 #include "EvtGenModels/EvtSSDCP.hh"
33 #include "EvtGenBase/EvtConst.hh"
36 EvtSSDCP::~EvtSSDCP() {}
38 std::string EvtSSDCP::getName(){
45 EvtDecayBase* EvtSSDCP::clone(){
51 void EvtSSDCP::init(){
53 // check that there are 8 or 12 or 14 arguments
58 EvtSpinType::spintype d1type=EvtPDL::getSpinType(getDaug(0));
59 EvtSpinType::spintype d2type=EvtPDL::getSpinType(getDaug(1));
61 // Check it is a B0 or B0s
62 if ( ( getParentId() != EvtPDL::getId( "B0" ) )
63 && ( getParentId() != EvtPDL::getId( "anti-B0" ) )
64 && ( getParentId() != EvtPDL::getId( "B_s0" ) )
65 && ( getParentId() != EvtPDL::getId( "anti-B_s0" ) ) ) {
66 report( ERROR , "EvtGen" ) << "EvtSSDCP only decays B0 and B0s"
72 if ( (!(d1type == EvtSpinType::SCALAR || d2type == EvtSpinType::SCALAR))||
73 (!((d2type==EvtSpinType::SCALAR)||(d2type==EvtSpinType::VECTOR)||(d2type==EvtSpinType::TENSOR)))||
74 (!((d1type==EvtSpinType::SCALAR)||(d1type==EvtSpinType::VECTOR)||(d1type==EvtSpinType::TENSOR)))
76 report(ERROR,"EvtGen") << "EvtSSDCP generator expected "
77 << "one of the daugters to be a scalar, the other either scalar, vector, or tensor, found:"
78 << EvtPDL::name(getDaug(0)).c_str()<<" and "<<EvtPDL::name(getDaug(1)).c_str()<<endl;
79 report(ERROR,"EvtGen") << "Will terminate execution!"<<endl;
83 _dm=getArg(0)/EvtConst::c; //units of 1/mm
88 _qoverp=getArg(2)*EvtComplex(cos(getArg(3)),sin(getArg(3)));
91 _A_f=getArg(4)*EvtComplex(cos(getArg(5)),sin(getArg(5)));
93 _Abar_f=getArg(6)*EvtComplex(cos(getArg(7)),sin(getArg(7)));
97 _A_fbar=getArg(8)*EvtComplex(cos(getArg(9)),sin(getArg(9)));
98 _Abar_fbar=getArg(10)*EvtComplex(cos(getArg(11)),sin(getArg(11)));
101 //I'm somewhat confused about this. For a CP eigenstate set the
102 //amplitudes to the same. For a non CP eigenstate CPT invariance
105 (getDaug(0)==EvtPDL::chargeConj(getDaug(0))&&
106 getDaug(1)==EvtPDL::chargeConj(getDaug(1)))||
107 (getDaug(0)==EvtPDL::chargeConj(getDaug(1))&&
108 getDaug(1)==EvtPDL::chargeConj(getDaug(0)))){
112 _A_fbar=conj(_Abar_f);
113 _Abar_fbar=conj(_A_f);
117 //FS: new check for z
118 if (getNArg()==14){ //FS Set _z parameter if provided else set it 0
119 _z=EvtComplex(getArg(12),getArg(13));
122 _z=EvtComplex(0.0,0.0);
125 // FS substituted next 2 lines...
129 // _gamma=EvtPDL::getctau(EvtPDL::getId("B0")); //units of 1/mm
130 //_dgamma=_gamma*0.5*_dgog;
134 if ( ( getParentId() == EvtPDL::getId("B0") ) ||
135 ( getParentId() == EvtPDL::getId("anti-B0") ) ) {
136 _gamma=1./EvtPDL::getctau(EvtPDL::getId("B0")); //gamma/c (1/mm)
139 _gamma=1./EvtPDL::getctau(EvtPDL::getId("B_s0")) ;
142 _dgamma=_gamma*_dgog; //dgamma/c (1/mm)
145 report(INFO,"EvtGen") << "SSD_CP will generate CP/CPT violation:"
147 << " " << EvtPDL::name(getParentId()).c_str() << " --> "
148 << EvtPDL::name(getDaug(0)).c_str() << " + "
149 << EvtPDL::name(getDaug(1)).c_str() << endl << endl
150 << "using parameters:" << endl << endl
151 << " delta(m) = " << _dm << " hbar/ps" << endl
152 << "dGamma = " << _dgamma <<" ps-1" <<endl
153 << " q/p = " << _qoverp << endl
154 << " z = " << _z << endl
155 << " tau = " << 1./_gamma << " ps" << endl;
160 void EvtSSDCP::initProbMax() {
162 abs(_A_f) * abs(_A_f) +
163 abs(_Abar_f) * abs(_Abar_f) +
164 abs(_A_fbar) * abs(_A_fbar) +
165 abs(_Abar_fbar) * abs(_Abar_fbar);
167 if (_eigenstate) theProbMax*=2;
169 EvtSpinType::spintype d2type=EvtPDL::getSpinType(getDaug(1));
170 EvtSpinType::spintype d1type=EvtPDL::getSpinType(getDaug(0));
171 if (d1type==EvtSpinType::TENSOR||d2type==EvtSpinType::TENSOR) theProbMax*=10;
173 setProbMax(theProbMax);
176 void EvtSSDCP::decay( EvtParticle *p){
178 static EvtId B0=EvtPDL::getId("B0");
179 static EvtId B0B=EvtPDL::getId("anti-B0");
181 static EvtId B0s = EvtPDL::getId("B_s0");
182 static EvtId B0Bs = EvtPDL::getId("anti-B_s0");
190 if (EvtRandom::Flat(0.0,1.0)<0.5) flip=1;
198 daugs[0]=EvtPDL::chargeConj(getDaug(0));
199 daugs[1]=EvtPDL::chargeConj(getDaug(1));
203 p->initializePhaseSpace(2, daugs);
208 EvtCPUtil::OtherB(p,t,other_b,0.5); // t is c*Dt (mm)
212 //FS We assume DGamma=GammaLow-GammaHeavy and Dm=mHeavy-mLow
213 EvtComplex expL=exp(-EvtComplex(-0.25*_dgamma*t,0.5*_dm*t));
214 EvtComplex expH=exp(EvtComplex(-0.25*_dgamma*t,0.5*_dm*t));
215 //FS Definition of gp and gm
216 EvtComplex gp=0.5*(expL+expH);
217 EvtComplex gm=0.5*(expL-expH);
218 //FS Calculation os sqrt(1-z^2)
219 EvtComplex sqz=sqrt(abs(1-_z*_z))*exp(EvtComplex(0,arg(1-_z*_z)/2));
221 //EvtComplex BB=0.5*(expL+expH); // <B0|B0(t)>
222 //EvtComplex barBB=_qoverp*0.5*(expL-expH); // <B0bar|B0(t)>
223 //EvtComplex BbarB=_poverq*0.5*(expL-expH); // <B0|B0bar(t)>
224 //EvtComplex barBbarB=BB; // <B0bar|B0bar(t)>
225 // FS redefinition of these guys... (See BAD #188 eq.35 for ref.)
226 // q/p is taken as in the BaBar Phys. Book (opposite sign wrt ref.)
227 EvtComplex BB=gp+_z*gm; // <B0|B0(t)>
228 EvtComplex barBB=sqz*_qoverp*gm; // <B0bar|B0(t)>
229 EvtComplex BbarB=sqz*_poverq*gm; // <B0|B0bar(t)>
230 EvtComplex barBbarB=gp-_z*gm; // <B0bar|B0bar(t)>
233 if (other_b==B0B||other_b==B0Bs){
234 //at t=0 we have a B0
235 //report(INFO,"EvtGen") << "B0B"<<endl;
236 amp=BB*_A_f+BbarB*_Abar_f;
237 //std::cout << "noflip B0B tag:"<<amp<<std::endl;
240 if (other_b==B0||other_b==B0s){
241 //report(INFO,"EvtGen") << "B0"<<endl;
242 amp=barBB*_A_f+barBbarB*_Abar_f;
245 if (other_b==B0||other_b==B0s){
246 amp=barBB*_A_fbar+barBbarB*_Abar_fbar;
247 //std::cout << "flip B0 tag:"<<amp<<std::endl;
250 if (other_b==B0B||other_b==B0Bs){
251 amp=BB*_A_fbar+BbarB*_Abar_fbar;
256 EvtVector4R p4_parent=p->getP4Restframe();
257 double m_parent=p4_parent.mass();
259 EvtSpinType::spintype d2type=EvtPDL::getSpinType(getDaug(1));
264 if (d2type==EvtSpinType::SCALAR){
265 d2type=EvtPDL::getSpinType(getDaug(0));
268 moms = p->getDaug(1)->getP4();
273 moms = p->getDaug(0)->getP4();
278 if (d2type==EvtSpinType::SCALAR) {
282 if (d2type==EvtSpinType::VECTOR) {
284 double norm=momv.mass()/(momv.d3mag()*p->mass());
286 //std::cout << amp << " " << norm << " " << p4_parent << d->getP4()<< std::endl;
287 // std::cout << EvtPDL::name(d->getId()) << " " << EvtPDL::name(p->getDaug(0)->getId()) <<
288 // " 1and2 " << EvtPDL::name(p->getDaug(1)->getId()) << std::endl;
289 //std::cout << d->eps(0) << std::endl;
290 //std::cout << d->epsParent(0) << std::endl;
291 vertex(0,amp*norm*p4_parent*(d->epsParent(0)));
292 vertex(1,amp*norm*p4_parent*(d->epsParent(1)));
293 vertex(2,amp*norm*p4_parent*(d->epsParent(2)));
297 if (d2type==EvtSpinType::TENSOR) {
299 double norm=d->mass()*d->mass()/(m_parent*d->getP4().d3mag()*d->getP4().d3mag());
302 vertex(0,amp*norm*d->epsTensorParent(0).cont1(p4_parent)*p4_parent);
303 vertex(1,amp*norm*d->epsTensorParent(1).cont1(p4_parent)*p4_parent);
304 vertex(2,amp*norm*d->epsTensorParent(2).cont1(p4_parent)*p4_parent);
305 vertex(3,amp*norm*d->epsTensorParent(3).cont1(p4_parent)*p4_parent);
306 vertex(4,amp*norm*d->epsTensorParent(4).cont1(p4_parent)*p4_parent);