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
parameterisation
include
G4FastSimulationManagerProcess.hh
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: G4FastSimulationManagerProcess.hh 69889 2013-05-17 08:32:02Z gcosmo $
28
//
29
//
30
//---------------------------------------------------------------
31
//
32
// G4FastSimulationManagerProcess.hh
33
//
34
// Description:
35
// The process that triggers parameterised simulations if any.
36
//
37
// History:
38
// Feb 98: Parallel geometry sensitivity. MoraDeFreitas.
39
// Oct 97: "Fast" replaces "Parameterisation" in class/method names.
40
// (release B.00 for parameterisation). MoraDeFreitas.
41
// Aug 97: First implementation. Verderi && MoraDeFreitas.
42
// Apr 98: modified for new particle change. H.Kurashige
43
// Oct 06: Move to parallel geometry scheme. M. Verderi
44
// Nov 06: name xxx81 is given for this release. "81" will be
45
// removed @ next maj. rel. so that this process becomes
46
// the standard one.
47
// May 07: remove "81" tags, to migrate to 9.0.
48
//
49
//---------------------------------------------------------------
50
51
52
#ifndef G4FastSimulationManagerProcess_hh
53
#define G4FastSimulationManagerProcess_hh
54
55
#include "
globals.hh
"
56
#include "
G4VProcess.hh
"
57
#include "
G4FastSimulationManager.hh
"
58
#include "
G4FastSimulationProcessType.hh
"
59
#include "
G4Step.hh
"
60
#include "
G4Navigator.hh
"
61
#include "
G4VPhysicalVolume.hh
"
62
#include "
G4VParticleChange.hh
"
63
#include "
G4FieldTrack.hh
"
64
class
G4PathFinder
;
65
class
G4TransportationManager
;
66
67
// ---------------------------------------------------------------------
68
//
69
// G4FastSimulationManagerProcess class
70
//
71
// ---------------------------------------------------------------------
72
73
74
// Class Description:
75
// -- G4VProcess providing the interface between the tracking and the fast simulation.
76
//
77
78
class
G4FastSimulationManagerProcess
:
public
G4VProcess
79
{
80
public
:
81
82
// -------------------------
83
// Constructor/Destructor:
84
// -------------------------
85
// -- Constructor for parameterisation in mass geometry
86
G4FastSimulationManagerProcess
(
const
G4String
& processName =
"G4FastSimulationManagerProcess"
,
87
G4ProcessType
theType =
fParameterisation
);
88
89
// -- Contructors for parameterisation attached a parallel geometry.
90
// -- Can also be used for the mass geometry, providing world volume name.
91
// -- World volume specified by name or pointer.
92
G4FastSimulationManagerProcess
(
const
G4String
& processName,
93
const
G4String
& worldVolumeName,
94
G4ProcessType
theType =
fParameterisation
);
95
G4FastSimulationManagerProcess
(
const
G4String
& processName,
96
G4VPhysicalVolume
* worldVolume,
97
G4ProcessType
theType =
fParameterisation
);
98
99
virtual
~G4FastSimulationManagerProcess
();
100
101
// -----------------------
102
// User access methods:
103
// -----------------------
104
G4VPhysicalVolume
*
GetWorldVolume
()
const
{
return
fWorldVolume;}
105
106
// -- Set new world volume to the process
107
void
SetWorldVolume
(
G4String
);
108
void
SetWorldVolume
(
G4VPhysicalVolume
*);
109
110
111
// --------------------------------------------------------------
112
// Process interface
113
// --------------------------------------------------------------
114
115
// -- Start/End tracking:
116
void
StartTracking
(
G4Track
*);
117
void
EndTracking
();
118
119
120
// -- PostStep methods:
121
G4double
PostStepGetPhysicalInteractionLength
(
const
G4Track
& track,
122
G4double
previousStepSize,
123
G4ForceCondition
*
condition
);
124
125
G4VParticleChange
*
PostStepDoIt
(
const
G4Track
&,
const
G4Step
& );
126
127
// -- Responsible for limiting the step on ghost boundaries:
128
G4double
AlongStepGetPhysicalInteractionLength
(
const
G4Track
& track,
129
G4double
previousStepSize,
130
G4double
currentMinimumStep,
131
G4double
& proposedSafety,
132
G4GPILSelection
* selection);
133
G4VParticleChange
*
AlongStepDoIt
(
const
G4Track
& track,
134
const
G4Step
& step);
135
136
137
138
// -- AtRest methods (still there after many years of no use...):
139
G4double
AtRestGetPhysicalInteractionLength
(
const
G4Track
&,
140
G4ForceCondition
*);
141
142
G4VParticleChange
*
AtRestDoIt
(
const
G4Track
&,
const
G4Step
&);
143
144
145
146
147
148
// -- debug:
149
void
Verbose
()
const
;
150
151
152
private
:
153
//-- would be better to my taste to have "const G4VPhysicalVolume* fWorldVolume;", but clashes at compilation
154
G4VPhysicalVolume
* fWorldVolume;
155
156
G4bool
fIsTrackingTime;
157
G4bool
fIsFirstStep;
158
G4Navigator
* fGhostNavigator;
159
G4int
fGhostNavigatorIndex;
160
G4bool
fIsGhostGeometry;
161
G4double
fGhostSafety;
162
G4FieldTrack
fFieldTrack;
163
164
165
G4FastSimulationManager
* fFastSimulationManager;
166
G4bool
fFastSimulationTrigger;
167
G4VParticleChange
fDummyParticleChange;
168
G4PathFinder
* fPathFinder;
169
G4TransportationManager
* fTransportationManager;
170
};
171
172
#endif
Generated on Sat May 25 2013 14:34:11 for Geant4 by
1.8.4