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

#include <GarfieldEventAction.hh>

+ Inheritance diagram for GarfieldEventAction:

Public Member Functions

 GarfieldEventAction ()=default
 
virtual ~GarfieldEventAction ()
 
void BeginOfEventAction (const G4Event *event) override
 
void EndOfEventAction (const G4Event *event) override
 
void AddAbs (G4double de, G4double dl)
 
void AddGas (G4double de)
 

Detailed Description

Event action class

It defines data members to hold the energy deposit and track lengths of charged particles in Absober and Gap layers:

  • fEnergyAbs, fEnergyGap, fTrackLAbs, fTrackLGap which are collected step by step via the functions
  • AddAbs(), AddGap()

Definition at line 45 of file GarfieldEventAction.hh.

Constructor & Destructor Documentation

◆ GarfieldEventAction()

GarfieldEventAction::GarfieldEventAction ( )
default

◆ ~GarfieldEventAction()

GarfieldEventAction::~GarfieldEventAction ( )
virtual

Definition at line 43 of file GarfieldEventAction.cc.

43{}

Member Function Documentation

◆ AddAbs()

void GarfieldEventAction::AddAbs ( G4double de,
G4double dl )
inline

Definition at line 66 of file GarfieldEventAction.hh.

66 {
67 fEnergyAbs += de;
68 fTrackLAbs += dl;
69}

◆ AddGas()

void GarfieldEventAction::AddGas ( G4double de)
inline

Definition at line 71 of file GarfieldEventAction.hh.

71{ fEnergyGas += de; }

◆ BeginOfEventAction()

void GarfieldEventAction::BeginOfEventAction ( const G4Event * event)
override

Definition at line 47 of file GarfieldEventAction.cc.

47 {
48 // initialisation per event
49 fEnergyAbs = 0.;
50 fEnergyGas = 0.;
51 fTrackLAbs = 0.;
52 fAvalancheSize = 0.;
53 fGain = 0.;
54
55 GarfieldPhysics* garfieldPhysics = GarfieldPhysics::GetInstance();
56 garfieldPhysics->Clear();
57}
static GarfieldPhysics * GetInstance()

◆ EndOfEventAction()

void GarfieldEventAction::EndOfEventAction ( const G4Event * event)
override

Definition at line 61 of file GarfieldEventAction.cc.

61 {
62 // Accumulate statistics
63 GarfieldPhysics* garfieldPhysics = GarfieldPhysics::GetInstance();
64
65 // Get analysis manager
66 G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
67 // fEnergyGas += garfieldPhysics->GetEnergyDeposit_MeV();
68 fAvalancheSize = garfieldPhysics->GetAvalancheSize();
69 fGain = garfieldPhysics->GetGain();
70
71 // fill histograms
72 analysisManager->FillH1(1, fEnergyAbs);
73 analysisManager->FillH1(2, fTrackLAbs);
74 analysisManager->FillH1(3, fEnergyGas);
75 analysisManager->FillH1(4, fAvalancheSize);
76 analysisManager->FillH1(5, fGain);
77
78 // fill ntuple
79 analysisManager->FillNtupleDColumn(0, fEnergyAbs);
80 analysisManager->FillNtupleDColumn(1, fTrackLAbs);
81 analysisManager->FillNtupleDColumn(2, fEnergyGas);
82 analysisManager->FillNtupleDColumn(3, fAvalancheSize);
83 analysisManager->FillNtupleDColumn(4, fGain);
84
85 // Print per event (modulo n)
86 //
87 G4int eventID = event->GetEventID();
88 G4int printModulo = G4RunManager::GetRunManager()->GetPrintProgress();
89 if ((printModulo > 0) && (eventID % printModulo == 0)) {
90 G4cout << "---> End of event: " << eventID << G4endl;
91
92 G4cout << " Absorber: total energy: " << std::setw(7)
93 << G4BestUnit(fEnergyAbs, "Energy")
94 << " total track length: " << std::setw(7)
95 << G4BestUnit(fTrackLAbs, "Length") << G4endl;
96
97 G4cout << " Gas: total energy: " << std::setw(7)
98 << G4BestUnit(fEnergyGas, "Energy")
99 << " avalanche size: " << fAvalancheSize
100 << " gain: " << fGain << G4endl;
101 }
102}
double GetAvalancheSize() const
double GetGain() const

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