Geant4  10.02.p01
SteppingAction.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 //
28 //
29 // $Id: SteppingAction.cc 71404 2013-06-14 16:56:38Z maire $
30 //
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 
34 #include "SteppingAction.hh"
35 
36 #include "DetectorConstruction.hh"
37 #include "Run.hh"
38 #include "EventAction.hh"
39 #include "HistoManager.hh"
40 
41 #include "G4RunManager.hh"
42 #include "G4SystemOfUnits.hh"
43 #include "G4UnitsTable.hh"
44 
45 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
46 
48 : G4UserSteppingAction(), fDetector(det), fEventAction(event)
49 { }
50 
51 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
52 
54 { }
55 
56 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
57 
59 {
60  Run* run = static_cast<Run*>(
62 
63  G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
64 
65  //which volume ?
66  //
69  G4int iVol = 0;
70  if (lVolume == fDetector->GetLogicTarget()) iVol = 1;
71  if (lVolume == fDetector->GetLogicDetector()) iVol = 2;
72 
73  // count processes
74  //
75  const G4StepPoint* endPoint = aStep->GetPostStepPoint();
76  const G4VProcess* process = endPoint->GetProcessDefinedStep();
77  run->CountProcesses(process, iVol);
78 
79  // energy deposit
80  //
81  G4double edepStep = aStep->GetTotalEnergyDeposit();
82  if (edepStep <= 0.) return;
83  G4double time = aStep->GetPreStepPoint()->GetGlobalTime();
84  G4double weight = aStep->GetPreStepPoint()->GetWeight();
85  fEventAction->AddEdep(iVol, edepStep, time, weight);
86 
87  //fill ntuple id = 2
88  G4int id = 2;
89  analysisManager->FillNtupleDColumn(id,0, edepStep);
90  analysisManager->FillNtupleDColumn(id,1, time/s);
91  analysisManager->FillNtupleDColumn(id,2, weight);
92  analysisManager->AddNtupleRow(id);
93 }
94 
95 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void AddEdep(G4double Edep)
Definition: EventAction.hh:53
G4LogicalVolume * GetLogicTarget()
void CountProcesses(G4String procName)
Definition: Run.cc:72
G4double GetWeight() const
Event action class.
Definition: EventAction.hh:45
void UserSteppingAction(const G4Step *)
int G4int
Definition: G4Types.hh:78
static const double s
Definition: G4SIunits.hh:168
G4StepPoint * GetPreStepPoint() const
ExG4HbookAnalysisManager G4AnalysisManager
Definition: g4hbook_defs.hh:66
Definition: G4Step.hh:76
DetectorConstruction * fDetector
G4double GetTotalEnergyDeposit() const
static G4RunManager * GetRunManager()
Definition: G4RunManager.cc:79
const G4VProcess * GetProcessDefinedStep() const
G4LogicalVolume * GetLogicalVolume() const
virtual G4VPhysicalVolume * GetVolume(G4int depth=0) const
Definition: G4VTouchable.cc:44
G4StepPoint * GetPostStepPoint() const
EventAction * fEventAction
Detector construction class to demonstrate various ways of placement.
G4double GetGlobalTime() const
double G4double
Definition: G4Types.hh:76
Definition: Run.hh:46
G4Run * GetNonConstCurrentRun() const
G4LogicalVolume * GetLogicDetector()
const G4TouchableHandle & GetTouchableHandle() const