BOSS
7.0.3
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtbTosllBall.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) 2000 Caltech, UCSB
10
//
11
// Module: EvtbTosllBall.cc
12
//
13
// Description: Routine to implement b->sll decays according to Ball et al.
14
//
15
// Modification history:
16
//
17
// Ryd January 5, 2000 Module created
18
//
19
//------------------------------------------------------------------------
20
//
21
#include "
EvtGenBase/EvtPatches.hh
"
22
#include <stdlib.h>
23
#include "
EvtGenBase/EvtParticle.hh
"
24
#include "
EvtGenBase/EvtGenKine.hh
"
25
#include "
EvtGenBase/EvtPDL.hh
"
26
#include "
EvtGenBase/EvtReport.hh
"
27
#include "
EvtGenModels/EvtbTosllBall.hh
"
28
#include "
EvtGenModels/EvtbTosllBallFF.hh
"
29
#include "
EvtGenModels/EvtbTosllAmp.hh
"
30
#include "
EvtGenModels/EvtbTosllScalarAmp.hh
"
31
#include "
EvtGenModels/EvtbTosllVectorAmp.hh
"
32
33
#include <string>
34
using
std::endl;
35
36
EvtbTosllBall::~EvtbTosllBall
() {}
37
38
void
EvtbTosllBall::getName
(std::string& model_name){
39
40
model_name=
"BTOSLLBALL"
;
41
}
42
43
44
EvtDecayBase
*
EvtbTosllBall::clone
(){
45
46
return
new
EvtbTosllBall
;
47
48
}
49
50
void
EvtbTosllBall::decay
(
EvtParticle
*p ){
51
52
setWeight
(p->
initializePhaseSpace
(
getNDaug
(),
getDaugs
(),_poleSize,1,2));
53
54
_calcamp->
CalcAmp
(p,
_amp2
,_ballffmodel);
55
56
}
57
58
59
void
EvtbTosllBall::initProbMax
(){
60
61
EvtId
parnum,mesnum,l1num,l2num;
62
63
parnum =
getParentId
();
64
mesnum =
getDaug
(0);
65
l1num =
getDaug
(1);
66
l2num =
getDaug
(2);
67
68
//This routine sets the _poleSize.
69
double
mymaxprob = _calcamp->
CalcMaxProb
(parnum,mesnum,
70
l1num,l2num,
71
_ballffmodel,_poleSize);
72
// cout << EvtPDL::getStdHep(mesnum) << "\t" << mymaxprob << endl;
73
setProbMax
(mymaxprob);
74
75
}
76
77
78
void
EvtbTosllBall::init
(){
79
80
checkNArg
(0);
81
checkNDaug
(3);
82
83
//We expect the parent to be a scalar
84
//and the daughters to be X lepton+ lepton-
85
86
checkSpinParent
(
EvtSpinType::SCALAR
);
87
88
EvtSpinType::spintype
mesontype=
EvtPDL::getSpinType
(
getDaug
(0));
89
90
if
( !(mesontype ==
EvtSpinType::VECTOR
||
91
mesontype ==
EvtSpinType::SCALAR
)) {
92
report
(
ERROR
,
"EvtGen"
) <<
"EvtbTosllBall generator expected "
93
<<
" a SCALAR or VECTOR 1st daughter, found:"
<<
94
EvtPDL::name
(
getDaug
(0)).c_str()<<endl;
95
report
(
ERROR
,
"EvtGen"
) <<
"Will terminate execution!"
<<endl;
96
::abort();
97
}
98
99
checkSpinDaughter
(1,
EvtSpinType::DIRAC
);
100
checkSpinDaughter
(2,
EvtSpinType::DIRAC
);
101
102
_ballffmodel =
new
EvtbTosllBallFF
();
103
if
(mesontype ==
EvtSpinType::SCALAR
){
104
_calcamp =
new
EvtbTosllScalarAmp
(-0.313,4.344,-4.669);
105
}
106
if
(mesontype ==
EvtSpinType::VECTOR
){
107
_calcamp =
new
EvtbTosllVectorAmp
(-0.313,4.344,-4.669);
108
}
109
110
}
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
EvtGenKine.hh
EvtPDL.hh
EvtParticle.hh
EvtPatches.hh
report
ostream & report(Severity severity, const char *facility)
Definition:
EvtReport.cc:36
EvtReport.hh
ERROR
@ ERROR
Definition:
EvtReport.hh:49
EvtbTosllAmp.hh
EvtbTosllBallFF.hh
EvtbTosllBall.hh
EvtbTosllScalarAmp.hh
EvtbTosllVectorAmp.hh
EvtDecayAmp::setWeight
void setWeight(double weight)
Definition:
EvtDecayAmp.hh:32
EvtDecayAmp::_amp2
EvtAmp _amp2
Definition:
EvtDecayAmp.hh:66
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::name
static std::string name(EvtId i)
Definition:
EvtPDL.hh:64
EvtPDL::getSpinType
static EvtSpinType::spintype getSpinType(EvtId i)
Definition:
EvtPDL.hh:61
EvtParticle
Definition:
EvtParticle.hh:42
EvtParticle::initializePhaseSpace
double initializePhaseSpace(int numdaughter, EvtId *daughters, double poleSize=-1., int whichTwo1=0, int whichTwo2=1)
Definition:
EvtParticle.cc:1071
EvtSpinType::spintype
spintype
Definition:
EvtSpinType.hh:31
EvtSpinType::SCALAR
@ SCALAR
Definition:
EvtSpinType.hh:31
EvtSpinType::DIRAC
@ DIRAC
Definition:
EvtSpinType.hh:31
EvtSpinType::VECTOR
@ VECTOR
Definition:
EvtSpinType.hh:31
EvtbTosllAmp::CalcAmp
virtual void CalcAmp(EvtParticle *parent, EvtAmp &, EvtbTosllFF *formFactors)=0
EvtbTosllAmp::CalcMaxProb
double CalcMaxProb(EvtId parent, EvtId meson, EvtId lepton, EvtId nudaug, EvtbTosllFF *formFactors, double &poleSize)
Definition:
EvtbTosllAmp.cc:37
EvtbTosllBallFF
Definition:
EvtbTosllBallFF.hh:29
EvtbTosllBall::init
void init()
Definition:
EvtbTosllBall.cc:78
EvtbTosllBall::initProbMax
void initProbMax()
Definition:
EvtbTosllBall.cc:59
EvtbTosllBall::~EvtbTosllBall
virtual ~EvtbTosllBall()
Definition:
EvtbTosllBall.cc:36
EvtbTosllBall::EvtbTosllBall
EvtbTosllBall()
Definition:
EvtbTosllBall.hh:35
EvtbTosllBall::decay
void decay(EvtParticle *p)
Definition:
EvtbTosllBall.cc:50
EvtbTosllBall::getName
void getName(std::string &name)
Definition:
EvtbTosllBall.cc:38
EvtbTosllBall::clone
EvtDecayBase * clone()
Definition:
EvtbTosllBall.cc:44
EvtbTosllScalarAmp
Definition:
EvtbTosllScalarAmp.hh:29
EvtbTosllVectorAmp
Definition:
EvtbTosllVectorAmp.hh:30
source
Generator
BesEvtGen
BesEvtGen-00-03-90
src
EvtGen
EvtGenModels
EvtbTosllBall.cc
Generated by
1.9.6