// // ******************************************************************** // * 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 SteppingAction.cc /// \brief Implementation of the SteppingAction class // // //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... #include "SteppingAction.hh" #include "Run.hh" #include "EventAction.hh" #include "HistoManager.hh" #include "G4RunManager.hh" //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... SteppingAction::SteppingAction(EventAction* event) : G4UserSteppingAction(), fEventAction(event) { } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... SteppingAction::~SteppingAction() { } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void SteppingAction::UserSteppingAction(const G4Step* aStep) { // count processes // const G4StepPoint* prePoint = aStep->GetPreStepPoint(); G4ThreeVector pos1 = prePoint->GetPosition(); const G4StepPoint* endPoint = aStep->GetPostStepPoint(); const G4VProcess* process = endPoint->GetProcessDefinedStep(); Run* run = static_cast( G4RunManager::GetRunManager()->GetNonConstCurrentRun()); run->CountProcesses(process); G4int eventNumber = G4RunManager::GetRunManager()-> GetCurrentEvent()->GetEventID(); G4Track* track = aStep->GetTrack(); G4String ParticleName = track->GetDynamicParticle()->GetParticleDefinition()->GetParticleName(); const G4VPhysicalVolume* currentVolume1 = aStep->GetPreStepPoint()-> GetPhysicalVolume(); G4double KineticEnergy =track->GetKineticEnergy(); G4cout<<"EventNumber= "<GetName()<AddEdep(edepStep); fEventAction->AddEdep(KineticEnergy); // thisline G4int eventNumber = G4RunManager::GetRunManager()-> GetCurrentEvent()->GetEventID(); // thisline G4Track* track = aStep->GetTrack(); //thisline G4double KineticEnergy =track->GetKineticEnergy(); //thisline G4String ParticleName = track->GetDynamicParticle()->GetParticleDefinition()->GetParticleName(); //thisline const G4VPhysicalVolume* currentVolume1 = aStep->GetPreStepPoint()-> GetPhysicalVolume(); // G4cout<<"currentVolume1====== "<GetName()<GetName()<GetName() == "BeO" && ParticleName == "neutron") //if (currentVolume1->GetName() == "World" && ParticleName == "alpha") { // G4cout<<"EnergDeposition "<GetPreStepPoint()->GetKineticEnergy()-step->GetPostStepPoint()->GetKineticEnergy(); // G4cout<<"EnDep = "<GetTotalEnergyDeposit()+ step->GetNonIonizingEnergyDeposit(); // EnDep +=step->GetNonIonizingEnergyDeposit(); /* G4ThreeVector pos1 = thePrePoint->GetPosition(); G4ThreeVector pos2 = thePostPoint->GetPosition(); G4ThreeVector pos=(pos1+pos2)/2.; xpos = pos2.x(); ypos = pos2.y(); zpos = pos2.z();*/ } } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......