53 std::ostringstream ost;
135 const std::vector<G4PhysicalVolumeModel::G4PhysicalVolumeNodeID>& fullPath)
138 std::ostringstream oss;
140 for (
const auto& pvNodeId : fullPath) {
141 const auto& pv = pvNodeId.GetPhysicalVolume();
142 auto iterator = find(pvStore->cbegin(), pvStore->cend(), pv);
143 if (iterator == pvStore->cend()) {
145 ed <<
"Volume no longer in physical volume store.";
149 oss <<
' ' << pvNodeId.GetPhysicalVolume()->GetName() <<
' ' << pvNodeId.GetCopyNo();
156 const std::vector<G4PhysicalVolumeModel::G4PhysicalVolumeNodeID>& fullPath,
G4bool visibiity)
179 std::list<G4SceneTreeItem>::iterator foundIter;
180 if (
fSceneTree.FindTouchableFromRoot(fullPathString, foundIter)) {
181 foundIter->AccessVisAttributes().SetVisibility(visibiity);
186 ed <<
"Touchable \"" << fullPath <<
"\" not found";
192 const std::vector<G4PhysicalVolumeModel::G4PhysicalVolumeNodeID>& fullPath,
216 std::list<G4SceneTreeItem>::iterator foundIter;
217 if (
fSceneTree.FindTouchableFromRoot(fullPathString, foundIter)) {
218 foundIter->AccessVisAttributes().SetColour(colour);
223 ed <<
"Touchable \"" << fullPath <<
"\" not found";
237 const auto& modelType = model->
GetType();
248 void ProcessVolume(
const G4VSolid&) {++fNTotalTouchables;}
249 G4int fNTotalTouchables = 0;
251 pvModel->DescribeYourselfTo(counter);
253 std::ostringstream oss;
254 oss << counter.fNTotalTouchables <<
" touchables - too many for scene tree";
255 furtherInfo = oss.str();
258 ed << pvModel->GetGlobalDescription() <<
259 ":\n Too many touchables (" << counter.fNTotalTouchables
260 <<
") for scene tree. Scene tree for this model will be empty.";
268 auto& modelItems =
fSceneTree.AccessChildren();
269 auto modelIter = modelItems.begin();
270 auto pvModelIter = modelItems.end();
271 for (; modelIter != modelItems.end(); ++modelIter) {
273 pvModelIter = modelIter;
275 if (modelIter->GetModelDescription() == modelDescription)
break;
278 if (modelIter == modelItems.end()) {
284 if (pvModelIter != modelItems.end() &&
286 fSceneTree.InsertChild(++pvModelIter, modelItem);
291 modelIter->AccessVisAttributes().SetVisibility(
true);
299 if (fpPVModel ==
nullptr) {
301 "G4PhysicalVolumeModel pointer is null");
307 void ProcessVolume(
const G4VSolid&) {}
309 fpPVModel->DescribeYourselfTo(counter);
313 for (
const auto& dn : fpPVModel->GetNumberOfTouchables()) {
314 expanded += dn.second;
315 if (fMaximumExpandedDepth < dn.first) fMaximumExpandedDepth = dn.first;
316 if (expanded > fMaximumExpanded) break;
320 const auto& modelID = fpPVModel->GetGlobalDescription();
321 auto& modelItems = fpViewer->fSceneTree.AccessChildren();
322 fModelIter = modelItems.begin();
323 for (; fModelIter != modelItems.end(); ++fModelIter) {
324 if (fModelIter->GetModelDescription() == modelID)
break;
326 if (fModelIter == modelItems.end()) {
327 G4Exception(
"G4VViewer::SceneTreeScene::SceneTreeScene",
"visman0406", JustWarning,
332void G4VViewer::SceneTreeScene::ProcessVolume(
const G4VSolid&)
334 if (fpViewer->fCurtailDescent) {
335 fpPVModel->CurtailDescent();
339 const auto& modelID = fpPVModel->GetGlobalDescription();
341 std::ostringstream oss;
342 oss << fpPVModel->GetFullPVPath();
347 const auto& nodeIDs = fpPVModel->GetFullPVPath();
349 auto currentIter = fModelIter;
351 for (
const auto& nodeID : nodeIDs) {
352 std::ostringstream oss1;
354 partialPathString +=
' ' + oss1.str();
356 FindOrInsertTouchable(modelID, *currentIter, ++depth, partialPathString, fullPathString);
361std::list<G4SceneTreeItem>::iterator G4VViewer::SceneTreeScene::FindOrInsertTouchable
362 (
const G4String& modelID, G4SceneTreeItem& mother,
363 G4int depth,
const G4String& partialPathString,
const G4String& fullPathString)
366 auto childIter = children.begin();
367 for (; childIter != children.end(); ++childIter) {
368 if (childIter->GetPVPath() == partialPathString)
break;
370 if (childIter != children.end()) {
378 if (partialPathString == fullPathString) {
382 childIter->SetDescription(fpPVModel->GetCurrentTag());
383 childIter->SetModelType(fpPVModel->GetType());
384 childIter->SetModelDescription(modelID);
385 childIter->SetPVPath(partialPathString);
386 if (fpVisAttributes) childIter->SetVisAttributes(*fpVisAttributes);
387 childIter->SetAttDefs(fpPVModel->GetAttDefs());
388 childIter->SetAttValues(fpPVModel->CreateCurrentAttValues());
395 if (partialPathString == fullPathString) {
398 if (fpVisAttributes) childIter->SetVisAttributes(*fpVisAttributes);
407 if (partialPathString == fullPathString) {
412 touchable.SetExpanded(depth > fMaximumExpandedDepth?
false:
true);
413 touchable.SetDescription(fpPVModel->GetCurrentTag());
414 touchable.SetModelType(fpPVModel->GetType());
415 touchable.SetModelDescription(modelID);
416 touchable.SetPVPath(partialPathString);
417 if (fpVisAttributes) touchable.SetVisAttributes(*fpVisAttributes);
418 touchable.SetAttDefs(fpPVModel->GetAttDefs());
419 touchable.SetAttValues(fpPVModel->CreateCurrentAttValues());
420 childIter = mother.
InsertChild(childIter,touchable);
426 ghost.SetExpanded(depth > fMaximumExpandedDepth?
false:
true);
428 std::istringstream iss(partialPathString);
429 G4String
name, copyNo;
430 while (iss >> name >> copyNo);
431 std::ostringstream oss;
432 oss <<
name <<
':' << copyNo;
433 ghost.SetDescription(oss.str());
434 ghost.SetModelType(fpPVModel->GetType());
435 ghost.SetModelDescription(modelID);
436 ghost.SetPVPath(partialPathString);
437 ghost.AccessVisAttributes().SetVisibility(
false);
448 os <<
"View " << v.
fName <<
":\n";
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
static G4String GetPVNamePathString(const std::vector< G4PhysicalVolumeNodeID > &)
static G4ModelingParameters::PVNameCopyNoPath GetPVNameCopyNoPath(const std::vector< G4PhysicalVolumeNodeID > &)
static G4PhysicalVolumeStore * GetInstance()
void SetModelDescription(const G4String &modelDescription)
void SetDescription(const G4String &description)
std::list< G4SceneTreeItem > & AccessChildren()
std::list< G4SceneTreeItem >::iterator InsertChild(std::list< G4SceneTreeItem >::iterator pos, const G4SceneTreeItem &item)
void SetFurtherInfo(const G4String &furtherInfo)
void SetModelType(const G4String &modelType)
G4double GetRealElapsed() const
G4int ApplyCommand(const char *aCommand)
G4UIsession * GetG4UIWindow() const
static G4UImanager * GetUIpointer()
virtual void UpdateSceneTree(const G4SceneTreeItem &)
const G4String & GetGlobalDescription() const
const G4String & GetType() const
SceneTreeScene(G4VViewer *, G4PhysicalVolumeModel *)
void SetTouchable(const std::vector< G4PhysicalVolumeModel::G4PhysicalVolumeNodeID > &fullPath)
void SetName(const G4String &)
friend std::ostream & operator<<(std::ostream &os, const G4VViewer &v)
G4VSceneHandler & fSceneHandler
G4double fKernelVisitElapsedTimeSeconds
void UpdateGUISceneTree()
void InsertModelInSceneTree(G4VModel *)
G4ViewParameters fDefaultVP
void TouchableSetVisibility(const std::vector< G4PhysicalVolumeModel::G4PhysicalVolumeNodeID > &fullPath, G4bool visibility)
const G4int fMaxNTouchables
virtual void FinishView()
G4VViewer(G4VSceneHandler &, G4int id, const G4String &name="")
void SetViewParameters(const G4ViewParameters &vp)
void TouchableSetColour(const std::vector< G4PhysicalVolumeModel::G4PhysicalVolumeNodeID > &fullPath, const G4Colour &)
G4SceneTreeItem fSceneTree
void SetColour(const G4Colour &)
void SetVisibility(G4bool=true)
static G4VisManager * GetInstance()
const char * name(G4int ptype)