ROOT Version: 6.22/08
Platform: Ubuntu 20.04
Compiler: gcc 9.4.0
Hello!
I have a root file, which contains detector geometry.
I want to draw this geometry.
For this I do the following steps:
$ root
$ TFile f("myfile.root")
$ TGeoVolume *topvol
$ f.GetObject("TOP;1", topvol)
$ topvol->Draw()
At the first time a window with 3d geometry appeared.
But when I tried scroll mouse it crashed with the following output:
root [6] f.GetObject("TGeoVolumeAssembly", topvol)
root [7] topvol
(TGeoVolume *) nullptr
root [8] f.GetObject("TGeoVolumeAssembly123", topvol)
root [9] topvol
(TGeoVolume *) nullptr
root [10] f.GetObject("TOP;1", topvol)
root [11] topvol
(TGeoVolume *) 0x5557e3f7fa10
root [12] topvol->Draw()
Info in <TCanvas::MakeDefCanvas>: created default TCanvas with name Canvas_1
root [13]
*** Break *** segmentation violation
===========================================================
There was a crash.
This is the entire stack trace of all threads:
===========================================================
#0 0x00007f4188bd3c6a in wait4 () from /usr/lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f4188b42f97 in ?? () from /usr/lib/x86_64-linux-gnu/libc.so.6
#2 0x00007f41891dcefa in TUnixSystem::Exec (shellcmd=<optimized out>, this=0x5557e06ce800) at <path_to_root_source>/core/unix/src/TUnixSystem.cxx:2117
#3 TUnixSystem::StackTrace (this=0x5557e06ce800) at <path_to_root_source>/core/unix/src/TUnixSystem.cxx:2408
#4 0x00007f41891da345 in TUnixSystem::DispatchSignals (this=0x5557e06ce800, sig=kSigSegmentationViolation) at <path_to_root_source>/core/unix/src/TUnixSystem.cxx:3646
#5 <signal handler called>
#6 0x00007f417415a601 in TGeoNavigator::PopPath (this=0x0) at <path_to_root_source>/geom/geom/inc/TGeoNavigator.h:197
#7 0x00007f4171e89d14 in TGeoManager::PopPath (this=<optimized out>) at <path_to_root_source>/geom/geom/inc/TGeoManager.h:584
#8 TGeoPainter::DistanceToPrimitiveVol (this=0x5557e435f600, volume=<optimized out>, px=<optimized out>, py=<optimized out>) at <path_to_root_source>/geom/geompainter/src/TGeoPainter.cxx:493
#9 0x00007f4173caff4c in TPad::Pick (this=this
entry=0x5557e3de9cb0, px=px
entry=246, py=py
entry=245, pickobj=
0x7ffc9a9fd1f0: 0x7f4173d11580 <TPad::Pick(int, int, TObjLink*&)::dummyLink>) at <path_to_root_source>/graf2d/gpad/src/TPad.cxx:4569
#10 0x00007f4173c95b78 in TCanvas::Pick (pickobj=
0x7ffc9a9fd1f0: 0x7f4173d11580 <TPad::Pick(int, int, TObjLink*&)::dummyLink>, py=245, px=246, this=0x5557e3de9cb0) at <path_to_root_source>/graf2d/gpad/inc/TCanvas.h:184
#11 TCanvas::Pick (this=0x5557e3de9cb0, px=246, py=245, prevSelObj=0x5557e1e973b0) at <path_to_root_source>/graf2d/gpad/src/TCanvas.cxx:1531
#12 0x00007f4173c93fa6 in TCanvas::HandleInput (this=0x5557e3de9cb0, event=kMouseMotion, px=246, py=245) at <path_to_root_source>/graf2d/gpad/src/TCanvas.cxx:1227
#13 0x00007f4172fa75a1 in TRootCanvas::HandleContainerMotion (this=0x5557e43a9260, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TRootCanvas.cxx:1914
#14 0x00007f4172ee10d1 in TGFrame::HandleEvent (this=0x5557e4407080, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TGFrame.cxx:531
#15 0x00007f4172e91c3e in TGClient::HandleEvent (this=0x5557e21ed4b0, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:843
#16 0x00007f4172e92275 in TGClient::ProcessOneEvent (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:653
#17 TGClient::ProcessOneEvent (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:645
#18 0x00007f4172e922db in TGClient::HandleInput (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:700
#19 0x00007f41891dab50 in TUnixSystem::DispatchOneEvent (this=0x5557e06ce800, pendingOnly=<optimized out>) at <path_to_root_source>/core/unix/src/TUnixSystem.cxx:1064
#20 0x00007f41890fe8c4 in TSystem::InnerLoop (this=0x5557e06ce800) at <path_to_root_source>/core/base/src/TSystem.cxx:402
#21 0x00007f41890fd56f in TSystem::Run (this=0x5557e06ce800) at <path_to_root_source>/core/base/src/TSystem.cxx:351
#22 0x00007f41890975b3 in TApplication::Run (this=this
entry=0x5557e0726b90, retrn=retrn
entry=false) at <path_to_root_source>/core/base/src/TApplication.cxx:1622
#23 0x00007f4189459505 in TRint::Run (this=0x5557e0726b90, retrn=<optimized out>) at <path_to_root_source>/core/rint/src/TRint.cxx:462
#24 0x00005557dfd22180 in main (argc=<optimized out>, argv=0x7ffc9a9ff758) at <path_to_root_source>/main/src/rmain.cxx:30
===========================================================
The lines below might hint at the cause of the crash.
You may get help by asking at the ROOT forum https://root.cern.ch/forum
Only if you are really convinced it is a bug in ROOT then please submit a
report at https://root.cern.ch/bugs Please post the ENTIRE stack trace
from above as an attachment in addition to anything else
that might help us fixing this issue.
===========================================================
#6 0x00007f417415a601 in TGeoNavigator::PopPath (this=0x0) at <path_to_root_source>/geom/geom/inc/TGeoNavigator.h:197
#7 0x00007f4171e89d14 in TGeoManager::PopPath (this=<optimized out>) at <path_to_root_source>/geom/geom/inc/TGeoManager.h:584
#8 TGeoPainter::DistanceToPrimitiveVol (this=0x5557e435f600, volume=<optimized out>, px=<optimized out>, py=<optimized out>) at <path_to_root_source>/geom/geompainter/src/TGeoPainter.cxx:493
#9 0x00007f4173caff4c in TPad::Pick (this=this
entry=0x5557e3de9cb0, px=px
entry=246, py=py
entry=245, pickobj=
0x7ffc9a9fd1f0: 0x7f4173d11580 <TPad::Pick(int, int, TObjLink*&)::dummyLink>) at <path_to_root_source>/graf2d/gpad/src/TPad.cxx:4569
#10 0x00007f4173c95b78 in TCanvas::Pick (pickobj=
0x7ffc9a9fd1f0: 0x7f4173d11580 <TPad::Pick(int, int, TObjLink*&)::dummyLink>, py=245, px=246, this=0x5557e3de9cb0) at <path_to_root_source>/graf2d/gpad/inc/TCanvas.h:184
#11 TCanvas::Pick (this=0x5557e3de9cb0, px=246, py=245, prevSelObj=0x5557e1e973b0) at <path_to_root_source>/graf2d/gpad/src/TCanvas.cxx:1531
#12 0x00007f4173c93fa6 in TCanvas::HandleInput (this=0x5557e3de9cb0, event=kMouseMotion, px=246, py=245) at <path_to_root_source>/graf2d/gpad/src/TCanvas.cxx:1227
#13 0x00007f4172fa75a1 in TRootCanvas::HandleContainerMotion (this=0x5557e43a9260, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TRootCanvas.cxx:1914
#14 0x00007f4172ee10d1 in TGFrame::HandleEvent (this=0x5557e4407080, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TGFrame.cxx:531
#15 0x00007f4172e91c3e in TGClient::HandleEvent (this=0x5557e21ed4b0, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:843
#16 0x00007f4172e92275 in TGClient::ProcessOneEvent (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:653
#17 TGClient::ProcessOneEvent (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:645
#18 0x00007f4172e922db in TGClient::HandleInput (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:700
#19 0x00007f41891dab50 in TUnixSystem::DispatchOneEvent (this=0x5557e06ce800, pendingOnly=<optimized out>) at <path_to_root_source>/core/unix/src/TUnixSystem.cxx:1064
#20 0x00007f41890fe8c4 in TSystem::InnerLoop (this=0x5557e06ce800) at <path_to_root_source>/core/base/src/TSystem.cxx:402
#21 0x00007f41890fd56f in TSystem::Run (this=0x5557e06ce800) at <path_to_root_source>/core/base/src/TSystem.cxx:351
#22 0x00007f41890975b3 in TApplication::Run (this=this
entry=0x5557e0726b90, retrn=retrn
entry=false) at <path_to_root_source>/core/base/src/TApplication.cxx:1622
#23 0x00007f4189459505 in TRint::Run (this=0x5557e0726b90, retrn=<optimized out>) at <path_to_root_source>/core/rint/src/TRint.cxx:462
#24 0x00005557dfd22180 in main (argc=<optimized out>, argv=0x7ffc9a9ff758) at <path_to_root_source>/main/src/rmain.cxx:30
===========================================================
Root >
*** Break *** segmentation violation
===========================================================
There was a crash.
This is the entire stack trace of all threads:
===========================================================
#0 0x00007f4188bd3c6a in wait4 () from /usr/lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f4188b42f97 in ?? () from /usr/lib/x86_64-linux-gnu/libc.so.6
#2 0x00007f41891dcefa in TUnixSystem::Exec (shellcmd=<optimized out>, this=0x5557e06ce800) at <path_to_root_source>/core/unix/src/TUnixSystem.cxx:2117
#3 TUnixSystem::StackTrace (this=0x5557e06ce800) at <path_to_root_source>/core/unix/src/TUnixSystem.cxx:2408
#4 0x00007f41891da345 in TUnixSystem::DispatchSignals (this=0x5557e06ce800, sig=kSigSegmentationViolation) at <path_to_root_source>/core/unix/src/TUnixSystem.cxx:3646
#5 <signal handler called>
#6 0x00007f417415a601 in TGeoNavigator::PopPath (this=0x0) at <path_to_root_source>/geom/geom/inc/TGeoNavigator.h:197
#7 0x00007f4171e89d14 in TGeoManager::PopPath (this=<optimized out>) at <path_to_root_source>/geom/geom/inc/TGeoManager.h:584
#8 TGeoPainter::DistanceToPrimitiveVol (this=0x5557e435f600, volume=<optimized out>, px=<optimized out>, py=<optimized out>) at <path_to_root_source>/geom/geompainter/src/TGeoPainter.cxx:493
#9 0x00007f4173caff4c in TPad::Pick (this=this
entry=0x5557e3de9cb0, px=px
entry=443, py=py
entry=195, pickobj=
0x7ffc9a9fd1f0: 0x7f4173d11580 <TPad::Pick(int, int, TObjLink*&)::dummyLink>) at <path_to_root_source>/graf2d/gpad/src/TPad.cxx:4569
#10 0x00007f4173c95b78 in TCanvas::Pick (pickobj=
0x7ffc9a9fd1f0: 0x7f4173d11580 <TPad::Pick(int, int, TObjLink*&)::dummyLink>, py=195, px=443, this=0x5557e3de9cb0) at <path_to_root_source>/graf2d/gpad/inc/TCanvas.h:184
#11 TCanvas::Pick (this=0x5557e3de9cb0, px=443, py=195, prevSelObj=0x5557e1e973b0) at <path_to_root_source>/graf2d/gpad/src/TCanvas.cxx:1531
#12 0x00007f4173c93c76 in TCanvas::HandleInput (this=0x5557e3de9cb0, event=kButton1Down, px=443, py=195) at <path_to_root_source>/graf2d/gpad/src/TCanvas.cxx:1269
#13 0x00007f4172fa726f in TRootCanvas::HandleContainerButton (this=0x5557e43a9260, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TRootCanvas.cxx:1737
#14 0x00007f4172ee1460 in TGFrame::HandleEvent (this=0x5557e4407080, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TGFrame.cxx:502
#15 0x00007f4172e91c3e in TGClient::HandleEvent (this=0x5557e21ed4b0, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:843
#16 0x00007f4172e92275 in TGClient::ProcessOneEvent (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:653
#17 TGClient::ProcessOneEvent (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:645
#18 0x00007f4172e922db in TGClient::HandleInput (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:700
#19 0x00007f41891dab50 in TUnixSystem::DispatchOneEvent (this=0x5557e06ce800, pendingOnly=<optimized out>) at <path_to_root_source>/core/unix/src/TUnixSystem.cxx:1064
#20 0x00007f41890fe8c4 in TSystem::InnerLoop (this=0x5557e06ce800) at <path_to_root_source>/core/base/src/TSystem.cxx:402
#21 0x00007f41890fd56f in TSystem::Run (this=0x5557e06ce800) at <path_to_root_source>/core/base/src/TSystem.cxx:351
#22 0x00007f41890975b3 in TApplication::Run (this=this
entry=0x5557e0726b90, retrn=retrn
entry=false) at <path_to_root_source>/core/base/src/TApplication.cxx:1622
#23 0x00007f4189459505 in TRint::Run (this=0x5557e0726b90, retrn=<optimized out>) at <path_to_root_source>/core/rint/src/TRint.cxx:462
#24 0x00005557dfd22180 in main (argc=<optimized out>, argv=0x7ffc9a9ff758) at <path_to_root_source>/main/src/rmain.cxx:30
===========================================================
The lines below might hint at the cause of the crash.
You may get help by asking at the ROOT forum https://root.cern.ch/forum
Only if you are really convinced it is a bug in ROOT then please submit a
report at https://root.cern.ch/bugs Please post the ENTIRE stack trace
from above as an attachment in addition to anything else
that might help us fixing this issue.
===========================================================
#6 0x00007f417415a601 in TGeoNavigator::PopPath (this=0x0) at <path_to_root_source>/geom/geom/inc/TGeoNavigator.h:197
#7 0x00007f4171e89d14 in TGeoManager::PopPath (this=<optimized out>) at <path_to_root_source>/geom/geom/inc/TGeoManager.h:584
#8 TGeoPainter::DistanceToPrimitiveVol (this=0x5557e435f600, volume=<optimized out>, px=<optimized out>, py=<optimized out>) at <path_to_root_source>/geom/geompainter/src/TGeoPainter.cxx:493
#9 0x00007f4173caff4c in TPad::Pick (this=this
entry=0x5557e3de9cb0, px=px
entry=443, py=py
entry=195, pickobj=
0x7ffc9a9fd1f0: 0x7f4173d11580 <TPad::Pick(int, int, TObjLink*&)::dummyLink>) at <path_to_root_source>/graf2d/gpad/src/TPad.cxx:4569
#10 0x00007f4173c95b78 in TCanvas::Pick (pickobj=
0x7ffc9a9fd1f0: 0x7f4173d11580 <TPad::Pick(int, int, TObjLink*&)::dummyLink>, py=195, px=443, this=0x5557e3de9cb0) at <path_to_root_source>/graf2d/gpad/inc/TCanvas.h:184
#11 TCanvas::Pick (this=0x5557e3de9cb0, px=443, py=195, prevSelObj=0x5557e1e973b0) at <path_to_root_source>/graf2d/gpad/src/TCanvas.cxx:1531
#12 0x00007f4173c93c76 in TCanvas::HandleInput (this=0x5557e3de9cb0, event=kButton1Down, px=443, py=195) at <path_to_root_source>/graf2d/gpad/src/TCanvas.cxx:1269
#13 0x00007f4172fa726f in TRootCanvas::HandleContainerButton (this=0x5557e43a9260, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TRootCanvas.cxx:1737
#14 0x00007f4172ee1460 in TGFrame::HandleEvent (this=0x5557e4407080, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TGFrame.cxx:502
#15 0x00007f4172e91c3e in TGClient::HandleEvent (this=0x5557e21ed4b0, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:843
#16 0x00007f4172e92275 in TGClient::ProcessOneEvent (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:653
#17 TGClient::ProcessOneEvent (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:645
#18 0x00007f4172e922db in TGClient::HandleInput (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:700
#19 0x00007f41891dab50 in TUnixSystem::DispatchOneEvent (this=0x5557e06ce800, pendingOnly=<optimized out>) at <path_to_root_source>/core/unix/src/TUnixSystem.cxx:1064
#20 0x00007f41890fe8c4 in TSystem::InnerLoop (this=0x5557e06ce800) at <path_to_root_source>/core/base/src/TSystem.cxx:402
#21 0x00007f41890fd56f in TSystem::Run (this=0x5557e06ce800) at <path_to_root_source>/core/base/src/TSystem.cxx:351
#22 0x00007f41890975b3 in TApplication::Run (this=this
entry=0x5557e0726b90, retrn=retrn
entry=false) at <path_to_root_source>/core/base/src/TApplication.cxx:1622
#23 0x00007f4189459505 in TRint::Run (this=0x5557e0726b90, retrn=<optimized out>) at <path_to_root_source>/core/rint/src/TRint.cxx:462
#24 0x00005557dfd22180 in main (argc=<optimized out>, argv=0x7ffc9a9ff758) at <path_to_root_source>/main/src/rmain.cxx:30
===========================================================
Root >
*** Break *** segmentation violation
===========================================================
There was a crash.
This is the entire stack trace of all threads:
===========================================================
#0 0x00007f4188bd3c6a in wait4 () from /usr/lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f4188b42f97 in ?? () from /usr/lib/x86_64-linux-gnu/libc.so.6
#2 0x00007f41891dcefa in TUnixSystem::Exec (shellcmd=<optimized out>, this=0x5557e06ce800) at <path_to_root_source>/core/unix/src/TUnixSystem.cxx:2117
#3 TUnixSystem::StackTrace (this=0x5557e06ce800) at <path_to_root_source>/core/unix/src/TUnixSystem.cxx:2408
#4 0x00007f41891da345 in TUnixSystem::DispatchSignals (this=0x5557e06ce800, sig=kSigSegmentationViolation) at <path_to_root_source>/core/unix/src/TUnixSystem.cxx:3646
#5 <signal handler called>
#6 0x00007f417415a601 in TGeoNavigator::PopPath (this=0x0) at <path_to_root_source>/geom/geom/inc/TGeoNavigator.h:197
#7 0x00007f4171e89d14 in TGeoManager::PopPath (this=<optimized out>) at <path_to_root_source>/geom/geom/inc/TGeoManager.h:584
#8 TGeoPainter::DistanceToPrimitiveVol (this=0x5557e435f600, volume=<optimized out>, px=<optimized out>, py=<optimized out>) at <path_to_root_source>/geom/geompainter/src/TGeoPainter.cxx:493
#9 0x00007f4173caff4c in TPad::Pick (this=this
entry=0x5557e3de9cb0, px=px
entry=402, py=py
entry=218, pickobj=
0x7ffc9a9fd1f0: 0x7f4173d11580 <TPad::Pick(int, int, TObjLink*&)::dummyLink>) at <path_to_root_source>/graf2d/gpad/src/TPad.cxx:4569
#10 0x00007f4173c95b78 in TCanvas::Pick (pickobj=
0x7ffc9a9fd1f0: 0x7f4173d11580 <TPad::Pick(int, int, TObjLink*&)::dummyLink>, py=218, px=402, this=0x5557e3de9cb0) at <path_to_root_source>/graf2d/gpad/inc/TCanvas.h:184
#11 TCanvas::Pick (this=0x5557e3de9cb0, px=402, py=218, prevSelObj=0x5557e409aa40) at <path_to_root_source>/graf2d/gpad/src/TCanvas.cxx:1531
#12 0x00007f4173c93c76 in TCanvas::HandleInput (this=0x5557e3de9cb0, event=kButton1Down, px=402, py=218) at <path_to_root_source>/graf2d/gpad/src/TCanvas.cxx:1269
#13 0x00007f4172fa726f in TRootCanvas::HandleContainerButton (this=0x5557e43a9260, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TRootCanvas.cxx:1737
#14 0x00007f4172ee1460 in TGFrame::HandleEvent (this=0x5557e4407080, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TGFrame.cxx:502
#15 0x00007f4172e91c3e in TGClient::HandleEvent (this=0x5557e21ed4b0, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:843
#16 0x00007f4172e92275 in TGClient::ProcessOneEvent (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:653
#17 TGClient::ProcessOneEvent (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:645
#18 0x00007f4172e922db in TGClient::HandleInput (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:700
#19 0x00007f41891dab50 in TUnixSystem::DispatchOneEvent (this=0x5557e06ce800, pendingOnly=<optimized out>) at <path_to_root_source>/core/unix/src/TUnixSystem.cxx:1064
#20 0x00007f41890fe8c4 in TSystem::InnerLoop (this=0x5557e06ce800) at <path_to_root_source>/core/base/src/TSystem.cxx:402
#21 0x00007f41890fd56f in TSystem::Run (this=0x5557e06ce800) at <path_to_root_source>/core/base/src/TSystem.cxx:351
#22 0x00007f41890975b3 in TApplication::Run (this=this
entry=0x5557e0726b90, retrn=retrn
entry=false) at <path_to_root_source>/core/base/src/TApplication.cxx:1622
#23 0x00007f4189459505 in TRint::Run (this=0x5557e0726b90, retrn=<optimized out>) at <path_to_root_source>/core/rint/src/TRint.cxx:462
#24 0x00005557dfd22180 in main (argc=<optimized out>, argv=0x7ffc9a9ff758) at <path_to_root_source>/main/src/rmain.cxx:30
===========================================================
The lines below might hint at the cause of the crash.
You may get help by asking at the ROOT forum https://root.cern.ch/forum
Only if you are really convinced it is a bug in ROOT then please submit a
report at https://root.cern.ch/bugs Please post the ENTIRE stack trace
from above as an attachment in addition to anything else
that might help us fixing this issue.
===========================================================
#6 0x00007f417415a601 in TGeoNavigator::PopPath (this=0x0) at <path_to_root_source>/geom/geom/inc/TGeoNavigator.h:197
#7 0x00007f4171e89d14 in TGeoManager::PopPath (this=<optimized out>) at <path_to_root_source>/geom/geom/inc/TGeoManager.h:584
#8 TGeoPainter::DistanceToPrimitiveVol (this=0x5557e435f600, volume=<optimized out>, px=<optimized out>, py=<optimized out>) at <path_to_root_source>/geom/geompainter/src/TGeoPainter.cxx:493
#9 0x00007f4173caff4c in TPad::Pick (this=this
entry=0x5557e3de9cb0, px=px
entry=402, py=py
entry=218, pickobj=
0x7ffc9a9fd1f0: 0x7f4173d11580 <TPad::Pick(int, int, TObjLink*&)::dummyLink>) at <path_to_root_source>/graf2d/gpad/src/TPad.cxx:4569
#10 0x00007f4173c95b78 in TCanvas::Pick (pickobj=
0x7ffc9a9fd1f0: 0x7f4173d11580 <TPad::Pick(int, int, TObjLink*&)::dummyLink>, py=218, px=402, this=0x5557e3de9cb0) at <path_to_root_source>/graf2d/gpad/inc/TCanvas.h:184
#11 TCanvas::Pick (this=0x5557e3de9cb0, px=402, py=218, prevSelObj=0x5557e409aa40) at <path_to_root_source>/graf2d/gpad/src/TCanvas.cxx:1531
#12 0x00007f4173c93c76 in TCanvas::HandleInput (this=0x5557e3de9cb0, event=kButton1Down, px=402, py=218) at <path_to_root_source>/graf2d/gpad/src/TCanvas.cxx:1269
#13 0x00007f4172fa726f in TRootCanvas::HandleContainerButton (this=0x5557e43a9260, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TRootCanvas.cxx:1737
#14 0x00007f4172ee1460 in TGFrame::HandleEvent (this=0x5557e4407080, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TGFrame.cxx:502
#15 0x00007f4172e91c3e in TGClient::HandleEvent (this=0x5557e21ed4b0, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:843
#16 0x00007f4172e92275 in TGClient::ProcessOneEvent (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:653
#17 TGClient::ProcessOneEvent (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:645
#18 0x00007f4172e922db in TGClient::HandleInput (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:700
#19 0x00007f41891dab50 in TUnixSystem::DispatchOneEvent (this=0x5557e06ce800, pendingOnly=<optimized out>) at <path_to_root_source>/core/unix/src/TUnixSystem.cxx:1064
#20 0x00007f41890fe8c4 in TSystem::InnerLoop (this=0x5557e06ce800) at <path_to_root_source>/core/base/src/TSystem.cxx:402
#21 0x00007f41890fd56f in TSystem::Run (this=0x5557e06ce800) at <path_to_root_source>/core/base/src/TSystem.cxx:351
#22 0x00007f41890975b3 in TApplication::Run (this=this
entry=0x5557e0726b90, retrn=retrn
entry=false) at <path_to_root_source>/core/base/src/TApplication.cxx:1622
#23 0x00007f4189459505 in TRint::Run (this=0x5557e0726b90, retrn=<optimized out>) at <path_to_root_source>/core/rint/src/TRint.cxx:462
#24 0x00005557dfd22180 in main (argc=<optimized out>, argv=0x7ffc9a9ff758) at <path_to_root_source>/main/src/rmain.cxx:30
===========================================================
Root >
*** Break *** segmentation violation
===========================================================
There was a crash.
This is the entire stack trace of all threads:
===========================================================
#0 0x00007f4188bd3c6a in wait4 () from /usr/lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f4188b42f97 in ?? () from /usr/lib/x86_64-linux-gnu/libc.so.6
#2 0x00007f41891dcefa in TUnixSystem::Exec (shellcmd=<optimized out>, this=0x5557e06ce800) at <path_to_root_source>/core/unix/src/TUnixSystem.cxx:2117
#3 TUnixSystem::StackTrace (this=0x5557e06ce800) at <path_to_root_source>/core/unix/src/TUnixSystem.cxx:2408
#4 0x00007f41891da345 in TUnixSystem::DispatchSignals (this=0x5557e06ce800, sig=kSigSegmentationViolation) at <path_to_root_source>/core/unix/src/TUnixSystem.cxx:3646
#5 <signal handler called>
#6 0x00007f417415a601 in TGeoNavigator::PopPath (this=0x0) at <path_to_root_source>/geom/geom/inc/TGeoNavigator.h:197
#7 0x00007f4171e89d14 in TGeoManager::PopPath (this=<optimized out>) at <path_to_root_source>/geom/geom/inc/TGeoManager.h:584
#8 TGeoPainter::DistanceToPrimitiveVol (this=0x5557e435f600, volume=<optimized out>, px=<optimized out>, py=<optimized out>) at <path_to_root_source>/geom/geompainter/src/TGeoPainter.cxx:493
#9 0x00007f4173caff4c in TPad::Pick (this=this
entry=0x5557e3de9cb0, px=px
entry=307, py=py
entry=100, pickobj=
0x7ffc9a9fd1f0: 0x7f4173d11580 <TPad::Pick(int, int, TObjLink*&)::dummyLink>) at <path_to_root_source>/graf2d/gpad/src/TPad.cxx:4569
#10 0x00007f4173c95b78 in TCanvas::Pick (pickobj=
0x7ffc9a9fd1f0: 0x7f4173d11580 <TPad::Pick(int, int, TObjLink*&)::dummyLink>, py=100, px=307, this=0x5557e3de9cb0) at <path_to_root_source>/graf2d/gpad/inc/TCanvas.h:184
#11 TCanvas::Pick (this=0x5557e3de9cb0, px=307, py=100, prevSelObj=0x5557e409aa40) at <path_to_root_source>/graf2d/gpad/src/TCanvas.cxx:1531
#12 0x00007f4173c93c76 in TCanvas::HandleInput (this=0x5557e3de9cb0, event=kButton1Down, px=307, py=100) at <path_to_root_source>/graf2d/gpad/src/TCanvas.cxx:1269
#13 0x00007f4172fa726f in TRootCanvas::HandleContainerButton (this=0x5557e43a9260, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TRootCanvas.cxx:1737
#14 0x00007f4172ee1460 in TGFrame::HandleEvent (this=0x5557e4407080, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TGFrame.cxx:502
#15 0x00007f4172e91c3e in TGClient::HandleEvent (this=0x5557e21ed4b0, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:843
#16 0x00007f4172e92275 in TGClient::ProcessOneEvent (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:653
#17 TGClient::ProcessOneEvent (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:645
#18 0x00007f4172e922db in TGClient::HandleInput (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:700
#19 0x00007f41891dab50 in TUnixSystem::DispatchOneEvent (this=0x5557e06ce800, pendingOnly=<optimized out>) at <path_to_root_source>/core/unix/src/TUnixSystem.cxx:1064
#20 0x00007f41890fe8c4 in TSystem::InnerLoop (this=0x5557e06ce800) at <path_to_root_source>/core/base/src/TSystem.cxx:402
#21 0x00007f41890fd56f in TSystem::Run (this=0x5557e06ce800) at <path_to_root_source>/core/base/src/TSystem.cxx:351
#22 0x00007f41890975b3 in TApplication::Run (this=this
entry=0x5557e0726b90, retrn=retrn
entry=false) at <path_to_root_source>/core/base/src/TApplication.cxx:1622
#23 0x00007f4189459505 in TRint::Run (this=0x5557e0726b90, retrn=<optimized out>) at <path_to_root_source>/core/rint/src/TRint.cxx:462
#24 0x00005557dfd22180 in main (argc=<optimized out>, argv=0x7ffc9a9ff758) at <path_to_root_source>/main/src/rmain.cxx:30
===========================================================
The lines below might hint at the cause of the crash.
You may get help by asking at the ROOT forum https://root.cern.ch/forum
Only if you are really convinced it is a bug in ROOT then please submit a
report at https://root.cern.ch/bugs Please post the ENTIRE stack trace
from above as an attachment in addition to anything else
that might help us fixing this issue.
===========================================================
#6 0x00007f417415a601 in TGeoNavigator::PopPath (this=0x0) at <path_to_root_source>/geom/geom/inc/TGeoNavigator.h:197
#7 0x00007f4171e89d14 in TGeoManager::PopPath (this=<optimized out>) at <path_to_root_source>/geom/geom/inc/TGeoManager.h:584
#8 TGeoPainter::DistanceToPrimitiveVol (this=0x5557e435f600, volume=<optimized out>, px=<optimized out>, py=<optimized out>) at <path_to_root_source>/geom/geompainter/src/TGeoPainter.cxx:493
#9 0x00007f4173caff4c in TPad::Pick (this=this
entry=0x5557e3de9cb0, px=px
entry=307, py=py
entry=100, pickobj=
0x7ffc9a9fd1f0: 0x7f4173d11580 <TPad::Pick(int, int, TObjLink*&)::dummyLink>) at <path_to_root_source>/graf2d/gpad/src/TPad.cxx:4569
#10 0x00007f4173c95b78 in TCanvas::Pick (pickobj=
0x7ffc9a9fd1f0: 0x7f4173d11580 <TPad::Pick(int, int, TObjLink*&)::dummyLink>, py=100, px=307, this=0x5557e3de9cb0) at <path_to_root_source>/graf2d/gpad/inc/TCanvas.h:184
#11 TCanvas::Pick (this=0x5557e3de9cb0, px=307, py=100, prevSelObj=0x5557e409aa40) at <path_to_root_source>/graf2d/gpad/src/TCanvas.cxx:1531
#12 0x00007f4173c93c76 in TCanvas::HandleInput (this=0x5557e3de9cb0, event=kButton1Down, px=307, py=100) at <path_to_root_source>/graf2d/gpad/src/TCanvas.cxx:1269
#13 0x00007f4172fa726f in TRootCanvas::HandleContainerButton (this=0x5557e43a9260, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TRootCanvas.cxx:1737
#14 0x00007f4172ee1460 in TGFrame::HandleEvent (this=0x5557e4407080, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TGFrame.cxx:502
#15 0x00007f4172e91c3e in TGClient::HandleEvent (this=0x5557e21ed4b0, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:843
#16 0x00007f4172e92275 in TGClient::ProcessOneEvent (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:653
#17 TGClient::ProcessOneEvent (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:645
#18 0x00007f4172e922db in TGClient::HandleInput (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:700
#19 0x00007f41891dab50 in TUnixSystem::DispatchOneEvent (this=0x5557e06ce800, pendingOnly=<optimized out>) at <path_to_root_source>/core/unix/src/TUnixSystem.cxx:1064
#20 0x00007f41890fe8c4 in TSystem::InnerLoop (this=0x5557e06ce800) at <path_to_root_source>/core/base/src/TSystem.cxx:402
#21 0x00007f41890fd56f in TSystem::Run (this=0x5557e06ce800) at <path_to_root_source>/core/base/src/TSystem.cxx:351
#22 0x00007f41890975b3 in TApplication::Run (this=this
entry=0x5557e0726b90, retrn=retrn
entry=false) at <path_to_root_source>/core/base/src/TApplication.cxx:1622
#23 0x00007f4189459505 in TRint::Run (this=0x5557e0726b90, retrn=<optimized out>) at <path_to_root_source>/core/rint/src/TRint.cxx:462
#24 0x00005557dfd22180 in main (argc=<optimized out>, argv=0x7ffc9a9ff758) at <path_to_root_source>/main/src/rmain.cxx:30
===========================================================
Root >
*** Break *** segmentation violation
===========================================================
There was a crash.
This is the entire stack trace of all threads:
===========================================================
#0 0x00007f4188bd3c6a in wait4 () from /usr/lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f4188b42f97 in ?? () from /usr/lib/x86_64-linux-gnu/libc.so.6
#2 0x00007f41891dcefa in TUnixSystem::Exec (shellcmd=<optimized out>, this=0x5557e06ce800) at <path_to_root_source>/core/unix/src/TUnixSystem.cxx:2117
#3 TUnixSystem::StackTrace (this=0x5557e06ce800) at <path_to_root_source>/core/unix/src/TUnixSystem.cxx:2408
#4 0x00007f41891da345 in TUnixSystem::DispatchSignals (this=0x5557e06ce800, sig=kSigSegmentationViolation) at <path_to_root_source>/core/unix/src/TUnixSystem.cxx:3646
#5 <signal handler called>
#6 0x00007f417415a601 in TGeoNavigator::PopPath (this=0x0) at <path_to_root_source>/geom/geom/inc/TGeoNavigator.h:197
#7 0x00007f4171e89d14 in TGeoManager::PopPath (this=<optimized out>) at <path_to_root_source>/geom/geom/inc/TGeoManager.h:584
#8 TGeoPainter::DistanceToPrimitiveVol (this=0x5557e435f600, volume=<optimized out>, px=<optimized out>, py=<optimized out>) at <path_to_root_source>/geom/geompainter/src/TGeoPainter.cxx:493
#9 0x00007f4173caff4c in TPad::Pick (this=this
entry=0x5557e3de9cb0, px=px
entry=350, py=py
entry=63, pickobj=
0x7ffc9a9fd1f0: 0x7f4173d11580 <TPad::Pick(int, int, TObjLink*&)::dummyLink>) at <path_to_root_source>/graf2d/gpad/src/TPad.cxx:4569
#10 0x00007f4173c95b78 in TCanvas::Pick (pickobj=
0x7ffc9a9fd1f0: 0x7f4173d11580 <TPad::Pick(int, int, TObjLink*&)::dummyLink>, py=63, px=350, this=0x5557e3de9cb0) at <path_to_root_source>/graf2d/gpad/inc/TCanvas.h:184
#11 TCanvas::Pick (this=0x5557e3de9cb0, px=350, py=63, prevSelObj=0x5557e3d82d70) at <path_to_root_source>/graf2d/gpad/src/TCanvas.cxx:1531
#12 0x00007f4173c93c76 in TCanvas::HandleInput (this=0x5557e3de9cb0, event=kButton1Down, px=350, py=63) at <path_to_root_source>/graf2d/gpad/src/TCanvas.cxx:1269
#13 0x00007f4172fa726f in TRootCanvas::HandleContainerButton (this=0x5557e43a9260, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TRootCanvas.cxx:1737
#14 0x00007f4172ee1460 in TGFrame::HandleEvent (this=0x5557e4407080, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TGFrame.cxx:502
#15 0x00007f4172e91c3e in TGClient::HandleEvent (this=0x5557e21ed4b0, event=0x7ffc9a9fd3b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:843
#16 0x00007f4172e92275 in TGClient::ProcessOneEvent (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:653
#17 TGClient::ProcessOneEvent (this=0x5557e21ed4b0) at <path_to_root_source>/gui/gui/src/TGClient.cxx:645
and other lines, they did not fit into the log, because there is a limit on the number of characters