Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4WeightWindowConfigurator.cc
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26//
27// $Id$
28//
29// ----------------------------------------------------------------------
30// Class G4WeightWindowConfigurator
31//
32// Author: Michael Dressel ([email protected])
33// ----------------------------------------------------------------------
34
38
41 const G4String &particlename,
42 G4VWeightWindowStore &wwstore,
43 const G4VWeightWindowAlgorithm *wwAlg,
44 G4PlaceOfAction placeOfAction, G4bool para)
45 : fWorld(worldvolume),
46 fPlacer(particlename),
47 fWeightWindowStore(wwstore),
48 fDeleteWWalg( ( ! wwAlg) ),
49 fWWalgorithm(( (fDeleteWWalg) ?
50 new G4WeightWindowAlgorithm(5,3,5) : wwAlg)),
51 fWeightWindowProcess(0),
52 fPlaceOfAction(placeOfAction)
53{
54 paraflag = para;
55}
56
58{
59 if (fWeightWindowProcess)
60 {
61 fPlacer.RemoveProcess(fWeightWindowProcess);
62 delete fWeightWindowProcess;
63 }
64 if (fDeleteWWalg)
65 {
66 delete fWWalgorithm;
67 }
68}
69
70void
72{
73 G4cout << " entering weight window configure " << G4endl;
74 const G4VTrackTerminator *terminator = 0;
75 if (preConf)
76 {
77 terminator = preConf->GetTrackTerminator();
78 };
79
80 fWeightWindowProcess =
81 new G4WeightWindowProcess(*fWWalgorithm,
82 fWeightWindowStore,
83 terminator,
84 fPlaceOfAction,"WeightWindowProcess",paraflag);
85
86 if(paraflag) fWeightWindowProcess->SetParallelWorld(fWorld);
87
88 fPlacer.AddProcessAsSecondDoIt(fWeightWindowProcess);
89}
90
93{
94 return fWeightWindowProcess;
95}
96
G4PlaceOfAction
bool G4bool
Definition: G4Types.hh:67
#define G4endl
Definition: G4ios.hh:52
G4DLLIMPORT std::ostream G4cout
virtual void AddProcessAsSecondDoIt(G4VProcess *process)
virtual void RemoveProcess(G4VProcess *process)
virtual const G4VTrackTerminator * GetTrackTerminator() const =0
virtual void Configure(G4VSamplerConfigurator *preConf)
G4WeightWindowConfigurator(G4VPhysicalVolume *worldvolume, const G4String &particlename, G4VWeightWindowStore &wwstore, const G4VWeightWindowAlgorithm *wwAlg, G4PlaceOfAction placeOfAction, G4bool paraflag)
virtual const G4VTrackTerminator * GetTrackTerminator() const
void SetParallelWorld(G4String parallelWorldName)