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
examples
extended
optical
wls
include
WLSSteppingAction.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
//
28
//
29
//
30
//
31
//
32
33
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
34
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
35
36
#ifndef WLSSteppingAction_h
37
#define WLSSteppingAction_h 1
38
39
#include "
G4UserSteppingAction.hh
"
40
41
class
WLSDetectorConstruction
;
42
class
WLSSteppingActionMessenger
;
43
44
class
G4Track
;
45
class
G4StepPoint
;
46
47
class
G4OpBoundaryProcess
;
48
49
class
WLSSteppingAction
:
public
G4UserSteppingAction
50
{
51
public
:
52
53
WLSSteppingAction
(
WLSDetectorConstruction
*);
54
~WLSSteppingAction
();
55
56
void
UserSteppingAction
(
const
G4Step
*);
57
58
// Set the bounce limit, 0 for no limit
59
void
SetBounceLimit
(
G4int
);
60
61
G4int
GetNumberOfBounces
();
62
G4int
GetNumberOfClad1Bounces
();
63
G4int
GetNumberOfClad2Bounces
();
64
G4int
GetNumberOfWLSBounces
();
65
// return number of successful events and reset the counter
66
G4int
ResetSuccessCounter
();
67
68
private
:
69
70
// Artificially kill the photon after it has bounced more than this number
71
G4int
bounceLimit;
72
// number of photons that reach the end
73
G4int
counterEnd;
74
// number of photons that didn't make it to the end
75
G4int
counterMid;
76
// total number of bounces that a photon been through
77
G4int
counterBounce;
78
// number of bounces that a photon been through within the fibre
79
G4int
counterWLSBounce;
80
// number of bounces that a photon been through from Cladding 1 to 2
81
G4int
counterClad1Bounce;
82
// number of bounces that a photon been through from Cladding 2 to World
83
G4int
counterClad2Bounce;
84
85
// The starting position of the photon
86
G4double
initZ;
87
// initial gamma of the photon
88
G4double
initGamma;
89
// initial theta of the photon
90
G4double
initTheta;
91
92
G4OpBoundaryProcess
* opProcess;
93
94
// maximum number of save states
95
static
G4int
maxRndmSave;
96
97
WLSDetectorConstruction
* detector;
98
99
WLSSteppingActionMessenger
* steppingMessenger;
100
101
inline
void
ResetCounters()
102
{
103
counterBounce = counterWLSBounce =
104
counterClad1Bounce = counterClad2Bounce = 0;
105
initGamma = initTheta = -1;
106
}
107
108
void
UpdateHistogramSuccess(
G4StepPoint
*,
G4Track
*);
109
void
UpdateHistogramReflect(
G4StepPoint
*,
G4Track
*);
110
void
UpdateHistogramEscape(
G4StepPoint
*,
G4Track
*);
111
void
UpdateHistogramAbsorb(
G4StepPoint
*,
G4Track
*);
112
113
// save the random status into a sub-directory
114
// Pre: subDir must be empty or ended with "/"
115
inline
void
saveRandomStatus(
G4String
subDir);
116
117
};
118
119
#endif
Generated on Sat May 25 2013 14:32:58 for Geant4 by
1.8.4