Geant4  10.00.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 70906 2013-06-07 10:36:44Z gcosmo $
30 //
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 
34 #include "SteppingAction.hh"
35 #include "G4Step.hh"
36 #include "G4StepPoint.hh"
37 #include "DetectorConstruction.hh"
38 #include "RunAction.hh"
39 #include "Randomize.hh"
40 
41 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
42 
44 :G4UserSteppingAction(),fDetector(det), fRunAction(RuAct)
45 { }
46 
47 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
48 
50 { }
51 
52 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
53 
55 {
56  G4double edep = step->GetTotalEnergyDeposit();
57  if (edep <= 0.) return;
58 
60  fRunAction->FillEdep(edep, niel);
61 
62  if (step->GetTrack()->GetTrackID() == 1) {
64  /*
65  G4cout << step->GetTrack()->GetMaterial()->GetName()
66  << " E1= " << step->GetPreStepPoint()->GetKineticEnergy()
67  << " E2= " << step->GetPostStepPoint()->GetKineticEnergy()
68  << " Edep= " << edep << G4endl;
69  */
70  }
71 
72  //Bragg curve
73  //
74  G4StepPoint* prePoint = step->GetPreStepPoint();
75  G4StepPoint* postPoint = step->GetPostStepPoint();
76 
77  G4double x1 = prePoint->GetPosition().x();
78  G4double x2 = postPoint->GetPosition().x();
79  G4double x = x1 + G4UniformRand()*(x2-x1) + 0.5*(fDetector->GetAbsorSizeX());
80  G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
81  analysisManager->FillH1(1, x, edep);
82  analysisManager->FillH1(2, x, edep);
83 
84  //fill tallies
85  //
86  G4int copyNb = prePoint->GetTouchableHandle()->GetCopyNumber();
87  if (copyNb > 0) fRunAction->FillTallyEdep(copyNb, edep);
88 }
89 
90 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
91 
92 
RunAction * fRunAction
G4double GetNonIonizingEnergyDeposit() const
G4int GetCopyNumber(G4int depth=0) const
void UserSteppingAction(const G4Step *)
int G4int
Definition: G4Types.hh:78
G4StepPoint * GetPreStepPoint() const
#define G4UniformRand()
Definition: Randomize.hh:87
const G4ThreeVector & GetPosition() const
ExG4HbookAnalysisManager G4AnalysisManager
Definition: g4hbook_defs.hh:46
Definition: G4Step.hh:76
G4int GetTrackID() const
DetectorConstruction * fDetector
G4double GetTotalEnergyDeposit() const
G4StepPoint * GetPostStepPoint() const
void FillTallyEdep(G4int n, G4double e)
Definition: RunAction.hh:82
Detector construction class to demonstrate various ways of placement.
void AddPrimaryStep()
Definition: RunAction.hh:106
double G4double
Definition: G4Types.hh:76
void FillEdep(G4double de, G4double eni)
Definition: RunAction.hh:89
G4Track * GetTrack() const
const G4TouchableHandle & GetTouchableHandle() const