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 // ******************************************************************** >> 22 // >> 23 // >> 24 // $Id: G4LogicalVolume.icc,v 1.23 2005/11/09 14:54:03 gcosmo Exp $ >> 25 // GEANT4 tag $Name: geant4-08-00-patch-01 $ >> 26 // 25 // 27 // 26 // class G4LogicalVolume inline implementation << 28 // class G4LogicalVolume Inline Implementation file 27 // 29 // 28 // 15.01.13 - G.Cosmo, A.Dotti: Modified for t << 30 // 10.20.97 - P. MoraDeFreitas : Added SetFastSimulation method. 29 // 10.20.97 - P. MoraDeFreitas : Added SetFast << 30 // 05.11.98 - M. Verderi: Add Get/Set methods 31 // 05.11.98 - M. Verderi: Add Get/Set methods for fBiasWeight 31 // 09.11.98 - J.Apostolakis: Changed Magnetic << 32 // 09.11.98 - J. Apostolakis: Changed MagneticField to FieldManager 32 // 12.02.99 - S.Giani: Added set/get methods f 33 // 12.02.99 - S.Giani: Added set/get methods for voxelization quality 33 // 18.04.01 - G.Cosmo: Migrated to STL vector 34 // 18.04.01 - G.Cosmo: Migrated to STL vector 34 // 17.05.02 - G.Cosmo: Added IsToOptimise() me 35 // 17.05.02 - G.Cosmo: Added IsToOptimise() method 35 // ------------------------------------------- 36 // -------------------------------------------------------------------- 36 37 37 // ******************************************* 38 // ******************************************************************** 38 // GetName 39 // GetName 39 // ******************************************* 40 // ******************************************************************** 40 // 41 // 41 inline 42 inline 42 const G4String& G4LogicalVolume::GetName() con << 43 G4String G4LogicalVolume::GetName() const 43 { 44 { 44 return fName; 45 return fName; 45 } 46 } 46 47 47 // ******************************************* 48 // ******************************************************************** 48 // GetInstanceID << 49 // SetName 49 // ******************************************* 50 // ******************************************************************** 50 // 51 // 51 inline 52 inline 52 G4int G4LogicalVolume::GetInstanceID() const << 53 void G4LogicalVolume::SetName(const G4String& pName) 53 { 54 { 54 return instanceID; << 55 fName = pName; 55 } 56 } 56 57 57 // ******************************************* 58 // ******************************************************************** 58 // GetMasterFieldManager << 59 // GetFieldManager 59 // ******************************************* 60 // ******************************************************************** 60 // 61 // 61 inline 62 inline 62 G4FieldManager* G4LogicalVolume::GetMasterFiel << 63 G4FieldManager* G4LogicalVolume::GetFieldManager() const 63 { 64 { 64 return fFieldManager; 65 return fFieldManager; 65 } 66 } 66 67 67 // ******************************************* 68 // ******************************************************************** 68 // GetNoDaughters 69 // GetNoDaughters 69 // ******************************************* 70 // ******************************************************************** 70 // 71 // 71 inline 72 inline 72 std::size_t G4LogicalVolume::GetNoDaughters() << 73 G4int G4LogicalVolume::GetNoDaughters() const 73 { 74 { 74 return fDaughters.size(); 75 return fDaughters.size(); 75 } 76 } 76 77 77 // ******************************************* 78 // ******************************************************************** 78 // GetDaughter 79 // GetDaughter 79 // ******************************************* 80 // ******************************************************************** 80 // 81 // 81 inline 82 inline 82 G4VPhysicalVolume* G4LogicalVolume::GetDaughte << 83 G4VPhysicalVolume* G4LogicalVolume::GetDaughter(const G4int i) const 83 { 84 { 84 return fDaughters[i]; 85 return fDaughters[i]; 85 } 86 } 86 87 87 // ******************************************* 88 // ******************************************************************** 88 // GetFastSimulationManager 89 // GetFastSimulationManager 89 // ******************************************* 90 // ******************************************************************** 90 // 91 // 91 inline 92 inline 92 G4FastSimulationManager* G4LogicalVolume::GetF 93 G4FastSimulationManager* G4LogicalVolume::GetFastSimulationManager () const 93 { 94 { 94 G4FastSimulationManager* fFSM = nullptr; << 95 G4FastSimulationManager* fFSM = 0; 95 if(fRegion != nullptr) fFSM = fRegion->GetFa << 96 if(fRegion) fFSM = fRegion->GetFastSimulationManager(); 96 return fFSM; 97 return fFSM; 97 } 98 } 98 99 99 // ******************************************* 100 // ******************************************************************** >> 101 // AddDaughter >> 102 // ******************************************************************** >> 103 // >> 104 inline >> 105 void G4LogicalVolume::AddDaughter(G4VPhysicalVolume* pNewDaughter) >> 106 { >> 107 if( !fDaughters.empty() && fDaughters[0]->IsReplicated() ) >> 108 { >> 109 G4cerr << "ERROR - Attempt to place a volume in a mother volume" << G4endl >> 110 << " already containing a replicated volume." << G4endl >> 111 << " A volume can either contain several placements" << G4endl >> 112 << " or a unique replica or parameterised volume !" << G4endl >> 113 << " Mother logical volume: " << GetName() << G4endl >> 114 << " Placing volume: " << pNewDaughter->GetName() << G4endl; >> 115 G4Exception("G4LogicalVolume::AddDaughter()", "InvalidSetup", FatalException, >> 116 "Replica or parameterised volume must be the only daughter !"); >> 117 } >> 118 >> 119 fMass = 0.; >> 120 fDaughters.push_back(pNewDaughter); >> 121 >> 122 G4LogicalVolume* pDaughterLogical = pNewDaughter->GetLogicalVolume(); >> 123 >> 124 // Propagate the Field Manager, if the daughter has no field Manager. >> 125 // >> 126 G4FieldManager* pDaughterFieldManager = pDaughterLogical->GetFieldManager(); >> 127 >> 128 if( pDaughterFieldManager == 0 ) >> 129 { >> 130 pDaughterLogical->SetFieldManager(fFieldManager, true); >> 131 } >> 132 if (fRegion) >> 133 { >> 134 PropagateRegion(); >> 135 fRegion->RegionModified(true); >> 136 } >> 137 } >> 138 >> 139 // ******************************************************************** 100 // IsDaughter 140 // IsDaughter 101 // ******************************************* 141 // ******************************************************************** 102 // 142 // 103 inline 143 inline 104 G4bool G4LogicalVolume::IsDaughter(const G4VPh 144 G4bool G4LogicalVolume::IsDaughter(const G4VPhysicalVolume* p) const 105 { 145 { 106 for (const auto & daughter : fDaughters) << 146 G4PhysicalVolumeList::const_iterator i; >> 147 for ( i=fDaughters.begin(); i!=fDaughters.end(); ++i ) 107 { 148 { 108 if (*daughter==*p) return true; << 149 if (**i==*p) return true; 109 } 150 } 110 return false; 151 return false; 111 } 152 } 112 153 113 // ******************************************* 154 // ******************************************************************** 114 // CharacteriseDaughters << 155 // RemoveDaughter 115 // ******************************************* 156 // ******************************************************************** 116 // 157 // 117 inline 158 inline 118 EVolume G4LogicalVolume::CharacteriseDaughters << 159 void G4LogicalVolume::RemoveDaughter(const G4VPhysicalVolume* p) 119 { 160 { 120 return fDaughtersVolumeType; << 161 G4PhysicalVolumeList::iterator i; >> 162 for ( i=fDaughters.begin(); i!=fDaughters.end(); ++i ) >> 163 { >> 164 if (**i==*p) >> 165 { >> 166 fDaughters.erase(i); >> 167 break; >> 168 } >> 169 } >> 170 if (fRegion) >> 171 { >> 172 fRegion->RegionModified(true); >> 173 } >> 174 fMass = 0.; 121 } 175 } 122 176 123 // ******************************************* 177 // ******************************************************************** 124 // DeduceDaughtersType << 178 // ClearDaughters 125 // ******************************************* 179 // ******************************************************************** 126 // 180 // 127 inline 181 inline 128 EVolume G4LogicalVolume::DeduceDaughtersType() << 182 void G4LogicalVolume::ClearDaughters() 129 { 183 { 130 EVolume type= kNormal; << 184 G4PhysicalVolumeList::iterator i; 131 G4VPhysicalVolume* pVol; << 185 for ( i=fDaughters.begin(); i!=fDaughters.end(); ++i ) 132 << 186 { 133 if ( GetNoDaughters() >= 1 ) << 187 fDaughters.erase(i); >> 188 } >> 189 if (fRegion) 134 { 190 { 135 pVol = GetDaughter(0); << 191 fRegion->RegionModified(true); 136 type = pVol->VolumeType(); << 137 } 192 } 138 return type; << 193 fMass = 0.; 139 } 194 } 140 195 141 // ******************************************* 196 // ******************************************************************** 142 // GetMasterSolid << 197 // GetSolid 143 // ******************************************* 198 // ******************************************************************** 144 // 199 // 145 inline 200 inline 146 G4VSolid* G4LogicalVolume::GetMasterSolid() co << 201 G4VSolid* G4LogicalVolume::GetSolid() const 147 { 202 { 148 return fSolid; 203 return fSolid; 149 } 204 } 150 205 151 // ******************************************* 206 // ******************************************************************** 152 // GetMasterSensitiveDetector << 207 // SetSolid >> 208 // ******************************************************************** >> 209 // >> 210 inline >> 211 void G4LogicalVolume::SetSolid(G4VSolid *pSolid) >> 212 { >> 213 assert(pSolid != 0); >> 214 fSolid=pSolid; >> 215 fMass = 0.; >> 216 } >> 217 >> 218 // ******************************************************************** >> 219 // GetMaterial 153 // ******************************************* 220 // ******************************************************************** 154 // 221 // 155 inline 222 inline 156 G4VSensitiveDetector* G4LogicalVolume::GetMast << 223 G4Material* G4LogicalVolume::GetMaterial() const >> 224 { >> 225 return fMaterial; >> 226 } >> 227 >> 228 // ******************************************************************** >> 229 // SetMaterial >> 230 // ******************************************************************** >> 231 // >> 232 inline >> 233 void G4LogicalVolume::SetMaterial(G4Material *pMaterial) >> 234 { >> 235 fMaterial=pMaterial; >> 236 fMass = 0.; >> 237 } >> 238 >> 239 // ******************************************************************** >> 240 // UpdateMaterial >> 241 // ******************************************************************** >> 242 // >> 243 inline >> 244 void G4LogicalVolume::UpdateMaterial(G4Material *pMaterial) >> 245 { >> 246 fMaterial=pMaterial; >> 247 if(fRegion) { fCutsCouple = fRegion->FindCouple(pMaterial); } >> 248 fMass = 0.; >> 249 } >> 250 >> 251 // ******************************************************************** >> 252 // GetSensitiveDetector >> 253 // ******************************************************************** >> 254 // >> 255 inline >> 256 G4VSensitiveDetector* G4LogicalVolume::GetSensitiveDetector() const 157 { 257 { 158 return fSensitiveDetector; 258 return fSensitiveDetector; 159 } 259 } 160 260 161 // ******************************************* 261 // ******************************************************************** >> 262 // SetSensitiveDetector >> 263 // ******************************************************************** >> 264 // >> 265 inline >> 266 void G4LogicalVolume::SetSensitiveDetector(G4VSensitiveDetector* pSDetector) >> 267 { >> 268 fSensitiveDetector = pSDetector; >> 269 } >> 270 >> 271 // ******************************************************************** 162 // GetUserLimits 272 // GetUserLimits 163 // ******************************************* 273 // ******************************************************************** 164 // 274 // 165 inline 275 inline 166 G4UserLimits* G4LogicalVolume::GetUserLimits() 276 G4UserLimits* G4LogicalVolume::GetUserLimits() const 167 { 277 { 168 if(fUserLimits != nullptr) return fUserLimit << 278 if(fUserLimits) return fUserLimits; 169 if(fRegion != nullptr) return fRegion->GetUs << 279 if(fRegion) return fRegion->GetUserLimits(); 170 return nullptr; << 280 return 0; 171 } 281 } 172 282 173 // ******************************************* 283 // ******************************************************************** 174 // SetUserLimits 284 // SetUserLimits 175 // ******************************************* 285 // ******************************************************************** 176 // 286 // 177 inline 287 inline 178 void G4LogicalVolume::SetUserLimits(G4UserLimi 288 void G4LogicalVolume::SetUserLimits(G4UserLimits* pULimits) 179 { 289 { 180 fUserLimits = pULimits; 290 fUserLimits = pULimits; 181 } 291 } 182 292 183 // ******************************************* 293 // ******************************************************************** 184 // GetVoxelHeader 294 // GetVoxelHeader 185 // ******************************************* 295 // ******************************************************************** 186 // 296 // 187 inline 297 inline 188 G4SmartVoxelHeader* G4LogicalVolume::GetVoxelH 298 G4SmartVoxelHeader* G4LogicalVolume::GetVoxelHeader() const 189 { 299 { 190 return fVoxel; 300 return fVoxel; 191 } 301 } 192 302 193 // ******************************************* 303 // ******************************************************************** 194 // SetVoxelHeader 304 // SetVoxelHeader 195 // ******************************************* 305 // ******************************************************************** 196 // 306 // 197 inline 307 inline 198 void G4LogicalVolume::SetVoxelHeader(G4SmartVo 308 void G4LogicalVolume::SetVoxelHeader(G4SmartVoxelHeader* pVoxel) 199 { 309 { 200 fVoxel = pVoxel; 310 fVoxel = pVoxel; 201 } 311 } 202 312 203 // ******************************************* 313 // ******************************************************************** 204 // GetSmartless 314 // GetSmartless 205 // ******************************************* 315 // ******************************************************************** 206 // 316 // 207 inline 317 inline 208 G4double G4LogicalVolume::GetSmartless() const 318 G4double G4LogicalVolume::GetSmartless() const 209 { 319 { 210 return fSmartless; 320 return fSmartless; 211 } 321 } 212 322 213 // ******************************************* 323 // ******************************************************************** 214 // SetSmartless 324 // SetSmartless 215 // ******************************************* 325 // ******************************************************************** 216 // 326 // 217 inline 327 inline 218 void G4LogicalVolume::SetSmartless(G4double sm << 328 void G4LogicalVolume::SetSmartless(G4double s) 219 { 329 { 220 fSmartless = smt; << 330 fSmartless = s; 221 } 331 } 222 332 223 // ******************************************* 333 // ******************************************************************** 224 // IsToOptimise 334 // IsToOptimise 225 // ******************************************* 335 // ******************************************************************** 226 // 336 // 227 inline 337 inline 228 G4bool G4LogicalVolume::IsToOptimise() const 338 G4bool G4LogicalVolume::IsToOptimise() const 229 { 339 { 230 return fOptimise; 340 return fOptimise; 231 } 341 } 232 342 233 // ******************************************* 343 // ******************************************************************** 234 // SetOptimisation 344 // SetOptimisation 235 // ******************************************* 345 // ******************************************************************** 236 // 346 // 237 inline 347 inline 238 void G4LogicalVolume::SetOptimisation(G4bool o 348 void G4LogicalVolume::SetOptimisation(G4bool optim) 239 { 349 { 240 fOptimise = optim; 350 fOptimise = optim; 241 } 351 } 242 352 243 // ******************************************* 353 // ******************************************************************** 244 // IsRootRegion 354 // IsRootRegion 245 // ******************************************* 355 // ******************************************************************** 246 // 356 // 247 inline 357 inline 248 G4bool G4LogicalVolume::IsRootRegion() const 358 G4bool G4LogicalVolume::IsRootRegion() const 249 { 359 { 250 return fRootRegion; 360 return fRootRegion; 251 } 361 } 252 362 253 // ******************************************* 363 // ******************************************************************** 254 // SetRegionRootFlag 364 // SetRegionRootFlag 255 // ******************************************* 365 // ******************************************************************** 256 // 366 // 257 inline 367 inline 258 void G4LogicalVolume::SetRegionRootFlag(G4bool 368 void G4LogicalVolume::SetRegionRootFlag(G4bool rreg) 259 { 369 { 260 fRootRegion = rreg; 370 fRootRegion = rreg; 261 } 371 } 262 372 263 // ******************************************* 373 // ******************************************************************** 264 // IsRegion 374 // IsRegion 265 // ******************************************* 375 // ******************************************************************** 266 // 376 // 267 inline 377 inline 268 G4bool G4LogicalVolume::IsRegion() const 378 G4bool G4LogicalVolume::IsRegion() const 269 { 379 { 270 G4bool reg = false; 380 G4bool reg = false; 271 if (fRegion != nullptr) reg = true; << 381 if (fRegion) reg = true; 272 return reg; 382 return reg; 273 } 383 } 274 384 275 // ******************************************* 385 // ******************************************************************** 276 // SetRegion 386 // SetRegion 277 // ******************************************* 387 // ******************************************************************** 278 // 388 // 279 inline 389 inline 280 void G4LogicalVolume::SetRegion(G4Region* reg) 390 void G4LogicalVolume::SetRegion(G4Region* reg) 281 { 391 { 282 fRegion = reg; 392 fRegion = reg; 283 } 393 } 284 394 285 // ******************************************* 395 // ******************************************************************** 286 // GetRegion 396 // GetRegion 287 // ******************************************* 397 // ******************************************************************** 288 // 398 // 289 inline 399 inline 290 G4Region* G4LogicalVolume::GetRegion() const 400 G4Region* G4LogicalVolume::GetRegion() const 291 { 401 { 292 return fRegion; 402 return fRegion; 293 } 403 } 294 404 295 // ******************************************* 405 // ******************************************************************** 296 // PropagateRegion 406 // PropagateRegion 297 // ******************************************* 407 // ******************************************************************** 298 // 408 // 299 inline 409 inline 300 void G4LogicalVolume::PropagateRegion() 410 void G4LogicalVolume::PropagateRegion() 301 { 411 { 302 fRegion->ScanVolumeTree(this, true); 412 fRegion->ScanVolumeTree(this, true); 303 } 413 } 304 414 305 // ******************************************* 415 // ******************************************************************** 306 // Lock << 416 // GetMaterialCutsCouple >> 417 // ******************************************************************** >> 418 // >> 419 inline >> 420 const G4MaterialCutsCouple* G4LogicalVolume::GetMaterialCutsCouple() const >> 421 { >> 422 return fCutsCouple; >> 423 } >> 424 >> 425 // ******************************************************************** >> 426 // SetMaterialCutsCouple 307 // ******************************************* 427 // ******************************************************************** 308 // 428 // 309 inline 429 inline 310 void G4LogicalVolume::Lock() << 430 void G4LogicalVolume::SetMaterialCutsCouple(G4MaterialCutsCouple* cuts) 311 { 431 { 312 fLock = true; << 432 fCutsCouple = cuts; 313 } 433 } 314 434 315 // ******************************************* 435 // ******************************************************************** 316 // Operator == 436 // Operator == 317 // ******************************************* 437 // ******************************************************************** 318 // 438 // 319 inline 439 inline 320 G4bool G4LogicalVolume::operator == ( const G4 440 G4bool G4LogicalVolume::operator == ( const G4LogicalVolume& lv) const 321 { 441 { 322 return this==&lv; << 442 return (this==&lv) ? true : false; 323 } 443 } 324 444 325 // ******************************************* 445 // ******************************************************************** 326 // SetBiasWeight << 446 // GetVisAttributes 327 // ******************************************* 447 // ******************************************************************** 328 // 448 // 329 inline 449 inline 330 void G4LogicalVolume::SetBiasWeight(G4double w << 450 const G4VisAttributes* G4LogicalVolume::GetVisAttributes () const 331 { 451 { 332 fBiasWeight = weight; << 452 return fVisAttributes; 333 } 453 } 334 454 335 // ******************************************* 455 // ******************************************************************** 336 // GetBiasWeight << 456 // SetVisAttributes 337 // ******************************************* 457 // ******************************************************************** 338 // 458 // 339 inline 459 inline 340 G4double G4LogicalVolume::GetBiasWeight() cons << 460 void G4LogicalVolume::SetVisAttributes (const G4VisAttributes* pVA) 341 { 461 { 342 return fBiasWeight; << 462 fVisAttributes = pVA; 343 } 463 } 344 464 345 // ******************************************* 465 // ******************************************************************** 346 // GetVisAttributes << 466 // SetBiasWeight 347 // ******************************************* 467 // ******************************************************************** 348 // 468 // 349 inline 469 inline 350 const G4VisAttributes* G4LogicalVolume::GetVis << 470 void G4LogicalVolume::SetBiasWeight(G4double w) 351 { 471 { 352 return fVisAttributes.get(); << 472 fBiasWeight = w; 353 } 473 } >> 474 >> 475 // ******************************************************************** >> 476 // GetBiasWeight >> 477 // ******************************************************************** >> 478 // >> 479 inline >> 480 G4double G4LogicalVolume::GetBiasWeight() const >> 481 { >> 482 return fBiasWeight; >> 483 } >> 484 354 485