Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 // G4UserLimits inline methods implementation << 27 // 23 // 28 // Author: Paul Kent, August 1996 << 24 // $Id: G4UserLimits.icc,v 1.6 2001/07/11 10:00:53 gunter Exp $ 29 // Revisions: << 25 // GEANT4 tag $Name: geant4-04-00 $ 30 // - 01-11-1997, H.Kurashige: changed GetMaxAl << 26 // 31 // - 08-04-1998: M.Maire: new data members << 27 // 32 // ------------------------------------------- << 28 // 33 << 29 // class G4UserLimits inline implementation 34 inline G4UserLimits::G4UserLimits(G4double ust << 30 // 35 G4double uti << 31 // 01-11-97: change GetMaxAllowedStep(), Hisaya Kurashige 36 G4double ura << 32 // 08-04-98: new data members, mma 37 : fMaxStep(ustepMax) << 33 // 38 , fMaxTrack(utrakMax) << 39 , fMaxTime(utimeMax) << 40 , fMinEkine(uekinMin) << 41 , fMinRange(urangMin) << 42 , fType("base") << 43 {} << 44 << 45 // ------------------------------------------- << 46 << 47 inline G4UserLimits::G4UserLimits(const G4Stri << 48 G4double utr << 49 G4double uek << 50 : fMaxStep(ustepMax) << 51 , fMaxTrack(utrakMax) << 52 , fMaxTime(utimeMax) << 53 , fMinEkine(uekinMin) << 54 , fMinRange(urangMin) << 55 , fType(type) << 56 {} << 57 34 58 // ------------------------------------------- << 35 #include "G4UserLimits.hh" 59 36 60 inline const G4String& G4UserLimits::GetType() << 37 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 38 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 61 39 62 // ------------------------------------------- << 40 inline G4UserLimits::G4UserLimits(G4double ustepMax, >> 41 G4double utrakMax, >> 42 G4double utimeMax, >> 43 G4double uekinMin, >> 44 G4double urangMin) >> 45 :fMaxStep (ustepMax),fMaxTrack(utrakMax),fMaxTime(utimeMax), >> 46 fMinEkine(uekinMin),fMinRange(urangMin),fType("base") >> 47 {} 63 48 64 inline void G4UserLimits::SetType(const G4Stri << 49 inline G4UserLimits::G4UserLimits(const G4String& type, >> 50 G4double ustepMax, >> 51 G4double utrakMax, >> 52 G4double utimeMax, >> 53 G4double uekinMin, >> 54 G4double urangMin) >> 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