CGEM BOSS
6.6.5.h
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtSLPole.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: EvtSLPole.cc
12
//
13
// Description: Routine to implement semileptonic decays according
14
// to light cone sum rules
15
//
16
// Modification history:
17
//
18
// DJL April 23, 1998 Module created
19
//
20
//------------------------------------------------------------------------
21
//
22
#include "
EvtGenBase/EvtPatches.hh
"
23
#include <stdlib.h>
24
#include "
EvtGenBase/EvtParticle.hh
"
25
#include "
EvtGenBase/EvtGenKine.hh
"
26
#include "
EvtGenBase/EvtPDL.hh
"
27
#include "
EvtGenBase/EvtReport.hh
"
28
#include "
EvtGenModels/EvtSLPole.hh
"
29
#include "
EvtGenModels/EvtSLPoleFF.hh
"
30
#include "
EvtGenBase/EvtSemiLeptonicScalarAmp.hh
"
31
#include "
EvtGenBase/EvtSemiLeptonicVectorAmp.hh
"
32
#include "
EvtGenBase/EvtSemiLeptonicTensorAmp.hh
"
33
#include <string>
34
35
EvtSLPole::~EvtSLPole
() {}
36
37
void
EvtSLPole::getName
(std::string& model_name){
38
39
model_name=
"SLPOLE"
;
40
41
}
42
43
44
EvtDecayBase
*
EvtSLPole::clone
(){
45
46
return
new
EvtSLPole
;
47
48
}
49
50
void
EvtSLPole::decay
(
EvtParticle
*p ){
51
52
p->
initializePhaseSpace
(
getNDaug
(),
getDaugs
());
53
54
calcamp->
CalcAmp
(p,
_amp2
,SLPoleffmodel);
55
return
;
56
}
57
58
void
EvtSLPole::initProbMax
(){
59
60
EvtId
parnum,mesnum,lnum,nunum;
61
62
parnum =
getParentId
();
63
mesnum =
getDaug
(0);
64
lnum =
getDaug
(1);
65
nunum =
getDaug
(2);
66
67
double
mymaxprob = calcamp->
CalcMaxProb
(parnum,mesnum,
68
lnum,nunum,SLPoleffmodel);
69
70
setProbMax
(mymaxprob);
71
72
}
73
74
75
void
EvtSLPole::init
(){
76
77
checkNDaug
(3);
78
79
//We expect the parent to be a scalar
80
//and the daughters to be X lepton neutrino
81
82
checkSpinParent
(
EvtSpinType::SCALAR
);
83
checkSpinDaughter
(1,
EvtSpinType::DIRAC
);
84
checkSpinDaughter
(2,
EvtSpinType::NEUTRINO
);
85
86
EvtSpinType::spintype
mesontype=
EvtPDL::getSpinType
(
getDaug
(0));
87
88
SLPoleffmodel =
new
EvtSLPoleFF
(
getNArg
(),
getArgs
());
89
90
if
( mesontype==
EvtSpinType::SCALAR
) {
91
calcamp =
new
EvtSemiLeptonicScalarAmp
;
92
}
93
if
( mesontype==
EvtSpinType::VECTOR
) {
94
calcamp =
new
EvtSemiLeptonicVectorAmp
;
95
}
96
if
( mesontype==
EvtSpinType::TENSOR
) {
97
calcamp =
new
EvtSemiLeptonicTensorAmp
;
98
}
99
100
}
101
EvtGenKine.hh
EvtPDL.hh
EvtParticle.hh
EvtPatches.hh
EvtReport.hh
EvtSLPoleFF.hh
EvtSLPole.hh
EvtSemiLeptonicScalarAmp.hh
EvtSemiLeptonicTensorAmp.hh
EvtSemiLeptonicVectorAmp.hh
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::getArgs
double * getArgs()
Definition
EvtDecayBase.cc:547
EvtDecayBase::getNDaug
int getNDaug()
Definition
EvtDecayBase.hh:64
EvtDecayBase::getNArg
int getNArg()
Definition
EvtDecayBase.hh:67
EvtDecayBase::checkNDaug
void checkNDaug(int d1, int d2=-1)
Definition
EvtDecayBase.cc:504
EvtDecayBase::getDaugs
EvtId * getDaugs()
Definition
EvtDecayBase.hh:65
EvtDecayBase::getDaug
EvtId getDaug(int i)
Definition
EvtDecayBase.hh:66
EvtId
Definition
EvtId.hh:27
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:1069
EvtSLPoleFF
Definition
EvtSLPoleFF.hh:27
EvtSLPole::~EvtSLPole
virtual ~EvtSLPole()
Definition
EvtSLPole.cc:35
EvtSLPole::EvtSLPole
EvtSLPole()
Definition
EvtSLPole.hh:34
EvtSLPole::initProbMax
void initProbMax()
Definition
EvtSLPole.cc:58
EvtSLPole::init
void init()
Definition
EvtSLPole.cc:75
EvtSLPole::clone
EvtDecayBase * clone()
Definition
EvtSLPole.cc:44
EvtSLPole::decay
void decay(EvtParticle *p)
Definition
EvtSLPole.cc:50
EvtSLPole::getName
void getName(std::string &name)
Definition
EvtSLPole.cc:37
EvtSemiLeptonicAmp::CalcAmp
virtual void CalcAmp(EvtParticle *parent, EvtAmp &, EvtSemiLeptonicFF *FormFactors)
Definition
EvtSemiLeptonicAmp.hh:36
EvtSemiLeptonicAmp::CalcMaxProb
double CalcMaxProb(EvtId parent, EvtId meson, EvtId lepton, EvtId nudaug, EvtSemiLeptonicFF *FormFactors)
Definition
EvtSemiLeptonicAmp.cc:38
EvtSemiLeptonicScalarAmp
Definition
EvtSemiLeptonicScalarAmp.hh:30
EvtSemiLeptonicTensorAmp
Definition
EvtSemiLeptonicTensorAmp.hh:31
EvtSemiLeptonicVectorAmp
Definition
EvtSemiLeptonicVectorAmp.hh:30
EvtSpinType::spintype
spintype
Definition
EvtSpinType.hh:31
EvtSpinType::NEUTRINO
@ NEUTRINO
Definition
EvtSpinType.hh:31
EvtSpinType::SCALAR
@ SCALAR
Definition
EvtSpinType.hh:31
EvtSpinType::DIRAC
@ DIRAC
Definition
EvtSpinType.hh:31
EvtSpinType::TENSOR
@ TENSOR
Definition
EvtSpinType.hh:31
EvtSpinType::VECTOR
@ VECTOR
Definition
EvtSpinType.hh:31
6.6.5.h
Generator
BesEvtGen
BesEvtGen-00-01-96-slc6tag
src
EvtGen
EvtGenModels
EvtSLPole.cc
Generated by
1.12.0