91 lines
3.3 KiB
C++
91 lines
3.3 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 Run.cc
|
|
/// \brief Implementation of the Run class
|
|
|
|
#include "Run.hh"
|
|
|
|
#include "Scorer.hh"
|
|
|
|
#include "G4Event.hh"
|
|
#include "G4HCofThisEvent.hh"
|
|
#include "G4RunManager.hh"
|
|
#include "G4SDManager.hh"
|
|
|
|
#include <map>
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.....
|
|
|
|
Run::Run() : G4Run()
|
|
{
|
|
auto mfdet = dynamic_cast<G4MultiFunctionalDetector*>(
|
|
G4SDManager::GetSDMpointer()->FindSensitiveDetector("mfDetector"));
|
|
fpDose = mfdet->GetPrimitive(0); // Dose
|
|
fpGvalues = mfdet->GetPrimitive(1); // G-values
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.....
|
|
|
|
void Run::RecordEvent(const G4Event* event)
|
|
{
|
|
if (event->IsAborted()) {
|
|
return;
|
|
}
|
|
// Hits collections
|
|
//
|
|
G4HCofThisEvent* pHCE = event->GetHCofThisEvent();
|
|
if (!pHCE) {
|
|
return;
|
|
}
|
|
|
|
auto evtMap = dynamic_cast<Scorer<Gvalues>*>(fpGvalues)->GetEventMap();
|
|
|
|
std::map<G4int, G4double*>::iterator itr;
|
|
|
|
for (itr = evtMap->GetMap()->begin(); itr != evtMap->GetMap()->end(); itr++) {
|
|
G4double edep = *(itr->second);
|
|
fSumEne += edep;
|
|
}
|
|
G4Run::RecordEvent(event);
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.....
|
|
|
|
void Run::Merge(const G4Run* aRun)
|
|
{
|
|
if (aRun == this) {
|
|
return;
|
|
}
|
|
const Run* localRun = dynamic_cast<const Run*>(aRun);
|
|
fSumEne += localRun->fSumEne;
|
|
auto masterScorer = dynamic_cast<Scorer<Gvalues>*>(this->fpGvalues);
|
|
auto localScorer = dynamic_cast<Scorer<Gvalues>*>(localRun->fpGvalues);
|
|
masterScorer->AbsorbResultsFromWorkerScorer(localScorer);
|
|
G4Run::Merge(aRun);
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.....
|