Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4GeometryManager Class Reference

#include <G4GeometryManager.hh>

Public Member Functions

G4bool CloseGeometry (G4bool pOptimise=true, G4bool verbose=false, G4VPhysicalVolume *vol=nullptr)
 
void OpenGeometry (G4VPhysicalVolume *vol=nullptr)
 
G4bool IsGeometryClosed ()
 
void SetWorldMaximumExtent (G4double worldExtent)
 
void OptimiseInParallel (G4bool val=true)
 
void UndertakeOptimisation ()
 
void RequestParallelOptimisation (G4bool val=true, G4bool verbose=true)
 
void ChooseSequentialOptimisation (G4bool verbose=false)
 
G4bool IsParallelOptimisationConfigured ()
 
G4bool IsParallelOptimisationFinished ()
 
 ~G4GeometryManager ()
 

Static Public Member Functions

static G4GeometryManagerGetInstance ()
 
static G4GeometryManagerGetInstanceIfExist ()
 

Detailed Description

Definition at line 55 of file G4GeometryManager.hh.

Constructor & Destructor Documentation

◆ ~G4GeometryManager()

G4GeometryManager::~G4GeometryManager ( )

Definition at line 111 of file G4GeometryManager.cc.

112{
113 fgInstance = nullptr;
114 fIsClosed = false;
115
116 if( fWallClockTimer && G4Threading::IsMasterThread() )
117 {
118 delete fWallClockTimer;
119 fWallClockTimer= nullptr;
120 }
121}
G4bool IsMasterThread()

Member Function Documentation

◆ ChooseSequentialOptimisation()

void G4GeometryManager::ChooseSequentialOptimisation ( G4bool verbose = false)

◆ CloseGeometry()

G4bool G4GeometryManager::CloseGeometry ( G4bool pOptimise = true,
G4bool verbose = false,
G4VPhysicalVolume * vol = nullptr )

Definition at line 130 of file G4GeometryManager.cc.

132{
133 if (!fIsClosed && G4Threading::IsMasterThread())
134 {
135 if (pVolume != nullptr)
136 {
137 BuildOptimisations(pOptimise, pVolume);
138 }
139 else
140 {
141 BuildOptimisations(pOptimise, verbose);
142 }
143 fIsClosed = true;
144 }
145 return true;
146}

Referenced by G4TheRayTracer::CreateBitMap(), G4DNAChemistryManager::HandleStandaloneInitialization(), G4RunManagerKernel::ResetNavigator(), and G4TheRayTracer::StoreUserActions().

◆ GetInstance()

◆ GetInstanceIfExist()

G4GeometryManager * G4GeometryManager::GetInstanceIfExist ( )
static

Definition at line 193 of file G4GeometryManager.cc.

194{
195 return fgInstance;
196}

Referenced by G4RunManagerKernel::~G4RunManagerKernel().

◆ IsGeometryClosed()

G4bool G4GeometryManager::IsGeometryClosed ( )
inline

Definition at line 70 of file G4GeometryManager.hh.

70{ return fIsClosed; }

◆ IsParallelOptimisationConfigured()

G4bool G4GeometryManager::IsParallelOptimisationConfigured ( )

Definition at line 974 of file G4GeometryManager.cc.

975{
976 return fOptimiseInParallelConfigured;
977}

Referenced by G4WorkerRunManager::InitializeGeometry(), and G4RunManagerKernel::ResetNavigator().

◆ IsParallelOptimisationFinished()

G4bool G4GeometryManager::IsParallelOptimisationFinished ( )

Definition at line 983 of file G4GeometryManager.cc.

984{
985 return fParallelVoxelOptimisationFinished;
986}

Referenced by G4RunManagerKernel::ResetNavigator(), and UndertakeOptimisation().

◆ OpenGeometry()

void G4GeometryManager::OpenGeometry ( G4VPhysicalVolume * vol = nullptr)

Definition at line 154 of file G4GeometryManager.cc.

155{
156 if (fIsClosed && G4Threading::IsMasterThread())
157 {
158 if (pVolume != nullptr)
159 {
160 DeleteOptimisations(pVolume);
161 }
162 else
163 {
164 DeleteOptimisations();
165 }
166 fIsClosed = false;
167 }
168}

Referenced by G4ErrorPropagatorManager::CloseGeometry(), G4TheRayTracer::CreateBitMap(), G4DNAChemistryManager::HandleStandaloneInitialization(), G4RunManager::ReinitializeGeometry(), G4RunManagerKernel::ResetNavigator(), G4GDMLMessenger::SetNewValue(), G4TheRayTracer::StoreUserActions(), and G4RunManagerKernel::~G4RunManagerKernel().

◆ OptimiseInParallel()

void G4GeometryManager::OptimiseInParallel ( G4bool val = true)

Definition at line 202 of file G4GeometryManager.cc.

203{
205}
void RequestParallelOptimisation(G4bool val=true, G4bool verbose=true)

◆ RequestParallelOptimisation()

void G4GeometryManager::RequestParallelOptimisation ( G4bool val = true,
G4bool verbose = true )

Definition at line 470 of file G4GeometryManager.cc.

471{
472 fParallelVoxelOptimisationRequested = flag;
473 if( flag )
474 {
475 ConfigureParallelOptimisation(verbose);
476 }
477}

Referenced by OptimiseInParallel().

