Geant4
9.6.p02
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
geant4_9_6_p02
source
processes
biasing
src
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 (Michael.Dressel@cern.ch)
33
// ----------------------------------------------------------------------
34
35
#include "
G4WeightWindowConfigurator.hh
"
36
#include "
G4WeightWindowAlgorithm.hh
"
37
#include "
G4WeightWindowProcess.hh
"
38
39
G4WeightWindowConfigurator::
40
G4WeightWindowConfigurator
(
G4VPhysicalVolume
* worldvolume,
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
57
G4WeightWindowConfigurator::~G4WeightWindowConfigurator
()
58
{
59
if
(fWeightWindowProcess)
60
{
61
fPlacer.
RemoveProcess
(fWeightWindowProcess);
62
delete
fWeightWindowProcess;
63
}
64
if
(fDeleteWWalg)
65
{
66
delete
fWWalgorithm;
67
}
68
}
69
70
void
71
G4WeightWindowConfigurator::Configure
(
G4VSamplerConfigurator
*preConf)
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
91
const
G4VTrackTerminator
*
92
G4WeightWindowConfigurator::GetTrackTerminator
()
const
93
{
94
return
fWeightWindowProcess;
95
}
96
Generated on Sat May 25 2013 14:33:29 for Geant4 by
1.8.4