BOSS
7.0.6
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtSLN.cc
Go to the documentation of this file.
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: EvtSLN.cc
12
//
13
// Description: B ==> tau + nu
14
//
15
// Modification history:
16
//
17
// RYD/SHY April 23, 1997 Module created
18
//
19
//------------------------------------------------------------------------
20
//
21
#include "
EvtGenBase/EvtPatches.hh
"
22
#include <stdlib.h>
23
#include <iostream>
24
#include <string>
25
#include "
EvtGenBase/EvtParticle.hh
"
26
#include "
EvtGenBase/EvtPDL.hh
"
27
#include "
EvtGenBase/EvtGenKine.hh
"
28
#include "
EvtGenModels/EvtSLN.hh
"
29
#include "
EvtGenBase/EvtDiracSpinor.hh
"
30
#include "
EvtGenBase/EvtReport.hh
"
31
#include "
EvtGenBase/EvtVector4C.hh
"
32
33
EvtSLN::~EvtSLN
() {}
34
35
void
EvtSLN::getName
(std::string& model_name){
36
37
model_name=
"SLN"
;
38
39
}
40
41
EvtDecayBase
*
EvtSLN::clone
(){
42
43
return
new
EvtSLN
;
44
45
}
46
47
48
void
EvtSLN::init
(){
49
50
// check that there are 0 arguments
51
checkNArg
(0);
52
checkNDaug
(2);
53
54
checkSpinParent
(
EvtSpinType::SCALAR
);
55
56
checkSpinDaughter
(0,
EvtSpinType::DIRAC
);
57
checkSpinDaughter
(1,
EvtSpinType::NEUTRINO
);
58
59
}
60
61
62
void
EvtSLN::initProbMax
(){
63
64
double
M=
EvtPDL::getMeanMass
(
getParentId
());
65
double
m=
EvtPDL::getMeanMass
(
getDaug
(0));
66
67
double
probMax=8.0*(M*M-m*m)*m*m;
68
69
setProbMax
(probMax);
70
71
}
72
73
74
void
EvtSLN::decay
(
EvtParticle
*p){
75
76
static
EvtId
EM=
EvtPDL::getId
(
"e-"
);
77
static
EvtId
MUM=
EvtPDL::getId
(
"mu-"
);
78
static
EvtId
TAUM=
EvtPDL::getId
(
"tau-"
);
79
80
p->
initializePhaseSpace
(
getNDaug
(),
getDaugs
());
81
82
EvtParticle
*l, *nul;
83
l= p->
getDaug
(0);
84
nul= p->
getDaug
(1);
85
86
EvtVector4R
p4_p;
87
p4_p.
set
(p->
mass
(),0.0,0.0,0.0);
88
89
EvtVector4C
l1, l2;
90
91
if
(
getDaug
(0)==TAUM ||
getDaug
(0)==MUM ||
getDaug
(0)==EM) {
92
l1=
EvtLeptonVACurrent
(l->
spParent
(0),nul->
spParentNeutrino
());
93
l2=
EvtLeptonVACurrent
(l->
spParent
(1),nul->
spParentNeutrino
());
94
}
95
else
{
96
l1=
EvtLeptonVACurrent
(nul->
spParentNeutrino
(),l->
spParent
(0));
97
l2=
EvtLeptonVACurrent
(nul->
spParentNeutrino
(),l->
spParent
(1));
98
}
99
100
vertex
(0,p4_p*l1);
101
vertex
(1,p4_p*l2);
102
103
return
;
104
105
}
106
107
EvtLeptonVACurrent
EvtVector4C EvtLeptonVACurrent(const EvtDiracSpinor &d, const EvtDiracSpinor &dp)
Definition:
EvtDiracSpinor.cc:187
EvtDiracSpinor.hh
EvtGenKine.hh
EvtPDL.hh
EvtParticle.hh
EvtPatches.hh
EvtReport.hh
EvtSLN.hh
EvtVector4C.hh
EvtDecayAmp::vertex
void vertex(const EvtComplex &)
Definition:
EvtDecayAmp.hh:37
EvtDecayBase
Definition:
EvtDecayBase.hh:33
EvtDecayBase::checkSpinDaughter
void checkSpinDaughter(int d1, EvtSpinType::spintype sp)
Definition:
EvtDecayBase.cc:533
EvtDecayBase::checkSpinParent
void checkSpinParent(EvtSpinType::spintype sp)
Definition:
EvtDecayBase.cc:520
EvtDecayBase::setProbMax
void setProbMax(double prbmx)
Definition:
EvtDecayBase.cc:297
EvtDecayBase::getParentId
EvtId getParentId()
Definition:
EvtDecayBase.hh:60
EvtDecayBase::getNDaug
int getNDaug()
Definition:
EvtDecayBase.hh:64
EvtDecayBase::checkNDaug
void checkNDaug(int d1, int d2=-1)
Definition:
EvtDecayBase.cc:504
EvtDecayBase::getDaugs
EvtId * getDaugs()
Definition:
EvtDecayBase.hh:65
EvtDecayBase::checkNArg
void checkNArg(int a1, int a2=-1, int a3=-1, int a4=-1)
Definition:
EvtDecayBase.cc:482
EvtDecayBase::getDaug
EvtId getDaug(int i)
Definition:
EvtDecayBase.hh:66
EvtId
Definition:
EvtId.hh:27
EvtPDL::getMeanMass
static double getMeanMass(EvtId i)
Definition:
EvtPDL.hh:45
EvtPDL::getId
static EvtId getId(const std::string &name)
Definition:
EvtPDL.cc:287
EvtParticle
Definition:
EvtParticle.hh:42
EvtParticle::spParentNeutrino
virtual EvtDiracSpinor spParentNeutrino() const
Definition:
EvtParticle.cc:635
EvtParticle::spParent
virtual EvtDiracSpinor spParent(int) const
Definition:
EvtParticle.cc:609
EvtParticle::getDaug
EvtParticle * getDaug(int i)
Definition:
EvtParticle.cc:85
EvtParticle::mass
double mass() const
Definition:
EvtParticle.cc:127
EvtParticle::initializePhaseSpace
double initializePhaseSpace(int numdaughter, EvtId *daughters, double poleSize=-1., int whichTwo1=0, int whichTwo2=1)
Definition:
EvtParticle.cc:1071
EvtSLN::initProbMax
void initProbMax()
Definition:
EvtSLN.cc:62
EvtSLN::~EvtSLN
virtual ~EvtSLN()
Definition:
EvtSLN.cc:33
EvtSLN::clone
EvtDecayBase * clone()
Definition:
EvtSLN.cc:41
EvtSLN::getName
void getName(std::string &name)
Definition:
EvtSLN.cc:35
EvtSLN::decay
void decay(EvtParticle *p)
Definition:
EvtSLN.cc:74
EvtSLN::EvtSLN
EvtSLN()
Definition:
EvtSLN.hh:34
EvtSLN::init
void init()
Definition:
EvtSLN.cc:48
EvtSpinType::NEUTRINO
@ NEUTRINO
Definition:
EvtSpinType.hh:31
EvtSpinType::SCALAR
@ SCALAR
Definition:
EvtSpinType.hh:31
EvtSpinType::DIRAC
@ DIRAC
Definition:
EvtSpinType.hh:31
EvtVector4C
Definition:
EvtVector4C.hh:31
EvtVector4R
Definition:
EvtVector4R.hh:29
EvtVector4R::set
void set(int i, double d)
Definition:
EvtVector4R.hh:183
source
Generator
BesEvtGen
BesEvtGen-00-04-08
src
EvtGen
EvtGenModels
EvtSLN.cc
Generated by
1.9.6