BOSS 7.0.7
BESIII Offline Software System
Loading...
Searching...
No Matches
BesMesonConstructor.cc
Go to the documentation of this file.
1//---------------------------------------------------------------------------//
2// BOOST --- BESIII Object_Oriented Simulation Tool //
3//---------------------------------------------------------------------------//
4//Descpirtion: Re-write G4MesonConstructor.hh for BES, remeove Bottom mesons
5//Author: Liuhm
6//Created: 2003/05/19
7//Modified:
8//Comment:
9//---------------------------------------------------------------------------//
10//
12
13#include "G4ParticleDefinition.hh"
14#include "G4ParticleTable.hh"
15// Mesons
16#include "G4PionPlus.hh"
17#include "G4PionMinus.hh"
18#include "G4PionZero.hh"
19#include "G4Eta.hh"
20#include "G4EtaPrime.hh"
21
22#include "G4KaonPlus.hh"
23#include "G4KaonMinus.hh"
24#include "G4KaonZero.hh"
25#include "G4AntiKaonZero.hh"
26#include "G4KaonZeroLong.hh"
27#include "G4KaonZeroShort.hh"
28
29#include "G4DMesonPlus.hh"
30#include "G4DMesonMinus.hh"
31#include "G4DMesonZero.hh"
32#include "G4AntiDMesonZero.hh"
33#include "G4DsMesonPlus.hh"
34#include "G4DsMesonMinus.hh"
35#include "G4JPsi.hh"
36
37
39{
40}
41
43{
44}
45
46
48{
51// ConstructBottomMesons();
52}
53
55{
56 G4PionPlus::PionPlusDefinition();
57 G4PionMinus::PionMinusDefinition();
58 G4PionZero::PionZeroDefinition();
59 G4Eta::EtaDefinition();
60 G4EtaPrime::EtaPrimeDefinition();
61 G4KaonPlus::KaonPlusDefinition();
62 G4KaonMinus::KaonMinusDefinition();
63 G4KaonZero::KaonZeroDefinition();
64 G4AntiKaonZero::AntiKaonZeroDefinition();
65 G4KaonZeroLong::KaonZeroLongDefinition();
66 G4KaonZeroShort::KaonZeroShortDefinition();
67}
69{
70 G4DMesonPlus::DMesonPlusDefinition();
71 G4DMesonMinus::DMesonMinusDefinition();
72 G4DMesonZero::DMesonZeroDefinition();
73 G4AntiDMesonZero::AntiDMesonZeroDefinition();
74 G4DsMesonPlus::DsMesonPlusDefinition();
75 G4DsMesonMinus::DsMesonMinusDefinition();
76 G4JPsi::JPsiDefinition();
77}
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116