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

#include <G4GeometrySampler.hh>

+ Inheritance diagram for G4GeometrySampler:

Public Member Functions

 G4GeometrySampler (G4VPhysicalVolume *worldvolume, const G4String &particlename)
 
 G4GeometrySampler (const G4String &worldvolumeName, const G4String &particlename)
 
virtual ~G4GeometrySampler ()
 
 G4GeometrySampler (const G4GeometrySampler &)=delete
 
G4GeometrySampleroperator= (const G4GeometrySampler &)=delete
 
virtual void PrepareImportanceSampling (G4VIStore *istore, const G4VImportanceAlgorithm *ialg)
 
virtual void PrepareWeightRoulett (G4double wsurvive, G4double wlimit, G4double isource)
 
virtual void PrepareWeightWindow (G4VWeightWindowStore *wwstore, G4VWeightWindowAlgorithm *wwAlg, G4PlaceOfAction placeOfAction)
 
virtual void Configure ()
 
virtual void AddProcess ()
 
virtual void ClearSampling ()
 
virtual G4bool IsConfigured () const
 
void SetParallel (G4bool paraflag)
 
void SetWorld (const G4VPhysicalVolume *world)
 
void SetParticle (const G4String &particlename)
 
const G4StringGetParticleName ()
 
- Public Member Functions inherited from G4VSampler
 G4VSampler ()
 
virtual ~G4VSampler ()
 

Detailed Description

Definition at line 48 of file G4GeometrySampler.hh.

Constructor & Destructor Documentation

◆ G4GeometrySampler() [1/3]

G4GeometrySampler::G4GeometrySampler ( G4VPhysicalVolume * worldvolume,
const G4String & particlename )
explicit

Definition at line 40 of file G4GeometrySampler.cc.

42 : fParticleName(particlename),
43 fWorld(world)
44{
45}

Referenced by G4GeometrySampler(), and operator=().

◆ G4GeometrySampler() [2/3]

G4GeometrySampler::G4GeometrySampler ( const G4String & worldvolumeName,
const G4String & particlename )
explicit

Definition at line 47 of file G4GeometrySampler.cc.

49 : fParticleName(particlename),
50 fWorldName(worldName)
51{
53}
G4VPhysicalVolume * GetWorldVolume() const
static G4TransportationManager * GetTransportationManager()
G4Navigator * GetNavigatorForTracking() const

◆ ~G4GeometrySampler()

G4GeometrySampler::~G4GeometrySampler ( )
virtual

Definition at line 55 of file G4GeometrySampler.cc.

56{
57 // ClearSampling();
58}

◆ G4GeometrySampler() [3/3]

G4GeometrySampler::G4GeometrySampler ( const G4GeometrySampler & )
delete

Member Function Documentation

◆ AddProcess()

void G4GeometrySampler::AddProcess ( )
virtual

Definition at line 197 of file G4GeometrySampler.cc.

198{
199
200 G4VSamplerConfigurator *preConf = nullptr;
201 for (auto it = fConfigurators.cbegin();
202 it != fConfigurators.cend(); ++it)
203 {
204 G4VSamplerConfigurator *currConf =*it;
205 currConf->Configure(preConf);
206 preConf = *it;
207 }
208 if (fWeightCutOffConfigurator != nullptr)
209 {
210 fWeightCutOffConfigurator->Configure(nullptr);
211 }
212
213 return;
214}
virtual void Configure(G4VSamplerConfigurator *preConf)=0

Referenced by Configure().

◆ ClearSampling()

void G4GeometrySampler::ClearSampling ( )
virtual

Implements G4VSampler.

Definition at line 60 of file G4GeometrySampler.cc.

61{
62 delete fImportanceConfigurator; fImportanceConfigurator = nullptr;
63 delete fWeightWindowConfigurator; fWeightWindowConfigurator = nullptr;
64 delete fWeightCutOffConfigurator; fWeightCutOffConfigurator = nullptr;
65 fIStore = nullptr;
66 fConfigurators.clear();
67 fIsConfigured = false;
68}

◆ Configure()

void G4GeometrySampler::Configure ( )
virtual

Implements G4VSampler.

Definition at line 172 of file G4GeometrySampler.cc.

173{
174 if (!IsConfigured())
175 {
176 fIsConfigured = true;
177
178 if (fImportanceConfigurator)
179 {
180 fConfigurators.push_back(fImportanceConfigurator);
181 }
182 if (fWeightWindowConfigurator)
183 {
184 fConfigurators.push_back(fWeightWindowConfigurator);
185 }
186 }
187
188#ifdef G4MULTITHREADED
189 G4cout << " make sure AddProcess() is invoked for biasing!!! " << G4endl;
190#else
191 AddProcess();
192#endif
193
194 return;
195}
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
virtual G4bool IsConfigured() const
virtual void AddProcess()

