Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 /// \file electromagnetic/TestEm3/include/RunA 26 /// \file electromagnetic/TestEm3/include/RunAction.hh 27 /// \brief Definition of the RunAction class 27 /// \brief Definition of the RunAction class 28 // 28 // >> 29 // $Id: RunAction.hh 66241 2012-12-13 18:34:42Z gunter $ 29 // 30 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 33 33 #ifndef RunAction_h 34 #ifndef RunAction_h 34 #define RunAction_h 1 35 #define RunAction_h 1 35 36 >> 37 #include "DetectorConstruction.hh" >> 38 36 #include "G4UserRunAction.hh" 39 #include "G4UserRunAction.hh" >> 40 #include "G4ThreeVector.hh" 37 #include "globals.hh" 41 #include "globals.hh" 38 42 >> 43 #include <vector> >> 44 39 //....oooOO0OOooo........oooOO0OOooo........oo 45 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 40 46 41 class Run; << 42 class DetectorConstruction; << 43 class PrimaryGeneratorAction; 47 class PrimaryGeneratorAction; 44 class RunActionMessenger; 48 class RunActionMessenger; 45 class HistoManager; 49 class HistoManager; 46 class G4Timer; << 50 class G4Track; >> 51 class G4Run; 47 52 48 //....oooOO0OOooo........oooOO0OOooo........oo 53 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 49 54 50 class RunAction : public G4UserRunAction 55 class RunAction : public G4UserRunAction 51 { 56 { 52 public: << 57 public: 53 RunAction(DetectorConstruction*, PrimaryGe << 58 54 ~RunAction() override; << 59 RunAction(DetectorConstruction*, PrimaryGeneratorAction*); 55 << 60 ~RunAction(); 56 G4Run* GenerateRun() override; << 61 57 void BeginOfRunAction(const G4Run*) overri << 62 virtual void BeginOfRunAction(const G4Run*); 58 void EndOfRunAction(const G4Run*) override << 63 virtual void EndOfRunAction(const G4Run*); 59 << 64 60 // Acceptance parameters << 65 void FillPerEvent(G4int,G4double,G4double); 61 void SetEdepAndRMS(G4int, G4double, G4doub << 66 62 void SetApplyLimit(G4bool val); << 67 void SumEnergyFlow(G4int plane, G4double Eflow) 63 << 68 {fEnergyFlow[plane] += Eflow;}; 64 private: << 69 void SumLateralEleak(G4int cell, G4double Eflow) 65 DetectorConstruction* fDetector = nullptr; << 70 {fLateralEleak[cell] += Eflow;}; 66 PrimaryGeneratorAction* fPrimary = nullptr << 71 67 Run* fRun = nullptr; << 72 void AddChargedStep() { fChargedStep += 1.0; } 68 RunActionMessenger* fRunMessenger = nullpt << 73 void AddNeutralStep() { fNeutralStep += 1.0; } 69 HistoManager* fHistoManager = nullptr; << 74 70 G4Timer* fTimer = nullptr; << 75 void PrintDedxTables(); >> 76 >> 77 void AddSecondaryTrack(const G4Track*); >> 78 >> 79 // Acceptance parameters >> 80 void SetEdepAndRMS(G4int, G4double, G4double, G4double); >> 81 G4double GetAverageEdep(G4int i) const {return fEdeptrue[i];}; >> 82 G4double GetRMSEdep(G4int i) const {return fRmstrue[i];}; >> 83 G4double GetLimitEdep(G4int i) const {return fLimittrue[i];}; >> 84 void SetApplyLimit(G4bool val) {fApplyLimit = val;}; >> 85 >> 86 private: >> 87 >> 88 DetectorConstruction* fDetector; >> 89 PrimaryGeneratorAction* fPrimary; >> 90 RunActionMessenger* fRunMessenger; >> 91 HistoManager* fHistoManager; >> 92 >> 93 G4double fSumEAbs [MaxAbsor], fSum2EAbs [MaxAbsor]; >> 94 G4double fSumLAbs [MaxAbsor], fSum2LAbs [MaxAbsor]; >> 95 >> 96 std::vector<G4double> fEnergyFlow; >> 97 std::vector<G4double> fLateralEleak; >> 98 std::vector<G4double> fEnergyDeposit[MaxAbsor]; >> 99 >> 100 G4double fEdeptrue [MaxAbsor]; >> 101 G4double fRmstrue [MaxAbsor]; >> 102 G4double fLimittrue[MaxAbsor]; >> 103 >> 104 G4double fChargedStep; >> 105 G4double fNeutralStep; >> 106 >> 107 G4int fN_gamma; >> 108 G4int fN_elec; >> 109 G4int fN_pos; >> 110 >> 111 G4bool fApplyLimit; 71 }; 112 }; 72 113 73 //....oooOO0OOooo........oooOO0OOooo........oo 114 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 74 115 75 #endif 116 #endif >> 117 76 118