| [819] | 1 | //
|
|---|
| 2 | // ********************************************************************
|
|---|
| 3 | // * License and Disclaimer *
|
|---|
| 4 | // * *
|
|---|
| 5 | // * The Geant4 software is copyright of the Copyright Holders of *
|
|---|
| 6 | // * the Geant4 Collaboration. It is provided under the terms and *
|
|---|
| 7 | // * conditions of the Geant4 Software License, included in the file *
|
|---|
| 8 | // * LICENSE and available at http://cern.ch/geant4/license . These *
|
|---|
| 9 | // * include a list of copyright holders. *
|
|---|
| 10 | // * *
|
|---|
| 11 | // * Neither the authors of this software system, nor their employing *
|
|---|
| 12 | // * institutes,nor the agencies providing financial support for this *
|
|---|
| 13 | // * work make any representation or warranty, express or implied, *
|
|---|
| 14 | // * regarding this software system or assume any liability for its *
|
|---|
| 15 | // * use. Please see the license in the file LICENSE and URL above *
|
|---|
| 16 | // * for the full disclaimer and the limitation of liability. *
|
|---|
| 17 | // * *
|
|---|
| 18 | // * This code implementation is the result of the scientific and *
|
|---|
| 19 | // * technical work of the GEANT4 collaboration. *
|
|---|
| 20 | // * By using, copying, modifying or distributing the software (or *
|
|---|
| 21 | // * any work based on the software) you agree to acknowledge its *
|
|---|
| 22 | // * use in resulting scientific publications, and indicate your *
|
|---|
| 23 | // * acceptance of all terms of the Geant4 Software license. *
|
|---|
| 24 | // ********************************************************************
|
|---|
| 25 | //
|
|---|
| 26 | // $Id: G4UserSpecialCuts.hh,v 1.11 2007/06/01 07:53:26 ahoward Exp $
|
|---|
| [1228] | 27 | // GEANT4 tag $Name: geant4-09-03 $
|
|---|
| [819] | 28 | //
|
|---|
| 29 | // class description
|
|---|
| 30 | //
|
|---|
| 31 | // A "process" to be registered to the process manager of each particle,
|
|---|
| 32 | // in the UserPhysicsList, in order to take into account the user limits
|
|---|
| 33 | // defined in the G4UserLimits object attached to a logical volume.
|
|---|
| 34 |
|
|---|
| 35 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|---|
| 36 |
|
|---|
| 37 | #ifndef G4UserSpecialCuts_h
|
|---|
| 38 | #define G4UserSpecialCuts_h 1
|
|---|
| 39 |
|
|---|
| 40 | #include "G4ios.hh"
|
|---|
| 41 | #include "globals.hh"
|
|---|
| 42 | #include "G4VProcess.hh"
|
|---|
| 43 |
|
|---|
| 44 | class G4LossTableManager;
|
|---|
| 45 |
|
|---|
| 46 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|---|
| 47 |
|
|---|
| 48 | class G4UserSpecialCuts : public G4VProcess
|
|---|
| 49 | {
|
|---|
| 50 | public: // with description
|
|---|
| 51 |
|
|---|
| 52 | G4UserSpecialCuts(const G4String& processName ="UserSpecialCut" );
|
|---|
| 53 |
|
|---|
| 54 | virtual ~G4UserSpecialCuts();
|
|---|
| 55 |
|
|---|
| 56 | virtual G4double PostStepGetPhysicalInteractionLength(
|
|---|
| 57 | const G4Track& track,
|
|---|
| 58 | G4double previousStepSize,
|
|---|
| 59 | G4ForceCondition* condition
|
|---|
| 60 | );
|
|---|
| 61 |
|
|---|
| 62 | virtual G4VParticleChange* PostStepDoIt(
|
|---|
| 63 | const G4Track& ,
|
|---|
| 64 | const G4Step&
|
|---|
| 65 | );
|
|---|
| 66 |
|
|---|
| 67 | public: // without description
|
|---|
| 68 |
|
|---|
| 69 | // no operation in AtRestGPIL
|
|---|
| 70 | virtual G4double AtRestGetPhysicalInteractionLength(
|
|---|
| 71 | const G4Track& ,
|
|---|
| 72 | G4ForceCondition*
|
|---|
| 73 | ){ return -1.0; };
|
|---|
| 74 |
|
|---|
| 75 | // no operation in AtRestDoIt
|
|---|
| 76 | virtual G4VParticleChange* AtRestDoIt(
|
|---|
| 77 | const G4Track& ,
|
|---|
| 78 | const G4Step&
|
|---|
| 79 | ){return 0;};
|
|---|
| 80 |
|
|---|
| 81 | // no operation in AlongStepGPIL
|
|---|
| 82 | virtual G4double AlongStepGetPhysicalInteractionLength(
|
|---|
| 83 | const G4Track&,
|
|---|
| 84 | G4double ,
|
|---|
| 85 | G4double ,
|
|---|
| 86 | G4double& ,
|
|---|
| 87 | G4GPILSelection*
|
|---|
| 88 | ){ return -1.0; };
|
|---|
| 89 |
|
|---|
| 90 | // no operation in AlongStepDoIt
|
|---|
| 91 | virtual G4VParticleChange* AlongStepDoIt(
|
|---|
| 92 | const G4Track& ,
|
|---|
| 93 | const G4Step&
|
|---|
| 94 | ) {return 0;};
|
|---|
| 95 |
|
|---|
| 96 | private:
|
|---|
| 97 |
|
|---|
| 98 | // hide assignment operator as private
|
|---|
| 99 | G4UserSpecialCuts(G4UserSpecialCuts&);
|
|---|
| 100 | G4UserSpecialCuts& operator=(const G4UserSpecialCuts& right);
|
|---|
| 101 |
|
|---|
| 102 | G4LossTableManager* theLossTableManager;
|
|---|
| 103 |
|
|---|
| 104 | };
|
|---|
| 105 |
|
|---|
| 106 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|---|
| 107 |
|
|---|
| 108 | #endif
|
|---|
| 109 |
|
|---|