BOSS
8.0.0
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 "
EvtS2GV.hh
"
22
#include "
../EvtGenBase/EvtGenKine.hh
"
23
#include "
../EvtGenBase/EvtHelSys.hh
"
24
#include "
../EvtGenBase/EvtPDL.hh
"
25
#include "
../EvtGenBase/EvtParticle.hh
"
26
#include "
../EvtGenBase/EvtPatches.hh
"
27
#include "
../EvtGenBase/EvtRandom.hh
"
28
#include "
../EvtGenBase/EvtReport.hh
"
29
#include "
../EvtGenBase/EvtTensor4C.hh
"
30
#include "
../EvtGenBase/EvtVector4C.hh
"
31
#include "
../EvtGenBase/EvtVector4R.hh
"
32
#include <stdlib.h>
33
#include <string>
34
using
std::endl;
35
36
EvtS2GV::~EvtS2GV
() {}
37
38
void
EvtS2GV::getName
( std::string& model_name ) { model_name =
"S2GV"
; }
39
40
EvtDecayBase
*
EvtS2GV::clone
() {
return
new
EvtS2GV
; }
41
42
void
EvtS2GV::init
() {
43
static
EvtId
GAM =
EvtPDL::getId
(
"gamma"
);
44
// check that there are 0 arguments
45
checkNArg
( 0 );
46
checkNDaug
( 2 );
47
checkSpinParent
(
EvtSpinType::SCALAR
);
48
checkSpinDaughter
( 0,
EvtSpinType::PHOTON
);
49
checkSpinDaughter
( 1,
EvtSpinType::VECTOR
);
50
if
( !(
getDaug
( 0 ) == GAM ) )
51
{
52
report
(
ERROR
,
"EvtGen"
) <<
"EvtS2GV generator radiative decays expected "
<< endl;
53
::abort();
54
}
55
}
56
57
void
EvtS2GV::initProbMax
() {
58
59
// Hard coded... should not be hard to calculate...
60
setProbMax
( 2.0001 );
61
}
62
63
void
EvtS2GV::decay
(
EvtParticle
* p ) {
64
p->
initializePhaseSpace
(
getNDaug
(),
getDaugs
() );
65
66
double
phs = 0.;
67
EvtComplex
F11 =
exp
(
EvtComplex
( 0, phs ) );
68
69
vertex
( 0, 0, F11 );
70
vertex
( 0, 2, 0 );
71
vertex
( 0, 1, 0 );
72
vertex
( 1, 0, 0 );
73
vertex
( 1, 2, 0 );
74
vertex
( 1, 1, -F11 );
75
return
;
76
}
exp
EvtComplex exp(const EvtComplex &c)
Definition
EvtComplex.hh:209
EvtGenKine.hh
EvtHelSys.hh
EvtPDL.hh
EvtParticle.hh
EvtPatches.hh
EvtRandom.hh
report
ostream & report(Severity severity, const char *facility)
Definition
EvtReport.cc:34
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:36
EvtDecayBase::checkSpinDaughter
void checkSpinDaughter(int d1, EvtSpinType::spintype sp)
Definition
EvtDecayBase.cc:492
EvtDecayBase::checkSpinParent
void checkSpinParent(EvtSpinType::spintype sp)
Definition
EvtDecayBase.cc:479
EvtDecayBase::EvtDecayBase
EvtDecayBase()
Definition
EvtDecayBase.cc:205
EvtDecayBase::setProbMax
void setProbMax(double prbmx)
Definition
EvtDecayBase.cc:261
EvtDecayBase::getNDaug
int getNDaug()
Definition
EvtDecayBase.hh:67
EvtDecayBase::checkNDaug
void checkNDaug(int d1, int d2=-1)
Definition
EvtDecayBase.cc:465
EvtDecayBase::getDaugs
EvtId * getDaugs()
Definition
EvtDecayBase.hh:68
EvtDecayBase::checkNArg
void checkNArg(int a1, int a2=-1, int a3=-1, int a4=-1)
Definition
EvtDecayBase.cc:449
EvtDecayBase::getDaug
EvtId getDaug(int i)
Definition
EvtDecayBase.hh:69
EvtId
Definition
EvtId.hh:27
EvtPDL::getId
static EvtId getId(const std::string &name)
Definition
EvtPDL.cc:272
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:1042
EvtS2GV::initProbMax
void initProbMax()
Definition
EvtS2GV.cc:57
EvtS2GV::decay
void decay(EvtParticle *p)
Definition
EvtS2GV.cc:63
EvtS2GV::getName
void getName(std::string &name)
Definition
EvtS2GV.cc:38
EvtS2GV::EvtS2GV
EvtS2GV()
Definition
EvtS2GV.hh:31
EvtS2GV::clone
EvtDecayBase * clone()
Definition
EvtS2GV.cc:40
EvtS2GV::~EvtS2GV
virtual ~EvtS2GV()
Definition
EvtS2GV.cc:36
EvtS2GV::init
void init()
Definition
EvtS2GV.cc:42
EvtSpinType::SCALAR
@ SCALAR
Definition
EvtSpinType.hh:31
EvtSpinType::PHOTON
@ PHOTON
Definition
EvtSpinType.hh:35
EvtSpinType::VECTOR
@ VECTOR
Definition
EvtSpinType.hh:32
8.0.0
BOSS_Gen
BesEvtGen
src
EvtGen
EvtGenModels
EvtS2GV.cc
Generated by
1.16.1