Files
geant4/examples/extended/radioactivedecay/Activation/src/TrackingAction.cc
T
2025-12-05 08:54:02 +01:00

160 lines
5.4 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 TrackingAction.cc
/// \brief Implementation of the TrackingAction class
#include "TrackingAction.hh"
#include "EventAction.hh"
#include "HistoManager.hh"
#include "Run.hh"
#include "G4IonTable.hh"
#include "G4ParticleTypes.hh"
#include "G4RunManager.hh"
#include "G4StepStatus.hh"
#include "G4SystemOfUnits.hh"
#include "G4Track.hh"
#include "G4UnitsTable.hh"
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
TrackingAction::TrackingAction(EventAction* event) : fEventAction(event) {}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void TrackingAction::PreUserTrackingAction(const G4Track* track)
{
Run* run = static_cast<Run*>(G4RunManager::GetRunManager()->GetNonConstCurrentRun());
G4ParticleDefinition* particle = track->GetDefinition();
G4String name = particle->GetParticleName();
G4double meanLife = particle->GetPDGLifeTime();
G4double ekin = track->GetKineticEnergy();
fTimeBirth = track->GetGlobalTime();
// count secondary particles (with meanLife > 0)
if ((track->GetTrackID() > 1) && (meanLife != 0.)) run->ParticleCount(name, ekin, meanLife);
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void TrackingAction::PostUserTrackingAction(const G4Track* track)
{
Run* run = static_cast<Run*>(G4RunManager::GetRunManager()->GetNonConstCurrentRun());
G4AnalysisManager* analysis = G4AnalysisManager::Instance();
const G4ParticleDefinition* particle = track->GetParticleDefinition();
G4String name = particle->GetParticleName();
G4double meanLife = particle->GetPDGLifeTime();
G4double ekin = track->GetKineticEnergy();
fTimeEnd = track->GetGlobalTime();
if ((particle->GetPDGStable()) && (ekin == 0.)) fTimeEnd = DBL_MAX;
// count population of ions with meanLife > 0.
if ((G4IonTable::IsIon(particle)) && (meanLife != 0.)) {
G4int id = run->GetIonId(name);
G4double unit = analysis->GetH1Unit(id);
G4double tmin = analysis->GetH1Xmin(id) * unit;
G4double tmax = analysis->GetH1Xmax(id) * unit;
G4double binWidth = analysis->GetH1Width(id) * unit;
G4double weight = track->GetWeight();
G4double t1 = std::max(fTimeBirth, tmin);
G4double t2 = std::min(fTimeEnd, tmax);
for (G4double time = t1; time < t2; time += binWidth)
analysis->FillH1(id, time, weight);
}
// keep only emerging particles
G4StepStatus status = track->GetStep()->GetPostStepPoint()->GetStepStatus();
if (status != fWorldBoundary) return;
fEventAction->AddEflow(ekin);
run->ParticleFlux(name, ekin);
// histograms: energy flow and activities of emerging particles
G4int ih1 = 0, ih2 = 0;
G4String type = particle->GetParticleType();
G4double charge = particle->GetPDGCharge();
G4double time = track->GetGlobalTime();
G4double weight = track->GetWeight();
if (charge > 3.) {
ih1 = 10;
ih2 = 20;
}
else if (particle == G4Gamma::Gamma()) {
ih1 = 4;
ih2 = 14;
}
else if (particle == G4Electron::Electron()) {
ih1 = 5;
ih2 = 15;
}
else if (particle == G4Positron::Positron()) {
ih1 = 5;
ih2 = 15;
}
else if (particle == G4Neutron::Neutron()) {
ih1 = 6;
ih2 = 16;
}
else if (particle == G4Proton::Proton()) {
ih1 = 7;
ih2 = 17;
}
else if (particle == G4Deuteron::Deuteron()) {
ih1 = 8;
ih2 = 18;
}
else if (particle == G4Alpha::Alpha()) {
ih1 = 9;
ih2 = 19;
}
else if (type == "nucleus") {
ih1 = 10;
ih2 = 20;
}
else if (type == "baryon") {
ih1 = 11;
ih2 = 21;
}
else if (type == "meson") {
ih1 = 12;
ih2 = 22;
}
else if (type == "lepton") {
ih1 = 13;
ih2 = 23;
};
if (ih1 > 0) analysis->FillH1(ih1, ekin, weight);
if (ih2 > 0) analysis->FillH1(ih2, time, weight);
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......