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