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/TestEm9/src/EventAct << 23 // $Id: EventAction.cc,v 1.3 2003/10/31 12:08:51 vnivanch Exp $ 27 /// \brief Implementation of the EventAction c << 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 #include "EventAction.hh" 29 #include "EventAction.hh" 34 << 35 #include "HistoManager.hh" 30 #include "HistoManager.hh" >> 31 #include "EventActionMessenger.hh" 36 32 37 #include "G4UImanager.hh" 33 #include "G4UImanager.hh" >> 34 #include "G4TrajectoryContainer.hh" >> 35 #include "G4Trajectory.hh" >> 36 #include "G4VVisManager.hh" >> 37 #include "G4Gamma.hh" 38 #include "G4ios.hh" 38 #include "G4ios.hh" 39 39 40 //....oooOO0OOooo........oooOO0OOooo........oo << 40 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... >> 41 >> 42 EventAction::EventAction(): >> 43 nEvt(0), >> 44 printModulo(100), >> 45 verbose(0), >> 46 drawFlag("all") >> 47 { >> 48 eventMessenger = new EventActionMessenger(this); >> 49 } >> 50 >> 51 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 41 52 42 EventAction::EventAction() : G4UserEventAction << 53 EventAction::~EventAction() >> 54 {} 43 55 44 //....oooOO0OOooo........oooOO0OOooo........oo << 56 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 45 57 46 void EventAction::BeginOfEventAction(const G4E << 58 void EventAction::BeginOfEventAction(const G4Event*) 47 { 59 { 48 // New event 60 // New event 49 G4int n = event->GetEventID(); << 61 nEvt++; 50 HistoManager* hi = HistoManager::GetPointer( 62 HistoManager* hi = HistoManager::GetPointer(); 51 hi->BeginOfEvent(); 63 hi->BeginOfEvent(); 52 64 53 // Switch on verbose mode 65 // Switch on verbose mode 54 66 55 if (hi->FirstEventToDebug() == n) { << 67 if(hi->FirstEventToDebug() == nEvt) { 56 fVerbose = 2; << 68 verbose = 2; 57 hi->SetVerbose(2); 69 hi->SetVerbose(2); 58 (G4UImanager::GetUIpointer())->ApplyComman 70 (G4UImanager::GetUIpointer())->ApplyCommand("/tracking/verbose 2"); 59 } 71 } 60 72 61 // Switch off verbose mode 73 // Switch off verbose mode 62 if (hi->LastEventToDebug() == n + 1) { << 74 if(hi->LastEventToDebug() == nEvt-1) { 63 fVerbose = 0; << 75 verbose = 0; 64 hi->SetVerbose(0); 76 hi->SetVerbose(0); 65 (G4UImanager::GetUIpointer())->ApplyComman 77 (G4UImanager::GetUIpointer())->ApplyCommand("/tracking/verbose 0"); 66 } 78 } >> 79 >> 80 >> 81 // Initialize user actions >> 82 if(verbose > 0) { >> 83 G4cout << "EventAction: Event # " >> 84 << nEvt << " started" << G4endl; >> 85 } >> 86 67 } 87 } 68 88 69 //....oooOO0OOooo........oooOO0OOooo........oo << 89 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 70 90 71 void EventAction::EndOfEventAction(const G4Eve << 91 void EventAction::EndOfEventAction(const G4Event* evt) 72 { 92 { 73 (HistoManager::GetPointer())->EndOfEvent(); 93 (HistoManager::GetPointer())->EndOfEvent(); >> 94 G4VVisManager* pVVisManager = G4VVisManager::GetConcreteInstance(); >> 95 >> 96 if(pVVisManager) { >> 97 G4TrajectoryContainer* trjc = evt->GetTrajectoryContainer(); >> 98 G4int n_trajectories = 0; >> 99 if (trjc) n_trajectories = trjc->entries(); >> 100 >> 101 for(G4int i=0; i<n_trajectories; i++) { >> 102 G4Trajectory* t = (G4Trajectory*)((*(evt->GetTrajectoryContainer()))[i]); >> 103 if (drawFlag == "all") t->DrawTrajectory(1000); >> 104 else if ((drawFlag == "charged")&&(t->GetCharge() != 0.)) >> 105 t->DrawTrajectory(1000); >> 106 } >> 107 } 74 108 75 if (fVerbose > 0) { << 109 if(verbose > 0) { 76 G4cout << "EventAction: Event # " << event << 110 G4cout << "EventAction: Event # " >> 111 << nEvt << " ended" << G4endl; 77 } 112 } 78 } 113 } 79 114 80 //....oooOO0OOooo........oooOO0OOooo........oo << 115 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 81 116