Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-04 08:03:50

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 // TETSteppingAction.cc
0027 //
0028 // Author: Haegin Han
0029 // Reference: ICRP Publication 145. Ann. ICRP 49(3), 2020.
0030 // Geant4 Contributors: J. Allison and S. Guatelli
0031 //
0032 
0033 #include "TETSteppingAction.hh"
0034 
0035 TETSteppingAction::TETSteppingAction()
0036 : G4UserSteppingAction(), fKCarTolerance(1.0000000000000002e-07), fStepCounter(0),
0037   fCheckFlag(0)
0038 {}
0039 
0040 void TETSteppingAction::UserSteppingAction(const G4Step* step)
0041 {
0042  // Slightly move the particle when the step length of five continuous steps is
0043  // shorter than the tolerance (0.1 nm)
0044  //
0045  G4Track* theTrack = step->GetTrack();
0046  G4bool CheckingLength = (step->GetStepLength() < fKCarTolerance);
0047  if(CheckingLength)
0048  {
0049   ++fStepCounter;
0050   if( fCheckFlag && fStepCounter>=5 )
0051   {
0052    // kill the track if the particle is stuck even after the slight move
0053    // (this hardly occurs)
0054    theTrack->SetTrackStatus(fStopAndKill);
0055    fStepCounter=0;
0056    fCheckFlag=0;
0057 }
0058  else if(fStepCounter>=5 )
0059   {
0060    // if a particle is at the same position (step length < 0.1 nm) for five consecutive steps,
0061    // slightly move (0.1 nm) the stuck particle in the direction of momentum
0062    theTrack->SetPosition(theTrack->GetPosition() + theTrack->GetMomentumDirection()*fKCarTolerance);
0063    fCheckFlag=1;
0064   }
0065  }
0066 else fStepCounter=0;
0067 }