Geant4  10.03
G4Region.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: G4Region.icc 99379 2016-09-20 09:45:19Z gcosmo $
28 //
29 //
30 // class G4Region Inline Implementation file
31 //
32 // 19.09.02 - G.Cosmo: Created
33 // --------------------------------------------------------------------
34 
35 // ********************************************************************
36 // Equality operator, defined by address only
37 // ********************************************************************
38 //
39 inline
40 G4bool G4Region::operator==(const G4Region& rg) const
41 {
42  return (this==&rg) ? true : false;
43 }
44 
45 // ********************************************************************
46 // GetInstanceID
47 // ********************************************************************
48 //
49 inline
50 G4int G4Region::GetInstanceID() const
51 {
52  return instanceID;
53 }
54 
55 // ********************************************************************
56 // GetName
57 // ********************************************************************
58 //
59 inline
60 const G4String& G4Region::GetName() const
61 {
62  return fName;
63 }
64 
65 // ********************************************************************
66 // SetName
67 // ********************************************************************
68 //
69 inline
70 void G4Region::SetName(const G4String& pName)
71 {
72  fName = pName;
73 }
74 
75 // ********************************************************************
76 // RegionModified
77 // ********************************************************************
78 //
79 inline
80 void G4Region::RegionModified(G4bool flag)
81 {
82  fRegionMod = flag;
83 }
84 
85 // ********************************************************************
86 // IsModified
87 // ********************************************************************
88 //
89 inline
90 G4bool G4Region::IsModified() const
91 {
92  return fRegionMod;
93 }
94 
95 // ********************************************************************
96 // SetProductionCuts
97 // ********************************************************************
98 //
99 inline
100 void G4Region::SetProductionCuts(G4ProductionCuts* cut)
101 {
102  fCut = cut;
103  fRegionMod = true;
104 }
105 
106 // ********************************************************************
107 // GetProductionCuts
108 // ********************************************************************
109 //
110 inline
111 G4ProductionCuts* G4Region::GetProductionCuts() const
112 {
113  return fCut;
114 }
115 
116 // ********************************************************************
117 // GetLogicalVolumeIterator
118 // ********************************************************************
119 //
120 inline
121 std::vector<G4LogicalVolume*>::iterator
122 G4Region::GetRootLogicalVolumeIterator()
123 {
124  G4RootLVList::iterator iterator =
125  G4RootLVList::iterator(fRootVolumes.begin());
126  return iterator;
127 }
128 
129 // ********************************************************************
130 // GetMaterialIterator
131 // ********************************************************************
132 //
133 inline
134 std::vector<G4Material*>::const_iterator
135 G4Region::GetMaterialIterator() const
136 {
137  G4MaterialList::const_iterator iterator = fMaterials.begin();
138  return iterator;
139 }
140 
141 // ********************************************************************
142 // GetNumberOfMaterials
143 // ********************************************************************
144 //
145 inline
146 size_t G4Region::GetNumberOfMaterials() const
147 {
148  return fMaterials.size();
149 }
150 
151 // ********************************************************************
152 // GetNumberOfRootVolumes
153 // ********************************************************************
154 //
155 inline
156 size_t G4Region::GetNumberOfRootVolumes() const
157 {
158  return fRootVolumes.size();
159 }
160 
161 // ********************************************************************
162 // SetUserInformation
163 // ********************************************************************
164 //
165 inline
166 void G4Region::SetUserInformation(G4VUserRegionInformation* ui)
167 {
168  fUserInfo = ui;
169 }
170 
171 // ********************************************************************
172 // GetUserInformation
173 // ********************************************************************
174 //
175 inline
176 G4VUserRegionInformation* G4Region::GetUserInformation() const
177 {
178  return fUserInfo;
179 }
180 
181 // ********************************************************************
182 // SetUserLimits
183 // ********************************************************************
184 //
185 inline
186 void G4Region::SetUserLimits(G4UserLimits* ul)
187 {
188  fUserLimits = ul;
189 }
190 
191 // ********************************************************************
192 // GetUserLimits
193 // ********************************************************************
194 //
195 inline
196 G4UserLimits* G4Region::GetUserLimits() const
197 {
198  return fUserLimits;
199 }
200 
201 // ********************************************************************
202 // ClearMap
203 // ********************************************************************
204 //
205 inline
206 void G4Region::ClearMap()
207 {
208  if(!(fMaterialCoupleMap.empty()))
209  {
210  G4MaterialCoupleMap::iterator b = fMaterialCoupleMap.begin();
211  G4MaterialCoupleMap::iterator e = fMaterialCoupleMap.end();
212  fMaterialCoupleMap.erase(b,e);
213  }
214 }
215 
216 // ********************************************************************
217 // RegisterMateralCouplePair
218 // ********************************************************************
219 //
220 inline
221 void G4Region::RegisterMaterialCouplePair(G4Material* mat,
222  G4MaterialCutsCouple* couple)
223 {
224  fMaterialCoupleMap.insert(G4MaterialCouplePair(mat,couple));
225 }
226 
227 // ********************************************************************
228 // FindCouple
229 // ********************************************************************
230 //
231 inline
232 G4MaterialCutsCouple* G4Region::FindCouple(G4Material* mat)
233 {
234  G4MaterialCoupleMap::iterator c = fMaterialCoupleMap.find(mat);
235  G4MaterialCutsCouple* couple = 0;
236  if(c!=fMaterialCoupleMap.end()) couple = (*c).second;
237  return couple;
238 }
239 
240 // ********************************************************************
241 // GetFieldManager
242 // ********************************************************************
243 //
244 inline
245 G4FieldManager* G4Region::GetFieldManager() const
246 {
247  return fFieldManager;
248 }
249 
250 // ********************************************************************
251 // SetFieldManager
252 // ********************************************************************
253 //
254 inline
255 void G4Region::SetFieldManager(G4FieldManager* fm)
256 {
257  fFieldManager = fm;
258 }
259 
260 // ********************************************************************
261 // GetWorldPhysical
262 // ********************************************************************
263 //
264 inline
265 G4VPhysicalVolume* G4Region::GetWorldPhysical() const
266 {
267  return fWorldPhys;
268 }
269 
270 // ********************************************************************
271 // AddMaterial
272 // ********************************************************************
273 //
274 inline
275 void G4Region::AddMaterial(G4Material* aMaterial)
276 {
277  G4MaterialList::iterator pos =
278  std::find(fMaterials.begin(),fMaterials.end(),aMaterial);
279  if (pos == fMaterials.end())
280  {
281  fMaterials.push_back(aMaterial);
282  fRegionMod = true;
283  }
284 }
285 
286 // ********************************************************************
287 // UsedInMassGeometry
288 // ********************************************************************
289 //
290 inline
291 void G4Region::UsedInMassGeometry(G4bool val)
292 {
293  fInMassGeometry = val;
294 }
295 
296 // ********************************************************************
297 // UsedInParallelGeometry
298 // ********************************************************************
299 //
300 inline
301 void G4Region::UsedInParallelGeometry(G4bool val)
302 {
303  fInParallelGeometry = val;
304 }
305 
306 // ********************************************************************
307 // IsInMassGeometry
308 // ********************************************************************
309 //
310 inline
311 G4bool G4Region::IsInMassGeometry() const
312 {
313  return fInMassGeometry;
314 }
315 
316 // ********************************************************************
317 // IsInParallelGeometry
318 // ********************************************************************
319 //
320 inline
321 G4bool G4Region::IsInParallelGeometry() const
322 {
323  return fInParallelGeometry;
324 }