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

#include <G4WeightWindowConfigurator.hh>

+ Inheritance diagram for G4WeightWindowConfigurator:

Public Member Functions

 G4WeightWindowConfigurator (const G4VPhysicalVolume *worldvolume, const G4String &particlename, G4VWeightWindowStore &wwstore, const G4VWeightWindowAlgorithm *wwAlg, G4PlaceOfAction placeOfAction, G4bool paraflag)
 
virtual ~G4WeightWindowConfigurator ()
 
 G4WeightWindowConfigurator (const G4WeightWindowConfigurator &)=delete
 
G4WeightWindowConfiguratoroperator= (const G4WeightWindowConfigurator &)=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 G4WeightWindowConfigurator.hh.

Constructor & Destructor Documentation

◆ G4WeightWindowConfigurator() [1/2]

G4WeightWindowConfigurator::G4WeightWindowConfigurator ( const G4VPhysicalVolume * worldvolume,
const G4String & particlename,
G4VWeightWindowStore & wwstore,
const G4VWeightWindowAlgorithm * wwAlg,
G4PlaceOfAction placeOfAction,
G4bool paraflag )

Definition at line 35 of file G4WeightWindowConfigurator.cc.

42 : fWorld(worldvolume),
43 fPlacer(particlename),
44 fWeightWindowStore(wwstore),
45 fDeleteWWalg( ( ! wwAlg) ),
46 fWWalgorithm(( (fDeleteWWalg == false) ? new G4WeightWindowAlgorithm(5,3,5) : wwAlg)),
47 fPlaceOfAction(placeOfAction)
48{
49 paraflag = para;
50}

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

◆ ~G4WeightWindowConfigurator()

G4WeightWindowConfigurator::~G4WeightWindowConfigurator ( )
virtual

Definition at line 52 of file G4WeightWindowConfigurator.cc.

53{
54 if (fWeightWindowProcess)
55 {
56 fPlacer.RemoveProcess(fWeightWindowProcess);
57 delete fWeightWindowProcess;
58 }
59 if (fDeleteWWalg)
60 {
61 delete fWWalgorithm;
62 }
63}

◆ G4WeightWindowConfigurator() [2/2]

G4WeightWindowConfigurator::G4WeightWindowConfigurator ( const G4WeightWindowConfigurator & )
delete

Member Function Documentation

◆ Configure()

void G4WeightWindowConfigurator::Configure ( G4VSamplerConfigurator * preConf)
virtual

Implements G4VSamplerConfigurator.

Definition at line 65 of file G4WeightWindowConfigurator.cc.

66{
67 G4cout << " entering weight window configure " << G4endl;
68 const G4VTrackTerminator *terminator = 0;
69 if (preConf)
70 {
71 terminator = preConf->GetTrackTerminator();
72 }
73
74 fWeightWindowProcess =
75 new G4WeightWindowProcess(*fWWalgorithm, fWeightWindowStore, terminator,
76 fPlaceOfAction, "WeightWindowProcess", paraflag);
77
78 if(paraflag) { fWeightWindowProcess->SetParallelWorld(fWorld->GetName()); }
79
80 fPlacer.AddProcessAsSecondDoIt(fWeightWindowProcess);
81}
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
virtual const G4VTrackTerminator * GetTrackTerminator() const =0

◆ GetTrackTerminator()

const G4VTrackTerminator * G4WeightWindowConfigurator::GetTrackTerminator ( ) const
virtual

Implements G4VSamplerConfigurator.

Definition at line 83 of file G4WeightWindowConfigurator.cc.

84{
85 return fWeightWindowProcess;
86}

◆ operator=()

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

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