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 // >> 26 // >> 27 // $Id: G4LogicalVolume.icc 102288 2017-01-20 10:57:03Z gcosmo $ >> 28 // 25 // 29 // 26 // class G4LogicalVolume inline implementation << 30 // class G4LogicalVolume Inline Implementation file 27 // 31 // 28 // 15.01.13 - G.Cosmo, A.Dotti: Modified for t 32 // 15.01.13 - G.Cosmo, A.Dotti: Modified for thread-safety for MT 29 // 10.20.97 - P. MoraDeFreitas : Added SetFast 33 // 10.20.97 - P. MoraDeFreitas : Added SetFastSimulation method 30 // 05.11.98 - M. Verderi: Add Get/Set methods 34 // 05.11.98 - M. Verderi: Add Get/Set methods for fBiasWeight 31 // 09.11.98 - J.Apostolakis: Changed Magnetic << 35 // 09.11.98 - J. Apostolakis: Changed MagneticField to FieldManager 32 // 12.02.99 - S.Giani: Added set/get methods f 36 // 12.02.99 - S.Giani: Added set/get methods for voxelization quality 33 // 18.04.01 - G.Cosmo: Migrated to STL vector 37 // 18.04.01 - G.Cosmo: Migrated to STL vector 34 // 17.05.02 - G.Cosmo: Added IsToOptimise() me 38 // 17.05.02 - G.Cosmo: Added IsToOptimise() method 35 // ------------------------------------------- 39 // -------------------------------------------------------------------- 36 40 37 // ******************************************* 41 // ******************************************************************** 38 // GetName 42 // GetName 39 // ******************************************* 43 // ******************************************************************** 40 // 44 // 41 inline 45 inline 42 const G4String& G4LogicalVolume::GetName() con 46 const G4String& G4LogicalVolume::GetName() const 43 { 47 { 44 return fName; 48 return fName; 45 } 49 } 46 50 47 // ******************************************* 51 // ******************************************************************** >> 52 // SetName >> 53 // ******************************************************************** >> 54 // >> 55 inline >> 56 void G4LogicalVolume::SetName(const G4String& pName) >> 57 { >> 58 fName = pName; >> 59 } >> 60 >> 61 // ******************************************************************** 48 // GetInstanceID 62 // GetInstanceID 49 // ******************************************* 63 // ******************************************************************** 50 // 64 // 51 inline 65 inline 52 G4int G4LogicalVolume::GetInstanceID() const 66 G4int G4LogicalVolume::GetInstanceID() const 53 { 67 { 54 return instanceID; 68 return instanceID; 55 } 69 } 56 70 57 // ******************************************* 71 // ******************************************************************** 58 // GetMasterFieldManager 72 // GetMasterFieldManager 59 // ******************************************* 73 // ******************************************************************** 60 // 74 // 61 inline 75 inline 62 G4FieldManager* G4LogicalVolume::GetMasterFiel 76 G4FieldManager* G4LogicalVolume::GetMasterFieldManager() const 63 { 77 { 64 return fFieldManager; 78 return fFieldManager; 65 } 79 } 66 80 67 // ******************************************* 81 // ******************************************************************** 68 // GetNoDaughters 82 // GetNoDaughters 69 // ******************************************* 83 // ******************************************************************** 70 // 84 // 71 inline 85 inline 72 std::size_t G4LogicalVolume::GetNoDaughters() << 86 G4int G4LogicalVolume::GetNoDaughters() const 73 { 87 { 74 return fDaughters.size(); 88 return fDaughters.size(); 75 } 89 } 76 90 77 // ******************************************* 91 // ******************************************************************** 78 // GetDaughter 92 // GetDaughter 79 // ******************************************* 93 // ******************************************************************** 80 // 94 // 81 inline 95 inline 82 G4VPhysicalVolume* G4LogicalVolume::GetDaughte << 96 G4VPhysicalVolume* G4LogicalVolume::GetDaughter(const G4int i) const 83 { 97 { 84 return fDaughters[i]; 98 return fDaughters[i]; 85 } 99 } 86 100 87 // ******************************************* 101 // ******************************************************************** 88 // GetFastSimulationManager 102 // GetFastSimulationManager 89 // ******************************************* 103 // ******************************************************************** 90 // 104 // 91 inline 105 inline 92 G4FastSimulationManager* G4LogicalVolume::GetF 106 G4FastSimulationManager* G4LogicalVolume::GetFastSimulationManager () const 93 { 107 { 94 G4FastSimulationManager* fFSM = nullptr; << 108 G4FastSimulationManager* fFSM = 0; 95 if(fRegion != nullptr) fFSM = fRegion->GetFa << 109 if(fRegion) fFSM = fRegion->GetFastSimulationManager(); 96 return fFSM; 110 return fFSM; 97 } 111 } 98 112 99 // ******************************************* 113 // ******************************************************************** 100 // IsDaughter 114 // IsDaughter 101 // ******************************************* 115 // ******************************************************************** 102 // 116 // 103 inline 117 inline 104 G4bool G4LogicalVolume::IsDaughter(const G4VPh 118 G4bool G4LogicalVolume::IsDaughter(const G4VPhysicalVolume* p) const 105 { 119 { 106 for (const auto & daughter : fDaughters) << 120 G4PhysicalVolumeList::const_iterator i; >> 121 for ( i=fDaughters.begin(); i!=fDaughters.end(); ++i ) 107 { 122 { 108 if (*daughter==*p) return true; << 123 if (**i==*p) return true; 109 } 124 } 110 return false; 125 return false; 111 } 126 } 112 127 113 // ******************************************* 128 // ******************************************************************** 114 // CharacteriseDaughters 129 // CharacteriseDaughters 115 // ******************************************* 130 // ******************************************************************** 116 // 131 // 117 inline 132 inline 118 EVolume G4LogicalVolume::CharacteriseDaughters 133 EVolume G4LogicalVolume::CharacteriseDaughters() const 119 { 134 { 120 return fDaughtersVolumeType; << 135 EVolume type; 121 } << 136 G4VPhysicalVolume *pVol; 122 137 123 // ******************************************* << 138 if ( GetNoDaughters()==1 ) 124 // DeduceDaughtersType << 125 // ******************************************* << 126 // << 127 inline << 128 EVolume G4LogicalVolume::DeduceDaughtersType() << 129 { << 130 EVolume type= kNormal; << 131 G4VPhysicalVolume* pVol; << 132 << 133 if ( GetNoDaughters() >= 1 ) << 134 { 139 { 135 pVol = GetDaughter(0); 140 pVol = GetDaughter(0); 136 type = pVol->VolumeType(); 141 type = pVol->VolumeType(); 137 } 142 } >> 143 else >> 144 { >> 145 type = kNormal; >> 146 } 138 return type; 147 return type; 139 } 148 } 140 149 141 // ******************************************* 150 // ******************************************************************** 142 // GetMasterSolid 151 // GetMasterSolid 143 // ******************************************* 152 // ******************************************************************** 144 // 153 // 145 inline 154 inline 146 G4VSolid* G4LogicalVolume::GetMasterSolid() co 155 G4VSolid* G4LogicalVolume::GetMasterSolid() const 147 { 156 { 148 return fSolid; 157 return fSolid; 149 } 158 } 150 159 151 // ******************************************* 160 // ******************************************************************** 152 // GetMasterSensitiveDetector 161 // GetMasterSensitiveDetector 153 // ******************************************* 162 // ******************************************************************** 154 // 163 // 155 inline 164 inline 156 G4VSensitiveDetector* G4LogicalVolume::GetMast 165 G4VSensitiveDetector* G4LogicalVolume::GetMasterSensitiveDetector() const 157 { 166 { 158 return fSensitiveDetector; 167 return fSensitiveDetector; 159 } 168 } 160 169 161 // ******************************************* 170 // ******************************************************************** 162 // GetUserLimits 171 // GetUserLimits 163 // ******************************************* 172 // ******************************************************************** 164 // 173 // 165 inline 174 inline 166 G4UserLimits* G4LogicalVolume::GetUserLimits() 175 G4UserLimits* G4LogicalVolume::GetUserLimits() const 167 { 176 { 168 if(fUserLimits != nullptr) return fUserLimit << 177 if(fUserLimits) return fUserLimits; 169 if(fRegion != nullptr) return fRegion->GetUs << 178 if(fRegion) return fRegion->GetUserLimits(); 170 return nullptr; << 179 return 0; 171 } 180 } 172 181 173 // ******************************************* 182 // ******************************************************************** 174 // SetUserLimits 183 // SetUserLimits 175 // ******************************************* 184 // ******************************************************************** 176 // 185 // 177 inline 186 inline 178 void G4LogicalVolume::SetUserLimits(G4UserLimi 187 void G4LogicalVolume::SetUserLimits(G4UserLimits* pULimits) 179 { 188 { 180 fUserLimits = pULimits; 189 fUserLimits = pULimits; 181 } 190 } 182 191 183 // ******************************************* 192 // ******************************************************************** 184 // GetVoxelHeader 193 // GetVoxelHeader 185 // ******************************************* 194 // ******************************************************************** 186 // 195 // 187 inline 196 inline 188 G4SmartVoxelHeader* G4LogicalVolume::GetVoxelH 197 G4SmartVoxelHeader* G4LogicalVolume::GetVoxelHeader() const 189 { 198 { 190 return fVoxel; 199 return fVoxel; 191 } 200 } 192 201 193 // ******************************************* 202 // ******************************************************************** 194 // SetVoxelHeader 203 // SetVoxelHeader 195 // ******************************************* 204 // ******************************************************************** 196 // 205 // 197 inline 206 inline 198 void G4LogicalVolume::SetVoxelHeader(G4SmartVo 207 void G4LogicalVolume::SetVoxelHeader(G4SmartVoxelHeader* pVoxel) 199 { 208 { 200 fVoxel = pVoxel; 209 fVoxel = pVoxel; 201 } 210 } 202 211 203 // ******************************************* 212 // ******************************************************************** 204 // GetSmartless 213 // GetSmartless 205 // ******************************************* 214 // ******************************************************************** 206 // 215 // 207 inline 216 inline 208 G4double G4LogicalVolume::GetSmartless() const 217 G4double G4LogicalVolume::GetSmartless() const 209 { 218 { 210 return fSmartless; 219 return fSmartless; 211 } 220 } 212 221 213 // ******************************************* 222 // ******************************************************************** 214 // SetSmartless 223 // SetSmartless 215 // ******************************************* 224 // ******************************************************************** 216 // 225 // 217 inline 226 inline 218 void G4LogicalVolume::SetSmartless(G4double sm 227 void G4LogicalVolume::SetSmartless(G4double smt) 219 { 228 { 220 fSmartless = smt; 229 fSmartless = smt; 221 } 230 } 222 231 223 // ******************************************* 232 // ******************************************************************** 224 // IsToOptimise 233 // IsToOptimise 225 // ******************************************* 234 // ******************************************************************** 226 // 235 // 227 inline 236 inline 228 G4bool G4LogicalVolume::IsToOptimise() const 237 G4bool G4LogicalVolume::IsToOptimise() const 229 { 238 { 230 return fOptimise; 239 return fOptimise; 231 } 240 } 232 241 233 // ******************************************* 242 // ******************************************************************** 234 // SetOptimisation 243 // SetOptimisation 235 // ******************************************* 244 // ******************************************************************** 236 // 245 // 237 inline 246 inline 238 void G4LogicalVolume::SetOptimisation(G4bool o 247 void G4LogicalVolume::SetOptimisation(G4bool optim) 239 { 248 { 240 fOptimise = optim; 249 fOptimise = optim; 241 } 250 } 242 251 243 // ******************************************* 252 // ******************************************************************** 244 // IsRootRegion 253 // IsRootRegion 245 // ******************************************* 254 // ******************************************************************** 246 // 255 // 247 inline 256 inline 248 G4bool G4LogicalVolume::IsRootRegion() const 257 G4bool G4LogicalVolume::IsRootRegion() const 249 { 258 { 250 return fRootRegion; 259 return fRootRegion; 251 } 260 } 252 261 253 // ******************************************* 262 // ******************************************************************** 254 // SetRegionRootFlag 263 // SetRegionRootFlag 255 // ******************************************* 264 // ******************************************************************** 256 // 265 // 257 inline 266 inline 258 void G4LogicalVolume::SetRegionRootFlag(G4bool 267 void G4LogicalVolume::SetRegionRootFlag(G4bool rreg) 259 { 268 { 260 fRootRegion = rreg; 269 fRootRegion = rreg; 261 } 270 } 262 271 263 // ******************************************* 272 // ******************************************************************** 264 // IsRegion 273 // IsRegion 265 // ******************************************* 274 // ******************************************************************** 266 // 275 // 267 inline 276 inline 268 G4bool G4LogicalVolume::IsRegion() const 277 G4bool G4LogicalVolume::IsRegion() const 269 { 278 { 270 G4bool reg = false; 279 G4bool reg = false; 271 if (fRegion != nullptr) reg = true; << 280 if (fRegion) reg = true; 272 return reg; 281 return reg; 273 } 282 } 274 283 275 // ******************************************* 284 // ******************************************************************** 276 // SetRegion 285 // SetRegion 277 // ******************************************* 286 // ******************************************************************** 278 // 287 // 279 inline 288 inline 280 void G4LogicalVolume::SetRegion(G4Region* reg) 289 void G4LogicalVolume::SetRegion(G4Region* reg) 281 { 290 { 282 fRegion = reg; 291 fRegion = reg; 283 } 292 } 284 293 285 // ******************************************* 294 // ******************************************************************** 286 // GetRegion 295 // GetRegion 287 // ******************************************* 296 // ******************************************************************** 288 // 297 // 289 inline 298 inline 290 G4Region* G4LogicalVolume::GetRegion() const 299 G4Region* G4LogicalVolume::GetRegion() const 291 { 300 { 292 return fRegion; 301 return fRegion; 293 } 302 } 294 303 295 // ******************************************* 304 // ******************************************************************** 296 // PropagateRegion 305 // PropagateRegion 297 // ******************************************* 306 // ******************************************************************** 298 // 307 // 299 inline 308 inline 300 void G4LogicalVolume::PropagateRegion() 309 void G4LogicalVolume::PropagateRegion() 301 { 310 { 302 fRegion->ScanVolumeTree(this, true); 311 fRegion->ScanVolumeTree(this, true); 303 } 312 } 304 313 305 // ******************************************* 314 // ******************************************************************** 306 // Lock 315 // Lock 307 // ******************************************* 316 // ******************************************************************** 308 // 317 // 309 inline 318 inline 310 void G4LogicalVolume::Lock() 319 void G4LogicalVolume::Lock() 311 { 320 { 312 fLock = true; 321 fLock = true; 313 } 322 } 314 323 315 // ******************************************* 324 // ******************************************************************** 316 // Operator == 325 // Operator == 317 // ******************************************* 326 // ******************************************************************** 318 // 327 // 319 inline 328 inline 320 G4bool G4LogicalVolume::operator == ( const G4 329 G4bool G4LogicalVolume::operator == ( const G4LogicalVolume& lv) const 321 { 330 { 322 return this==&lv; << 331 return (this==&lv) ? true : false; 323 } 332 } 324 333 325 // ******************************************* 334 // ******************************************************************** 326 // SetBiasWeight << 335 // GetVisAttributes 327 // ******************************************* 336 // ******************************************************************** 328 // 337 // 329 inline 338 inline 330 void G4LogicalVolume::SetBiasWeight(G4double w << 339 const G4VisAttributes* G4LogicalVolume::GetVisAttributes () const 331 { 340 { 332 fBiasWeight = weight; << 341 return fVisAttributes; 333 } 342 } 334 343 335 // ******************************************* 344 // ******************************************************************** 336 // GetBiasWeight << 345 // SetVisAttributes 337 // ******************************************* 346 // ******************************************************************** 338 // 347 // 339 inline 348 inline 340 G4double G4LogicalVolume::GetBiasWeight() cons << 349 void G4LogicalVolume::SetVisAttributes (const G4VisAttributes* pVA) 341 { 350 { 342 return fBiasWeight; << 351 fVisAttributes = pVA; 343 } 352 } 344 353 345 // ******************************************* 354 // ******************************************************************** 346 // GetVisAttributes << 355 // SetBiasWeight 347 // ******************************************* 356 // ******************************************************************** 348 // 357 // 349 inline 358 inline 350 const G4VisAttributes* G4LogicalVolume::GetVis << 359 void G4LogicalVolume::SetBiasWeight(G4double weight) 351 { 360 { 352 return fVisAttributes.get(); << 361 fBiasWeight = weight; >> 362 } >> 363 >> 364 // ******************************************************************** >> 365 // GetBiasWeight >> 366 // ******************************************************************** >> 367 // >> 368 inline >> 369 G4double G4LogicalVolume::GetBiasWeight() const >> 370 { >> 371 return fBiasWeight; 353 } 372 } 354 373