90 lines
3.8 KiB
C++
90 lines
3.8 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. *
|
|
// ********************************************************************
|
|
//
|
|
// $Id: TrackingAction.cc,v 1.10 2006/06/29 16:37:36 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-08-02 $
|
|
//
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
#include "TrackingAction.hh"
|
|
#include "PrimaryGeneratorAction.hh"
|
|
#include "RunAction.hh"
|
|
#include "HistoManager.hh"
|
|
|
|
#include "G4Track.hh"
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
TrackingAction::TrackingAction(PrimaryGeneratorAction* prim, RunAction* run,
|
|
HistoManager* histo)
|
|
:primary(prim), runAction(run), histoManager(histo)
|
|
{ }
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
void TrackingAction::PreUserTrackingAction(const G4Track*)
|
|
{
|
|
// G4cout << "ID= " << aTrack->GetTrackID() << " e(MeV)= "
|
|
// << aTrack->GetDynamicParticle()->GetKineticEnergy()/MeV << " "
|
|
// << aTrack->GetDynamicParticle()->GetDefinition()->GetParticleName()
|
|
// << G4endl;
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
void TrackingAction::PostUserTrackingAction(const G4Track* aTrack)
|
|
{
|
|
//increase nb of processed tracks
|
|
//count nb of steps of this track
|
|
G4int nbSteps = aTrack->GetCurrentStepNumber();
|
|
G4double Trleng = aTrack->GetTrackLength();
|
|
|
|
if (aTrack->GetDefinition()->GetPDGCharge() == 0.) {
|
|
runAction->CountTraks0(1);
|
|
runAction->CountSteps0(nbSteps);
|
|
|
|
} else {
|
|
runAction->CountTraks1(1);
|
|
runAction->CountSteps1(nbSteps);
|
|
}
|
|
|
|
//true and projected ranges for primary particle
|
|
if (aTrack->GetTrackID() == 1) {
|
|
runAction->AddTrueRange(Trleng);
|
|
G4ThreeVector vertex = primary->GetParticleGun()->GetParticlePosition();
|
|
G4ThreeVector position = aTrack->GetPosition() - vertex;
|
|
runAction->AddProjRange(position.x());
|
|
runAction->AddTransvDev(position.y());
|
|
runAction->AddTransvDev(position.z());
|
|
|
|
histoManager->FillHisto(1,Trleng);
|
|
histoManager->FillHisto(2,(float)nbSteps);
|
|
}
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|