Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4FieldManagerStore.cc
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26// G4FieldManagerStore implementation
27//
28// Author: J.Apostolakis, 07.12.2007 - Adapted from G4LogicalVolumeStore
29// --------------------------------------------------------------------
30
31#include "G4Types.hh"
33#include "G4ChordFinder.hh"
34
35// ***************************************************************************
36// Static class variables
37// ***************************************************************************
38//
39G4ThreadLocal G4FieldManagerStore* G4FieldManagerStore::fgInstance = nullptr;
40G4ThreadLocal G4bool G4FieldManagerStore::locked = false;
41
42// ***************************************************************************
43// Return ptr to Store, setting if necessary
44// ***************************************************************************
45//
47{
48 if (fgInstance == nullptr)
49 {
50 fgInstance = new G4FieldManagerStore;
51 }
52 return fgInstance;
53}
54
55// ***************************************************************************
56// Return ptr to Store
57// ***************************************************************************
58//
60{
61 return fgInstance;
62}
63
64// ***************************************************************************
65// Protected constructor: Construct underlying container with
66// initial size of 100 entries
67// ***************************************************************************
68//
69G4FieldManagerStore::G4FieldManagerStore()
70{
71 reserve(100);
72}
73
74// ***************************************************************************
75// Destructor
76// ***************************************************************************
77//
79{
80 Clean();
81 fgInstance = nullptr;
82}
83
84// ***************************************************************************
85// Delete all elements from the store
86// ***************************************************************************
87//
89{
90 // Locks store for deletion of field managers. De-registration will be
91 // performed at this stage. G4FieldManagers will not de-register themselves.
92 //
93 locked = true;
94
95 G4FieldManagerStore* store = GetInstance();
96
97 for(const auto & pos : *store)
98 {
99 delete pos;
100 }
101
102 locked = false;
103 store->clear();
104}
105
106// ***************************************************************************
107// Add field manager to container
108// ***************************************************************************
109//
111{
112 GetInstance()->push_back(pFieldManager);
113}
114
115// ***************************************************************************
116// Remove volume from container
117// ***************************************************************************
118//
120{
121 if (!locked) // Do not de-register if locked !
122 {
123 for (auto i=GetInstance()->cbegin(); i!=GetInstance()->cend(); ++i)
124 {
125 if (*i==pFieldMgr) // For LogVol was **i == *pLogVolume ... Reason?
126 {
127 GetInstance()->erase(i);
128 break;
129 }
130 }
131 }
132}
133
134// ***************************************************************************
135// Globally reset the state
136// ***************************************************************************
137//
138void
140{
141 G4ChordFinder* pChordFnd;
142
143 for (const auto & mgr : *GetInstance())
144 {
145 pChordFnd = mgr->GetChordFinder();
146 if( pChordFnd != nullptr )
147 {
148 pChordFnd->ResetStepEstimate();
149 }
150 }
151}
bool G4bool
Definition G4Types.hh:86
G4ChordFinder is a class that provides Runge-Kutta integration of motion ODE and also has a method th...
void ResetStepEstimate()
G4FieldManagerStore is a container for all field managers, with functionality derived from std::vecto...
static G4FieldManagerStore * GetInstanceIfExist()
static void DeRegister(G4FieldManager *pFieldMan)
static G4FieldManagerStore * GetInstance()
static void Register(G4FieldManager *pFieldMan)
G4FieldManager is a manager (store) for a pointer to the Field subclass that describes the field of a...
#define G4ThreadLocal
Definition tls.hh:77