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

#include <G4WeightCutOffConfigurator.hh>

+ Inheritance diagram for G4WeightCutOffConfigurator:

Public Member Functions

 G4WeightCutOffConfigurator (const G4VPhysicalVolume *worldvolume, const G4String &particlename, G4double wsurvival, G4double wlimit, G4double isource, G4VIStore *istore, G4bool paraflag)
 
virtual ~G4WeightCutOffConfigurator ()
 
 G4WeightCutOffConfigurator (const G4WeightCutOffConfigurator &)=delete
 
G4WeightCutOffConfiguratoroperator= (const G4WeightCutOffConfigurator &)=delete
 
virtual void Configure (G4VSamplerConfigurator *preConf)
 
virtual const G4VTrackTerminatorGetTrackTerminator () const
 
- Public Member Functions inherited from G4VSamplerConfigurator
 G4VSamplerConfigurator ()
 
virtual ~G4VSamplerConfigurator ()
 

Detailed Description

Definition at line 47 of file G4WeightCutOffConfigurator.hh.

Constructor & Destructor Documentation

◆ G4WeightCutOffConfigurator() [1/2]

G4WeightCutOffConfigurator::G4WeightCutOffConfigurator ( const G4VPhysicalVolume * worldvolume,
const G4String & particlename,
G4double wsurvival,
G4double wlimit,
G4double isource,
G4VIStore * istore,
G4bool paraflag )

Definition at line 34 of file G4WeightCutOffConfigurator.cc.

42 : fWorld(worldvolume),
43 fPlacer(particlename),
44 paraflag(para)
45{
46 fWeightCutOffProcess =
47 new G4WeightCutOffProcess(wsurvival,wlimit,isource,istore,"WeightCutOffProcess",paraflag);
48 if (!fWeightCutOffProcess)
49 {
50 G4Exception("G4WeightCutOffConfigurator::G4WeightCutOffConfigurator()",
51 "FatalError", FatalException,
52 "Failed to allocate G4WeightCutOffProcess !");
53 }
54}
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)

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

◆ ~G4WeightCutOffConfigurator()

G4WeightCutOffConfigurator::~G4WeightCutOffConfigurator ( )
virtual

Definition at line 56 of file G4WeightCutOffConfigurator.cc.

57{
58 if (fPlaced)
59 {
60 fPlacer.RemoveProcess(fWeightCutOffProcess);
61 delete fWeightCutOffProcess;
62 }
63}

◆ G4WeightCutOffConfigurator() [2/2]

G4WeightCutOffConfigurator::G4WeightCutOffConfigurator ( const G4WeightCutOffConfigurator & )
delete

Member Function Documentation

◆ Configure()

void G4WeightCutOffConfigurator::Configure ( G4VSamplerConfigurator * preConf)
virtual

Implements G4VSamplerConfigurator.

Definition at line 65 of file G4WeightCutOffConfigurator.cc.

66{
67 G4cout << " entering new weight window configure " << G4endl;
68
69 if(paraflag) { fWeightCutOffProcess->SetParallelWorld(fWorld->GetName()); }
70
71 fPlacer.AddProcessAsLastDoIt(fWeightCutOffProcess);
72 fPlaced = true;
73}
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout

◆ GetTrackTerminator()

const G4VTrackTerminator * G4WeightCutOffConfigurator::GetTrackTerminator ( ) const
virtual

Implements G4VSamplerConfigurator.

Definition at line 76 of file G4WeightCutOffConfigurator.cc.

77{
78 return nullptr;
79}

◆ operator=()

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

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