Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 /// \file electromagnetic/TestEm3/include/Even << 23 // $Id: EventAction.hh,v 1.9 2004/10/22 15:53:44 maire Exp $ 27 /// \brief Definition of the EventAction class << 24 // GEANT4 tag $Name: geant4-07-00-patch-01 $ 28 // << 29 // 25 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 26 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 27 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 28 33 #ifndef EventAction_h 29 #ifndef EventAction_h 34 #define EventAction_h 1 30 #define EventAction_h 1 35 31 36 #include "DetectorConstruction.hh" << 37 << 38 #include "G4UserEventAction.hh" 32 #include "G4UserEventAction.hh" 39 #include "globals.hh" 33 #include "globals.hh" >> 34 #include "DetectorConstruction.hh" >> 35 >> 36 class RunAction; >> 37 class EventActionMessenger; >> 38 class HistoManager; 40 39 41 //....oooOO0OOooo........oooOO0OOooo........oo 40 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 42 41 43 class EventAction : public G4UserEventAction 42 class EventAction : public G4UserEventAction 44 { 43 { 45 public: << 44 public: 46 EventAction(DetectorConstruction*); << 45 EventAction(DetectorConstruction*, RunAction*, HistoManager*); 47 ~EventAction() override = default; << 46 ~EventAction(); 48 << 47 49 void BeginOfEventAction(const G4Event*) ov << 48 void BeginOfEventAction(const G4Event*); 50 void EndOfEventAction(const G4Event*) over << 49 void EndOfEventAction(const G4Event*); 51 << 50 52 void SumEnergy(G4int k, G4double de, G4dou << 51 void SetDrawFlag (G4String val) {drawFlag = val;}; 53 void SumEnergyLeak(G4double eleak); << 52 void SetPrintModulo(G4int val) {printModulo = val;}; 54 << 53 55 private: << 54 void SumEnergy(G4int k, G4double de, G4double dl) 56 DetectorConstruction* fDetector = nullptr; << 55 {energyDeposit[k] += de; trackLengthCh[k] += dl;}; 57 << 56 58 G4double fEnergyDeposit[kMaxAbsor]; << 57 private: 59 G4double fTrackLengthCh[kMaxAbsor]; << 58 DetectorConstruction* detector; 60 G4double fEnergyLeak; << 59 RunAction* runAct; >> 60 >> 61 G4double energyDeposit[MaxAbsor]; >> 62 G4double trackLengthCh[MaxAbsor]; >> 63 >> 64 G4String drawFlag; >> 65 G4int printModulo; >> 66 EventActionMessenger* eventMessenger; >> 67 HistoManager* histoManager; 61 }; 68 }; 62 69 63 //....oooOO0OOooo........oooOO0OOooo........oo 70 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 64 71 65 #endif 72 #endif >> 73 >> 74 66 75