// // ******************************************************************** // * 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: F02SteppingAction.cc,v 1.6 2006/06/29 18:28:19 gunter Exp $ // GEANT4 tag $Name: geant4-09-04-ref-00 $ // // //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... #include "F02DetectorConstruction.hh" #include "G4EnergyLossTables.hh" #include "G4SteppingManager.hh" #include "G4TrackVector.hh" #include "F02SteppingAction.hh" #include "F02PrimaryGeneratorAction.hh" #include "F02EventAction.hh" #include "F02RunAction.hh" #include "G4Event.hh" #include "G4EventManager.hh" #include "F02SteppingMessenger.hh" #include "G4ios.hh" #include #include "G4UImanager.hh" ////////////////////////////////////////////////////////////////////////// F02SteppingAction::F02SteppingAction(F02DetectorConstruction* DET, F02EventAction* EA, F02RunAction* RA) :detector (DET),eventaction (EA),runaction (RA),steppingMessenger(NULL), IDold(-1) ,evnoold(-1) { steppingMessenger = new F02SteppingMessenger(this); } ////////////////////////////////////////////////////////////////////////// F02SteppingAction::~F02SteppingAction() { delete steppingMessenger ; } ///////////////////////////////////////////////////////////////////////////////// void F02SteppingAction::UserSteppingAction(const G4Step* aStep) { G4cout.precision(16) ; G4double Edep,Theta,Thetaback,Ttrans,Tback,Tsec,Egamma,xend,yend,zend,rend ; G4double Tkin, timeGlob, timeLoc, timeProp ; G4int evno = eventaction->GetEventno() ; IDnow = evno+10000*(aStep->GetTrack()->GetTrackID())+ 100000000*(aStep->GetTrack()->GetParentID()); if(IDnow != IDold) { IDold=IDnow ; if( (((aStep->GetTrack()->GetDynamicParticle()->GetDefinition()-> GetParticleName()) == "e-") && ((aStep->GetTrack()->GetTrackID() != 1) || (aStep->GetTrack()->GetParentID() != 0)) ) || (((aStep->GetTrack()->GetDynamicParticle()->GetDefinition()-> GetParticleName()) == "e+") && ((aStep->GetTrack()->GetTrackID() != 1) || (aStep->GetTrack()->GetParentID() != 0)) ) ) runaction->Fillvertexz(aStep->GetTrack()->GetVertexPosition().x()); if(aStep->GetPreStepPoint()->GetPhysicalVolume()->GetName()=="Absorber") { if(((aStep->GetTrack()->GetDynamicParticle()->GetDefinition()-> GetParticleName()) == "e-") && ((aStep->GetTrack()->GetTrackID() != 1) || (aStep->GetTrack()->GetParentID() != 0)) ) { eventaction->AddCharged() ; eventaction->AddE() ; Tsec = aStep->GetTrack()->GetKineticEnergy() ; // !!!!!!!!!!!! Tsec += aStep->GetTotalEnergyDeposit() ; // !!!!!!!!!!!! runaction->FillTsec(Tsec) ; } else if(((aStep->GetTrack()->GetDynamicParticle()->GetDefinition()-> GetParticleName()) == "e+") && ((aStep->GetTrack()->GetTrackID() != 1) || (aStep->GetTrack()->GetParentID() != 0)) ) { eventaction->AddCharged() ; eventaction->AddP() ; Tsec = aStep->GetTrack()->GetKineticEnergy() ; // !!!!!!!!!!!! Tsec += aStep->GetTotalEnergyDeposit() ; // !!!!!!!!!!!! runaction->FillTsec(Tsec) ; } else if(((aStep->GetTrack()->GetDynamicParticle()->GetDefinition()-> GetParticleName()) == "gamma") && ((aStep->GetTrack()->GetTrackID() != 1) || (aStep->GetTrack()->GetParentID() != 0)) ) { eventaction->AddNeutral() ; } } } if(aStep->GetPreStepPoint()->GetPhysicalVolume()->GetName()=="Absorber") { if(((aStep->GetTrack()->GetDynamicParticle()->GetDefinition()-> GetParticleName()) == "e-") || ((aStep->GetTrack()->GetDynamicParticle()->GetDefinition()-> GetParticleName()) == "e+")) eventaction->CountStepsCharged() ; if ((aStep->GetTrack()->GetDynamicParticle()->GetDefinition()-> GetParticleName()) == "gamma") eventaction->CountStepsNeutral() ; } // It is main condition if ( (((aStep->GetTrack()->GetTrackID() == 1) && (aStep->GetTrack()->GetParentID()== 0)) || (aStep->GetTrack()->GetDynamicParticle()->GetDefinition()-> GetParticleName() == F02PrimaryGeneratorAction::GetPrimaryName())) && (aStep->GetPreStepPoint()->GetPhysicalVolume()->GetName()=="Absorber") && (aStep->GetTrack()->GetNextVolume()->GetName()=="World") && (aStep->GetPostStepPoint()->GetProcessDefinedStep() ->GetProcessName() == "Transportation") && (aStep->GetTrack()->GetMomentumDirection().z()>0.) ) { eventaction ->SetTr(); Theta = std::acos(aStep->GetTrack()->GetMomentumDirection().z()) ; runaction ->FillTh(Theta) ; Ttrans = aStep->GetTrack()->GetKineticEnergy() ; runaction ->FillTt(Ttrans) ; yend = aStep->GetTrack()->GetPosition().y() ; xend = aStep->GetTrack()->GetPosition().x() ; rend = std::sqrt(yend*yend+xend*xend) ; runaction ->FillR(rend); timeGlob = aStep->GetTrack()->GetGlobalTime() ; timeLoc = aStep->GetTrack()->GetLocalTime() ; timeProp = aStep->GetTrack()->GetProperTime() ; // timeGlob = aStep->GetPostStepPoint()->GetGlobalTime() ; runaction ->FillTglob(timeGlob); G4cout<<"aStep->GetTrack()->GetGlobalTime() = "<GetTrack()->GetLocalTime() = "<GetTrack()->GetProperTime() = "<GetTrack()->GetTrackID() == 1) && (aStep->GetTrack()->GetParentID()== 0)) || (aStep->GetTrack()->GetDynamicParticle()->GetDefinition()-> GetParticleName() == F02PrimaryGeneratorAction::GetPrimaryName())) && (aStep->GetPreStepPoint()->GetPhysicalVolume()->GetName()=="Absorber") && (aStep->GetTrack()->GetNextVolume()->GetName()=="World") && (aStep->GetPostStepPoint()->GetProcessDefinedStep() ->GetProcessName() == "Transportation") && (aStep->GetTrack()->GetMomentumDirection().z()<0.) ) { eventaction->SetRef(); Thetaback = std::acos(aStep->GetTrack()->GetMomentumDirection().x()) ; Thetaback -= 0.5*pi ; runaction->FillThBack(Thetaback) ; Tback = aStep->GetTrack()->GetKineticEnergy() ; runaction->FillTb(Tback) ; } if ( ((aStep->GetPreStepPoint()->GetPhysicalVolume()->GetName()=="Absorber") && (aStep->GetTrack()->GetNextVolume()->GetName()=="World") && (aStep->GetPostStepPoint()->GetProcessDefinedStep() ->GetProcessName() == "Transportation") && (aStep->GetTrack()->GetMomentumDirection().x()>0.) && (aStep->GetTrack()->GetDynamicParticle()->GetDefinition() ->GetParticleName() == "gamma")) ) { Egamma = aStep->GetTrack()->GetKineticEnergy() ; runaction->FillGammaSpectrum(Egamma) ; } } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....