44#include <Inventor/Qt/SoQt.h>
45#include <Inventor/Qt/SoQtCursor.h>
46#include <Inventor/events/SoKeyboardEvent.h>
47#include <Inventor/events/SoMouseButtonEvent.h>
48#include <Inventor/events/SoLocation2Event.h>
49#include <Inventor/nodes/SoSeparator.h>
50#include <Inventor/nodes/SoOrthographicCamera.h>
51#include <Inventor/nodes/SoPerspectiveCamera.h>
55#include <Inventor/nodes/SoLineSet.h>
56#include <Inventor/nodes/SoMaterial.h>
57#include <Inventor/errors/SoDebugError.h>
58#include <Inventor/SoPickedPoint.h>
59#include <Inventor/actions/SoWriteAction.h>
60#include <Inventor/projectors/SbPlaneProjector.h>
62#include <Inventor/sensors/SoTimerSensor.h>
63#include <Inventor/sensors/SoNodeSensor.h>
69#if 0x060000 <= QT_VERSION
73#include <Inventor/nodes/SoCallback.h>
74#include <Inventor/nodes/SoSwitch.h>
75#include <Inventor/nodes/SoScale.h>
76#include <Inventor/nodes/SoTranslation.h>
77#include <Inventor/actions/SoSearchAction.h>
78#include <Inventor/actions/SoGetBoundingBoxAction.h>
80#include <Inventor/nodes/SoCoordinate3.h>
82#include <Inventor/nodes/SoText2.h>
83#include <Inventor/nodes/SoFont.h>
84#include <Inventor/nodes/SoPointSet.h>
85#include <Inventor/nodes/SoDrawStyle.h>
86#include <Inventor/nodes/SoBaseColor.h>
89#include <Inventor/nodekits/SoBaseKit.h>
93#include <QRadioButton>
96#include <QListWidgetItem>
97#include <QInputDialog>
101#include <QCommonStyle>
105#include "moc_G4OpenInventorQtExaminerViewer.cpp"
110#if QT_VERSION < 0x060000
115#define START_STEP 0.3
116#define SPEED_INDICATOR_STEP 0.045
117#define MAX_SPEED_INDICATOR 0.81
125 SoQtFullViewer::BuildFlag flag,
126 SoQtViewer::Type type)
127 : SoQtExaminerViewer(parent, name, embed, flag, type),
128#if 0x060000 <= QT_VERSION
131 externalQtApp(0), processSoEventCount(0)
140#if QT_VERSION < 0x060000
141 fName =
new QString(name);
162#if QT_VERSION < 0x060000
187 myCam =
new SoPerspectiveCamera;
190#if QT_VERSION < 0x060000
201 lshiftdown = rshiftdown =
false;
204 lctrldown = rctrldown =
false;
222 static const char * superimposed[] = {
223 "#Inventor V2.1 ascii",
"",
230 " OrthographicCamera ",
236 " DEF soxt->callback Callback { }",
239 " DEF soxt->translation Translation ",
241 " translation 0 0 0",
243 " DEF soxt->scale Scale ",
245 " scaleFactor 1 1 1",
247 " DEF soxt->geometry Coordinate3 ",
251 " -0.81 -0.04 0, -0.81 0 0,",
252 " -0.81 0.04 0, 0 -0.04 0,",
254 " 0.81 -0.04 0, 0.81 0 0,",
257 " 0.81 0.02 0, 0.81 -0.02 0,",
260 " 0.4 0.01 0, 0.4 -0.01 0,",
265 " DEF soxt->animSpeedOutlineSwitch Switch ",
270 " emissiveColor 0 0 0",
276 " 12, 11, 10, 9, -1",
281 " DEF soxt->axisSwitch Switch ",
300 " DEF soxt->animSpeedSwitch Switch ",
305 " emissiveColor 0 1 0",
311 " 16, 15, 14, 13, -1",
317 " DEF soxt->curInfoSwitch Switch ",
320 " DEF soxt->curInfoTrans Translation ",
322 " translation 0 0 0 ",
325 " DEF soxt->curInfoFont Font ",
327 " name defaultFont:Bold",
330 " DEF soxt->curInfoText Text2 ",
339 " DEF soxt->mouseOverTransLogName Translation ",
341 " translation 0 0 0 ",
343 " DEF soxt->mouseOverFontLogName Font ",
345 " name defaultFont:Bold",
348 " DEF soxt->mouseOverTextLogName Text2 { } ",
352 " DEF soxt->mouseOverTransSolid Translation ",
354 " translation 0 0 0 ",
356 " DEF soxt->mouseOverFontSolid Font ",
358 " name defaultFont:Bold",
361 " DEF soxt->mouseOverTextSolid Text2 { } ",
365 " DEF soxt->mouseOverTransMaterial Translation ",
367 " translation 0 0 0 ",
369 " DEF soxt->mouseOverFontMaterial Font ",
371 " name defaultFont:Bold",
374 " DEF soxt->mouseOverTextMaterial Text2 { } ",
378 " DEF soxt->mouseOverTransZPos Translation ",
380 " translation 0 0 0 ",
382 " DEF soxt->mouseOverFontZPos Font ",
384 " name defaultFont:Bold",
387 " DEF soxt->mouseOverTextZPos Text2 { } ",
393 for (i = bufsize = 0; superimposed[i]; i++)
394 bufsize += strlen(superimposed[i]) + 1;
395 char * buf =
new char[bufsize + 1];
396 for (i = bufsize = 0; superimposed[i]; i++) {
397 strcpy(buf + bufsize, superimposed[i]);
398 bufsize += strlen(superimposed[i]);
402 SoInput * input =
new SoInput;
403 input->setBuffer(buf, bufsize);
439 axisSwitch->whichChild.setValue(SO_SWITCH_NONE);
452 SoDebugError::post(
"G4OpenInventorQtExaminerViewer::buildWidget",
453 "Error: Parent is null.");
457 font->setPointSize(12);
459 parent->setFont(*font);
465#if QT_VERSION < 0x060000
466 menubar =
new QMenuBar(getRenderAreaWidget());
468 menubar =
new QMenuBar();
469 menubar->setNativeMenuBar(
false);
470 addAppPushButton(menubar);
476 filemenu =
new QMenu(
"File");
477 menubar->addMenu(filemenu);
479 FileOpenBookmark =
new QAction(
"Open Bookmark File",
this);
480 FileOpenBookmark->setFont(*font);
481 connect(FileOpenBookmark, SIGNAL(triggered()),
this,
482 SLOT(FileOpenBookmarkCB()));
483 filemenu->addAction(FileOpenBookmark);
485 FileNewBookmark =
new QAction(
"New Bookmark File",
this);
486 FileNewBookmark->setFont(*font);
487 connect(FileNewBookmark, SIGNAL(triggered()),
this,
488 SLOT(FileNewBookmarkCB()));
489 filemenu->addAction(FileNewBookmark);
491 FileLoadRefPath =
new QAction(
"Load Reference Path",
this);
492 FileLoadRefPath->setFont(*font);
493 connect(FileLoadRefPath, SIGNAL(triggered()),
this,
494 SLOT(FileLoadRefPathCB()));
495 filemenu->addAction(FileLoadRefPath);
497 FileSaveRefPath =
new QAction(
"Save Reference Path",
this);
498 FileSaveRefPath->setFont(*font);
499 connect(FileSaveRefPath, SIGNAL(triggered()),
this,
500 SLOT(FileSaveRefPathCB()));
501 filemenu->addAction(FileSaveRefPath);
503 FileLoadSceneGraph =
new QAction(
"Load scene graph",
this);
504 FileLoadSceneGraph->setFont(*font);
505 connect(FileLoadSceneGraph, SIGNAL(triggered()),
this,
506 SLOT(FileLoadSceneGraphCB()));
507 filemenu->addAction(FileLoadSceneGraph);
509 FileSaveSceneGraph =
new QAction(
"Save scene graph",
this);
510 FileSaveSceneGraph->setFont(*font);
511 connect(FileSaveSceneGraph, SIGNAL(triggered()),
this,
512 SLOT(FileSaveSceneGraphCB()));
513 filemenu->addAction(FileSaveSceneGraph);
517 toolsmenu =
new QMenu(
"Tools");
518 menubar->addMenu(toolsmenu);
520 ToolsAnimateRefParticle =
new QAction(
"Fly on Ref Path",
this);
521 ToolsAnimateRefParticle->setFont(*font);
522 connect(ToolsAnimateRefParticle, SIGNAL(triggered()),
this,
523 SLOT(ToolsAnimateRefParticleCB()));
524 toolsmenu->addAction(ToolsAnimateRefParticle);
526 ToolsRefPathStart =
new QAction(
"Go to start of Ref Path",
this);
527 ToolsRefPathStart->setFont(*font);
528 connect(ToolsRefPathStart, SIGNAL(triggered()),
this,
529 SLOT(ToolsRefPathStartCB()));
530 toolsmenu->addAction(ToolsRefPathStart);
532 ToolsRefPathInvert =
new QAction(
"Invert Ref Path",
this);
533 ToolsRefPathInvert->setFont(*font);
534 connect(ToolsRefPathInvert, SIGNAL(triggered()),
this,
535 SLOT(ToolsRefPathInvertCB()));
536 toolsmenu->addAction(ToolsRefPathInvert);
538 etcmenu =
new QMenu(
"Etc");
539 menubar->addMenu(etcmenu);
543 helpmenu =
new QMenu(
"Help");
544 menubar->addMenu(helpmenu);
546 HelpControls =
new QAction(
"Controls",
this);
547 HelpControls->setFont(*font);
548 connect(HelpControls, SIGNAL(triggered()),
this, SLOT(HelpControlsCB()));
549 helpmenu->addAction(HelpControls);
551#if QT_VERSION < 0x060000
560 saveViewPtButton =
new QPushButton;
561 saveViewPtButton->setIcon(QPixmap((
const char **)saveViewPt_xpm));
562 saveViewPtButton->setIconSize(QSize(24,24));
563 saveViewPtButton->setToolTip(
"Bookmark this view");
564 connect(saveViewPtButton, SIGNAL(clicked()),
this,
565 SLOT(SaveViewPtCB()));
566 addAppPushButton(saveViewPtButton);
568 nextViewPtButton =
new QPushButton;
569 nextViewPtButton->setIconSize(QSize(24,24));
571 nextViewPtButton->setIcon(style.standardIcon(QStyle::SP_ArrowRight));
572 nextViewPtButton->setToolTip(
"Next bookmark");
573 connect(nextViewPtButton, SIGNAL(clicked()),
this,
574 SLOT(NextViewPtCB()));
575 addAppPushButton(nextViewPtButton);
577 prevViewPtButton =
new QPushButton;
578 prevViewPtButton->setIconSize(QSize(24,24));
579 prevViewPtButton->setIcon(style.standardIcon(QStyle::SP_ArrowLeft));
580 prevViewPtButton->setToolTip(
"Previous bookmark");
581 connect(prevViewPtButton, SIGNAL(clicked()),
this,
582 SLOT(PrevViewPtCB()));
583 addAppPushButton(prevViewPtButton);
585 abbrOutputButton =
new QPushButton;
586 abbrOutputButton->setCheckable(
true);
587 abbrOutputButton->setIconSize(QSize(24,24));
588 abbrOutputButton->setIcon(QPixmap((
const char **)pickext_xpm));
589 abbrOutputButton->setToolTip(
"Extended picking & readout");
590 connect(abbrOutputButton, SIGNAL(toggled(
bool)),
this,
591 SLOT(AbbrOutputCB(
bool)));
592 addAppPushButton(abbrOutputButton);
594 pickRefPathButton =
new QPushButton;
595 pickRefPathButton->setIconSize(QSize(24,24));
596 pickRefPathButton->setIcon(QPixmap((
const char **)pickref_xpm));
597 pickRefPathButton->setToolTip(
"Pick ref trajectory");
598 connect(pickRefPathButton, SIGNAL(clicked()),
this,
599 SLOT(PickRefPathCB()));
600 addAppPushButton(pickRefPathButton);
602 switchWireFrameButton =
new QPushButton;
603 switchWireFrameButton->setCheckable(
true);
604 switchWireFrameButton->setIconSize(QSize(24,24));
605 switchWireFrameButton->setIcon(QPixmap((
const char **)wireframe_xpm));
606 switchWireFrameButton->setToolTip(
"Switch wireframe/solid");
607 connect(switchWireFrameButton, SIGNAL(toggled(
bool)),
this,
608 SLOT(SwitchWireFrameCB(
bool)));
609 addAppPushButton(switchWireFrameButton);
611 switchAxesButton =
new QPushButton;
612 switchAxesButton->setCheckable(
true);
613 switchAxesButton->setText(QString(
"A"));
614 switchAxesButton->setToolTip(
"Axes on/off");
615 connect(switchAxesButton, SIGNAL(toggled(
bool)),
this,
616 SLOT(SwitchAxesCB(
bool)));
617 addAppPushButton(switchAxesButton);
619 detachButton =
new QPushButton;
620 detachButton->setIconSize(QSize(24,24));
621 detachButton->setIcon(style.standardIcon(QStyle::SP_CommandLink));
622 detachButton->setToolTip(
"Detach viewer window");
623 connect(detachButton, SIGNAL(clicked()),
this,
630 helpmsgbox =
new QMessageBox(getParentWidget());
631 helpmsgbox->setWindowTitle(
"OIQt Controls");
632 helpmsgbox->setFont(*font);
634"\nVIEWING mode (Hand cursor):\n\n\
635 Left-button + pointer move: rotate\n\
636 Shift+Left-button + pointer move: pan\n\
637 Middle-button + pointer move: pan\n\
638 Ctrl+Shift+Left-button + pointer move: zoom\n\
640 Right-button: popup menu\n\n\
641PICKING mode (Arrow cursor):\n\n\
642 Click on a volume: geometry readout\n\
643 Click on a trajectory: particle & trajectory readout\n\
644 Ctrl + click on a volume: see daughters.\n\
645 Shift + click on a volume: see mother.\n\n\
646EXTENDED PICKING mode (Arrow+ viewer button):\n\n\
647 Hover the mouse over a volume or trajectory for\n\
648 overlayed readout.\n\n\
649ELEMENT NAVIGATION (requires Reference Path):\n\n\
650 Click on element in list: centers view on element\n\
651 Arrow keys: rotate in 90 degree steps around element \n\
652 Shift + Right Arrow: move to next element\n\
653 Shift + Left Arrow: move to previous element\n\n\
654FLY mode (requires Reference Path):\n\n\
655 Page Up: Increase speed\n\
656 Page Down: Decrease speed (& reverse if wanted)\n\
657 Up Arrow: raise camera above path\n\
658 Down Arror: lower camera below path\n\
659 Escape: Exit fly mode";
660 helpmsgbox->setText(messagetxt);
661 helpmsgbox->setModal(
false);
668 AuxWindow =
new QDialog(parent);
669 AuxWindowDialog->setupUi(AuxWindow);
672 connect(AuxWindowDialog->listWidget, SIGNAL(itemClicked(QListWidgetItem*)),
673 this, SLOT(LoadBookmarkCB(QListWidgetItem*)));
674 connect(AuxWindowDialog->listWidget1, SIGNAL(itemClicked(QListWidgetItem*)),
675 this, SLOT(LookAtSceneElementCB(QListWidgetItem*)));
676 connect(AuxWindowDialog->pushButton_2, SIGNAL(clicked()),
677 this, SLOT(DeleteBookmarkCB()));
678 connect(AuxWindowDialog->pushButton_3, SIGNAL(clicked()),
679 this, SLOT(RenameBookmarkCB()));
680 connect(AuxWindowDialog->pushButton, SIGNAL(clicked()),
681 this, SLOT(SortBookmarksCB()));
690#if QT_VERSION < 0x060000
695 SoQtExaminerViewer::afterRealizeHook();
697void G4OpenInventorQtExaminerViewer::setupSceneGraph()
702 SoCamera *cam = getCamera();
704 if (cam->isOfType(SoPerspectiveCamera::getClassTypeId())) {
706 ((SoPerspectiveCamera *) cam)->heightAngle.getValue();
709 ((SoOrthographicCamera *) cam)->height.getValue();
713 ((SoOrthographicCamera *) cam)->height.getValue();
716 if (cam->isOfType(SoPerspectiveCamera::getClassTypeId()))
718 ((SoPerspectiveCamera *) cam)->heightAngle.getValue();
728 msgbox.setFont(*font);
729 QString messagetxt =
"Error reading bookmark file ";
730 messagetxt.append(QString(
fileName.c_str()));
731 msgbox.setText(messagetxt);
736 fileOut.seekp(0, std::ios::end);
757 SoSeparator* root = (SoSeparator*) (getSceneManager()->getSceneGraph());
759 SoDebugError::post(
"G4OpenInventorQtExaminerViewer::afterRealizeHook",
"Root is null.");
761 root->addChild(
myCam);
764#if 0x060000 <= QT_VERSION
778 SoEventCallback *moCB =
new SoEventCallback;
779 moCB->addEventCallback(
780 SoLocation2Event::getClassTypeId(),
782 root->addChild(moCB);
786 SoEventCallback *pickCB =
new SoEventCallback;
787 pickCB->addEventCallback(
788 SoMouseButtonEvent::getClassTypeId(),
790 root->addChild(pickCB);
791#if 0x060000 <= QT_VERSION
797#if QT_VERSION < 0x060000
800 AuxWindow->activateWindow();
803 uiQt =
dynamic_cast<G4UIQt*
>(UI->GetG4UIWindow());
806 viewerParent = getParentWidget();
807 viewerParent2 = viewerParent->parentWidget();
808 uiQt->AddTabWidget(getParentWidget(), *fName);
809 uiQtTabIndex = uiQt->GetViewerTabWidget()->currentIndex();
811 addAppPushButton(detachButton);
824#if 0x060000 <= QT_VERSION
825void G4OpenInventorQtExaminerViewer::addInTab() {
827 uiQt =
dynamic_cast<G4UIQt*
>(UI->GetG4UIWindow());
829 uiQt->AddTabWidget(getParentWidget(),fName);
830 addAppPushButton(detachButton);
845 searcher->setInterest(SoSearchAction::FIRST);
849 return searcher->getPath()->getTail();
868 if (!action->isOfType(SoGLRenderAction::getClassTypeId()))
870 SbViewportRegion vpRegion =
871 ((SoGLRenderAction*)action)->getViewportRegion();
872 SbVec2s viewportSize = vpRegion.getViewportSizePixels();
875 float aspect = float(viewportSize[0]) / float(viewportSize[1]);
886 float factorx = 1.0f / float(viewportSize[1]) * 220.0f;
887 float factory = factorx;
890 stranslation->translation.setValue(SbVec3f(0.0f, -0.4f, 0.0f));
892 stranslation->translation.setValue(SbVec3f(0.0f, -0.4f / aspect, 0.0f));
896 if (viewportSize[0] > 500)
897 factorx *= 500.0f / 400.0f;
899 factorx *= float(viewportSize[0]) / 400.0f;
901 sscale->scaleFactor.setValue(SbVec3f(factorx, factory, 1.0f));
909 float xInfo, yInfo, xLogName, yLogName, xSolid, ySolid,
910 xMaterial, yMaterial, xZPos, yZPos;
918 if (aspect > 1.) xInfo = xInfo*aspect;
919 if (aspect < 1.) yInfo = yInfo/aspect;
920 yInfo = yInfo - mbgap*aspect;
924 yLogName = -.88 + mbgap*aspect;
926 ySolid = -.91 + mbgap*aspect;
928 yMaterial = -.94 + mbgap*aspect;
930 yZPos = -.97 + mbgap*aspect;
933 curInfoTrans->translation.setValue(SbVec3f(xInfo, yInfo, 0.0));
944#if QT_VERSION < 0x060000
977 float x{0.0}, y{0.0}, z{0.0}, angle{0.0};
984 while (getline(
fileIn, token)) {
986 std::size_t end = token.find_last_not_of(
' ');
987 token = token.substr(0, end + 1);
989#if QT_VERSION < 0x060000
990 char *vpName =
new char[token.size() + 1];
991 strcpy(vpName, token.c_str());
1004 tmp.
position = axis.setValue(x, y, z);
1014 orient.setValue(axis.setValue(x, y, z), angle);
1038#if QT_VERSION < 0x060000
1057 SoCamera *cam = getCamera();
1064 cam->position = camPosNew;
1066 cam->focalDistance = (
prevPt - camPosNew).length();
1085 SoCamera *cam = getCamera();
1087 SbVec3f particleDir;
1088 SbVec3f camPosNew{0.0f, 0.0f, 0.0f};
1098 cam->focalDistance = (cam->position.getValue() -
center).length();
1107 dist = (
prevPt - cam->position.getValue()).length();
1114 dist = (
prevPt - cam->position.getValue()).length();
1123 particleDir = p2 - p1;
1124 particleDir.normalize();
1137 SbRotation rot(SbVec3f(0,0,1), particleDir);
1151 if (cam->isOfType(SoPerspectiveCamera::getClassTypeId())) {
1171 if (cam->isOfType(SoPerspectiveCamera::getClassTypeId())) {
1174 if (cam->isOfType(SoOrthographicCamera::getClassTypeId())) {
1176 camPosNew = p2 - (
camDir*cam->focalDistance.getValue());
1180 cam->position = camPosNew;
1182 cam->focalDistance = (p2 - camPosNew).length();
1185 camPosNew.getValue(x,y,z);
1196 SoEventCallback *eventCB)
1198 SoHandleEventAction* action = eventCB->getAction();
1199 const SoPickedPoint *pp = action->getPickedPoint();
1204 SoPath* path = pp->getPath();
1205 SoNode* node = ((SoFullPath*)path)->getTail();
1207 if(node->getTypeId() == SoLineSet::getClassTypeId()) {
1214 This->setComponentCursor(SoQtCursor(SoQtCursor::DEFAULT));
1217 SoLineSet * trajectory = (SoLineSet *)node;
1225 SoSeparator * grpNode =
1226 (SoSeparator*)(((SoFullPath*)path)->getNodeFromTail(1));
1231 int nodeIndex = grpNode->findChild(trajectory);
1234 SoCoordinate3 * coords = 0;
1238 for(
int i = 0; i < 100; ++i) {
1241 tmpNode = grpNode->getChild(nodeIndex);
1242 if(tmpNode->getTypeId() == SoCoordinate3::getClassTypeId()) {
1244 coords = (SoCoordinate3 *)tmpNode;
1249 if(coords == NULL) {
1250 G4warn <<
"Could not find the coordinates node"
1251 " for the picked trajectory." <<
G4endl;
1259 if ((This->lshiftdown) || (This->rshiftdown))
1270 if(attHolder && attHolder->
GetAttDefs().size()) {
1272 std::string strTrajPoint =
"G4TrajectoryPoint:";
1273 std::ostringstream oss;
1274 for (std::size_t i = 0; i < attHolder->
GetAttDefs().size(); ++i) {
1279 if(oss.str().find(strTrajPoint) != std::string::npos) {
1293 G4String name((
char*)node->getName().getString());
1294 G4String cls((
char*)node->getTypeId().getName().getString());
1295 G4warn <<
"SoNode : " << node
1296 <<
" SoType : " << cls
1297 <<
" name : " << name
1314 if(attHolder && attHolder->
GetAttDefs().size()) {
1315 for (std::size_t i = 0; i < attHolder->
GetAttDefs().size(); ++i) {
1320 G4String name((
char*)node->getName().getString());
1321 G4String cls((
char*)node->getTypeId().getName().getString());
1322 G4warn <<
"SoNode : " << node
1323 <<
" SoType : " << cls
1324 <<
" name : " << name
1330 eventCB->setHandled();
1337 SoHandleEventAction* action = eventCB->getAction();
1338 const SoPickedPoint* pp = action->getPickedPoint();
1346 const SbViewportRegion & viewportRegion = action->getViewportRegion();
1348 std::string sLogName;
1350 std::stringstream ssZPos;
1351 std::stringstream ssSolids;
1352 std::stringstream ssMaterials;
1353 SoPath * path = pp->getPath();
1354 SoNode* node = ((SoFullPath*)path)->getTail();
1356 if(node->getTypeId() == Geant4_SoPolyhedron::getClassTypeId()) {
1358 sLogName =
"Logical Volume: ";
1361 SoGetBoundingBoxAction bAction(viewportRegion);
1362 bAction.apply((SoFullPath*)path);
1363 SbBox3f bBox = bAction.getBoundingBox();
1364 SbVec3f centr = bBox.getCenter();
1365 centr.getValue(x,y,z);
1366 ssZPos <<
"Pos: " << x <<
" " << y <<
" " << z;
1369 if(attHolder && attHolder->
GetAttDefs().size()) {
1371 std::vector<const std::map<G4String,G4AttDef>*> vecDefs =
1373 std::vector<const std::vector<G4AttValue>*> vecVals =
1375 for (std::size_t i = 0; i < vecDefs.size(); ++i) {
1376 const std::vector<G4AttValue> * vals = vecVals[i];
1378 std::vector<G4AttValue>::const_iterator iValue;
1380 for (iValue = vals->begin(); iValue != vals->end(); ++iValue) {
1381 const G4String& valueName = iValue->GetName();
1382 const G4String& value = iValue->GetValue();
1384 if(valueName ==
"Solid") {
1385 if(ssSolids.str() ==
"")
1386 ssSolids <<
"Solid Name: " << value;
1388 ssSolids <<
", " << value;
1391 if(valueName ==
"Material") {
1392 if(ssMaterials.str() ==
"")
1393 ssMaterials <<
"Material Name: " << value;
1395 ssMaterials <<
", " << value;
1402 else if(node->getTypeId() == SoLineSet::getClassTypeId()) {
1405 if(attHolder && attHolder->
GetAttDefs().size()) {
1406 std::string strTrajPoint =
"G4TrajectoryPoint:";
1407 std::ostringstream oss;
1409 for (std::size_t i = 0; i < attHolder->
GetAttDefs().size(); ++i) {
1413 const std::vector<G4AttValue>* vals = attHolder->
GetAttValues()[i];
1414 std::vector<G4AttValue>::const_iterator iValue;
1415 for (iValue = vals->begin(); iValue != vals->end(); ++iValue) {
1416 const G4String& valueName = iValue->GetName();
1417 const G4String& value = iValue->GetValue();
1421 if (valueName ==
"PN") t1 = value;
1422 if (valueName ==
"Ch") {
1423 if (atof(value.c_str()) > 0)
1429 if (valueName ==
"PDG") {
1437 if (valueName ==
"EventID") t2 =
"Evt " + value;
1438 if (valueName ==
"ID") t2 +=
" Trk " + value;
1439 if (valueName ==
"PID") {
1440 t2 +=
" Prt " + value;
1444 if (valueName ==
"IKE") t3 =
"KE " + value;
1445 if (valueName ==
"IMom") {
1447 std::size_t ipos = value.rfind(
" ");
1450 t3 +=
" P (" + value1 +
")";
1452 if (valueName ==
"IMag") {
1453 t3 +=
" " + value +
"/c";
1458 if (valueName ==
"NTP") {
1459 std::ostringstream t4oss;
1460 t4oss <<
"TrjPts " << value;
1461 t4oss <<
" Pos " << pp->getPoint()[0] <<
" " << pp->getPoint()[1] <<
1462 " " << pp->getPoint()[2];
1485 This->scheduleRedraw();
1486 eventCB->setHandled();
1490 bool redraw =
false;
1495 if(std::string(This->
mouseOverTextSolid->string.getValues(0)->getString()) != ssSolids.str()) {
1499 if(std::string(This->
mouseOverTextMaterial->string.getValues(0)->getString()) != ssMaterials.str()) {
1503 if(std::string(This->
mouseOverTextZPos->string.getValues(0)->getString()) != ssZPos.str()) {
1510 This->scheduleRedraw();
1513 eventCB->setHandled();
1518 This->scheduleRedraw();
1522 This->scheduleRedraw();
1526 This->scheduleRedraw();
1528 if(std::string(This->
mouseOverTextZPos->string.getValues(0)->getString()) !=
"") {
1530 This->scheduleRedraw();
1578 SbVec3f * points = this->
sgeometry->point.startEditing();
1580 if (points[10][0] == 0.0f)
1582 if (points[14][0] == 0.0f)
1603 SoQtExaminerViewer::actualRedraw();
1606 SoQtExaminerViewer::actualRedraw();
1613 SoCoordinate3 *coords,
bool append)
1624 SbVec3f refParticlePt;
1629 for(
int i = 0; i < lineset->numVertices.getNum(); ++i) {
1630 for(
int j = 0; j < lineset->numVertices[i]; ++j) {
1631 refParticlePt = coords->point[j];
1658 SoSearchAction action;
1659 action.setType(SoLineSet::getClassTypeId(),
false);
1660 action.setInterest(SoSearchAction::ALL);
1661 action.apply(getSceneGraph());
1663 SoPathList &pathList = action.getPaths();
1665 if(pathList.getLength() != 0) {
1667 SoCoordinate3 * coords = NULL;
1668 std::vector<SoCoordinate3 *> coordvec;
1669 std::vector<SoLineSet *> linevec;
1671 bool refPathFound =
false;
1672 for(
int i = 0; i < pathList.getLength(); ++i) {
1673 SoFullPath *path = (SoFullPath *)pathList[i];
1676 if(attHolder !=
nullptr)
1678 for (std::size_t j = 0; j < attHolder->
GetAttDefs().size(); ++j) {
1679 std::ostringstream oss;
1683 std::string findStr =
"Type of trajectory (Type): ";
1684 std::string compareValue =
"REFERENCE";
1685 std::size_t idx = oss.str().find(findStr);
1687 if(idx != std::string::npos) {
1688 if(oss.str().substr(idx + findStr.size(),
1689 compareValue.size()) == compareValue) {
1691 if(coords != NULL) {
1692 refPathFound =
true;
1693 coordvec.push_back(coords);
1694 linevec.push_back((SoLineSet *)path->getTail());
1700 findStr =
"Track ID (ID): ";
1701 idx = oss.str().find(findStr);
1702 if(idx != std::string::npos) {
1704 std::string tmpstr = oss.str().substr(idx + findStr.size(),1);
1705 std::istringstream buffer(tmpstr);
1713 char nextChar = oss.str().at(idx+findStr.size()+1);
1716 if(std::isdigit(nextChar))
1720 if(coords != NULL) {
1721 coordvec.push_back(coords);
1722 linevec.push_back((SoLineSet *)path->getTail());
1739 if(coordvec.empty())
1750 float longestLength = 0.0;
1752 for(
unsigned int i=0;i < linevec.size(); ++i) {
1755 std::vector<SbVec3f> trajectory;
1757 for(
int j=0; j < linevec[i]->numVertices.getNum(); ++j) {
1759 for(
int k=0; k < linevec[i]->numVertices[j]; ++k) {
1760 trajectory.push_back(coordvec[i]->point[k]);
1765 float tmpLength=0.0;
1766 for(
unsigned int j=0; j < trajectory.size() - 1; ++j) {
1767 tmpLength += (trajectory[j] - trajectory[j + 1]).length();
1770 if(tmpLength > longestLength) {
1772 longestLength = tmpLength;
1784 SoLineSet *trajectory = (SoLineSet *)path->getTail();
1785 SoSeparator * grpNode = (SoSeparator*)(((SoFullPath*)path)->getNodeFromTail(1));
1786 int nodeIndex = grpNode->findChild(trajectory);
1791 for (
int i = 0; i < 100; ++i) {
1794 tmpNode = grpNode->getChild(nodeIndex);
1795 if(tmpNode->getTypeId() == SoCoordinate3::getClassTypeId()) {
1797 return (SoCoordinate3 *)tmpNode;
1808 std::string field, eltName;
1810 std::map<std::string, int> duplicates;
1811 std::map<std::string, int> sceneElts;
1812 SoSearchAction search;
1814 SoGroup *root = (SoGroup *)getSceneManager()->getSceneGraph();
1816 SoBaseKit::setSearchingChildren(
TRUE);
1819 search.setSearchingAll(
TRUE);
1820 search.setInterest(SoSearchAction::ALL);
1821 search.setType(Geant4_SoPolyhedron::getClassTypeId(), 0);
1827 SoPathList &pl = search.getPaths();
1831 for (
int i = 0; i < pl.getLength(); i++) {
1832 SoFullPath *path = (SoFullPath *)pl[i];
1834 eltName = node->getName();
1836 if(duplicates.count(eltName))
1837 duplicates[eltName]++;
1839 duplicates[eltName] = 1;
1842 for(
int i = 0; i < pl.getLength(); i++) {
1844 std::stringstream ssCount;
1845 SoFullPath *path = (SoFullPath *)pl[i];
1847 eltName = node->getName();
1849 if(duplicates[eltName] == 1)
1852 if(sceneElts.count(eltName))
1853 sceneElts[eltName]++;
1855 sceneElts[eltName] = 1;
1857 ssCount << sceneElts[eltName];
1861 field += ssCount.str();
1863 SoGetBoundingBoxAction bAction(getViewportRegion());
1864 bAction.apply(path);
1865 SbBox3f bBox = bAction.getBoundingBox();
1867 SbVec3f centr = bBox.getCenter();
1868 centr.getValue(x,y,z);
1881 return x*x + y*y + z*z;
1887 SbVec3f &closestPoint,
1926 SbVec3f dbq = b - q;
1927 float sqrDist =
sqrlen(dbq);
1930 for (std::size_t i = 1; i < count; ++i) {
1931 const SbVec3f a = b;
1932 const SbVec3f daq = dbq;
1935 const SbVec3f dab = a - b;
1937 float dab_x, dab_y, dab_z;
1938 dab.getValue(dab_x,dab_y,dab_z);
1939 float daq_x, daq_y, daq_z;
1940 daq.getValue(daq_x, daq_y, daq_z);
1941 float dbq_x, dbq_y, dbq_z;
1942 dbq.getValue(dbq_x, dbq_y, dbq_z);
1944 const float inv_sqrlen = 1./
sqrlen(dab);
1945 const float t = (dab_x*daq_x + dab_y*daq_y + dab_z*daq_z)*inv_sqrlen;
1956 current_dist = daq_x*daq_x + daq_y*daq_y + daq_z*daq_z
1957 - t*(daq_x*dab_x + daq_y*dab_y + daq_z*dab_z)
1958 + t*t*(dab_x*dab_x + dab_y*dab_y + dab_z*dab_z);
1963 current_dist =
sqrlen(dbq);
1966 if (current_dist < sqrDist) {
1967 sqrDist = current_dist;
1968 closestPoint = a + t*(b-a);
1973 dist = std::sqrt(sqrDist);
1983 typedef std::map<elementForSorting, sceneElement> sortedMap;
1992 trajLength[trajIndex] = 0.0;
1996 trajLength[trajIndex] = trajLength[trajIndex-1] + (*itRef - prevPoint).length();
2004 SoGetBoundingBoxAction bAction(getViewportRegion());
2005 SbVec3f elementCoord;
2006 std::vector<sceneElement>::iterator itEl;
2011 bAction.apply(itEl->path);
2014 elementCoord = itEl->center;
2032 sorted.insert(std::make_pair(el,*itEl));
2038 sortedMap::iterator itSorted = sorted.begin();
2039 for(; itSorted != sorted.end(); itSorted++)
2046 delete[] trajLength;
2055 AuxWindowDialog->listWidget1->clear();
2058 std::vector<sceneElement>::const_iterator it;
2059 std::stringstream ss;
2064 ss <<
" [" << it->closestPointZCoord <<
"]";
2066 new QListWidgetItem(ss.str().c_str(), AuxWindowDialog->listWidget1);
2075G4OpenInventorQtExaminerViewer::LookAtSceneElementCB(QListWidgetItem* item)
2080 SoCamera * cam = getCamera();
2082 if (SoQtExaminerViewer::isAnimating())
2097 std::string elementField = qPrintable(item->text());
2099 std::size_t idx = elementField.find_last_of(
"[");
2100 if(idx == std::string::npos)
2101 idx = elementField.size();
2107 SoSearchAction search;
2108 SoNode *root = getSceneManager()->getSceneGraph();
2110 std::size_t idxUnderscore = elementField.find_last_of(
"_");
2113 elementField.substr(idxUnderscore + 1, idx), error);
2115 SoBaseKit::setSearchingChildren(
TRUE);
2117 search.setSearchingAll(
TRUE);
2127 path = (SoFullPath *)search.getPath();
2130 curEltName = elementField.substr(0, idxUnderscore);
2131 search.setInterest(SoSearchAction::ALL);
2135 SoPathList &pl = search.getPaths();
2136 path = (SoFullPath *)pl[counter - 1];
2142 if ((idx > 0) && (path)) {
2146 SoGetBoundingBoxAction bAction(getViewportRegion());
2147 bAction.apply(path);
2148 SbBox3f bBox = bAction.getBoundingBox();
2149 SbVec3f elementCoord = bBox.getCenter();
2154 float absLengthNow, absLengthMin;
2160 absLengthMin = (p - elementCoord).length();
2166 absLengthNow = (p - elementCoord).length();
2168 if (absLengthNow < absLengthMin) {
2169 absLengthMin = absLengthNow;
2182 distance = (pN - p1).length() / 10;
2194 if (cam->isOfType(SoPerspectiveCamera::getClassTypeId()))
2198 if (cam->isOfType(SoPerspectiveCamera::getClassTypeId()))
2205 axisSwitch->whichChild.setValue(SO_SWITCH_NONE);
2220 cam->viewAll(path, getViewportRegion());
2227void G4OpenInventorQtExaminerViewer::FileLoadRefPathCB()
2231 QFileDialog filedialog(getParentWidget(), tr(
"Load Reference Path"));
2232 filedialog.setFileMode(QFileDialog::AnyFile);
2233 filedialog.setFont(*font);
2234 if (!filedialog.exec())
return;
2235 QStringList filenameinlist = filedialog.selectedFiles();
2236 QString filenamein = filenameinlist[0];
2238 std::ifstream ifs(qPrintable(filenamein));
2242 while(ifs >> x >> y >> z) {
2248 msgbox.setFont(*font);
2249 QString messagetxt =
"Reference Path file not found: ";
2250 messagetxt.append(filenamein);
2251 msgbox.setText(messagetxt);
2257 msgbox.setFont(*font);
2258 QString messagetxt =
"Invalid Reference Path";
2259 msgbox.setText(messagetxt);
2271void G4OpenInventorQtExaminerViewer::FileSaveRefPathCB()
2275 QFileDialog filedialog(getParentWidget(), tr(
"Save Reference Path"));
2276 filedialog.setFileMode(QFileDialog::AnyFile);
2278 filedialog.setAcceptMode(QFileDialog::AcceptSave);
2279 filedialog.setFont(*font);
2280 if (!filedialog.exec())
return;
2281 QStringList filenameinlist = filedialog.selectedFiles();
2282 QString filenamein = filenameinlist[0];
2284 std::ofstream ofs(qPrintable(filenamein));
2285 if (ofs.is_open()) {
2289 ofs << x <<
" " << y <<
" " << z <<
"\n";
2294 msgbox.setFont(*font);
2295 QString messagetxt =
"Error opening file ";
2296 messagetxt.append(filenamein);
2297 msgbox.setText(messagetxt);
2308 SbVec3f p1, p2, p3, dirNow, dirNxt, dir, p2_tmp, p_start, p_corner, p_nxt;
2309 float avgDistBtwPts = 0;
2310 float totalDistBtwPts = 0;
2311 std::vector<SbVec3f> newRefParticleTrajectory;
2315 for (std::size_t i = 0; i < size; ++i) {
2321 totalDistBtwPts += (p2 - p1).length();
2324 if (numOfPts <= 2)
return;
2326 avgDistBtwPts = totalDistBtwPts / numOfPts;
2327 float minDistAllowed = 0.75 * avgDistBtwPts;
2331 std::size_t i = 0, j = 0;
2337 p1.getValue(x, y, z);
2339 newRefParticleTrajectory.push_back(refPoint);
2342 while ((p2 - p1).length() < minDistAllowed && j < (size - 1)) {
2361 SoCamera *cam = getCamera();
2362 camB4Animation.viewportMapping = cam->viewportMapping.getValue();
2370 if (cam->isOfType(SoPerspectiveCamera::getClassTypeId())) {
2372 ((SoPerspectiveCamera *) cam)->heightAngle.getValue();
2374 }
else if (cam->isOfType(SoOrthographicCamera::getClassTypeId())) {
2376 ((SoOrthographicCamera *) cam)->height.getValue();
2384 SoCamera *cam = getCamera();
2394 if (cam->isOfType(SoPerspectiveCamera::getClassTypeId())) {
2398 ((SoOrthographicCamera *) cam)->height.setValue(
2401 ((SoPerspectiveCamera *) cam)->heightAngle.setValue(
2403 }
else if (cam->isOfType(SoOrthographicCamera::getClassTypeId())) {
2407 ((SoPerspectiveCamera *) cam)->heightAngle.setValue(
2410 ((SoOrthographicCamera *) cam)->height.setValue(
2419 SbTime curTime = SbTime::getTimeOfDay();
2422 SoTimerSensor* s = (SoTimerSensor*) sensor;
2424 float t = float((curTime - s->getBaseTime()).getValue())
2427 if ((t > 1.0f) || (t + s->getInterval().getValue() > 1.0f))
2429 SbBool end = (t == 1.0f);
2452 SbTime curTime = SbTime::getTimeOfDay();
2454 SoCamera *cam = This->getCamera();
2455 SoTimerSensor* s = (SoTimerSensor*) sensor;
2457 float t = float((curTime - s->getBaseTime()).getValue())
2460 if ((t > 1.0f) || (t + s->getInterval().getValue() > 1.0f))
2462 SbBool end = (t == 1.0f);
2492 if (SoQtExaminerViewer::isAnimating())
2496 SbVec3f p1{0.0, 0.0, 0.0}, p2{0.0, 0.0, 0.0}, p2_tmp, camUpV, camD, camD_tmp, leftRightAxis;
2497 float x1, y1, z1, x2, y2, z2;
2514 p1.getValue(x1, y1, z1);
2515 p2.getValue(x2, y2, z2);
2520 p2_tmp.setValue(x2, y1, z2);
2521 camD_tmp = p2_tmp - p1;
2522 camD_tmp.normalize();
2524 camUpV.setValue(0, 1, 0);
2525 rot.setValue(camD_tmp, camD);
2526 rot.multVec(camUpV, camUpV);
2528 leftRightAxis = camD.cross(camUpV);
2530 myCam->position = p1;
2531 myCam->pointAt(p2, camUpV);
2535 myCam->position = p1;
2541 myCam->focalDistance = 0.1f;
2547 G4OpenInventorQtExaminerViewer::ToolsRefPathStartCB();
2551void G4OpenInventorQtExaminerViewer::ToolsRefPathStartCB()
2555 msgbox.setFont(*font);
2556 QString messagetxt =
"No current reference path";
2557 msgbox.setText(messagetxt);
2577 if (SoQtExaminerViewer::isAnimating())
2587 axisSwitch->whichChild.setValue(SO_SWITCH_NONE);
2602 distance = (pN - p1).length() / 10;
2608void G4OpenInventorQtExaminerViewer::ToolsRefPathInvertCB()
2625 SoCamera *cam = getCamera();
2646#if QT_VERSION < 0x060000
2649 escapeCallback = callback;
2677 for (std::size_t i = 0; i < size; ++i) {
2678#if QT_VERSION < 0x060000
2679 new QListWidgetItem(
viewPtList[i].viewPtName,
2680 AuxWindowDialog->listWidget);
2682 new QListWidgetItem(
viewPtList[i].viewPtName.c_str(),
2683 AuxWindowDialog->listWidget);
2695 std::istringstream str(s);
2696 if ((str >> t).fail())
2702G4OpenInventorQtExaminerViewer::FileOpenBookmarkCB()
2706 QFileDialog filedialog(getParentWidget(), tr(
"Open bookmark file"));
2707 filedialog.setFileMode(QFileDialog::ExistingFile);
2708 filedialog.setFont(*font);
2709 if (!filedialog.exec())
return;
2710 QStringList filenameinlist = filedialog.selectedFiles();
2711 QString filenamein = filenameinlist[0];
2714 fileIn.open(qPrintable(filenamein));
2717 msgbox.setFont(*font);
2718 QString messagetxt =
"Error opening file: ";
2719 messagetxt.append(filenamein);
2720 msgbox.setText(messagetxt);
2731 msgbox.setFont(*font);
2732 QString messagetxt =
"Error reading bookmark file: ";
2733 messagetxt.append(filenamein);
2734 msgbox.setText(messagetxt);
2743 fileOut.seekp(0, std::ios::end);
2765 AuxWindowDialog->listWidget->clear();
2766 AuxWindowDialog->lineEdit->setText(QString(
""));
2771G4OpenInventorQtExaminerViewer::FileNewBookmarkCB()
2774 QFileDialog filedialog(getParentWidget(), tr(
"Open new bookmark file"));
2775 filedialog.setFileMode(QFileDialog::AnyFile);
2777 filedialog.setAcceptMode(QFileDialog::AcceptSave);
2779 filedialog.setLabelText(QFileDialog::Accept, QString(
"New"));
2780 filedialog.setFont(*font);
2781 if (!filedialog.exec())
return;
2782 QStringList filenameinlist = filedialog.selectedFiles();
2783 QString filenamein = filenameinlist[0];
2790 msgbox.setFont(*font);
2791 QString messagetxt =
"Error opening new bookmark file: ";
2792 messagetxt.append(filenamein);
2793 msgbox.setText(messagetxt);
2801G4OpenInventorQtExaminerViewer::ToolsAnimateRefParticleCB()
2813 axisSwitch->whichChild.setValue(SO_SWITCH_ALL);
2819 SoCamera *cam = getCamera();
2832 if (cam->isOfType(SoOrthographicCamera::getClassTypeId())) {
2842 cam->focalDistance = 0.1f;
2843 ((SoPerspectiveCamera *) cam)->heightAngle = 0.50f;
2849 cam->position = (
myCam)->position.getValue();
2850 cam->orientation = (
myCam)->orientation.getValue();
2856G4OpenInventorQtExaminerViewer::SaveViewPtCB()
2863#if 0x060000 <= QT_VERSION
2870 AuxWindow->activateWindow();
2874 QInputDialog* inputdialog =
new QInputDialog(getParentWidget());
2875 inputdialog->setFont(*font);
2876 inputdialog->setWindowTitle(tr(
"Enter a name for the bookmark"));
2877 inputdialog->setLabelText(
"Bookmark name");
2879 inputdialog->adjustSize();
2881 if (inputdialog->exec() == QDialog::Accepted)
2882 namein=inputdialog->textValue().trimmed();
2885 if (namein.isEmpty())
return;
2896 char*
name = strdup(qPrintable(namein));
2902 for (
int i = 0; i < (int)
viewPtList.size(); i++) {
2903#if QT_VERSION < 0x060000
2904 if (!strcmp(name,
viewPtList[i].viewPtName)) {
2906 if (!strcmp(name,
viewPtList[i].viewPtName.c_str())) {
2909 msgbox.setText(
"Bookmark name is already in use");
2919 saveViewPtItem =
new QListWidgetItem(namein,
2920 AuxWindowDialog->listWidget);
2921 AuxWindowDialog->listWidget->setCurrentItem(saveViewPtItem);
2922 AuxWindowDialog->lineEdit->setText(namein);
2933 float x, y, z, angle;
2934 SoCamera* camera = getCamera();
2947#if QT_VERSION < 0x060000
2953 tmp.
position = camera->position.getValue();
2961 if (camera->isOfType(SoPerspectiveCamera::getClassTypeId())) {
2962 tmp.
height = ((SoPerspectiveCamera *) camera)->heightAngle.getValue();
2964 }
else if (camera->isOfType(SoOrthographicCamera::getClassTypeId())) {
2965 tmp.
height = ((SoOrthographicCamera *) camera)->height.getValue();
2968 SoDebugError::post(
"G4OpenInventorQtExaminerViewer::saveViewPtCB",
2969 "Only Perspective and Orthographic cameras are supported.");
2979 std::string vpName = name;
2984 fileOut << vpName << std::endl;
2986 fileOut << x <<
" " << y <<
" " << z << std::endl;
2990 axis.getValue(x, y, z);
2991 fileOut << x <<
" " << y <<
" " << z <<
" " << angle << std::endl;
3014 std::stringstream out;
3018 fileOut.seekp(0, std::ios::beg);
3028 fileOut.seekp(0, std::ios::end);
3034void G4OpenInventorQtExaminerViewer::LoadBookmarkCB(QListWidgetItem* item)
3039 for (
int i = 0; i < (int)
viewPtList.size(); i++) {
3040#if QT_VERSION < 0x060000
3041 if (!strcmp(
viewPtList[i].viewPtName, qPrintable(item->text()))) {
3043 if (!strcmp(
viewPtList[i].viewPtName.c_str(), qPrintable(item->text()))) {
3053 AuxWindowDialog->lineEdit->setText(item->text());
3069 SoCamera * camera = getCamera();
3070 if (camera == NULL) {
3071 G4warn <<
"setViewPt: Camera is null. Unable to set the viewpoint." <<
3080 G4warn <<
"setViewPt: There are no viewpoints to load." <<
G4endl;
3087 if (SoQtExaminerViewer::isAnimating()) stopAnimating();
3093 axisSwitch->whichChild.setValue(SO_SWITCH_NONE);
3100#if QT_VERSION < 0x060000
3118 if (camera->isOfType(SoPerspectiveCamera::getClassTypeId())) {
3121 camera = getCamera();
3122 ((SoOrthographicCamera *) camera)->height.setValue(
3125 ((SoPerspectiveCamera *) camera)->heightAngle.setValue(
3127 }
else if (camera->isOfType(SoOrthographicCamera::getClassTypeId())) {
3130 camera = getCamera();
3131 ((SoPerspectiveCamera *) camera)->heightAngle.setValue(
3134 ((SoOrthographicCamera *) camera)->height.setValue(
3137 SoDebugError::post(
"G4OpenInventorQtExaminerViewer::setViewPt",
3138 "Only Perspective and Orthographic cameras are supported.");
3145void G4OpenInventorQtExaminerViewer::NextViewPtCB()
3153#if 0x060000 <= QT_VERSION
3162#if QT_VERSION < 0x060000
3164 AuxWindowDialog->
lineEdit->setText(QString(viewptname));
3170void G4OpenInventorQtExaminerViewer::PrevViewPtCB()
3176#if QT_VERSION < 0x060000
3187#if QT_VERSION < 0x060000
3189 AuxWindowDialog->lineEdit->setText(QString(viewptname));
3196void G4OpenInventorQtExaminerViewer::AbbrOutputCB(
bool checked)
3205void G4OpenInventorQtExaminerViewer::PickRefPathCB()
3214 setComponentCursor(SoQtCursor(SoQtCursor::CROSSHAIR));
3219void G4OpenInventorQtExaminerViewer::SwitchWireFrameCB(
bool checked)
3226 setDrawStyle(SoQtViewer::STILL, SoQtViewer::VIEW_LINE);
3227 setDrawStyle(SoQtViewer::INTERACTIVE, SoQtViewer::VIEW_LINE);
3229 setDrawStyle(SoQtViewer::STILL, SoQtViewer::VIEW_AS_IS);
3230 setDrawStyle(SoQtViewer::INTERACTIVE,
3231 SoQtViewer::VIEW_SAME_AS_STILL);
3236void G4OpenInventorQtExaminerViewer::SwitchAxesCB(
bool checked)
3240 setFeedbackVisibility(checked);
3249void G4OpenInventorQtExaminerViewer::DetachCB()
3251#if QT_VERSION < 0x060000
3254 uiQt->GetViewerTabWidget()->removeTab(uiQtTabIndex);
3255 viewerParent->setParent(viewerParent2);
3256 removeAppPushButton(detachButton);
3267 {
int tabn = uiQt->GetViewerTabWidget()->count();
3268 for (
G4int c = 0; c < tabn; ++c) {
3269 if (uiQt->GetViewerTabWidget()->tabText(c)==fName) {
3273 if(index==(-1))
return;
3274 removeAppPushButton(detachButton);
3275 uiQt->GetViewerTabWidget()->removeTab(index);
3277 getSize().getValue(w,h);
3278 QWidget* dialog =
new QDialog();
3279 dialog->setWindowTitle(QString(
"Detached "+fName));
3280 dialog->setAttribute(Qt::WA_DeleteOnClose);
3281 {QHBoxLayout* layout =
new QHBoxLayout();
3282 layout->setContentsMargins(0,0,0,0);
3283 layout->setSpacing(0);
3284 layout->addWidget(getParentWidget());
3285 dialog->setLayout(layout);}
3286 dialog->resize(w,h);
3287 getParentWidget()->show();
3294void G4OpenInventorQtExaminerViewer::DeleteBookmarkCB()
3300 QListWidgetItem* listitem = AuxWindowDialog->listWidget->currentItem();
3301 if (!listitem)
return;
3302 if (!(listitem->isSelected()))
return;
3304 QString vpnamein = listitem->text();
3306 char* vpName = strdup(qPrintable(vpnamein));
3322 std::ofstream out(
"temporaryFile.txt");
3324#if QT_VERSION < 0x060000
3330 out << line <<
"\n";
3332 while (getline(
fileIn, line)) {
3333 end = line.find_last_not_of(
' ');
3334 line = line.substr(0, end + 1);
3335 if (!strcmp(line.c_str(), vpName)) {
3336 while (line.size()) {
3340 while (getline(
fileIn, line))
3341 out << line <<
"\n";
3343 while (line.size()) {
3344 out << line <<
"\n";
3351 std::size_t idx = 0;
3353 while (idx < size) {
3354#if QT_VERSION < 0x060000
3355 if (!strcmp(
viewPtList[idx].viewPtName, vpName)) {
3357 if (!strcmp(
viewPtList[idx].viewPtName.c_str(), vpName)) {
3371 int istat = remove(
fileName.c_str());
3374 msgbox.setFont(*font);
3375 QString messagetxt =
"Error removing bookmarks file";
3377 msgbox.setText(messagetxt);
3381 istat = rename(
"temporaryFile.txt",
fileName.c_str());
3384 msgbox.setFont(*font);
3385 QString messagetxt =
"Error renaming bookmarks file";
3387 msgbox.setText(messagetxt);
3392 fileOut.seekp(0, std::ios::end);
3395#if QT_VERSION < 0x060000
3410void G4OpenInventorQtExaminerViewer::RenameBookmarkCB()
3415 QListWidgetItem* listitem = AuxWindowDialog->listWidget->currentItem();
3416 if (!listitem)
return;
3417 if (!(listitem->isSelected()))
return;
3419 QString vpnamein = listitem->text();
3421 QInputDialog* inputdialog =
new QInputDialog(getParentWidget());
3422 inputdialog->setFont(*font);
3423 inputdialog->setWindowTitle(tr(
"Enter"));
3424 inputdialog->setLabelText(
"New bookmark name");
3425 inputdialog->adjustSize();
3427 if (inputdialog->exec() == QDialog::Accepted)
3428 newnamein=inputdialog->textValue().trimmed();
3431 if (newnamein.isEmpty())
return;
3433 char* newname = strdup(qPrintable(newnamein));
3436 for (std::size_t i = 0; i < size; ++i) {
3437#if QT_VERSION < 0x060000
3438 if (!strcmp(newname,
viewPtList[i].viewPtName)) {
3440 if (!strcmp(newname,
viewPtList[i].viewPtName.c_str())) {
3443 msgbox.setFont(*font);
3444 msgbox.setText(
"Bookmark name is already in use");
3451 listitem->setText(QString(newname));
3452 AuxWindowDialog->lineEdit->setText(newname);
3463 std::size_t idx = 0, end, pos;
3465 std::string line, newName;
3474 while (getline(
fileIn, line)) {
3475 end = line.find_last_not_of(
' ');
3476 line = line.substr(0, end + 1);
3477#if QT_VERSION < 0x060000
3484 fileOut.seekp(0, std::ios::end);
3495 while (idx < size) {
3496#if QT_VERSION < 0x060000
3501 viewPtList[idx].viewPtName = std::string(vpName);
3510void G4OpenInventorQtExaminerViewer::SortBookmarksCB()
3520 std::vector<std::string> charList;
3526 for (
int i = 0; i < (int)
viewPtList.size(); i++) {
3528 charList.push_back(
viewPtList[i].viewPtName);
3532 std::sort(charList.begin(), charList.end());
3536 AuxWindowDialog->listWidget->clear();
3538 for (
int i = 0; i < (int)
viewPtList.size(); i++) {
3540#if QT_VERSION < 0x060000
3546 new QListWidgetItem(charList[i].c_str(), AuxWindowDialog->listWidget);
3559 float x, y, z, angle;
3560 std::size_t sortIdx = 0, unsortIdx = 0;
3569 std::size_t size = sortedViewPts.size();
3570 while (sortIdx < size) {
3571 while (strcmp(sortedViewPts[sortIdx].c_str(),
3572#
if QT_VERSION < 0x060000
3579 std::string vpName =
viewPtList[unsortIdx].viewPtName;
3583 fileOut << vpName << std::endl;
3584 viewPtList[unsortIdx].position.getValue(x, y, z);
3585 fileOut << x <<
" " << y <<
" " << z << std::endl;
3588 viewPtList[unsortIdx].orientation.getValue(axis, angle);
3589 axis.getValue(x, y, z);
3590 fileOut << x <<
" " << y <<
" " << z <<
" " << angle << std::endl;
3593 <<
viewPtList[unsortIdx].height << std::endl;
3616 float multiplicator = float(std::exp(diffvalue));
3617 SoCamera *cam = getCamera();
3619 if (cam->isOfType(SoPerspectiveCamera::getClassTypeId())) {
3620 const float oldfocaldist = cam->focalDistance.getValue();
3621 const float newfocaldist = oldfocaldist * multiplicator;
3624 cam->orientation.getValue().multVec(SbVec3f(0, 0, -1), direction);
3626 const SbVec3f oldpos = cam->position.getValue();
3627 const SbVec3f newpos = oldpos + (newfocaldist - oldfocaldist) * -direction;
3628 cam->position = newpos;
3629 cam->focalDistance = newfocaldist;
3630 }
else if (cam->isOfType(SoOrthographicCamera::getClassTypeId())) {
3631 SoOrthographicCamera * oc = (SoOrthographicCamera *)cam;
3632 oc->height = oc->height.getValue() * multiplicator;
3646 SoCamera *cam = getCamera();
3647 const SoType type(ev->getTypeId());
3652 if (type.isDerivedFrom(SoMouseButtonEvent::getClassTypeId())) {
3653 SoMouseButtonEvent * me = (SoMouseButtonEvent *) ev;
3658 switch (me->getButton()) {
3660 case SoMouseButtonEvent::BUTTON4:
3661 if (me->getState() == SoButtonEvent::DOWN) {
3668 case SoMouseButtonEvent::BUTTON5:
3669 if (me->getState() == SoButtonEvent::DOWN) {
3686 if (type.isDerivedFrom(SoKeyboardEvent::getClassTypeId())) {
3687 SoKeyboardEvent* ke = (SoKeyboardEvent*)ev;
3689 if (SoKeyboardEvent::isKeyPressEvent(ev, ke->getKey())) {
3690 switch (ke->getKey()) {
3691 case SoKeyboardEvent::E:
3692 if (externalQtApp) {
3697 "E KEY PRESSED, EXITING OIQT VIEWER SECONDARY LOOP" <<
3699 SoQt::exitMainLoop();
3703 case SoKeyboardEvent::LEFT_SHIFT:
3704 this->lshiftdown =
true;
3706 case SoKeyboardEvent::RIGHT_SHIFT:
3707 this->rshiftdown =
true;
3709 case SoKeyboardEvent::LEFT_CONTROL:
3710 this->lctrldown =
true;
3712 case SoKeyboardEvent::RIGHT_CONTROL:
3713 this->rctrldown =
true;
3715 case SoKeyboardEvent::SPACE:
3737 case SoKeyboardEvent::ESCAPE:
3753 axisSwitch->whichChild.setValue(SO_SWITCH_NONE);
3764 case SoKeyboardEvent::DELETE:
3776 case SoKeyboardEvent::LEFT_ARROW:
3779 if ((this->lshiftdown) || (this->rshiftdown)) {
3783 else if ((this->lctrldown) || (this->rctrldown)) {
3784 if (SoQtExaminerViewer::isAnimating())
3799 if (SoQtExaminerViewer::isAnimating())
3823 cam->position =
myCam->position;
3827 if ((!this->lshiftdown) && (!this->rshiftdown)) {
3830 this->bottomWheelMotion(
3831 this->getBottomWheelValue() + 0.1f);
3841 SoDebugError::post(
"G4OpenInventorQtExaminerViewer::processSoEvent",
3842 "Unhandled viewer state");
3847 case SoKeyboardEvent::RIGHT_ARROW:
3850 if ((this->lshiftdown) || (this->rshiftdown)) {
3854 else if ((this->lctrldown) || (this->rctrldown)) {
3855 if (SoQtExaminerViewer::isAnimating())
3868 if (SoQtExaminerViewer::isAnimating())
3889 cam->position =
myCam->position;
3893 if ((!this->lshiftdown) && (!this->rshiftdown)) {
3896 this->bottomWheelMotion(
3897 this->getBottomWheelValue() - 0.1f);
3906 SoDebugError::post(
"G4OpenInventorQtExaminerViewer::processSoEvent",
3907 "Unhandled viewer state");
3912 case SoKeyboardEvent::DOWN_ARROW:
3916 if ((this->lshiftdown) || (this->rshiftdown)) {
3921 if (SoQtExaminerViewer::isAnimating())
3943 cam->position =
myCam->position;
3949 if ((!this->lshiftdown) && (!this->rshiftdown)) {
3950 this->leftWheelMotion(this->getLeftWheelValue() - 0.1f);
3959 SoDebugError::post(
"G4OpenInventorQtExaminerViewer::processSoEvent",
3960 "Unhandled viewer state");
3965 case SoKeyboardEvent::UP_ARROW:
3968 if ((this->lshiftdown) || (this->rshiftdown)) {
3973 if (SoQtExaminerViewer::isAnimating())
3996 cam->position =
myCam->position;
4002 if ((!this->lshiftdown) && (!this->rshiftdown)) {
4003 this->leftWheelMotion(this->getLeftWheelValue() + 0.1f);
4012 SoDebugError::post(
"G4OpenInventorQtExaminerViewer::processSoEvent",
4013 "Unhandled viewer state");
4018 case SoKeyboardEvent::PAGE_UP:
4069 case SoKeyboardEvent::PAGE_DOWN:
4126 if (SoKeyboardEvent::isKeyReleaseEvent(ev, ke->getKey())) {
4127 switch (ke->getKey()) {
4128 case SoKeyboardEvent::LEFT_SHIFT:
4129 this->lshiftdown =
false;
4131 case SoKeyboardEvent::RIGHT_SHIFT:
4132 this->rshiftdown =
false;
4134 case SoKeyboardEvent::LEFT_CONTROL:
4135 this->lctrldown =
false;
4137 case SoKeyboardEvent::RIGHT_CONTROL:
4138 this->rctrldown =
false;
4153 return SoQtExaminerViewer::processSoEvent(ev);
4160void G4OpenInventorQtExaminerViewer::FileLoadSceneGraphCB()
4164 QFileDialog filedialog(getParentWidget(), tr(
"Load Scene Graph"));
4165 filedialog.setFileMode(QFileDialog::AnyFile);
4166 filedialog.setFont(*font);
4167 if (!filedialog.exec())
return;
4168 QStringList filenameinlist = filedialog.selectedFiles();
4169 QString filenamein = filenameinlist[0];
4173 if (sceneInput.openFile(qPrintable(filenamein))) {
4178 msgbox.setFont(*font);
4179 QString messagetxt =
"Error reading scene graph file ";
4180 messagetxt.append(filenamein);
4181 msgbox.setText(messagetxt);
4183 sceneInput.closeFile();
4188 msgbox.setFont(*font);
4189 QString messagetxt =
"Error opening scene graph file ";
4190 messagetxt.append(filenamein);
4191 msgbox.setText(messagetxt);
4196 SoSeparator* root = (SoSeparator*)getSceneGraph();
4202void G4OpenInventorQtExaminerViewer::FileSaveSceneGraphCB()
4206 QFileDialog filedialog(getParentWidget(), tr(
"Save scene graph"));
4207 filedialog.setFileMode(QFileDialog::AnyFile);
4209 filedialog.setAcceptMode(QFileDialog::AcceptSave);
4210 filedialog.setFont(*font);
4211 if (!filedialog.exec())
return;
4212 QStringList filenameinlist = filedialog.selectedFiles();
4213 QString filenamein = filenameinlist[0];
4215 SoWriteAction writeAction;
4216 SoSeparator* root = (SoSeparator*)getSceneGraph();
4218 SoOutput* out = writeAction.getOutput();
4220 if (out->openFile(qPrintable(filenamein))) {
4221 out->setBinary(
FALSE);
4222 writeAction.apply(root);
4226 msgbox.setFont(*font);
4227 QString messagetxt =
"Error opening file ";
4228 messagetxt.append(filenamein);
4229 msgbox.setText(messagetxt);
4235void G4OpenInventorQtExaminerViewer::HelpControlsCB()
4252#if QT_VERSION < 0x060000
4255#ifdef G4MULTITHREADED
4264 viewer->newEvents =
true;
#define MAX_SPEED_INDICATOR
#define SPEED_INDICATOR_STEP
CLHEP::Hep3Vector G4ThreeVector
G4GLOB_DLL std::ostream G4cout
const std::vector< const std::vector< G4AttValue > * > & GetAttValues() const
const std::vector< const std::map< G4String, G4AttDef > * > & GetAttDefs() const
static void mouseoverCB(void *aThis, SoEventCallback *eventCB)
SoTranslation * mouseOverTransMaterial
SoCoordinate3 * getCoordsNode(SoFullPath *path)
static void superimpositionCB(void *closure, SoAction *action)
static void animateSensorRotationCB(void *, SoSensor *)
SoText2 * mouseOverTextMaterial
SoSearchAction * searcher
void moveCamera(float dist=0, bool lookdown=false)
virtual void afterRealizeHook()
SoSwitch * animSpeedSwitch
SoNode * getSuperimpositionNode(SoNode *, const char *name)
void animateRefParticle()
SoSeparator * newSceneGraph
SoTranslation * curInfoTrans
~G4OpenInventorQtExaminerViewer()
SoTranslation * mouseOverTransZPos
void addEscapeCallback(void(*cb)())
void buildWidget(QWidget *parent)
void parseString(T &t, const std::string &s, bool &error)
SoTranslation * mouseOverTransSolid
void setReferencePathZPos()
SbRotation camStartOrient
static void pickingCB(void *aThis, SoEventCallback *eventCB)
SoFont * mouseOverFontZPos
static void sceneChangeCB(void *, SoSensor *)
friend class HookEventProcState
SbBool processSoEvent(const SoEvent *const event)
void renameViewPt(char *vpName)
SoFont * mouseOverFontMaterial
std::vector< float > refZPositions
G4OpenInventorQtExaminerViewer(QWidget *parent=NULL, const char *name=NULL, SbBool embed=TRUE, SoQtFullViewer::BuildFlag flag=BUILD_ALL, SoQtViewer::Type type=BROWSER)
SoTranslation * stranslation
SoTranslation * mouseOverTransLogName
void sortViewPts(std::vector< std::string >)
void deleteViewPt(char *vpName=NULL)
SoNodeSensor * sceneChangeSensor
bool viewingBeforePickRef
void cleanUpAfterPrevFile()
SoTimerSensor * animateSensor
virtual void actualRedraw(void)
void createElementsList()
void setReferencePath(SoLineSet *, SoCoordinate3 *, bool append=false)
void saveViewPt(char *name)
void updateSpeedIndicator(void)
void construct(const SbBool build)
SoFont * mouseOverFontLogName
void superimpositionEvent(SoAction *action)
SoText2 * mouseOverTextZPos
SoTimerSensor * animateSensorRotation
std::vector< sceneElement > sceneElements
void distanceToTrajectory(const SbVec3f &, float &, SbVec3f &, int &)
void evenOutRefParticlePts()
viewPtData camB4Animation
double animateBtwPtsPeriod
SoSwitch * animSpeedOutlineSwitch
std::vector< viewPtData > viewPtList
SoFont * mouseOverFontSolid
std::vector< SbVec3f > refParticleTrajectory
SoText2 * mouseOverTextSolid
static void animateSensorCB(void *, SoSensor *)
float sqrlen(const SbVec3f &)
SoText2 * mouseOverTextLogName
SoCoordinate3 * sgeometry
void setStartingPtForAnimation()
HookEventProcState * hookBeamOn
static G4StateManager * GetStateManager()
const G4ApplicationState & GetPreviousState() const
static G4UImanager * GetUIpointer()
virtual G4bool Notify(G4ApplicationState requestedState)
HookEventProcState(G4OpenInventorQtExaminerViewer *)
const char * name(G4int ptype)
float distanceToBeamlineStart