Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-04 08:05:18

0001 //
0002 // ********************************************************************
0003 // * License and Disclaimer                                           *
0004 // *                                                                  *
0005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
0006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
0007 // * conditions of the Geant4 Software License,  included in the file *
0008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
0009 // * include a list of copyright holders.                             *
0010 // *                                                                  *
0011 // * Neither the authors of this software system, nor their employing *
0012 // * institutes,nor the agencies providing financial support for this *
0013 // * work  make  any representation or  warranty, express or implied, *
0014 // * regarding  this  software system or assume any liability for its *
0015 // * use.  Please see the license in the file  LICENSE  and URL above *
0016 // * for the full disclaimer and the limitation of liability.         *
0017 // *                                                                  *
0018 // * This  code  implementation is the result of  the  scientific and *
0019 // * technical work of the GEANT4 collaboration.                      *
0020 // * By using,  copying,  modifying or  distributing the software (or *
0021 // * any work based  on the software)  you  agree  to acknowledge its *
0022 // * use  in  resulting  scientific  publications,  and indicate your *
0023 // * acceptance of all terms of the Geant4 Software license.          *
0024 // ********************************************************************
0025 //
0026 /// \file TrackingAction.cc
0027 /// \brief Implementation of the TrackingAction class
0028 //
0029 //
0030 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0031 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0032 
0033 #include "TrackingAction.hh"
0034 
0035 #include "EventAction.hh"
0036 #include "HistoManager.hh"
0037 #include "Run.hh"
0038 #include "TrackingMessenger.hh"
0039 
0040 #include "G4RunManager.hh"
0041 #include "G4StepStatus.hh"
0042 #include "G4Track.hh"
0043 
0044 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0045 
0046 TrackingAction::TrackingAction(EventAction* evt) : fTrackMessenger(nullptr), fEventAct(evt)
0047 {
0048   fTrackMessenger = new TrackingMessenger(this);
0049 }
0050 
0051 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0052 
0053 TrackingAction::~TrackingAction()
0054 {
0055   delete fTrackMessenger;
0056 }
0057 
0058 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0059 
0060 void TrackingAction::PreUserTrackingAction(const G4Track* track)
0061 {
0062   // count secondary particles
0063   if (track->GetTrackID() == 1) return;
0064 
0065   Run* run = static_cast<Run*>(G4RunManager::GetRunManager()->GetNonConstCurrentRun());
0066 
0067   G4int iabs = track->GetTouchableHandle()->GetCopyNumber();
0068   G4String name = track->GetDefinition()->GetParticleName();
0069   G4double meanLife = track->GetDefinition()->GetPDGLifeTime();
0070   G4double energy = track->GetKineticEnergy();
0071   if (fParticleCount && (iabs > 0)) run->ParticleCount(iabs, name, energy, meanLife);
0072 }
0073 
0074 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0075 
0076 void TrackingAction::PostUserTrackingAction(const G4Track* track)
0077 {
0078   // get Run
0079   Run* run = static_cast<Run*>(G4RunManager::GetRunManager()->GetNonConstCurrentRun());
0080 
0081   // where are we ?
0082   G4StepStatus status = track->GetStep()->GetPostStepPoint()->GetStepStatus();
0083 
0084   // status of primary particle : absorbed, transmited, reflected ?
0085   if (track->GetTrackID() == 1) {
0086     G4int flag = 0;
0087     if (status == fWorldBoundary) {
0088       if (track->GetMomentumDirection().x() > 0.)
0089         flag = 1;
0090       else
0091         flag = 2;
0092     }
0093     run->AddTrackStatus(flag);
0094   }
0095 
0096   // keep only emerging particles
0097   if (status != fWorldBoundary) return;
0098 
0099   // count particles
0100   const G4ParticleDefinition* particle = track->GetParticleDefinition();
0101   G4String name = particle->GetParticleName();
0102   G4double meanLife = particle->GetPDGLifeTime();
0103   G4double energy = track->GetKineticEnergy();
0104   run->ParticleCount(0, name, energy, meanLife);
0105   fEventAct->AddEleak(energy);
0106 
0107   ////G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
0108 }
0109 
0110 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......