Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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 //
26 // $Id: WLSSteppingAction.hh 69561 2013-05-08 12:25:56Z gcosmo $
27 //
28 /// \file optical/wls/include/WLSSteppingAction.hh
29 /// \brief Definition of the WLSSteppingAction class
30 //
31 
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
33 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
34 
35 #ifndef WLSSteppingAction_h
36 #define WLSSteppingAction_h 1
37 
38 #include "G4UserSteppingAction.hh"
39 
42 
43 class G4Track;
44 class G4StepPoint;
45 
47 
49 {
50  public:
51 
53  virtual ~WLSSteppingAction();
54 
55  virtual void UserSteppingAction(const G4Step*);
56 
57  // Set the bounce limit, 0 for no limit
58  void SetBounceLimit(G4int);
59 
64  // return number of successful events and reset the counter
66 
67  private:
68 
69  // Artificially kill the photon after it has bounced more than this number
70  G4int fBounceLimit;
71  // number of photons that reach the end
72  G4int fCounterEnd;
73  // number of photons that didn't make it to the end
74  G4int fCounterMid;
75  // total number of bounces that a photon been through
76  G4int fCounterBounce;
77  // number of bounces that a photon been through within the fibre
78  G4int fCounterWLSBounce;
79  // number of bounces that a photon been through from Cladding 1 to 2
80  G4int fCounterClad1Bounce;
81  // number of bounces that a photon been through from Cladding 2 to World
82  G4int fCounterClad2Bounce;
83 
84  // initial gamma of the photon
85  G4double fInitGamma;
86  // initial theta of the photon
87  G4double fInitTheta;
88 
89  G4OpBoundaryProcess* fOpProcess;
90 
91  // maximum number of save states
92  static G4int fMaxRndmSave;
93 
94  WLSDetectorConstruction* fDetector;
95 
96  WLSSteppingActionMessenger* fSteppingMessenger;
97 
98  inline void ResetCounters()
99  {
100  fCounterBounce = fCounterWLSBounce =
101  fCounterClad1Bounce = fCounterClad2Bounce = 0;
102  fInitGamma = fInitTheta = -1;
103  }
104 
105  // save the random status into a sub-directory
106  // Pre: subDir must be empty or ended with "/"
107  inline void saveRandomStatus(G4String subDir);
108 
109 };
110 
111 #endif
int G4int
Definition: G4Types.hh:78
virtual void UserSteppingAction(const G4Step *)
virtual ~WLSSteppingAction()
Definition: G4Step.hh:76
WLSSteppingAction(WLSDetectorConstruction *)
void SetBounceLimit(G4int)
double G4double
Definition: G4Types.hh:76