◆ GetParticleName()

const G4String & G4GeometrySampler::GetParticleName ( )
inline

Definition at line 82 of file G4GeometrySampler.hh.

82{ return fParticleName; }

◆ IsConfigured()

G4bool G4GeometrySampler::IsConfigured ( ) const
virtual

Implements G4VSampler.

Definition at line 70 of file G4GeometrySampler.cc.

71{
72 G4bool isconf = false;
73 if (fIsConfigured)
74 {
75 G4cout << "WARNING - G4GeometrySampler::IsConfigured()"
76 << " Some initialization exists, use ClearSampling()"
77 << " before a new initialization !" << G4endl;
78 isconf = true;
79 }
80 return isconf;
81}
bool G4bool
Definition G4Types.hh:86

Referenced by Configure().

◆ operator=()

G4GeometrySampler & G4GeometrySampler::operator= ( const G4GeometrySampler & )
delete

◆ PrepareImportanceSampling()

void G4GeometrySampler::PrepareImportanceSampling ( G4VIStore * istore,
const G4VImportanceAlgorithm * ialg )
virtual

Implements G4VSampler.

Definition at line 104 of file G4GeometrySampler.cc.

106{
107 G4cout << "G4GeometrySampler:: preparing importance sampling WorldName is " << fWorldName << G4endl;
108 fIStore = istore;
109 // G4cout << "G4GeometrySampler:: creating istore, worldVolume: " << fWorld->GetName() << G4endl;
110
111 fImportanceConfigurator =
112 new G4ImportanceConfigurator(&istore->GetWorldVolume(), fParticleName, *fIStore, ialg, paraflag);
113 // new G4ImportanceConfigurator(fWorld, fParticleName, *fIStore, ialg, paraflag);
114 fImportanceConfigurator->SetWorldName(fWorldName);
115
116 if (!fImportanceConfigurator)
117 {
118 G4Exception("G4GeometrySampler::PrepareImportanceSampling()",
119 "FatalError", FatalException,
120 "Failed allocation of G4ImportanceConfigurator !");
121 }
122}
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
virtual const G4VPhysicalVolume & GetWorldVolume() const =0

◆ PrepareWeightRoulett()

void G4GeometrySampler::PrepareWeightRoulett ( G4double wsurvive,
G4double wlimit,
G4double isource )
virtual

Implements G4VSampler.

Definition at line 125 of file G4GeometrySampler.cc.

128{
129 // fGCellFinder = new G4GCellFinder(fWorld);
130 G4cout << "G4GeometrySampler:: preparing weight roulette" << G4endl;
131 // fGCellFinder = new G4GCellFinder();
132// if (!fGCellFinder)
133// {
134// G4Exception("G4GeometrySampler::PrepareWeightRoulett()",
135// "FatalError", FatalException,
136// "Failed allocation of G4GCellFinder !");
137// }
138
139 fWeightCutOffConfigurator =
140 new G4WeightCutOffConfigurator(fWorld, fParticleName,
141 wsurvive,
142 wlimit,
143 isource,
144 fIStore,
145 paraflag);
146 //*fGCellFinder, paraflag);
147 if (!fWeightCutOffConfigurator)
148 {
149 G4Exception("G4GeometrySampler::PrepareWeightRoulett()",
150 "FatalError", FatalException,
151 "Failed allocation of G4WeightCutOffConfigurator !");
152 }
153}

◆ PrepareWeightWindow()

void G4GeometrySampler::PrepareWeightWindow ( G4VWeightWindowStore * wwstore,
G4VWeightWindowAlgorithm * wwAlg,
G4PlaceOfAction placeOfAction )
virtual

Implements G4VSampler.

Definition at line 156 of file G4GeometrySampler.cc.

159{
160
161 G4cout << "G4GeometrySampler:: preparing weight window" << G4endl;
162
163 fWWStore = wwstore;
164
165 fWeightWindowConfigurator =
166 new G4WeightWindowConfigurator(&wwstore->GetWorldVolume(), fParticleName,
167 *fWWStore,
168 wwAlg,
169 placeOfAction, paraflag);
170}
virtual const G4VPhysicalVolume & GetWorldVolume() const =0

◆ SetParallel()

void G4GeometrySampler::SetParallel ( G4bool paraflag)
virtual

Implements G4VSampler.

Definition at line 216 of file G4GeometrySampler.cc.

217{
218 paraflag = para;
219}

◆ SetParticle()

void G4GeometrySampler::SetParticle ( const G4String & particlename)

Definition at line 226 of file G4GeometrySampler.cc.

227{
228 fParticleName = particlename;
229}

◆ SetWorld()

void G4GeometrySampler::SetWorld ( const G4VPhysicalVolume * world)

Definition at line 221 of file G4GeometrySampler.cc.

222{
223 fWorld = World;
224}

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