Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // G4VContinuousProcess << 27 // 26 // 28 // Class description: << 27 // $Id$ 29 // 28 // 30 // Abstract class which defines the public beh << 29 // 31 // Continuous physics interactions. << 30 // ------------------------------------------------------------ >> 31 // GEANT 4 class header file >> 32 // >> 33 // History: first implementation, based on object model of >> 34 // 2nd December 1995, G.Cosmo >> 35 // add G4VContinuousProcess(const G4String&) 24 Jul 1996, Hisaya kurashige >> 36 // >> 37 // Class Description >> 38 // Abstract class which defines the public behavior of >> 39 // Continuous physics interactions. >> 40 // >> 41 // ------------------------------------------------------------ >> 42 // New Physics scheme 18 Dec. 1996 H.Kurahige >> 43 // ------------------------------------------------------------ >> 44 // modified 25 Feb. 1997 H.Kurahige >> 45 // modified 8 Mar. 1997 H.Kurashige >> 46 // modified 22 Mar. 1997 H.Kurashige >> 47 // modified 26 Mar. 1997 H.Kurashige >> 48 // modified AlongStepGPIL etc. 17 Dec. 1997 H.Kurashige >> 49 // fix bugs in GetGPILSelection() 24 Jan. 1998 H.Kurashige >> 50 // modified for new ParticleChange 12 Mar. 1998 H.Kurashige 32 51 33 // Authors: << 52 #ifndef G4VContinuousProcess_h 34 // - 2 December 1995, G.Cosmo - First implemen << 53 #define G4VContinuousProcess_h 1 35 // - 18 December 1996, H.Kurashige - New Physi << 36 // ------------------------------------------- << 37 #ifndef G4VContinuousProcess_hh << 38 #define G4VContinuousProcess_hh 1 << 39 54 40 #include "globals.hh" 55 #include "globals.hh" 41 #include "G4ios.hh" 56 #include "G4ios.hh" 42 57 43 #include "G4VProcess.hh" 58 #include "G4VProcess.hh" 44 59 45 class G4VContinuousProcess : public G4VProcess 60 class G4VContinuousProcess : public G4VProcess 46 { 61 { >> 62 // Abstract class which defines the public behavior of >> 63 // Continuous physics interactions. 47 public: 64 public: 48 65 49 G4VContinuousProcess(const G4String& aName << 66 G4VContinuousProcess(const G4String& , 50 G4ProcessType aType = << 67 G4ProcessType aType = fNotDefined ); 51 G4VContinuousProcess(G4VContinuousProcess << 68 G4VContinuousProcess(G4VContinuousProcess &); 52 69 53 virtual ~G4VContinuousProcess(); << 70 virtual ~G4VContinuousProcess(); 54 71 55 G4VContinuousProcess& operator=(const G4VC << 72 public: // with description 56 << 73 virtual G4double AlongStepGetPhysicalInteractionLength( 57 virtual G4double AlongStepGetPhysicalInter << 58 const G4Track& tr 74 const G4Track& track, 59 G4double previou << 75 G4double previousStepSize, 60 G4double current << 76 G4double currentMinimumStep, 61 G4double& propose << 77 G4double& proposedSafety, 62 G4GPILSelection* 78 G4GPILSelection* selection 63 ); << 79 ); 64 80 65 virtual G4VParticleChange* AlongStepDoIt( << 81 virtual G4VParticleChange* AlongStepDoIt( 66 const G4Track& , << 82 const G4Track& , 67 const G4Step& << 83 const G4Step& 68 ); << 84 ); 69 85 70 // no operation in AtRestDoIt and PostStep << 86 // no operation in AtRestDoIt and PostStepDoIt 71 // << 87 virtual G4double PostStepGetPhysicalInteractionLength( 72 virtual G4double PostStepGetPhysicalIntera << 73 const G4Track&, 88 const G4Track&, 74 G4double, << 89 G4double, 75 G4ForceCondition* << 90 G4ForceCondition* 76 ) { return -1.0; } << 91 ){ return -1.0; }; 77 << 78 virtual G4double AtRestGetPhysicalInteract << 79 const G4Track& , << 80 G4ForceCondition* << 81 ) { return -1.0; } << 82 92 83 // no operation in AtRestDoIt and PostStep << 93 virtual G4double AtRestGetPhysicalInteractionLength( 84 // << 85 virtual G4VParticleChange* AtRestDoIt( << 86 const G4Track& , 94 const G4Track& , 87 const G4Step& << 95 G4ForceCondition* 88 ) { return 0; } << 96 ) { return -1.0; }; 89 97 90 virtual G4VParticleChange* PostStepDoIt( << 98 // no operation in AtRestDoIt and PostStepDoIt 91 const G4Track& , << 99 virtual G4VParticleChange* AtRestDoIt( 92 const G4Step& << 100 const G4Track& , 93 ) { return 0; } << 101 const G4Step& >> 102 ) {return 0;}; >> 103 >> 104 virtual G4VParticleChange* PostStepDoIt( >> 105 const G4Track& , >> 106 const G4Step& >> 107 ) {return 0;}; 94 108 95 protected: << 109 protected: // with description >> 110 virtual G4double GetContinuousStepLimit(const G4Track& aTrack, >> 111 G4double previousStepSize, >> 112 G4double currentMinimumStep, >> 113 G4double& currentSafety >> 114 )=0; >> 115 // This pure virtual function is used to calculate step limit >> 116 // for AlongStep in the derived processes 96 117 97 virtual G4double GetContinuousStepLimit( c << 118 private: 98 G << 119 // this is the returnd value of G4GPILSelection in 99 G << 120 // the arguments of AlongStepGPIL() 100 G << 121 G4GPILSelection valueGPILSelection; 101 // This pure virtual function is used to << 122 102 // for AlongStep in the derived processe << 123 protected: // with description >> 124 // these two methods are set/get methods for valueGPILSelection >> 125 void SetGPILSelection(G4GPILSelection selection) >> 126 { valueGPILSelection = selection;}; 103 127 104 inline void SetGPILSelection(G4GPILSelecti << 128 G4GPILSelection GetGPILSelection() const{return valueGPILSelection;}; 105 { valueGPILSelection = selection; } << 106 129 107 inline G4GPILSelection GetGPILSelection() << 108 { return valueGPILSelection; } << 109 130 110 private: 131 private: >> 132 // hide default constructor and assignment operator as private >> 133 G4VContinuousProcess(); >> 134 G4VContinuousProcess & operator=(const G4VContinuousProcess &right); 111 135 112 G4VContinuousProcess(); << 113 // Hidden default constructor << 114 << 115 G4GPILSelection valueGPILSelection = Candi << 116 // The returned value of G4GPILSelection << 117 // the arguments of AlongStepGPIL() << 118 }; 136 }; 119 137 120 #endif 138 #endif >> 139 >> 140 >> 141 >> 142 121 143