Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-23 09:22:08

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 // This example is provided by the Geant4-DNA collaboration
0027 // Any report or published results obtained using the Geant4-DNA software
0028 // shall cite the following Geant4-DNA collaboration publication:
0029 // Med. Phys. 37 (2010) 4692-4708
0030 // The Geant4-DNA web site is available at http://geant4-dna.org
0031 //
0032 //---------------------------------------------------------------------------
0033 //
0034 // ClassName:   G4ElectronCapture
0035 //
0036 // Description: The process to kill e- to save CPU
0037 //
0038 // Author:      V.Ivanchenko 31 August 2010
0039 //
0040 //----------------------------------------------------------------------------
0041 //
0042 // Class description:
0043 //
0044 // G4ElectronCapture allows to remove unwanted e- from simulation in
0045 // order to improve CPU performance. There are two parameters:
0046 //
0047 // 1) low energy threshold for e- kinetic energy (default 0)
0048 // 2) the name of G4Region where process is active
0049 //
0050 //
0051 // If an electron track is killed then energy deposition is added to the step
0052 //
0053 /// \file G4ElectronCapture.hh
0054 /// \brief Definition of the G4ElectronCapture class
0055 
0056 #ifndef ElectronCapture_h
0057 #define ElectronCapture_h 1
0058 
0059 #include "G4ParticleChangeForGamma.hh"
0060 #include "G4VDiscreteProcess.hh"
0061 #include "globals.hh"
0062 
0063 class G4Region;
0064 
0065 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0066 
0067 class G4ElectronCapture : public G4VDiscreteProcess
0068 {
0069   public:
0070     G4ElectronCapture(const G4String& regName, G4double ekinlimit);
0071 
0072     virtual ~G4ElectronCapture();
0073 
0074     void SetKinEnergyLimit(G4double);
0075 
0076     virtual void BuildPhysicsTable(const G4ParticleDefinition&);
0077 
0078     virtual G4bool IsApplicable(const G4ParticleDefinition&);
0079 
0080     virtual G4double PostStepGetPhysicalInteractionLength(const G4Track& track,
0081                                                           G4double previousStepSize,
0082                                                           G4ForceCondition* condition);
0083 
0084     virtual G4VParticleChange* PostStepDoIt(const G4Track&, const G4Step&);
0085 
0086   protected:
0087     virtual G4double GetMeanFreePath(const G4Track&, G4double, G4ForceCondition*);
0088 
0089   private:
0090     // hide assignment operator as private
0091     G4ElectronCapture(const G4ElectronCapture&);
0092     G4ElectronCapture& operator=(const G4ElectronCapture& right);
0093 
0094     G4double fKinEnergyThreshold;
0095     G4String fRegionName;
0096     G4Region* fpRegion;
0097     G4ParticleChangeForGamma fParticleChange;
0098 };
0099 
0100 #endif