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 // $Id: EventAction.hh,v 1.5 2009-08-29 08:48:30 maire Exp $ >> 27 // GEANT4 tag $Name: not supported by cvs2svn $ 26 // 28 // 27 //....oooOO0OOooo........oooOO0OOooo........oo 29 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 28 //....oooOO0OOooo........oooOO0OOooo........oo 30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 29 31 30 #ifndef EventAction_h 32 #ifndef EventAction_h 31 #define EventAction_h 1 33 #define EventAction_h 1 32 34 33 #include "G4UserEventAction.hh" 35 #include "G4UserEventAction.hh" 34 #include "DetectorConstruction.hh" 36 #include "DetectorConstruction.hh" 35 #include "globals.hh" 37 #include "globals.hh" 36 38 37 #include <vector> 39 #include <vector> 38 #include <map> << 39 40 >> 41 class RunAction; 40 class PrimaryGeneratorAction; 42 class PrimaryGeneratorAction; >> 43 class EventActionMessenger; >> 44 class HistoManager; 41 45 42 //....oooOO0OOooo........oooOO0OOooo........oo 46 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 43 47 44 class EventAction : public G4UserEventAction 48 class EventAction : public G4UserEventAction 45 { 49 { 46 public: 50 public: 47 EventAction(DetectorConstruction*, Primary << 51 EventAction(DetectorConstruction*, RunAction*, PrimaryGeneratorAction*, >> 52 HistoManager*); 48 ~EventAction(); 53 ~EventAction(); 49 54 50 void BeginOfEventAction(const G4Event*); 55 void BeginOfEventAction(const G4Event*); 51 void EndOfEventAction(const G4Event*); 56 void EndOfEventAction(const G4Event*); 52 57 53 void SumDeStep(G4int, G4int, G4int, G4doub << 58 void SetDrawFlag (G4String val) {drawFlag = val;}; 54 << 59 void SetPrintModulo(G4int val) {printModulo = val;}; 55 void WriteFibers(const G4Event*); << 60 >> 61 void SumVisibleEnergy(G4int pixel, G4double de) >> 62 {visibleEnergy[pixel] += de;}; 56 63 57 << 64 void SumTotalEnergy (G4int pixel, G4double de) >> 65 {totalEnergy[pixel] += de;}; >> 66 >> 67 void SumNbRadLength (G4double dn) {nbRadLen += dn;}; >> 68 >> 69 void SetWriteFile(G4bool); >> 70 void WritePixels(const G4Event*); >> 71 58 private: 72 private: 59 DetectorConstruction* detector; 73 DetectorConstruction* detector; >> 74 RunAction* runAct; 60 PrimaryGeneratorAction* primary; 75 PrimaryGeneratorAction* primary; 61 << 76 62 G4int nbOfModules, nbOfLayers, kLayerMax; << 77 std::vector<G4double> visibleEnergy; 63 std::vector<G4double> EtotLayer; << 78 std::vector<G4double> totalEnergy; 64 std::vector<G4double> EvisLayer; << 79 G4double nbRadLen; 65 << 80 66 G4double EtotCalor; << 81 G4bool trigger; 67 G4double EvisCalor; << 82 G4double Eseuil; 68 << 83 69 std::map<G4int, G4double> EvisFiber; << 84 G4bool writeFile; >> 85 >> 86 G4String drawFlag; >> 87 G4int printModulo; >> 88 EventActionMessenger* eventMessenger; >> 89 HistoManager* histoManager; 70 }; 90 }; 71 91 72 //....oooOO0OOooo........oooOO0OOooo........oo 92 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 73 93 74 #endif 94 #endif 75 95 76 96 77 97