Geant4 11.2.2
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4SDManager.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//
27//
28
29#include "G4SDManager.hh"
30
31#include "G4HCofThisEvent.hh"
32#include "G4SDmessenger.hh"
33#include "G4VHitsCollection.hh"
35#include "G4ios.hh"
36
37G4ThreadLocal G4SDManager* G4SDManager::fSDManager = nullptr;
38
40{
41 if (fSDManager == nullptr) {
42 fSDManager = new G4SDManager;
43 }
44 return fSDManager;
45}
46
48
50{
51 G4String topName = "/";
52 treeTop = new G4SDStructure(topName);
53 theMessenger = new G4SDmessenger(this);
54 HCtable = new G4HCtable;
55}
56
58{
59 delete theMessenger;
60 delete HCtable;
61 delete treeTop;
62 DestroyFilters();
63 theMessenger = nullptr;
64 HCtable = nullptr;
65 treeTop = nullptr;
66 fSDManager = nullptr;
67}
68
70{
71 G4int numberOfCollections = aSD->GetNumberOfCollections();
72 G4String pathName = aSD->GetPathName();
73 if (pathName[0] != '/') pathName.insert(0, "/");
74 if (pathName.back() != '/') pathName += "/";
75 treeTop->AddNewDetector(aSD, pathName);
76 if (numberOfCollections < 1) return;
77 for (G4int i = 0; i < numberOfCollections; i++) {
78 G4String SDname = aSD->GetName();
79 G4String DCname = aSD->GetCollectionName(i);
80 AddNewCollection(SDname, DCname);
81 }
82 if (verboseLevel > 0) {
83 G4cout << "New sensitive detector <" << aSD->GetName() << "> is registered at " << pathName
84 << G4endl;
85 }
86}
87
89{
90 G4int i = HCtable->Registor(SDname, DCname);
91 if (verboseLevel > 0) {
92 if (i < 0) {
93 if (verboseLevel > 1)
94 G4cout << "G4SDManager::AddNewCollection : the collection <" << SDname << "/" << DCname
95 << "> has already been reginstered." << G4endl;
96 }
97 else {
98 G4cout << "G4SDManager::AddNewCollection : the collection <" << SDname << "/" << DCname
99 << "> is registered at " << i << G4endl;
100 }
101 }
102}
103
105{
106 auto HCE = new G4HCofThisEvent(HCtable->entries());
107 treeTop->Initialize(HCE);
108 return HCE;
109}
110
112
113void G4SDManager::Activate(G4String dName, G4bool activeFlag)
114{
115 G4String pathName = dName;
116 if (pathName[0] != '/') pathName.insert(0, "/");
117 treeTop->Activate(pathName, activeFlag);
118}
119
121{
122 G4String pathName = dName;
123 if (pathName[0] != '/') pathName.insert(0, "/");
124 return treeTop->FindSensitiveDetector(pathName, warning);
125}
126
128{
129 G4int id = HCtable->GetCollectionID(colName);
130 if (id == -1) {
131 G4cout << "<" << colName << "> is not found." << G4endl;
132 }
133 else if (id == -2) {
134 G4cout << "<" << colName << "> is ambiguous." << G4endl;
135 }
136 return id;
137}
138
140{
141 G4String HCname = aHC->GetSDname();
142 HCname += "/";
143 HCname += aHC->GetName();
144 return GetCollectionID(HCname);
145}
146
147void G4SDManager::RegisterSDFilter(G4VSDFilter* filter) { FilterList.push_back(filter); }
148
150{
151 for (auto f = FilterList.begin(); f != FilterList.end(); f++) {
152 if (*f == filter) {
153 FilterList.erase(f);
154 break;
155 }
156 }
157}
158
159void G4SDManager::DestroyFilters()
160{
161 auto f = FilterList.begin();
162 while (f != FilterList.end()) {
163 if (verboseLevel > 0) G4cout << "### deleting " << (*f)->GetName() << " " << (*f) << G4endl;
164 delete *f;
165 f = FilterList.begin();
166 }
167 FilterList.clear();
168}
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
G4int Registor(G4String SDname, G4String HCname)
Definition G4HCtable.cc:33
G4int GetCollectionID(G4String HCname) const
Definition G4HCtable.cc:43
G4int entries() const
Definition G4HCtable.hh:60
void RegisterSDFilter(G4VSDFilter *filter)
static G4SDManager * GetSDMpointer()
void TerminateCurrentEvent(G4HCofThisEvent *HCE)
G4HCofThisEvent * PrepareNewEvent()
void Activate(G4String dName, G4bool activeFlag)
void AddNewDetector(G4VSensitiveDetector *aSD)
void DeRegisterSDFilter(G4VSDFilter *filter)
G4int GetCollectionID(G4String colName)
G4VSensitiveDetector * FindSensitiveDetector(G4String dName, G4bool warning=true)
static G4SDManager * GetSDMpointerIfExist()
void AddNewCollection(G4String SDname, G4String DCname)
void Initialize(G4HCofThisEvent *HCE)
void Activate(const G4String &aName, G4bool sensitiveFlag)
void Terminate(G4HCofThisEvent *HCE)
G4VSensitiveDetector * FindSensitiveDetector(const G4String &aName, G4bool warning=true)
void AddNewDetector(G4VSensitiveDetector *aSD, const G4String &treeStructure)
const G4String & GetSDname() const
const G4String & GetName() const
G4String GetCollectionName(G4int id) const
#define G4ThreadLocal
Definition tls.hh:77