ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
B4aEventAction.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file B4aEventAction.cc
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 //
29 
30 #include "B4aEventAction.hh"
31 #include "B4RunAction.hh"
32 #include "B4Analysis.hh"
33 
34 #include "G4RunManager.hh"
35 #include "G4Event.hh"
36 #include "G4UnitsTable.hh"
37 
38 #include "Randomize.hh"
39 #include <iomanip>
40 
41 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
42 
45  fEnergyAbs(0.),
46  fEnergyGap(0.),
47  fTrackLAbs(0.),
48  fTrackLGap(0.)
49 {}
50 
51 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
52 
54 {}
55 
56 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
57 
59 {
60  // initialisation per event
61  fEnergyAbs = 0.;
62  fEnergyGap = 0.;
63  fTrackLAbs = 0.;
64  fTrackLGap = 0.;
65 }
66 
67 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
68 
70 {
71  // Accumulate statistics
72  //
73 
74  // get analysis manager
75  auto analysisManager = G4AnalysisManager::Instance();
76 
77  // fill histograms
78  analysisManager->FillH1(0, fEnergyAbs);
79  analysisManager->FillH1(1, fEnergyGap);
80  analysisManager->FillH1(2, fTrackLAbs);
81  analysisManager->FillH1(3, fTrackLGap);
82 
83  // fill ntuple
84  analysisManager->FillNtupleDColumn(0, fEnergyAbs);
85  analysisManager->FillNtupleDColumn(1, fEnergyGap);
86  analysisManager->FillNtupleDColumn(2, fTrackLAbs);
87  analysisManager->FillNtupleDColumn(3, fTrackLGap);
88  analysisManager->AddNtupleRow();
89 
90  // Print per event (modulo n)
91  //
92  auto eventID = event->GetEventID();
93  auto printModulo = G4RunManager::GetRunManager()->GetPrintProgress();
94  if ( ( printModulo > 0 ) && ( eventID % printModulo == 0 ) ) {
95  G4cout << "---> End of event: " << eventID << G4endl;
96 
97  G4cout
98  << " Absorber: total energy: " << std::setw(7)
99  << G4BestUnit(fEnergyAbs,"Energy")
100  << " total track length: " << std::setw(7)
101  << G4BestUnit(fTrackLAbs,"Length")
102  << G4endl
103  << " Gap: total energy: " << std::setw(7)
104  << G4BestUnit(fEnergyGap,"Energy")
105  << " total track length: " << std::setw(7)
106  << G4BestUnit(fTrackLGap,"Length")
107  << G4endl;
108  }
109 }
110 
111 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......