Garfield++ 5.0
A toolkit for the detailed simulation of particle detectors based on ionisation measurement in gases and semiconductors
Loading...
Searching...
No Matches
GarfieldSteppingAction Class Reference

#include <GarfieldSteppingAction.hh>

+ Inheritance diagram for GarfieldSteppingAction:

Public Member Functions

 GarfieldSteppingAction (const GarfieldDetectorConstruction *detectorConstruction, GarfieldEventAction *eventAction)
 
virtual ~GarfieldSteppingAction ()
 
virtual void UserSteppingAction (const G4Step *step)
 

Detailed Description

Stepping action class.

In UserSteppingAction() there are collected the energy deposit and track lengths of charged particles in Absober and Gap layers and updated in GarfieldEventAction.

Definition at line 45 of file GarfieldSteppingAction.hh.

Constructor & Destructor Documentation

◆ GarfieldSteppingAction()

GarfieldSteppingAction::GarfieldSteppingAction ( const GarfieldDetectorConstruction * detectorConstruction,
GarfieldEventAction * eventAction )

Definition at line 38 of file GarfieldSteppingAction.cc.

41 : G4UserSteppingAction(),
42 fDetConstruction(detectorConstruction),
43 fEventAction(eventAction) {}

◆ ~GarfieldSteppingAction()

GarfieldSteppingAction::~GarfieldSteppingAction ( )
virtual

Definition at line 47 of file GarfieldSteppingAction.cc.

47{}

Member Function Documentation

◆ UserSteppingAction()

void GarfieldSteppingAction::UserSteppingAction ( const G4Step * step)
virtual

Definition at line 51 of file GarfieldSteppingAction.cc.

51 {
52 // Collect energy and track length step by step
53
54 // Get volume of the current step
55 auto volume = step->GetPreStepPoint()->GetTouchableHandle()->GetVolume();
56 // Energy deposit
57 G4double edep = step->GetTotalEnergyDeposit();
58 // Step length
59 G4double stepLength = 0.;
60 if (step->GetTrack()->GetDefinition()->GetPDGCharge() != 0.) {
61 stepLength = step->GetStepLength();
62 }
63
64 if (volume == fDetConstruction->GetAbsorberPV()) {
65 fEventAction->AddAbs(edep, stepLength);
66 }
67
68 if (volume == fDetConstruction->GetGasPV()) {
69 fEventAction->AddGas(edep);
70 }
71}

The documentation for this class was generated from the following files: