// // ******************************************************************** // * 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 authors of this software system, nor their employing * // * institutes,nor the agencies 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 using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // /// \file B1RunAction.cc /// \brief Implementation of the B1RunAction class #include "B1RunAction.hh" #include "B1PrimaryGeneratorAction.hh" #include "B1DetectorConstruction.hh" // #include "B1Run.hh" #include "G4RunManager.hh" #include "G4Run.hh" #include "G4AccumulableManager.hh" #include "G4LogicalVolumeStore.hh" #include "G4LogicalVolume.hh" #include "G4UnitsTable.hh" #include "G4SystemOfUnits.hh" #include "MyLogger.hh" #include "g4analysis.hh" #include "B4Analysis.hh" //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... B1RunAction::B1RunAction() : G4UserRunAction(), fEdep(0.), fEdep2(0.) { // Register accumulable to the accumulable manager G4AccumulableManager* accumulableManager = G4AccumulableManager::Instance(); accumulableManager->RegisterAccumulable(fEdep); accumulableManager->RegisterAccumulable(fEdep2); //--------------------------------------- //----------------Create root file //------------------------------------ auto analysisManager = G4Analysis::ManagerInstance("root"); G4cout << "Using " << analysisManager->GetType() << G4endl; // Default settings analysisManager->SetNtupleMerging(true); // Note: merging ntuples is available only with Root output analysisManager->SetVerboseLevel(1); analysisManager->SetFileName("B1"); // Creating ntuple //ntupla id=0 analysisManager->CreateNtuple("DepositedEnergyNtupla", "Deposited_energy"); analysisManager->CreateNtupleDColumn("DepositedEnergy"); analysisManager->FinishNtuple(); //ntupla id=1 analysisManager->CreateNtuple("EnterParticlesNtupla", "Entering_particles"); analysisManager->CreateNtupleDColumn("EnterParticleID"); analysisManager->CreateNtupleDColumn("EnterParticleKinEn"); analysisManager->CreateNtupleDColumn("EnterParticleVertX"); analysisManager->CreateNtupleDColumn("EnterParticleVertY"); analysisManager->CreateNtupleDColumn("EnterParticleVertZ"); analysisManager->CreateNtupleDColumn("EnterParticleTotMom"); analysisManager->CreateNtupleDColumn("EnterParticleMomX"); analysisManager->CreateNtupleDColumn("EnterParticleMomY"); analysisManager->CreateNtupleDColumn("EnterParticleMomZ"); analysisManager->CreateNtupleDColumn("EnterParticleAngX"); analysisManager->CreateNtupleDColumn("EnterParticleAngY"); analysisManager->FinishNtuple(); // Create analysis manager // Create also a txt file with binned results of deposited energy G4AnalysisManager* analysisManagertxt = G4AnalysisManager::Instance(); G4cout << "Using " << analysisManagertxt->GetType() << G4endl; analysisManagertxt->CreateH1("Edep","Edep", 2500, 0., 2500*keV); // Creating ntuple for the txt file // analysisManagertxt->CreateNtuple("B4", "Edep"); analysisManagertxt->CreateNtupleDColumn("Edep"); analysisManagertxt->FinishNtuple(); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... B1RunAction::~B1RunAction() {} //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void B1RunAction::BeginOfRunAction(const G4Run*) { // inform the runManager to save random number seed G4RunManager::GetRunManager()->SetRandomNumberStore(false); // reset accumulables to their initial values G4AccumulableManager* accumulableManager = G4AccumulableManager::Instance(); accumulableManager->Reset(); // Get analysis manager auto analysisManager = G4AnalysisManager::Instance(); // Open an output file // The default file name is set in B5RunAction::B5RunAction(), // it can be overwritten in a macro // if ( run->GetRunID() == 0 ) { analysisManager->OpenFile(); //} //inform the runManager to save random number seed //G4RunManager::GetRunManager()->SetRandomNumberStore(true); // Get analysis manager G4AnalysisManager* analysisManagertxt = G4AnalysisManager::Instance("cvs"); // Open an output file // G4String fileName = "Edepbinned"; analysisManagertxt->OpenFile(fileName); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void B1RunAction::EndOfRunAction(const G4Run* run) { // save histograms & ntuple // auto analysisManager = G4AnalysisManager::Instance(); // if ( run->GetRunID() == 31 ) { analysisManager->Write(); analysisManager->CloseFile(); //} G4AnalysisManager* analysisManagertxt = G4AnalysisManager::Instance(); analysisManagertxt->Write(); analysisManagertxt->CloseFile(); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void B1RunAction::AddEdep(G4double edep) { fEdep += edep; fEdep2 += edep*edep; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......