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