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