Geant4 11.2.2
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4EvaporationDefaultGEMFactory Class Reference

#include <G4EvaporationDefaultGEMFactory.hh>

+ Inheritance diagram for G4EvaporationDefaultGEMFactory:

Public Member Functions

 G4EvaporationDefaultGEMFactory (G4VEvaporationChannel *photoEvaporation)
 
 ~G4EvaporationDefaultGEMFactory () override=default
 
std::vector< G4VEvaporationChannel * > * GetChannel () override
 
 G4EvaporationDefaultGEMFactory (const G4EvaporationDefaultGEMFactory &)=delete
 
const G4EvaporationDefaultGEMFactoryoperator= (const G4EvaporationDefaultGEMFactory &val)=delete
 
G4bool operator== (const G4EvaporationDefaultGEMFactory &val) const =delete
 
G4bool operator!= (const G4EvaporationDefaultGEMFactory &val) const =delete
 
- Public Member Functions inherited from G4VEvaporationFactory
 G4VEvaporationFactory (G4VEvaporationChannel *p)
 
virtual ~G4VEvaporationFactory ()=default
 
 G4VEvaporationFactory (const G4VEvaporationFactory &)=delete
 
const G4VEvaporationFactoryoperator= (const G4VEvaporationFactory &)=delete
 
G4bool operator== (const G4VEvaporationFactory &) const =delete
 
G4bool operator!= (const G4VEvaporationFactory &) const =delete
 

Additional Inherited Members

- Protected Attributes inherited from G4VEvaporationFactory
G4VEvaporationChannelthePhotonEvaporation
 

Detailed Description

Definition at line 46 of file G4EvaporationDefaultGEMFactory.hh.

Constructor & Destructor Documentation

◆ G4EvaporationDefaultGEMFactory() [1/2]

G4EvaporationDefaultGEMFactory::G4EvaporationDefaultGEMFactory ( G4VEvaporationChannel * photoEvaporation)
explicit

Definition at line 111 of file G4EvaporationDefaultGEMFactory.cc.

113{}
G4VEvaporationFactory(G4VEvaporationChannel *p)

◆ ~G4EvaporationDefaultGEMFactory()

G4EvaporationDefaultGEMFactory::~G4EvaporationDefaultGEMFactory ( )
overridedefault

◆ G4EvaporationDefaultGEMFactory() [2/2]

G4EvaporationDefaultGEMFactory::G4EvaporationDefaultGEMFactory ( const G4EvaporationDefaultGEMFactory & )
delete

Member Function Documentation

◆ GetChannel()

std::vector< G4VEvaporationChannel * > * G4EvaporationDefaultGEMFactory::GetChannel ( )
overridevirtual

Implements G4VEvaporationFactory.

Definition at line 115 of file G4EvaporationDefaultGEMFactory.cc.

