Geant4  10.02.p01
G4UserLimits.icc
Go to the documentation of this file.
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 //
27 // $Id: G4UserLimits.icc 67970 2013-03-13 10:10:06Z gcosmo $
28 //
29 //
30 //
31 // class G4UserLimits inline implementation
32 //
33 // 01-11-97: change GetMaxAllowedStep(), Hisaya Kurashige
34 // 08-04-98: new data members, mma
35 //
36 
37 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
38 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
39 
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 {}
48 
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 {}
58 
59 inline const G4String& G4UserLimits::GetType() const
60 {
61  return fType;
62 }
63 
64 inline void G4UserLimits::SetType(const G4String& type)
65 {
66  fType = type;
67 }
68 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
69 
70 inline G4UserLimits::~G4UserLimits(){}
71 
72 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
73 
74 inline G4double G4UserLimits::GetMaxAllowedStep(const G4Track&)
75 {
76  return fMaxStep;
77 }
78 
79 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
80 
81 inline G4double G4UserLimits::GetUserMaxTrackLength(const G4Track&)
82 {
83  return fMaxTrack;
84 }
85 
86 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
87 
88 inline G4double G4UserLimits::GetUserMaxTime(const G4Track&)
89 {
90  return fMaxTime;
91 }
92 
93 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
94 
95 inline G4double G4UserLimits::GetUserMinEkine(const G4Track&)
96 {
97  return fMinEkine;
98 }
99 
100 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
101 
102 inline G4double G4UserLimits::GetUserMinRange(const G4Track&)
103 {
104  return fMinRange;
105 }
106 
107 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
108 
109 inline void G4UserLimits::SetMaxAllowedStep(G4double ustepMax)
110 {
111  fMaxStep=ustepMax;
112 }
113 
114 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
115 
116 inline void G4UserLimits::SetUserMaxTrackLength(G4double utrakMax)
117 {
118  fMaxTrack=utrakMax;
119 }
120 
121 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
122 
123 inline void G4UserLimits::SetUserMaxTime(G4double utimeMax)
124 {
125  fMaxTime=utimeMax;
126 }
127 
128 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
129 
130 inline void G4UserLimits::SetUserMinEkine(G4double uekinMin)
131 {
132  fMinEkine=uekinMin;
133 }
134 
135 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
136 
137 inline void G4UserLimits::SetUserMinRange(G4double urangMin)
138 {
139  fMinRange=urangMin;
140 }
141 
142 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......