00001 // 00002 // ******************************************************************** 00003 // * License and Disclaimer * 00004 // * * 00005 // * The Geant4 software is copyright of the Copyright Holders of * 00006 // * the Geant4 Collaboration. It is provided under the terms and * 00007 // * conditions of the Geant4 Software License, included in the file * 00008 // * LICENSE and available at http://cern.ch/geant4/license . These * 00009 // * include a list of copyright holders. * 00010 // * * 00011 // * Neither the authors of this software system, nor their employing * 00012 // * institutes,nor the agencies providing financial support for this * 00013 // * work make any representation or warranty, express or implied, * 00014 // * regarding this software system or assume any liability for its * 00015 // * use. Please see the license in the file LICENSE and URL above * 00016 // * for the full disclaimer and the limitation of liability. * 00017 // * * 00018 // * This code implementation is the result of the scientific and * 00019 // * technical work of the GEANT4 collaboration. * 00020 // * By using, copying, modifying or distributing the software (or * 00021 // * any work based on the software) you agree to acknowledge its * 00022 // * use in resulting scientific publications, and indicate your * 00023 // * acceptance of all terms of the Geant4 Software license. * 00024 // ******************************************************************** 00025 // 00026 // 00027 // -------------------------------------------------------------- 00028 // GEANT 4 00029 // 00030 // For information related to this code contact: Alex Howard 00031 // e-mail: a.s.howard@ic.ac.uk 00032 // -------------------------------------------------------------- 00033 // Comments 00034 // 00035 // by A. Howard and H. Araujo 00036 // (27th November 2001) 00037 // 00038 // MaxTimeCuts program 00039 // -------------------------------------------------------------- 00040 00041 #include "MaxTimeCuts.hh" 00042 00043 #include "G4PhysicalConstants.hh" 00044 #include "G4Step.hh" 00045 #include "G4UserLimits.hh" 00046 #include "G4VParticleChange.hh" 00047 #include "G4EnergyLossTables.hh" 00048 00049 00050 MaxTimeCuts::MaxTimeCuts(const G4String& aName) 00051 : SpecialCuts(aName) 00052 { 00053 if (verboseLevel>1) { 00054 G4cout << GetProcessName() << " is created "<< G4endl; 00055 } 00056 SetProcessType(fUserDefined); 00057 } 00058 00059 MaxTimeCuts::~MaxTimeCuts() 00060 {} 00061 00062 MaxTimeCuts::MaxTimeCuts(MaxTimeCuts& ) : SpecialCuts() 00063 {} 00064 00065 00066 G4double MaxTimeCuts::PostStepGetPhysicalInteractionLength( 00067 const G4Track& aTrack, 00068 G4double , 00069 G4ForceCondition* condition 00070 ) 00071 { 00072 // condition is set to "Not Forced" 00073 *condition = NotForced; 00074 00075 G4double proposedStep = DBL_MAX; 00076 // get the pointer to UserLimits 00077 G4UserLimits* pUserLimits = aTrack.GetVolume()->GetLogicalVolume()->GetUserLimits(); 00078 const G4DynamicParticle* aParticle = aTrack.GetDynamicParticle(); 00079 00080 // can apply cuts for specific particles - use if(particleDef): 00081 // G4ParticleDefinition* aParticleDef = aTrack.GetDefinition(); 00082 00083 // G4cout << " Time: " << pUserLimits->GetUserMaxTime(aTrack) << G4endl; 00084 00085 if (pUserLimits) { 00086 G4double temp = DBL_MAX; 00087 //max time limit 00088 G4double dTime= (pUserLimits->GetUserMaxTime(aTrack) - aTrack.GetGlobalTime()); 00089 if (dTime < 0. ) { 00090 proposedStep = 0.; 00091 } else { 00092 G4double beta = (aParticle->GetTotalMomentum())/(aParticle->GetTotalEnergy()); 00093 temp = beta*c_light*dTime; 00094 if (proposedStep > temp) proposedStep = temp; 00095 } 00096 00097 } 00098 return proposedStep; 00099 }