Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
OpNoviceSteppingAction.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 // $Id: OpNoviceSteppingAction.cc 71007 2013-06-09 16:14:59Z maire $
27 //
28 /// \file OpNoviceSteppingAction.cc
29 /// \brief Implementation of the OpNoviceSteppingAction class
30 
32 
33 #include "G4Step.hh"
34 #include "G4Track.hh"
35 #include "G4OpticalPhoton.hh"
36 
37 #include "G4Event.hh"
38 #include "G4RunManager.hh"
39 
40 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
41 
42 
45 {
46  fScintillationCounter = 0;
47  fCerenkovCounter = 0;
48  fEventNumber = -1;
49 }
50 
51 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
52 
54 { ; }
55 
56 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
57 
59 {
60  G4int eventNumber = G4RunManager::GetRunManager()->
61  GetCurrentEvent()->GetEventID();
62 
63  if (eventNumber != fEventNumber) {
64  G4cout << " Number of Scintillation Photons in previous event: "
65  << fScintillationCounter << G4endl;
66  G4cout << " Number of Cerenkov Photons in previous event: "
67  << fCerenkovCounter << G4endl;
68  fEventNumber = eventNumber;
69  fScintillationCounter = 0;
70  fCerenkovCounter = 0;
71  }
72 
73  G4Track* track = step->GetTrack();
74 
75  G4String ParticleName = track->GetDynamicParticle()->
76  GetParticleDefinition()->GetParticleName();
77 
78  if (ParticleName == "opticalphoton") return;
79 
80  const std::vector<const G4Track*>* secondaries =
82 
83  if (secondaries->size()>0) {
84  for(unsigned int i=0; i<secondaries->size(); ++i) {
85  if (secondaries->at(i)->GetParentID()>0) {
86  if(secondaries->at(i)->GetDynamicParticle()->GetParticleDefinition()
88  if (secondaries->at(i)->GetCreatorProcess()->GetProcessName()
89  == "Scintillation")fScintillationCounter++;
90  if (secondaries->at(i)->GetCreatorProcess()->GetProcessName()
91  == "Cerenkov")fCerenkovCounter++;
92  }
93  }
94  }
95  }
96 }
97 
98 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
const G4DynamicParticle * GetDynamicParticle() const
virtual void UserSteppingAction(const G4Step *)
int G4int
Definition: G4Types.hh:78
G4GLOB_DLL std::ostream G4cout
Definition: G4Step.hh:76
const std::vector< const G4Track * > * GetSecondaryInCurrentStep() const
Definition: G4Step.cc:193
static G4RunManager * GetRunManager()
Definition: G4RunManager.cc:74
Definition of the OpNoviceSteppingAction class.
#define G4endl
Definition: G4ios.hh:61
static G4OpticalPhoton * OpticalPhotonDefinition()
G4Track * GetTrack() const