#include <G4ScoringManager.hh>
|
| G4ScoringManager (const G4ScoringManager &)=delete |
|
G4ScoringManager & | operator= (const G4ScoringManager &)=delete |
|
| ~G4ScoringManager () |
|
void | RegisterScoreColorMap (G4VScoreColorMap *colorMap) |
|
void | Accumulate (G4VHitsCollection *map) |
|
void | Merge (const G4ScoringManager *scMan) |
|
G4VScoringMesh * | FindMesh (G4VHitsCollection *map) |
|
G4VScoringMesh * | FindMesh (const G4String &) |
|
void | List () const |
|
void | Dump () const |
|
void | DrawMesh (const G4String &meshName, const G4String &psName, const G4String &colorMapName, G4int axflg=111) |
|
void | DrawMesh (const G4String &meshName, const G4String &psName, G4int idxPlane, G4int iColumn, const G4String &colorMapName) |
|
void | DumpQuantityToFile (const G4String &meshName, const G4String &psName, const G4String &fileName, const G4String &option="") |
|
void | DumpAllQuantitiesToFile (const G4String &meshName, const G4String &fileName, const G4String &option="") |
|
G4VScoreColorMap * | GetScoreColorMap (const G4String &mapName) |
|
void | ListScoreColorMaps () |
|
void | SetCurrentMesh (G4VScoringMesh *scm) |
|
G4VScoringMesh * | GetCurrentMesh () const |
|
void | CloseCurrentMesh () |
|
void | SetVerboseLevel (G4int vl) |
|
G4int | GetVerboseLevel () const |
|
std::size_t | GetNumberOfMesh () const |
|
void | RegisterScoringMesh (G4VScoringMesh *scm) |
|
G4VScoringMesh * | GetMesh (G4int i) const |
|
const G4String & | GetWorldName (G4int i) const |
|
void | SetScoreWriter (G4VScoreWriter *sw) |
|
void | SetFactor (G4double val=1.0) |
|
G4double | GetFactor () const |
|
Definition at line 63 of file G4ScoringManager.hh.
◆ G4ScoringManager() [1/2]
◆ ~G4ScoringManager()
G4ScoringManager::~G4ScoringManager |
( |
| ) |
|
Definition at line 70 of file G4ScoringManager.cc.
71{
72 delete writer;
73 delete fDefaultLinearColorMap;
74 delete fColorMapDict;
75 delete fQuantityMessenger;
76 delete fMessenger;
77 fSManager = nullptr;
78}
◆ G4ScoringManager() [2/2]
G4ScoringManager::G4ScoringManager |
( |
| ) |
|
|
protected |
Definition at line 56 of file G4ScoringManager.cc.
57 : verboseLevel(0)
58 , fCurrentMesh(nullptr)
59{
60 fMessenger = new G4ScoringMessenger(this);
61 fQuantityMessenger = new G4ScoreQuantityMessenger(this);
63 fDefaultLinearColorMap = new G4DefaultLinearColorMap("defaultLinearColorMap");
64 (*fColorMapDict)[fDefaultLinearColorMap->GetName()] = fDefaultLinearColorMap;
65 G4VScoreColorMap* logColorMap = new G4ScoreLogColorMap("logColorMap");
66 (*fColorMapDict)[logColorMap->
GetName()] = logColorMap;
67 writer = new G4VScoreWriter();
68}
std::map< G4String, G4VScoreColorMap * > ColorMapDict
const G4String & GetName() const
◆ Accumulate()
Definition at line 83 of file G4ScoringManager.cc.
84{
86 if(sm == nullptr)
87 return;
88 if(verboseLevel > 9)
89 {
90 G4cout <<
"G4ScoringManager::Accumulate() for " << map->
GetSDname() <<
" / "
92 G4cout <<
" is calling G4VScoringMesh::Accumulate() of "
94 }
95 sm->Accumulate(
static_cast<G4THitsMap<double>*
>(map));
96}
G4GLOB_DLL std::ostream G4cout
G4VScoringMesh * FindMesh(G4VHitsCollection *map)
const G4String & GetSDname() const
const G4String & GetName() const
Referenced by G4RunManager::UpdateScoring().
◆ CloseCurrentMesh()
void G4ScoringManager::CloseCurrentMesh |
( |
| ) |
|
|
inline |
◆ DrawMesh() [1/2]
Definition at line 146 of file G4ScoringManager.cc.
149{
150 G4VScoringMesh* mesh =
FindMesh(meshName);
151 if(mesh != nullptr)
152 {
154 if(colorMap == nullptr)
155 {
156 G4cerr <<
"WARNING : Score color map <" << colorMapName
157 <<
"> is not found. Default linear color map is used." <<
G4endl;
158 colorMap = fDefaultLinearColorMap;
159 }
160 mesh->
DrawMesh(psName, colorMap, axflg);
161 }
162 else
163 {
164 G4cerr <<
"ERROR : G4ScoringManager::DrawMesh() --- <" << meshName
165 <<
"> is not found. Nothing is done." <<
G4endl;
166 }
167}
G4GLOB_DLL std::ostream G4cerr
G4VScoreColorMap * GetScoreColorMap(const G4String &mapName)
void DrawMesh(const G4String &psName, G4VScoreColorMap *colorMap, G4int axflg=111)
◆ DrawMesh() [2/2]
Definition at line 169 of file G4ScoringManager.cc.
172{
173 G4VScoringMesh* mesh =
FindMesh(meshName);
174 if(mesh != nullptr)
175 {
177 if(colorMap == nullptr)
178 {
179 G4cerr <<
"WARNING : Score color map <" << colorMapName
180 <<
"> is not found. Default linear color map is used." <<
G4endl;
181 colorMap = fDefaultLinearColorMap;
182 }
183 mesh->
DrawMesh(psName, idxPlane, iColumn, colorMap);
184 }
185 else
186 {
187 G4cerr <<
"ERROR : G4ScoringManager::DrawMesh() --- <" << meshName
188 <<
"> is not found. Nothing is done." <<
G4endl;
189 }
190}
◆ Dump()
void G4ScoringManager::Dump |
( |
| ) |
const |
◆ DumpAllQuantitiesToFile()
void G4ScoringManager::DumpAllQuantitiesToFile |
( |
const G4String & | meshName, |
|
|
const G4String & | fileName, |
|
|
const G4String & | option = "" ) |
Definition at line 210 of file G4ScoringManager.cc.
213{
214 G4VScoringMesh* mesh =
FindMesh(meshName);
215 if(mesh != nullptr)
216 {
217 writer->SetScoringMesh(mesh);
218 writer->DumpAllQuantitiesToFile(fileName, option);
219 }
220 else
221 {
222 G4cerr <<
"ERROR : G4ScoringManager::DrawAllQuantitiesToFile() --- <"
223 << meshName <<
"> is not found. Nothing is done." <<
G4endl;
224 }
225}
◆ DumpQuantityToFile()
Definition at line 192 of file G4ScoringManager.cc.
196{
197 G4VScoringMesh* mesh =
FindMesh(meshName);
198 if(mesh != nullptr)
199 {
200 writer->SetScoringMesh(mesh);
201 writer->DumpQuantityToFile(psName, fileName, option);
202 }
203 else
204 {
205 G4cerr <<
"ERROR : G4ScoringManager::DrawQuantityToFile() --- <" << meshName
206 <<
"> is not found. Nothing is done." <<
G4endl;
207 }
208}
◆ FindMesh() [1/2]
Definition at line 116 of file G4ScoringManager.cc.
117{
118 G4VScoringMesh*
sm =
nullptr;
119 for(auto msh : fMeshVec)
120 {
121 if(msh->GetWorldName() == wName)
122 return msh;
123 }
124 if((sm == nullptr) && verboseLevel > 9)
125 {
126 G4cout <<
"WARNING : G4ScoringManager::FindMesh() --- <" << wName
127 <<
"> is not found. Null returned." <<
G4endl;
128 }
129 return nullptr;
130}
◆ FindMesh() [2/2]
◆ GetCurrentMesh()
◆ GetFactor()
G4double G4ScoringManager::GetFactor |
( |
| ) |
const |
|
inline |
Definition at line 144 of file G4ScoringManager.hh.
145 {
146 if(writer != nullptr)
147 {
148 return writer->GetFactor();
149 }
150
151 return -1.0;
152 }
◆ GetMesh()
◆ GetNumberOfMesh()
std::size_t G4ScoringManager::GetNumberOfMesh |
( |
| ) |
const |
|
inline |
◆ GetReplicaLevel()
G4int G4ScoringManager::GetReplicaLevel |
( |
| ) |
|
|
static |
◆ GetScoreColorMap()
Definition at line 241 of file G4ScoringManager.cc.
242{
243 auto mItr = fColorMapDict->find(mapName);
244 if(mItr == fColorMapDict->cend())
245 {
246 return nullptr;
247 }
248 return (mItr->second);
249}
Referenced by DrawMesh(), and DrawMesh().
◆ GetScoringManager()
◆ GetScoringManagerIfExist()
Definition at line 51 of file G4ScoringManager.cc.
52{
53 return fSManager;
54}
Referenced by G4VSceneHandler::AddCompound(), G4VSceneHandler::AddCompound(), G4PhysicsListHelper::AddTransportation(), G4MTRunManager::ConstructScoringWorlds(), G4RunManager::ConstructScoringWorlds(), G4SubEvtRunManager::ConstructScoringWorlds(), G4TaskRunManager::ConstructScoringWorlds(), G4WorkerRunManager::ConstructScoringWorlds(), G4PSHitsModel::DescribeYourselfTo(), G4ScoringMessenger::Fill1D(), G4MTRunManager::G4MTRunManager(), G4TaskRunManager::G4TaskRunManager(), G4WorkerRunManager::MergePartialResults(), G4RunManager::UpdateScoring(), and G4SubEvtRunManager::UpdateScoringForSubEvent().
◆ GetVerboseLevel()
G4int G4ScoringManager::GetVerboseLevel |
( |
| ) |
const |
|
inline |
◆ GetWorldName()
◆ List()
void G4ScoringManager::List |
( |
| ) |
const |
Definition at line 132 of file G4ScoringManager.cc.
133{
136 for(auto msh : fMeshVec)
137 msh->List();
138}
std::size_t GetNumberOfMesh() const
◆ ListScoreColorMaps()
void G4ScoringManager::ListScoreColorMaps |
( |
| ) |
|
Definition at line 251 of file G4ScoringManager.cc.
252{
253 G4cout <<
"Registered Score Color Maps "
254 "-------------------------------------------------------"
256 auto mItr = fColorMapDict->cbegin();
257 for(; mItr != fColorMapDict->cend(); ++mItr)
258 {
259 G4cout <<
" " << mItr->first;
260 }
262}
◆ Merge()
Definition at line 264 of file G4ScoringManager.cc.
265{
267 {
268 G4VScoringMesh* fMesh =
GetMesh(i);
269 G4VScoringMesh* scMesh = mgr->GetMesh(i);
270 fMesh->
Merge(scMesh);
271 }
272}
G4VScoringMesh * GetMesh(G4int i) const
void Merge(const G4VScoringMesh *scMesh)
◆ operator=()
◆ RegisterScoreColorMap()
Definition at line 227 of file G4ScoringManager.cc.
228{
229 if(fColorMapDict->find(colorMap->
GetName()) != fColorMapDict->cend())
230 {
231 G4cerr <<
"ERROR : G4ScoringManager::RegisterScoreColorMap -- "
233 <<
" has already been registered. Method ignored." <<
G4endl;
234 }
235 else
236 {
237 (*fColorMapDict)[colorMap->
GetName()] = colorMap;
238 }
239}
◆ RegisterScoringMesh()
Definition at line 118 of file G4ScoringManager.hh.
119 {
121 fMeshVec.push_back(scm);
123 }
void SetCurrentMesh(G4VScoringMesh *scm)
void SetVerboseLevel(G4int vl)
◆ SetCurrentMesh()
◆ SetFactor()
void G4ScoringManager::SetFactor |
( |
G4double | val = 1.0 | ) |
|
|
inline |
Definition at line 139 of file G4ScoringManager.hh.
140 {
141 if(writer != nullptr)
142 writer->SetFactor(val);
143 }
◆ SetReplicaLevel()
void G4ScoringManager::SetReplicaLevel |
( |
G4int | lvl | ) |
|
|
static |
◆ SetScoreWriter()
Definition at line 130 of file G4ScoringManager.hh.
131 {
132 delete writer;
133 writer = sw;
134 if(writer != nullptr)
136 }
void SetVerboseLevel(G4int vl)
◆ SetVerboseLevel()
void G4ScoringManager::SetVerboseLevel |
( |
G4int | vl | ) |
|
|
inline |
Definition at line 106 of file G4ScoringManager.hh.
107 {
108 verboseLevel = vl;
109 for(auto& itr : fMeshVec)
110 {
111 itr->SetVerboseLevel(vl);
112 }
113 if(writer != nullptr)
114 writer->SetVerboseLevel(vl);
115 }
The documentation for this class was generated from the following files: