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/TestEm2/src/EventAct << 23 // $Id: EventAction.cc,v 1.2 2004/09/17 10:51:39 maire Exp $ 27 /// \brief Implementation of the EventAction c << 24 // GEANT4 tag $Name: geant4-07-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 #include "EventAction.hh" 29 #include "EventAction.hh" 34 30 35 #include "Run.hh" << 31 #include "EventActionMessenger.hh" 36 << 32 #include "RunAction.hh" 37 #include "G4Event.hh" 33 #include "G4Event.hh" 38 #include "G4RunManager.hh" << 34 #include "G4TrajectoryContainer.hh" >> 35 #include "G4Trajectory.hh" >> 36 #include "G4VVisManager.hh" 39 #include "G4UnitsTable.hh" 37 #include "G4UnitsTable.hh" 40 38 41 //....oooOO0OOooo........oooOO0OOooo........oo 39 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 42 40 43 void EventAction::BeginOfEventAction(const G4E << 41 EventAction::EventAction(RunAction* run) >> 42 :Run(run),drawFlag("none"),printModulo(10000) >> 43 { >> 44 eventMessenger = new EventActionMessenger(this); >> 45 } >> 46 >> 47 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 48 >> 49 EventAction::~EventAction() 44 { 50 { 45 // additional initializations << 51 delete eventMessenger; 46 Run* run = static_cast<Run*>(G4RunManager::G << 47 run->InitializePerEvent(); << 48 } 52 } 49 53 50 //....oooOO0OOooo........oooOO0OOooo........oo 54 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 51 55 52 void EventAction::EndOfEventAction(const G4Eve << 56 void EventAction::BeginOfEventAction(const G4Event* evt) 53 { 57 { 54 Run* run = static_cast<Run*>(G4RunManager::G << 58 G4int evtNb = evt->GetEventID(); 55 run->FillPerEvent(); << 59 >> 60 //printing survey >> 61 if (evtNb%printModulo == 0) >> 62 G4cout << "\n---> Begin of Event: " << evtNb << G4endl; >> 63 >> 64 //additional initializations >> 65 Run->initializePerEvent(); 56 } 66 } 57 67 58 //....oooOO0OOooo........oooOO0OOooo........oo 68 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 69 >> 70 void EventAction::EndOfEventAction(const G4Event* evt) >> 71 { >> 72 Run->fillPerEvent(); >> 73 >> 74 if (G4VVisManager::GetConcreteInstance()) >> 75 { >> 76 G4TrajectoryContainer* trajectoryContainer = evt->GetTrajectoryContainer(); >> 77 G4int n_trajectories = 0; >> 78 if (trajectoryContainer) n_trajectories = trajectoryContainer->entries(); >> 79 for (G4int i=0; i<n_trajectories; i++) >> 80 { G4Trajectory* trj = (G4Trajectory *) >> 81 ((*(evt->GetTrajectoryContainer()))[i]); >> 82 if (drawFlag == "all") trj->DrawTrajectory(50); >> 83 else if ((drawFlag == "charged")&&(trj->GetCharge() != 0.)) >> 84 trj->DrawTrajectory(50); >> 85 } >> 86 } >> 87 } >> 88 >> 89 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 90 >> 91 59 92