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 // G4UserLimits inline methods implementation << 27 // 26 // 28 // Author: Paul Kent, August 1996 << 27 // $Id: G4UserLimits.icc 67970 2013-03-13 10:10:06Z gcosmo $ 29 // Revisions: << 28 // 30 // - 01-11-1997, H.Kurashige: changed GetMaxAl << 29 // 31 // - 08-04-1998: M.Maire: new data members << 30 // 32 // ------------------------------------------- << 31 // class G4UserLimits inline implementation 33 << 32 // 34 inline G4UserLimits::G4UserLimits(G4double ust << 33 // 01-11-97: change GetMaxAllowedStep(), Hisaya Kurashige 35 G4double uti << 34 // 08-04-98: new data members, mma 36 G4double ura << 35 // 37 : fMaxStep(ustepMax) << 38 , fMaxTrack(utrakMax) << 39 , fMaxTime(utimeMax) << 40 , fMinEkine(uekinMin) << 41 , fMinRange(urangMin) << 42 , fType("base") << 43 {} << 44 36 45 // ------------------------------------------- << 37 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 38 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 46 39 47 inline G4UserLimits::G4UserLimits(const G4Stri << 40 inline G4UserLimits::G4UserLimits(G4double ustepMax, 48 G4double utr << 41 G4double utrakMax, 49 G4double uek << 42 G4double utimeMax, 50 : fMaxStep(ustepMax) << 43 G4double uekinMin, 51 , fMaxTrack(utrakMax) << 44 G4double urangMin) 52 , fMaxTime(utimeMax) << 45 :fMaxStep (ustepMax),fMaxTrack(utrakMax),fMaxTime(utimeMax), 53 , fMinEkine(uekinMin) << 46 fMinEkine(uekinMin),fMinRange(urangMin),fType("base") 54 , fMinRange(urangMin) << 55 , fType(type) << 56 {} 47 {} 57 48 58 // ------------------------------------------- << 49 inline G4UserLimits::G4UserLimits(const G4String& type, 59 << 50 G4double ustepMax, 60 inline const G4String& G4UserLimits::GetType() << 51 G4double utrakMax, 61 << 52 G4double utimeMax, 62 // ------------------------------------------- << 53 G4double uekinMin, 63 << 54 G4double urangMin) 64 inline void G4UserLimits::SetType(const G4Stri << 55 :fMaxStep (ustepMax),fMaxTrack(utrakMax),fMaxTime(utimeMax), >> 56 fMinEkine(uekinMin),fMinRange(urangMin),fType(type) >> 57 {} 65 58 66 // ------------------------------------------- << 59 inline const G4String& G4UserLimits::GetType() const >> 60 { >> 61 return fType; >> 62 } 67 63 68 inline G4UserLimits::~G4UserLimits() {} << 64 inline void G4UserLimits::SetType(const G4String& type) >> 65 { >> 66 fType = type; >> 67 } >> 68 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 69 69 70 // ------------------------------------------- << 70 inline G4UserLimits::~G4UserLimits(){} 71 71 >> 72 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 73 72 inline G4double G4UserLimits::GetMaxAllowedSte 74 inline G4double G4UserLimits::GetMaxAllowedStep(const G4Track&) 73 { 75 { 74 return fMaxStep; 76 return fMaxStep; 75 } 77 } 76 78 77 // ------------------------------------------- << 79 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 78 80 79 inline G4double G4UserLimits::GetUserMaxTrackL 81 inline G4double G4UserLimits::GetUserMaxTrackLength(const G4Track&) 80 { 82 { 81 return fMaxTrack; 83 return fMaxTrack; 82 } 84 } 83 85 84 // ------------------------------------------- << 86 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 85 87 86 inline G4double G4UserLimits::GetUserMaxTime(c 88 inline G4double G4UserLimits::GetUserMaxTime(const G4Track&) 87 { 89 { 88 return fMaxTime; 90 return fMaxTime; 89 } 91 } 90 92 91 // ------------------------------------------- << 93 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 92 94 93 inline G4double G4UserLimits::GetUserMinEkine( 95 inline G4double G4UserLimits::GetUserMinEkine(const G4Track&) 94 { 96 { 95 return fMinEkine; 97 return fMinEkine; 96 } 98 } 97 99 98 // ------------------------------------------- << 100 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 99 101 100 inline G4double G4UserLimits::GetUserMinRange( 102 inline G4double G4UserLimits::GetUserMinRange(const G4Track&) 101 { 103 { 102 return fMinRange; 104 return fMinRange; 103 } 105 } 104 106 105 // ------------------------------------------- << 107 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 106 108 107 inline void G4UserLimits::SetMaxAllowedStep(G4 109 inline void G4UserLimits::SetMaxAllowedStep(G4double ustepMax) 108 { 110 { 109 fMaxStep = ustepMax; << 111 fMaxStep=ustepMax; 110 } 112 } 111 113 112 // ------------------------------------------- << 114 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 113 115 114 inline void G4UserLimits::SetUserMaxTrackLengt 116 inline void G4UserLimits::SetUserMaxTrackLength(G4double utrakMax) 115 { 117 { 116 fMaxTrack = utrakMax; << 118 fMaxTrack=utrakMax; 117 } 119 } 118 120 119 // ------------------------------------------- << 121 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 120 122 121 inline void G4UserLimits::SetUserMaxTime(G4dou 123 inline void G4UserLimits::SetUserMaxTime(G4double utimeMax) 122 { 124 { 123 fMaxTime = utimeMax; << 125 fMaxTime=utimeMax; 124 } 126 } 125 127 126 // ------------------------------------------- << 128 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 127 129 128 inline void G4UserLimits::SetUserMinEkine(G4do 130 inline void G4UserLimits::SetUserMinEkine(G4double uekinMin) 129 { 131 { 130 fMinEkine = uekinMin; << 132 fMinEkine=uekinMin; 131 } 133 } 132 134 133 // ------------------------------------------- << 135 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 134 136 135 inline void G4UserLimits::SetUserMinRange(G4do 137 inline void G4UserLimits::SetUserMinRange(G4double urangMin) 136 { 138 { 137 fMinRange = urangMin; << 139 fMinRange=urangMin; 138 } 140 } >> 141 >> 142 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 139 143