116{
117 std::vector<G4VEvaporationChannel*>* theChannel =
118 new std::vector<G4VEvaporationChannel*>;
119 theChannel->reserve(68);
120
121 theChannel->push_back( thePhotonEvaporation ); // Photon Channel
122 theChannel->push_back( new G4CompetitiveFission() ); // Fission Channel
123
124 // JMQ 220709 standard particle evaporation channels (Z<3,A<5)
125 theChannel->push_back( new G4NeutronEvaporationChannel() ); // n
126 theChannel->push_back( new G4ProtonEvaporationChannel() ); // p
127 theChannel->push_back( new G4DeuteronEvaporationChannel() ); // Deuteron
128 theChannel->push_back( new G4TritonEvaporationChannel() ); // Triton
129 theChannel->push_back( new G4He3EvaporationChannel() ); // He3
130 theChannel->push_back( new G4AlphaEvaporationChannel() ); // Alpha
131
132 //JMQ 220709 new GEM particle avaporation channels channels (2<Z<13,4<A<29)
133 theChannel->push_back( new G4He6GEMChannel() ); // He6
134 theChannel->push_back( new G4He8GEMChannel() ); // He8
135 theChannel->push_back( new G4Li6GEMChannel() ); // Li6
136 theChannel->push_back( new G4Li7GEMChannel() ); // Li7
137 theChannel->push_back( new G4Li8GEMChannel() ); // Li8
138 theChannel->push_back( new G4Li9GEMChannel() ); // Li9
139 theChannel->push_back( new G4Be7GEMChannel() ); // Be7
140 theChannel->push_back( new G4Be9GEMChannel() ); // Be9
141 theChannel->push_back( new G4Be10GEMChannel() ); // Be10
142 theChannel->push_back( new G4Be11GEMChannel() ); // Be11
143 theChannel->push_back( new G4Be12GEMChannel() ); // Be12
144 theChannel->push_back( new G4B8GEMChannel() ); // B8
145 theChannel->push_back( new G4B10GEMChannel() ); // B10
146 theChannel->push_back( new G4B11GEMChannel() ); // B11
147 theChannel->push_back( new G4B12GEMChannel() ); // B12
148 theChannel->push_back( new G4B13GEMChannel() ); // B13
149 theChannel->push_back( new G4C10GEMChannel() ); // C10
150 theChannel->push_back( new G4C11GEMChannel() ); // C11
151 theChannel->push_back( new G4C12GEMChannel() ); // C12
152 theChannel->push_back( new G4C13GEMChannel() ); // C13
153 theChannel->push_back( new G4C14GEMChannel() ); // C14
154 theChannel->push_back( new G4C15GEMChannel() ); // C15
155 theChannel->push_back( new G4C16GEMChannel() ); // C16
156 theChannel->push_back( new G4N12GEMChannel() ); // N12
157 theChannel->push_back( new G4N13GEMChannel() ); // N13
158 theChannel->push_back( new G4N14GEMChannel() ); // N14
159 theChannel->push_back( new G4N15GEMChannel() ); // N15
160 theChannel->push_back( new G4N16GEMChannel() ); // N16
161 theChannel->push_back( new G4N17GEMChannel() ); // N17
162 theChannel->push_back( new G4O14GEMChannel() ); // O14
163 theChannel->push_back( new G4O15GEMChannel() ); // O15
164 theChannel->push_back( new G4O16GEMChannel() ); // O16
165 theChannel->push_back( new G4O17GEMChannel() ); // O17
166 theChannel->push_back( new G4O18GEMChannel() ); // O18
167 theChannel->push_back( new G4O19GEMChannel() ); // O19
168 theChannel->push_back( new G4O20GEMChannel() ); // O20
169 theChannel->push_back( new G4F17GEMChannel() ); // F17
170 theChannel->push_back( new G4F18GEMChannel() ); // F18
171 theChannel->push_back( new G4F19GEMChannel() ); // F19
172 theChannel->push_back( new G4F20GEMChannel() ); // F20
173 theChannel->push_back( new G4F21GEMChannel() ); // F21
174 theChannel->push_back( new G4Ne18GEMChannel() ); // Ne18
175 theChannel->push_back( new G4Ne19GEMChannel() ); // Ne19
176 theChannel->push_back( new G4Ne20GEMChannel() ); // Ne20
177 theChannel->push_back( new G4Ne21GEMChannel() ); // Ne21
178 theChannel->push_back( new G4Ne22GEMChannel() ); // Ne22
179 theChannel->push_back( new G4Ne23GEMChannel() ); // Ne23
180 theChannel->push_back( new G4Ne24GEMChannel() ); // Ne24
181 theChannel->push_back( new G4Na21GEMChannel() ); // Na21
182 theChannel->push_back( new G4Na22GEMChannel() ); // Na22
183 theChannel->push_back( new G4Na23GEMChannel() ); // Na23
184 theChannel->push_back( new G4Na24GEMChannel() ); // Na24
185 theChannel->push_back( new G4Na25GEMChannel() ); // Na25
186 theChannel->push_back( new G4Mg22GEMChannel() ); // Mg22
187 theChannel->push_back( new G4Mg23GEMChannel() ); // Mg23
188 theChannel->push_back( new G4Mg24GEMChannel() ); // Mg24
189 theChannel->push_back( new G4Mg25GEMChannel() ); // Mg25
190 theChannel->push_back( new G4Mg26GEMChannel() ); // Mg26
191 theChannel->push_back( new G4Mg27GEMChannel() ); // Mg27
192 theChannel->push_back( new G4Mg28GEMChannel() ); // Mg28
193
194 return theChannel;
195}
G4VEvaporationChannel * thePhotonEvaporation

◆ operator!=()

G4bool G4EvaporationDefaultGEMFactory::operator!= ( const G4EvaporationDefaultGEMFactory & val) const
delete

◆ operator=()

const G4EvaporationDefaultGEMFactory & G4EvaporationDefaultGEMFactory::operator= ( const G4EvaporationDefaultGEMFactory & val)
delete

◆ operator==()

G4bool G4EvaporationDefaultGEMFactory::operator== ( const G4EvaporationDefaultGEMFactory & val) const
delete

The documentation for this class was generated from the following files: