159 lines
5.6 KiB
C++
159 lines
5.6 KiB
C++
//
|
|
// ********************************************************************
|
|
// * 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 B1ConRunAction.cc
|
|
/// \brief Implementation of the B1ConRunAction class
|
|
|
|
#include "B1ConRunAction.hh"
|
|
#include "B1PrimaryGeneratorAction.hh"
|
|
#include "B1DetectorConstruction.hh"
|
|
#include "B1ConRun.hh"
|
|
|
|
#include "G4RunManager.hh"
|
|
#include "G4LogicalVolumeStore.hh"
|
|
#include "G4LogicalVolume.hh"
|
|
#include "G4UnitsTable.hh"
|
|
#include "G4SystemOfUnits.hh"
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
B1ConRunAction::B1ConRunAction()
|
|
: G4UserRunAction()
|
|
{
|
|
// add new units for dose
|
|
//
|
|
const G4double milligray = 1.e-3*gray;
|
|
const G4double microgray = 1.e-6*gray;
|
|
const G4double nanogray = 1.e-9*gray;
|
|
const G4double picogray = 1.e-12*gray;
|
|
|
|
new G4UnitDefinition("milligray", "milliGy" , "Dose", milligray);
|
|
new G4UnitDefinition("microgray", "microGy" , "Dose", microgray);
|
|
new G4UnitDefinition("nanogray" , "nanoGy" , "Dose", nanogray);
|
|
new G4UnitDefinition("picogray" , "picoGy" , "Dose", picogray);
|
|
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
B1ConRunAction::~B1ConRunAction()
|
|
{}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
G4Run* B1ConRunAction::GenerateRun()
|
|
{
|
|
return new B1ConRun;
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
void B1ConRunAction::BeginOfRunAction(const G4Run* aRun)
|
|
{
|
|
G4cout << "### Run " << aRun->GetRunID() << " start." << G4endl;
|
|
|
|
//inform the runManager to save random number seed
|
|
G4RunManager::GetRunManager()->SetRandomNumberStore(false);
|
|
|
|
if (IsMaster()) {
|
|
fdose_tally = new G4ConvergenceTester("DOSE_TALLY");
|
|
//fdose_tally = new G4ConvergenceTester();
|
|
}
|
|
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
void B1ConRunAction::EndOfRunAction(const G4Run* aRun)
|
|
{
|
|
G4int nofEvents = aRun->GetNumberOfEvent();
|
|
if (nofEvents == 0) return;
|
|
|
|
const B1ConRun* b1ConRun = static_cast<const B1ConRun*>(aRun);
|
|
|
|
// Compute dose
|
|
//
|
|
G4double edep = b1ConRun->GetEdep();
|
|
G4double edep2 = b1ConRun->GetEdep2();
|
|
G4double rms = edep2 - edep*edep/nofEvents;
|
|
if (rms > 0.) rms = std::sqrt(rms); else rms = 0.;
|
|
|
|
const B1DetectorConstruction* detectorConstruction
|
|
= static_cast<const B1DetectorConstruction*>
|
|
(G4RunManager::GetRunManager()->GetUserDetectorConstruction());
|
|
G4double mass = detectorConstruction->GetScoringVolume()->GetMass();
|
|
G4double dose = edep/mass;
|
|
G4double rmsDose = rms/mass;
|
|
|
|
// Run conditions
|
|
// note: There is no primary generator action object for "master"
|
|
// run manager for multi-threaded mode.
|
|
const B1PrimaryGeneratorAction* generatorAction
|
|
= static_cast<const B1PrimaryGeneratorAction*>
|
|
(G4RunManager::GetRunManager()->GetUserPrimaryGeneratorAction());
|
|
G4String runCondition;
|
|
if (generatorAction)
|
|
{
|
|
const G4ParticleGun* particleGun = generatorAction->GetParticleGun();
|
|
runCondition += particleGun->GetParticleDefinition()->GetParticleName();
|
|
runCondition += " of ";
|
|
G4double particleEnergy = particleGun->GetParticleEnergy();
|
|
runCondition += G4BestUnit(particleEnergy,"Energy");
|
|
}
|
|
|
|
// Print
|
|
//
|
|
if (IsMaster())
|
|
{
|
|
|
|
for ( G4int i = 0 ; i != b1ConRun->GetNumberOfEvent(); i++ ) {
|
|
G4double aDose = b1ConRun->GetEdepPerEvent(i)/mass/gray;
|
|
fdose_tally->AddScore( aDose );
|
|
}
|
|
|
|
fdose_tally->ShowResult();
|
|
fdose_tally->ShowHistory();
|
|
delete fdose_tally;
|
|
|
|
G4cout
|
|
<< "\n--------------------End of Global Run-----------------------";
|
|
}
|
|
else
|
|
{
|
|
G4cout
|
|
<< "\n--------------------End of Local Run------------------------";
|
|
}
|
|
G4cout
|
|
<< "\n The run consists of " << nofEvents << " "<< runCondition
|
|
<< "\n Dose in scoring volume : "
|
|
<< G4BestUnit(dose,"Dose") << " +- " << G4BestUnit(rmsDose,"Dose")
|
|
<< "\n------------------------------------------------------------\n"
|
|
<< G4endl;
|
|
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|