◆ SetWorldMaximumExtent()

void G4GeometryManager::SetWorldMaximumExtent ( G4double worldExtent)

Definition at line 842 of file G4GeometryManager.cc.

843{
844 if (!G4SolidStore::GetInstance()->empty())
845 {
846 // Sanity check to assure that extent is fixed BEFORE creating
847 // any geometry object (solids in this case)
848 //
849 G4Exception("G4GeometryManager::SetMaximumExtent()",
850 "GeomMgt0003", FatalException,
851 "Extent can be set only BEFORE creating any geometry object!");
852 }
854}
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
void SetSurfaceTolerance(G4double worldExtent)
static G4GeometryTolerance * GetInstance()
static G4SolidStore * GetInstance()

◆ UndertakeOptimisation()

void G4GeometryManager::UndertakeOptimisation ( )

Definition at line 526 of file G4GeometryManager.cc.

527{
528 G4bool verbose = fVerboseParallel;
529 G4LogicalVolume* logVolume = nullptr;
530
531 fParallelVoxelOptimisationUnderway = true;
532
533 // Start timer - if not already done
534 if( ( !fWallClockStarted ) && verbose )
535 {
536 G4AutoLock startTimeLock(wallClockTimerMutex);
537 if( !fWallClockStarted )
538 {
539 fWallClockTimer->Start();
540 fWallClockStarted= true;
541 }
542 }
543
544 G4Timer fetimer;
545 unsigned int numVolumesOptimised = 0;
546
547 while( (logVolume = ObtainVolumeToOptimise()) != nullptr )
548 {
549 if (verbose) fetimer.Start();
550
551 G4SmartVoxelHeader* head = logVolume->GetVoxelHeader();
552 delete head;
553 logVolume->SetVoxelHeader(nullptr);
554
555 head = new G4SmartVoxelHeader(logVolume);
556 // *********************************
557 logVolume->SetVoxelHeader(head);
558
559 if (head != nullptr)
560 {
561 ++numVolumesOptimised;
562 }
563 else
564 {
566 message << "VoxelHeader allocation error." << G4endl
567 << "Allocation of new VoxelHeader" << G4endl
568 << "for logical volume " << logVolume->GetName() << " failed.";
569 G4Exception("G4GeometryManager::BuildOptimisationsParallel()",
570 "GeomMgt0003", FatalException, message);
571 }
572
573 if(verbose)
574 {
575 fetimer.Stop();
576 auto feRealElapsed = fetimer.GetRealElapsed();
577 // Must use 'real' elapsed time -- cannot trust user/system time
578 // (it accounts for all threads)
579
580 G4AutoLock lock(voxelStatsMutex);
581 fGlobVoxelStats.emplace_back( logVolume, head,
582 0.0, // Cannot estimate system time
583 feRealElapsed ); // Use real time instead of user time
584 fSumVoxelTime += feRealElapsed;
585 }
586 }
587
588 G4bool allDone = false;
589 G4int myCount= -1;
590
591 myCount = ReportWorkerIsDoneOptimising(numVolumesOptimised);
593
594 if( allDone && (myCount == G4Threading::GetNumberOfRunningWorkerThreads()) )
595 {
596 G4int badVolumes = CheckOptimisation(); // Check all voxels are created!
597 if( badVolumes > 0 )
598 {
600 errmsg <<" Expected that all voxelisation work is done, "
601 << "but found that voxels headers are missing in "
602 << badVolumes << " volumes.";
603 G4Exception("G4GeometryManager::UndertakeOptimisation()",
604 "GeomMng002", FatalException, errmsg);
605 }
606
607 // Create report
608
609 if( verbose )
610 {
611 fWallClockTimer->Stop();
612
613 std::ostream& report_stream = std::cout; // G4cout; does not work!
614 report_stream << G4endl
615 << "G4GeometryManager::UndertakeOptimisation"
616 << " -- Timing for Voxel Optimisation" << G4endl;
617 report_stream << " - Elapsed time (real) = " << std::setprecision(4)
618 << fWallClockTimer->GetRealElapsed() << "s (wall clock)"
619 << ", user " << fWallClockTimer->GetUserElapsed() << "s"
620 << ", system " << fWallClockTimer->GetSystemElapsed() << "s."
621 << G4endl;
622 report_stream << " - Sum voxel time (real) = " << fSumVoxelTime
623 << "s.";
624 report_stream << std::setprecision(6) << G4endl << G4endl;
625
626 ReportVoxelStats( fGlobVoxelStats, fSumVoxelTime, report_stream );
627 report_stream.flush();
628 }
629 }
630 else
631 {
632 WaitForVoxelisationFinish(false);
633 }
634}
G4TemplateAutoLock< G4Mutex > G4AutoLock
std::ostringstream G4ExceptionDescription
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
#define G4endl
Definition G4ios.hh:67
G4bool IsParallelOptimisationFinished()
void SetVoxelHeader(G4SmartVoxelHeader *pVoxel)
const G4String & GetName() const
G4SmartVoxelHeader * GetVoxelHeader() const
void Stop()
void Start()
G4double GetRealElapsed() const
Definition G4Timer.cc:113
G4int GetNumberOfRunningWorkerThreads()

Referenced by G4WorkerRunManager::InitializeGeometry(), and G4RunManagerKernel::ResetNavigator().


The documentation for this class was generated from the following files: