132 lines
5.2 KiB
C++
132 lines
5.2 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$
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Class Name: G4AdjointSteppingAction
|
|
// Author: L. Desorgher
|
|
// Organisation: SpaceIT GmbH
|
|
// Contract: ESA contract 21435/08/NL/AT
|
|
// Customer: ESA/ESTEC
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "G4AdjointSteppingAction.hh"
|
|
#include "G4Track.hh"
|
|
#include "G4PhysicalVolumeStore.hh"
|
|
#include "G4AffineTransform.hh"
|
|
#include "G4AdjointCrossSurfChecker.hh"
|
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
G4AdjointSteppingAction::G4AdjointSteppingAction()
|
|
: ext_sourceEMax(0.), start_event(false),
|
|
did_adj_part_reach_ext_source(false), last_ekin(0.), last_weight(0.),
|
|
prim_weight(0.), last_part_def(0), theUserAdjointSteppingAction(0)
|
|
{
|
|
theG4AdjointCrossSurfChecker = G4AdjointCrossSurfChecker::GetInstance();
|
|
}
|
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
G4AdjointSteppingAction::~G4AdjointSteppingAction()
|
|
{;}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
void G4AdjointSteppingAction::UserSteppingAction(const G4Step* aStep)
|
|
{
|
|
//Apply first the user adjoint stepping action
|
|
//---------------------------
|
|
if (theUserAdjointSteppingAction) theUserAdjointSteppingAction->UserSteppingAction(aStep);
|
|
|
|
G4Track* aTrack =aStep->GetTrack();
|
|
G4double nb_nuc=1.;
|
|
G4ParticleDefinition* thePartDef = aTrack->GetDefinition();
|
|
|
|
if (thePartDef->GetParticleType() == "adjoint_nucleus"){
|
|
nb_nuc=double(thePartDef->GetBaryonNumber());
|
|
}
|
|
//Kill conditions for adjoint particles reaching the maximum energy
|
|
//-----------------------------------------------------------------
|
|
if(aTrack->GetKineticEnergy() >= ext_sourceEMax*nb_nuc){
|
|
aTrack->SetTrackStatus(fStopAndKill);
|
|
did_adj_part_reach_ext_source=false;
|
|
return;
|
|
}
|
|
|
|
G4double weight_factor = aTrack->GetWeight()/prim_weight;
|
|
|
|
if ( (weight_factor>0 && weight_factor<=0) || weight_factor<= 1e-290 || weight_factor>1.e200)
|
|
{
|
|
//std::cout<<"Weight_factor problem! Value = "<<weight_factor<<std::endl;
|
|
aTrack->SetTrackStatus(fStopAndKill);
|
|
did_adj_part_reach_ext_source=false;
|
|
return;
|
|
}
|
|
|
|
|
|
//Kill conditions for surface crossing
|
|
//--------------------------------------
|
|
|
|
G4String surface_name;
|
|
G4double cos_to_surface;
|
|
G4bool GoingIn;
|
|
G4ThreeVector crossing_pos;
|
|
if (theG4AdjointCrossSurfChecker->CrossingOneOfTheRegisteredSurface(aStep, surface_name, crossing_pos, cos_to_surface, GoingIn) ){
|
|
|
|
//G4cout<<"Test_step11"<<std::endl;
|
|
//G4cout<<surface_name<<std::endl;
|
|
if (surface_name == "ExternalSource") {
|
|
//Registering still needed
|
|
did_adj_part_reach_ext_source=true;
|
|
aTrack->SetTrackStatus(fStopAndKill);
|
|
//now register the adjoint particles reaching the external surface
|
|
last_momentum =aTrack->GetMomentum();
|
|
last_ekin=aTrack->GetKineticEnergy();
|
|
last_weight = aTrack->GetWeight();
|
|
last_part_def = aTrack->GetDefinition();
|
|
last_pos = crossing_pos;
|
|
return;
|
|
}
|
|
else if (surface_name == "AdjointSource" && GoingIn) {
|
|
did_adj_part_reach_ext_source=false;
|
|
aTrack->SetTrackStatus(fStopAndKill);
|
|
return;
|
|
}
|
|
}
|
|
//Check for reaching out of world
|
|
if (aStep->GetPostStepPoint()->GetStepStatus() == fWorldBoundary) {
|
|
did_adj_part_reach_ext_source=true;
|
|
last_momentum =aTrack->GetMomentum();
|
|
last_ekin=aTrack->GetKineticEnergy();
|
|
last_weight = aTrack->GetWeight();
|
|
last_part_def = aTrack->GetDefinition();
|
|
last_pos = crossing_pos;
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|