BOSS
6.6.4.p03
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtS2GV.cc
Go to the documentation of this file.
1
//--------------------------------------------------------------------------
2
//
3
// Environment:
4
// This software is part of models developed at BES collaboration
5
// based on the EvtGen framework. If you use all or part
6
// of it, please give an appropriate acknowledgement.
7
//
8
// Copyright Information: See EvtGen/BesCopyright
9
// Copyright (A) 2006 Ping Rong-Gang @IHEP
10
//
11
// Module: EvtS2GV.cc
12
//
13
// Description: Routine to decay chi_c1-> gamma J/psi using
14
// helicity amplitude, assuming E1 dominance.
15
// Modification history:
16
//
17
// Ping R.-G. December, 2006 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/EvtVector4C.hh
"
27
#include "
EvtGenBase/EvtVector4R.hh
"
28
#include "
EvtGenBase/EvtTensor4C.hh
"
29
#include "
EvtGenBase/EvtReport.hh
"
30
#include "
EvtGenBase/EvtHelSys.hh
"
31
#include "
EvtGenModels/EvtS2GV.hh
"
32
#include "
EvtGenBase/EvtRandom.hh
"
33
#include <string>
34
using
std::endl;
35
36
EvtS2GV::~EvtS2GV
() {}
37
38
void
EvtS2GV::getName
(std::string& model_name){
39
40
model_name=
"S2GV"
;
41
42
}
43
44
45
EvtDecayBase
*
EvtS2GV::clone
(){
46
47
return
new
EvtS2GV
;
48
49
}
50
51
void
EvtS2GV::init
(){
52
static
EvtId
GAM=
EvtPDL::getId
(
"gamma"
);
53
// check that there are 0 arguments
54
checkNArg
(0);
55
checkNDaug
(2);
56
checkSpinParent
(
EvtSpinType::SCALAR
);
57
checkSpinDaughter
(0,
EvtSpinType::PHOTON
);
58
checkSpinDaughter
(1,
EvtSpinType::VECTOR
);
59
if
(!(
getDaug
(0)==GAM)) {
60
report
(
ERROR
,
"EvtGen"
) <<
"EvtS2GV generator radiative decays expected "
<<endl;
61
::abort();
62
}
63
}
64
65
66
void
EvtS2GV::initProbMax
() {
67
68
//Hard coded... should not be hard to calculate...
69
setProbMax
(2.0001);
70
}
71
72
void
EvtS2GV::decay
(
EvtParticle
*p){
73
p->
initializePhaseSpace
(
getNDaug
(),
getDaugs
());
74
75
double
phs=0.;
76
EvtComplex
F11=
exp
(
EvtComplex
(0,phs));
77
78
vertex
(0,0, F11);
79
vertex
(0,2, 0);
80
vertex
(0,1, 0);
81
vertex
(1,0, 0);
82
vertex
(1,2, 0);
83
vertex
(1,1,-F11);
84
return ;
85
86
}
87
88
89
90
exp
EvtComplex exp(const EvtComplex &c)
Definition:
EvtComplex.hh:252
EvtGenKine.hh
EvtHelSys.hh
EvtPDL.hh
EvtParticle.hh
EvtPatches.hh
EvtRandom.hh
report
ostream & report(Severity severity, const char *facility)
Definition:
EvtReport.cc:36
EvtReport.hh
ERROR
@ ERROR
Definition:
EvtReport.hh:49
EvtS2GV.hh
EvtTensor4C.hh
EvtVector4C.hh
EvtVector4R.hh
EvtComplex
Definition:
EvtComplex.hh:28
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::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::getId
static EvtId getId(const std::string &name)
Definition:
EvtPDL.cc:287
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
EvtS2GV::initProbMax
void initProbMax()
Definition:
EvtS2GV.cc:66
EvtS2GV::decay
void decay(EvtParticle *p)
Definition:
EvtS2GV.cc:72
EvtS2GV::getName
void getName(std::string &name)
Definition:
EvtS2GV.cc:38
EvtS2GV::EvtS2GV
EvtS2GV()
Definition:
EvtS2GV.hh:32
EvtS2GV::clone
EvtDecayBase * clone()
Definition:
EvtS2GV.cc:45
EvtS2GV::~EvtS2GV
virtual ~EvtS2GV()
Definition:
EvtS2GV.cc:36
EvtS2GV::init
void init()
Definition:
EvtS2GV.cc:51
EvtSpinType::SCALAR
@ SCALAR
Definition:
EvtSpinType.hh:31
EvtSpinType::PHOTON
@ PHOTON
Definition:
EvtSpinType.hh:31
EvtSpinType::VECTOR
@ VECTOR
Definition:
EvtSpinType.hh:31
source
Generator
BesEvtGen
BesEvtGen-00-01-94
src
EvtGen
EvtGenModels
EvtS2GV.cc
Generated by
1.9.6