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 // Code developed by: 26 // Code developed by: 27 // S.Larsson 27 // S.Larsson 28 // 28 // 29 // ****************************** 29 // ****************************** 30 // * * 30 // * * 31 // * PurgMagRunAction.cc * 31 // * PurgMagRunAction.cc * 32 // * * 32 // * * 33 // ****************************** 33 // ****************************** 34 // 34 // >> 35 // $Id: PurgMagRunAction.cc,v 1.4 2006/06/29 16:06:19 gunter Exp $ >> 36 // GEANT4 tag $Name: geant4-09-01-patch-03 $ 35 // 37 // 36 38 37 #include "PurgMagRunAction.hh" 39 #include "PurgMagRunAction.hh" 38 40 >> 41 #include "G4SteppingManager.hh" >> 42 39 #include "G4Run.hh" 43 #include "G4Run.hh" >> 44 #include "G4Material.hh" >> 45 #include "G4UImanager.hh" >> 46 #include "G4VVisManager.hh" >> 47 #include "G4ios.hh" 40 #include "G4UnitsTable.hh" 48 #include "G4UnitsTable.hh" 41 #include "G4AnalysisManager.hh" << 49 42 #include "Randomize.hh" 50 #include "Randomize.hh" >> 51 #include <iomanip> >> 52 >> 53 #ifdef G4ANALYSIS_USE >> 54 #include "PurgMagAnalysisManager.hh" >> 55 #endif >> 56 >> 57 #include <assert.h> 43 58 44 //....oooOO0OOooo........oooOO0OOooo........oo 59 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 45 60 46 PurgMagRunAction::PurgMagRunAction() << 61 PurgMagRunAction::PurgMagRunAction(PurgMagDetectorConstruction* det) >> 62 :Detector(det) 47 { 63 { 48 saveRndm = 1; 64 saveRndm = 1; 49 } 65 } 50 66 51 //....oooOO0OOooo........oooOO0OOooo........oo 67 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 52 68 53 PurgMagRunAction::~PurgMagRunAction() 69 PurgMagRunAction::~PurgMagRunAction() 54 {} 70 {} 55 71 56 //....oooOO0OOooo........oooOO0OOooo........oo 72 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 57 73 58 void PurgMagRunAction::BeginOfRunAction(const 74 void PurgMagRunAction::BeginOfRunAction(const G4Run* aRun) 59 { 75 { 60 //Analysis must be handled by master and wor << 61 Book(); << 62 << 63 if (IsMaster()) << 64 G4cout << "---> Run " << aRun->GetRunID() << 65 << G4endl; << 66 else << 67 G4cout << "---> Run " << aRun->GetRunID() << 68 << G4endl; << 69 76 >> 77 #ifdef G4ANALYSIS_USE >> 78 PurgMagAnalysisManager* analysis = PurgMagAnalysisManager::getInstance(); >> 79 analysis->book(); >> 80 #endif >> 81 >> 82 G4cout << "---> Run " << aRun->GetRunID() << " start." << G4endl; >> 83 70 84 71 // save Rndm status 85 // save Rndm status 72 if (saveRndm > 0 && IsMaster()) << 86 if (saveRndm > 0) 73 { << 87 { CLHEP::HepRandom::showEngineStatus(); 74 G4Random::showEngineStatus(); << 88 CLHEP::HepRandom::saveEngineStatus("beginOfRun.rndm"); 75 G4Random::saveEngineStatus("beginOfRun.r << 76 } 89 } 77 << 90 >> 91 >> 92 //Drawing >> 93 // >> 94 if (G4VVisManager::GetConcreteInstance()) >> 95 { >> 96 G4UImanager* UI = G4UImanager::GetUIpointer(); >> 97 UI->ApplyCommand("/vis/scene/notifyHandlers"); >> 98 } 78 } 99 } 79 100 80 101 81 //....oooOO0OOooo........oooOO0OOooo........oo 102 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 82 103 83 void PurgMagRunAction::EndOfRunAction(const G4 104 void PurgMagRunAction::EndOfRunAction(const G4Run* aRun) 84 { << 105 { 85 if (IsMaster()) << 106 86 G4cout << "Total number of event = " << aR << 107 #ifdef G4ANALYSIS_USE 87 else << 108 PurgMagAnalysisManager* analysis = PurgMagAnalysisManager::getInstance(); 88 G4cout << "Partial number of event in this << 109 #endif 89 << aRun->GetNumberOfEvent() << G4endl; << 110 90 << 111 G4cout << "number of event = " << aRun->GetNumberOfEvent() << G4endl; >> 112 >> 113 #ifdef G4ANALYSIS_USE >> 114 analysis->finish(); >> 115 #endif >> 116 >> 117 //drawing >> 118 if (G4VVisManager::GetConcreteInstance()) >> 119 G4UImanager::GetUIpointer()->ApplyCommand("/vis/viewer/update"); 91 120 92 if (IsMaster()) << 121 // save Rndm status 93 { << 122 if (saveRndm == 1) 94 // save Rndm status << 123 { CLHEP::HepRandom::showEngineStatus(); 95 if (saveRndm == 1) << 124 CLHEP::HepRandom::saveEngineStatus("endOfRun.rndm"); 96 { << 125 } 97 G4Random::showEngineStatus(); << 98 G4Random::saveEngineStatus("endOfRun.rndm" << 99 } << 100 } << 101 } 126 } 102 127 103 //....oooOO0OOooo........oooOO0OOooo........oo 128 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 104 129 105 void PurgMagRunAction::Book() << 106 { << 107 // Get/create analysis manager << 108 G4AnalysisManager* man = G4AnalysisManager:: << 109 man->SetDefaultFileType("csv"); << 110 << 111 // Open an output file << 112 man->OpenFile("purgmag"); << 113 man->SetFirstNtupleId(1); << 114 << 115 // Create 1st ntuple (id = 1) << 116 // << 117 man->CreateNtuple("n101", "Electron"); << 118 man->CreateNtupleDColumn("ex"); << 119 man->CreateNtupleDColumn("ey"); << 120 man->CreateNtupleDColumn("ez"); << 121 man->CreateNtupleDColumn("ee"); << 122 man->CreateNtupleDColumn("epx"); << 123 man->CreateNtupleDColumn("epy"); << 124 man->CreateNtupleDColumn("epz"); << 125 man->FinishNtuple(); << 126 G4cout << "Ntuple-1 created" << G4endl; << 127 << 128 // Create 2nd ntuple (id = 2) << 129 // << 130 man->CreateNtuple("n102", "Gamma"); << 131 man->CreateNtupleDColumn("gx"); << 132 man->CreateNtupleDColumn("gy"); << 133 man->CreateNtupleDColumn("gz"); << 134 man->CreateNtupleDColumn("ge"); << 135 man->CreateNtupleDColumn("gpx"); << 136 man->CreateNtupleDColumn("gpy"); << 137 man->CreateNtupleDColumn("gpz"); << 138 man->FinishNtuple(); << 139 G4cout << "Ntuple-2 created" << G4endl; << 140 << 141 // Create 3rd ntuple (id = 3) << 142 // << 143 man->CreateNtuple("n103", "Positron"); << 144 man->CreateNtupleDColumn("px"); << 145 man->CreateNtupleDColumn("py"); << 146 man->CreateNtupleDColumn("pz"); << 147 man->CreateNtupleDColumn("pe"); << 148 man->CreateNtupleDColumn("ppx"); << 149 man->CreateNtupleDColumn("ppy"); << 150 man->CreateNtupleDColumn("ppz"); << 151 man->FinishNtuple(); << 152 G4cout << "Ntuple-3 created" << G4endl; << 153 130 154 return; << 131 155 } << 132 156 133 157 134 158 135 159 136