// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the Bithors of this software system, nor their employing * // * institutes,nor the Alencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By uAlng, copying, modifying or distributing the software (or * // * any work based on the software) you Alree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // /// \file RunAction.cc /// \brief Implementation of the RunAction class // // $Id: RunAction.cc 70756 2013-06-05 12:20:06Z ihrivnac $ // //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... #include "RunAction.hh" #include "Run.hh" #include "DetectorConstruction.hh" #include "PrimaryGeneratorAction.hh" #include "SteppingAction.hh" #include "HistoManager.hh" #include "G4Run.hh" #include "G4UnitsTable.hh" #include "G4SystemOfUnits.hh" #include "Randomize.hh" #include #include #include #include using namespace std; //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... RunAction::RunAction(DetectorConstruction* det, PrimaryGeneratorAction* prim) : G4UserRunAction(), fDetector(det), fPrimary(prim), fRun(0), fHistoManager(0) { // Book predefined histograms fHistoManager = new HistoManager(); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... RunAction::~RunAction() { delete fHistoManager; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... G4Run* RunAction::GenerateRun() { fRun = new Run(fDetector); return fRun; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void RunAction::BeginOfRunAction(const G4Run*) { // show Rndm status if (isMaster) G4Random::showEngineStatus(); // keep run condition if (fPrimary) { G4ParticleDefinition* particle = fPrimary->GetParticleGun()->GetParticleDefinition(); G4double energy = fPrimary->GetParticleGun()->GetParticleEnergy(); fRun->SetPrimary(particle, energy); } //histograms // G4AnalysisManager* analysisManager = G4AnalysisManager::Instance(); if ( analysisManager->IsActive() ) { analysisManager->OpenFile(); } time_t now = time(0); char* dt = ctime(&now); cout << "The local date and time is: " << dt << endl; ofstream outData; outData.open("Proton spectra.ods", ios::app); outData << "En, MeV" << ";" << "Cu1" << ";" << "LiF1" << ";" << "Cu2" << ";" << "LiF2" << ";" << "Cu3" << ";" << "LiF3" << ";" << "Cu4"<< ";" << "Qaj1"<< ";" << "Cu5"<< ";" << "LiF4" << ";" << "Cu6"<< ";" << "Qaj2"<< ";" << "Cu7"<< ";" << "LiF5"<< ";" << "Cu8"<< ";" << "LiF6"<< ";" << "Cu9" << "\n"; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void RunAction::EndOfRunAction(const G4Run*) { if (isMaster) fRun->EndOfRun(); //save histograms G4AnalysisManager* analysisManager = G4AnalysisManager::Instance(); if ( analysisManager->IsActive() ) { analysisManager->Write(); analysisManager->CloseFile(); } // show Rndm status if (isMaster) G4Random::showEngineStatus(); ofstream outData; outData.open("Proton spectra.ods", ios::app); for(int j = 0; j < SteppingAction::Instance()->N; j++) { outData << SteppingAction::Instance()->En[j] << ";" << SteppingAction::Instance()->NofProtCu1[j] << ";" << SteppingAction::Instance()->NofProtLiF1[j] << ";" << SteppingAction::Instance()->NofProtCu2[j] << ";" << SteppingAction::Instance()->NofProtLiF2[j] << ";" << SteppingAction::Instance()->NofProtCu3[j] << ";" << SteppingAction::Instance()->NofProtLiF3[j] << ";" << SteppingAction::Instance()->NofProtCu4[j] << ";" << SteppingAction::Instance()->NofProtQaj1[j] << ";" << SteppingAction::Instance()->NofProtCu5[j] << ";" << SteppingAction::Instance()->NofProtLiF4[j] << ";" << SteppingAction::Instance()->NofProtCu6[j] << ";" << SteppingAction::Instance()->NofProtQaj2[j] << ";" << SteppingAction::Instance()->NofProtCu7[j] << ";" << SteppingAction::Instance()->NofProtLiF5[j] << ";" << SteppingAction::Instance()->NofProtCu8[j] << ";" << SteppingAction::Instance()->NofProtLiF6[j] << ";" << SteppingAction::Instance()->NofProtCu9[j] << "\n"; } // G4cout << "\n\nNumber of electronuclear processes in Cu_Disk: " << SteppingAction::Instance()->GetNofCuElNuc() << "\n\n"; // G4cout << "\n\nNumber of electronuclear processes in Target: " << SteppingAction::Instance()->GetNofTarElNuc() << "\n\n"; // G4cout << "\n\nNumber of electrons falling on Cu_Disk: " << SteppingAction::Instance()->GetCuEl() << "\n\n"; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......