Fix undefined behaviour in AlParameters / AlSymMat / AlVec
(Backgroud: the test added by !122 (merged) works for last year's release v16r0 passes with gcc8 but not with gcc9. It does not pass with today's master and gcc9)
The new VP module alignment test from !122 (merged) exposes undefined behaviour in a few places as seen from the logs (also pasted below). We should fix this so we can see if it is the underlying cause of the test failure.
Note that passing tests (VP halves, muon alignment) also exhibit the same UB but they do not fail because their validator does not check for empty stderr.
Note that the memory model of these classes begs for modernisation, but IMHO priority should be in fixing undefined behaviour (with reasonably contained changes, i.e. no/minimal modification of interfaces).
stderr
/workspace/build/Alignment/Alignment/TAlignment/src/AlParameters.h:24:7: runtime error: load of value 155054656, which is not a valid value for type '._146'
#0 0x7fb422f154c0 in AlParameters::operator=(AlParameters&&) /workspace/build/Alignment/Alignment/TAlignment/src/AlParameters.h:24
#1 0x7fb422f154c0 in AlignmentElement::addDofs(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) /workspace/build/Alignment/Alignment/TAlignment/src/AlignmentElement.cpp:119
#2 0x7fb422f22386 in AlignmentElement::AlignmentElement(DetectorElement const&, unsigned int, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, MsgStream&, bool) /workspace/build/Alignment/Alignment/TAlignment/src/AlignmentElement.cpp:91
#3 0x7fb422f8008e in GetElementsToBeAligned::initialize() /workspace/build/Alignment/Alignment/TAlignment/src/GetElementsToBeAligned.cpp:203
#4 0x7fb478fa126d in operator() /workspace/build/Gaudi/GaudiKernel/src/Lib/AlgTool.cpp:180
#5 0x7fb478fa3c10 in attempt<AlgTool::sysInitialize()::<lambda()> > /workspace/build/Gaudi/GaudiKernel/src/Lib/AlgTool.cpp:33
#6 0x7fb478fa4fdf in AlgTool::sysInitialize() /workspace/build/Gaudi/GaudiKernel/src/Lib/AlgTool.cpp:208
#7 0x7fb474cf423e in ToolSvc::create(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, IInterface const*, IAlgTool*&) /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/ToolSvc.cpp:526
#8 0x7fb474cfa349 in ToolSvc::retrieve(std::basic_string_view<char, std::char_traits<char> >, std::basic_string_view<char, std::char_traits<char> >, InterfaceID const&, IAlgTool*&, IInterface const*, bool) /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/ToolSvc.cpp:307
#9 0x7fb474cdd01b in ToolSvc::retrieve(std::basic_string_view<char, std::char_traits<char> >, InterfaceID const&, IAlgTool*&, IInterface const*, bool) /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/ToolSvc.cpp:256
#10 0x7fb422b4d39e in IGetElementsToBeAligned* GaudiCommon<Algorithm>::tool<IGetElementsToBeAligned>(std::basic_string_view<char, std::char_traits<char> >, IInterface const*, bool) const (/workspace/build/Alignment/InstallArea/x86_64-centos7-gcc9-dbg+ubsan/lib/libTAlignment.so+0x13fe39e)
#11 0x7fb4229fc808 in AlignAlgorithm::initialize() /workspace/build/Alignment/Alignment/TAlignment/src/AlignAlgorithm.cpp:165
#12 0x7fb47905f8de in Gaudi::Algorithm::sysInitialize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:97
#13 0x7fb463539e22 in GaudiSequencer::initialize() /workspace/build/Gaudi/GaudiAlg/src/lib/GaudiSequencer.cpp:63
#14 0x7fb47905f8de in Gaudi::Algorithm::sysInitialize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:97
#15 0x7fb463539e22 in GaudiSequencer::initialize() /workspace/build/Gaudi/GaudiAlg/src/lib/GaudiSequencer.cpp:63
#16 0x7fb47905f8de in Gaudi::Algorithm::sysInitialize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:97
#17 0x7fb463539e22 in GaudiSequencer::initialize() /workspace/build/Gaudi/GaudiAlg/src/lib/GaudiSequencer.cpp:63
#18 0x7fb47905f8de in Gaudi::Algorithm::sysInitialize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:97
#19 0x7fb4795bc901 in MinimalEventLoopMgr::initialize() /workspace/build/Gaudi/GaudiKernel/src/Lib/MinimalEventLoopMgr.cpp:106
#20 0x7fb474c4deab in EventLoopMgr::initialize() /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/EventLoopMgr.cpp:38
#21 0x7fb479fb1bc5 in Service::sysInitialize_imp() /workspace/build/Gaudi/GaudiKernel/src/Lib/Service.cpp:50
#22 0x7fb479fc7710 in void std::__invoke_impl<void, void (Service::*)(), Service*>(std::__invoke_memfun_deref, void (Service::*&&)(), Service*&&) /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/bits/invoke.h:73
#23 0x7fb479fc7710 in std::__invoke_result<void (Service::*)(), Service*>::type std::__invoke<void (Service::*)(), Service*>(void (Service::*&&)(), Service*&&) /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/bits/invoke.h:95
#24 0x7fb479fc7710 in std::call_once<void (Service::*)(), Service*>(std::once_flag&, void (Service::*&&)(), Service*&&)::{lambda()#1}::operator()() const /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/mutex:671
#25 0x7fb479fc7710 in std::call_once<void (Service::*)(), Service*>(std::once_flag&, void (Service::*&&)(), Service*&&)::{lambda()#2}::operator()() const /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/mutex:676
#26 0x7fb479fc7710 in std::call_once<void (Service::*)(), Service*>(std::once_flag&, void (Service::*&&)(), Service*&&)::{lambda()#2}::_FUN() /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/mutex:676
#27 0x7fb49259220a in __pthread_once_slow (/lib64/libpthread.so.0+0x620a)
#28 0x7fb479fcd26e in __gthread_once /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h:700
#29 0x7fb479fcd26e in void std::call_once<void (Service::*)(), Service*>(std::once_flag&, void (Service::*&&)(), Service*&&) /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/mutex:683
#30 0x7fb479faac0e in Service::sysInitialize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Service.cpp:35
#31 0x7fb474c99847 in ServiceManager::initialize() /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/ServiceManager.cpp:276
#32 0x7fb474b25f67 in ApplicationMgr::initialize() /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/ApplicationMgr.cpp:460
#33 0x7fb4790ae2d1 in Gaudi::Application::run() /workspace/build/Gaudi/GaudiKernel/src/Lib/Application.cpp:89
#34 0x7fb4790abd95 in _py_Gaudi__Application__run /workspace/build/Gaudi/GaudiKernel/src/Lib/Application.cpp:122
#35 0x7fb48ccfaafb in ffi_call_unix64 (/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_96b/Python/2.7.16/x86_64-centos7-gcc9-dbg/lib/python2.7/lib-dynload/_ctypes.so+0x1aafb)
#36 0x7fb48ccfa33a in ffi_call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/libffi/src/x86/ffi64.c:525
#37 0x7fb48ccf2e74 in _call_function_pointer /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/callproc.c:837
#38 0x7fb48ccf2e74 in _ctypes_callproc /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/callproc.c:1180
#39 0x7fb48ccea0ca in PyCFuncPtr_call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/_ctypes.c:4095
#40 0x7fb4927fbf92 in PyObject_Call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Objects/abstract.c:2544
#41 0x7fb4928a1de5 in do_call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4593
#42 0x7fb4928a1de5 in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4398
#43 0x7fb4928a1de5 in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#44 0x7fb4928a6f2e in fast_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4461
#45 0x7fb4928a6f2e in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4396
#46 0x7fb4928a6f2e in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#47 0x7fb4928a9637 in PyEval_EvalCodeEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3608
#48 0x7fb4928a6938 in fast_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4471
#49 0x7fb4928a6938 in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4396
#50 0x7fb4928a6938 in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#51 0x7fb4928a9637 in PyEval_EvalCodeEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3608
#52 0x7fb4928a6938 in fast_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4471
#53 0x7fb4928a6938 in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4396
#54 0x7fb4928a6938 in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#55 0x7fb4928a9637 in PyEval_EvalCodeEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3608
#56 0x7fb4928a97e8 in PyEval_EvalCode /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:669
#57 0x7fb4928ce658 in run_mod /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/pythonrun.c:1385
#58 0x7fb4928ce658 in PyRun_FileExFlags /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/pythonrun.c:1371
#59 0x7fb4928cf9ab in PyRun_SimpleFileExFlags /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/pythonrun.c:957
#60 0x7fb4928e2c1e in Py_Main /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/main.c:645
#61 0x7fb491ad7554 in __libc_start_main (/lib64/libc.so.6+0x22554)
#62 0x4006bd (/cvmfs/lhcb.cern.ch/lib/lcg/releases/Python/2.7.16-e553a/x86_64-centos7-gcc9-dbg/bin/python2.7+0x4006bd)
/workspace/build/Alignment/Alignment/AlignKernel/src/AlSymMat.cpp:74:9: runtime error: null pointer passed as argument 1, which is declared to never be null
#0 0x7fb421691564 in AlSymMat::operator=(AlSymMat const&) /workspace/build/Alignment/Alignment/AlignKernel/src/AlSymMat.cpp:74
#1 0x7fb422f170c9 in AlParameters::operator=(AlParameters&&) /workspace/build/Alignment/Alignment/TAlignment/src/AlParameters.h:24
#2 0x7fb422f170c9 in AlignmentElement::addDofs(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) /workspace/build/Alignment/Alignment/TAlignment/src/AlignmentElement.cpp:119
#3 0x7fb422f22386 in AlignmentElement::AlignmentElement(DetectorElement const&, unsigned int, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, MsgStream&, bool) /workspace/build/Alignment/Alignment/TAlignment/src/AlignmentElement.cpp:91
#4 0x7fb422f8008e in GetElementsToBeAligned::initialize() /workspace/build/Alignment/Alignment/TAlignment/src/GetElementsToBeAligned.cpp:203
#5 0x7fb478fa126d in operator() /workspace/build/Gaudi/GaudiKernel/src/Lib/AlgTool.cpp:180
#6 0x7fb478fa3c10 in attempt<AlgTool::sysInitialize()::<lambda()> > /workspace/build/Gaudi/GaudiKernel/src/Lib/AlgTool.cpp:33
#7 0x7fb478fa4fdf in AlgTool::sysInitialize() /workspace/build/Gaudi/GaudiKernel/src/Lib/AlgTool.cpp:208
#8 0x7fb474cf423e in ToolSvc::create(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, IInterface const*, IAlgTool*&) /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/ToolSvc.cpp:526
#9 0x7fb474cfa349 in ToolSvc::retrieve(std::basic_string_view<char, std::char_traits<char> >, std::basic_string_view<char, std::char_traits<char> >, InterfaceID const&, IAlgTool*&, IInterface const*, bool) /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/ToolSvc.cpp:307
#10 0x7fb474cdd01b in ToolSvc::retrieve(std::basic_string_view<char, std::char_traits<char> >, InterfaceID const&, IAlgTool*&, IInterface const*, bool) /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/ToolSvc.cpp:256
#11 0x7fb422b4d39e in IGetElementsToBeAligned* GaudiCommon<Algorithm>::tool<IGetElementsToBeAligned>(std::basic_string_view<char, std::char_traits<char> >, IInterface const*, bool) const (/workspace/build/Alignment/InstallArea/x86_64-centos7-gcc9-dbg+ubsan/lib/libTAlignment.so+0x13fe39e)
#12 0x7fb4229fc808 in AlignAlgorithm::initialize() /workspace/build/Alignment/Alignment/TAlignment/src/AlignAlgorithm.cpp:165
#13 0x7fb47905f8de in Gaudi::Algorithm::sysInitialize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:97
#14 0x7fb463539e22 in GaudiSequencer::initialize() /workspace/build/Gaudi/GaudiAlg/src/lib/GaudiSequencer.cpp:63
#15 0x7fb47905f8de in Gaudi::Algorithm::sysInitialize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:97
#16 0x7fb463539e22 in GaudiSequencer::initialize() /workspace/build/Gaudi/GaudiAlg/src/lib/GaudiSequencer.cpp:63
#17 0x7fb47905f8de in Gaudi::Algorithm::sysInitialize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:97
#18 0x7fb463539e22 in GaudiSequencer::initialize() /workspace/build/Gaudi/GaudiAlg/src/lib/GaudiSequencer.cpp:63
#19 0x7fb47905f8de in Gaudi::Algorithm::sysInitialize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:97
#20 0x7fb4795bc901 in MinimalEventLoopMgr::initialize() /workspace/build/Gaudi/GaudiKernel/src/Lib/MinimalEventLoopMgr.cpp:106
#21 0x7fb474c4deab in EventLoopMgr::initialize() /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/EventLoopMgr.cpp:38
#22 0x7fb479fb1bc5 in Service::sysInitialize_imp() /workspace/build/Gaudi/GaudiKernel/src/Lib/Service.cpp:50
#23 0x7fb479fc7710 in void std::__invoke_impl<void, void (Service::*)(), Service*>(std::__invoke_memfun_deref, void (Service::*&&)(), Service*&&) /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/bits/invoke.h:73
#24 0x7fb479fc7710 in std::__invoke_result<void (Service::*)(), Service*>::type std::__invoke<void (Service::*)(), Service*>(void (Service::*&&)(), Service*&&) /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/bits/invoke.h:95
#25 0x7fb479fc7710 in std::call_once<void (Service::*)(), Service*>(std::once_flag&, void (Service::*&&)(), Service*&&)::{lambda()#1}::operator()() const /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/mutex:671
#26 0x7fb479fc7710 in std::call_once<void (Service::*)(), Service*>(std::once_flag&, void (Service::*&&)(), Service*&&)::{lambda()#2}::operator()() const /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/mutex:676
#27 0x7fb479fc7710 in std::call_once<void (Service::*)(), Service*>(std::once_flag&, void (Service::*&&)(), Service*&&)::{lambda()#2}::_FUN() /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/mutex:676
#28 0x7fb49259220a in __pthread_once_slow (/lib64/libpthread.so.0+0x620a)
#29 0x7fb479fcd26e in __gthread_once /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h:700
#30 0x7fb479fcd26e in void std::call_once<void (Service::*)(), Service*>(std::once_flag&, void (Service::*&&)(), Service*&&) /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/mutex:683
#31 0x7fb479faac0e in Service::sysInitialize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Service.cpp:35
#32 0x7fb474c99847 in ServiceManager::initialize() /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/ServiceManager.cpp:276
#33 0x7fb474b25f67 in ApplicationMgr::initialize() /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/ApplicationMgr.cpp:460
#34 0x7fb4790ae2d1 in Gaudi::Application::run() /workspace/build/Gaudi/GaudiKernel/src/Lib/Application.cpp:89
#35 0x7fb4790abd95 in _py_Gaudi__Application__run /workspace/build/Gaudi/GaudiKernel/src/Lib/Application.cpp:122
#36 0x7fb48ccfaafb in ffi_call_unix64 (/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_96b/Python/2.7.16/x86_64-centos7-gcc9-dbg/lib/python2.7/lib-dynload/_ctypes.so+0x1aafb)
#37 0x7fb48ccfa33a in ffi_call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/libffi/src/x86/ffi64.c:525
#38 0x7fb48ccf2e74 in _call_function_pointer /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/callproc.c:837
#39 0x7fb48ccf2e74 in _ctypes_callproc /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/callproc.c:1180
#40 0x7fb48ccea0ca in PyCFuncPtr_call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/_ctypes.c:4095
#41 0x7fb4927fbf92 in PyObject_Call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Objects/abstract.c:2544
#42 0x7fb4928a1de5 in do_call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4593
#43 0x7fb4928a1de5 in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4398
#44 0x7fb4928a1de5 in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#45 0x7fb4928a6f2e in fast_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4461
#46 0x7fb4928a6f2e in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4396
#47 0x7fb4928a6f2e in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#48 0x7fb4928a9637 in PyEval_EvalCodeEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3608
#49 0x7fb4928a6938 in fast_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4471
#50 0x7fb4928a6938 in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4396
#51 0x7fb4928a6938 in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#52 0x7fb4928a9637 in PyEval_EvalCodeEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3608
#53 0x7fb4928a6938 in fast_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4471
#54 0x7fb4928a6938 in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4396
#55 0x7fb4928a6938 in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#56 0x7fb4928a9637 in PyEval_EvalCodeEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3608
#57 0x7fb4928a97e8 in PyEval_EvalCode /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:669
#58 0x7fb4928ce658 in run_mod /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/pythonrun.c:1385
#59 0x7fb4928ce658 in PyRun_FileExFlags /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/pythonrun.c:1371
#60 0x7fb4928cf9ab in PyRun_SimpleFileExFlags /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/pythonrun.c:957
#61 0x7fb4928e2c1e in Py_Main /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/main.c:645
#62 0x7fb491ad7554 in __libc_start_main (/lib64/libc.so.6+0x22554)
#63 0x4006bd (/cvmfs/lhcb.cern.ch/lib/lcg/releases/Python/2.7.16-e553a/x86_64-centos7-gcc9-dbg/bin/python2.7+0x4006bd)
/workspace/build/Alignment/Alignment/AlignKernel/src/AlSymMat.cpp:74:9: runtime error: null pointer passed as argument 2, which is declared to never be null
#0 0x7fb421691575 in AlSymMat::operator=(AlSymMat const&) /workspace/build/Alignment/Alignment/AlignKernel/src/AlSymMat.cpp:74
#1 0x7fb422f170c9 in AlParameters::operator=(AlParameters&&) /workspace/build/Alignment/Alignment/TAlignment/src/AlParameters.h:24
#2 0x7fb422f170c9 in AlignmentElement::addDofs(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) /workspace/build/Alignment/Alignment/TAlignment/src/AlignmentElement.cpp:119
#3 0x7fb422f22386 in AlignmentElement::AlignmentElement(DetectorElement const&, unsigned int, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, MsgStream&, bool) /workspace/build/Alignment/Alignment/TAlignment/src/AlignmentElement.cpp:91
#4 0x7fb422f8008e in GetElementsToBeAligned::initialize() /workspace/build/Alignment/Alignment/TAlignment/src/GetElementsToBeAligned.cpp:203
#5 0x7fb478fa126d in operator() /workspace/build/Gaudi/GaudiKernel/src/Lib/AlgTool.cpp:180
#6 0x7fb478fa3c10 in attempt<AlgTool::sysInitialize()::<lambda()> > /workspace/build/Gaudi/GaudiKernel/src/Lib/AlgTool.cpp:33
#7 0x7fb478fa4fdf in AlgTool::sysInitialize() /workspace/build/Gaudi/GaudiKernel/src/Lib/AlgTool.cpp:208
#8 0x7fb474cf423e in ToolSvc::create(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, IInterface const*, IAlgTool*&) /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/ToolSvc.cpp:526
#9 0x7fb474cfa349 in ToolSvc::retrieve(std::basic_string_view<char, std::char_traits<char> >, std::basic_string_view<char, std::char_traits<char> >, InterfaceID const&, IAlgTool*&, IInterface const*, bool) /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/ToolSvc.cpp:307
#10 0x7fb474cdd01b in ToolSvc::retrieve(std::basic_string_view<char, std::char_traits<char> >, InterfaceID const&, IAlgTool*&, IInterface const*, bool) /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/ToolSvc.cpp:256
#11 0x7fb422b4d39e in IGetElementsToBeAligned* GaudiCommon<Algorithm>::tool<IGetElementsToBeAligned>(std::basic_string_view<char, std::char_traits<char> >, IInterface const*, bool) const (/workspace/build/Alignment/InstallArea/x86_64-centos7-gcc9-dbg+ubsan/lib/libTAlignment.so+0x13fe39e)
#12 0x7fb4229fc808 in AlignAlgorithm::initialize() /workspace/build/Alignment/Alignment/TAlignment/src/AlignAlgorithm.cpp:165
#13 0x7fb47905f8de in Gaudi::Algorithm::sysInitialize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:97
#14 0x7fb463539e22 in GaudiSequencer::initialize() /workspace/build/Gaudi/GaudiAlg/src/lib/GaudiSequencer.cpp:63
#15 0x7fb47905f8de in Gaudi::Algorithm::sysInitialize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:97
#16 0x7fb463539e22 in GaudiSequencer::initialize() /workspace/build/Gaudi/GaudiAlg/src/lib/GaudiSequencer.cpp:63
#17 0x7fb47905f8de in Gaudi::Algorithm::sysInitialize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:97
#18 0x7fb463539e22 in GaudiSequencer::initialize() /workspace/build/Gaudi/GaudiAlg/src/lib/GaudiSequencer.cpp:63
#19 0x7fb47905f8de in Gaudi::Algorithm::sysInitialize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:97
#20 0x7fb4795bc901 in MinimalEventLoopMgr::initialize() /workspace/build/Gaudi/GaudiKernel/src/Lib/MinimalEventLoopMgr.cpp:106
#21 0x7fb474c4deab in EventLoopMgr::initialize() /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/EventLoopMgr.cpp:38
#22 0x7fb479fb1bc5 in Service::sysInitialize_imp() /workspace/build/Gaudi/GaudiKernel/src/Lib/Service.cpp:50
#23 0x7fb479fc7710 in void std::__invoke_impl<void, void (Service::*)(), Service*>(std::__invoke_memfun_deref, void (Service::*&&)(), Service*&&) /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/bits/invoke.h:73
#24 0x7fb479fc7710 in std::__invoke_result<void (Service::*)(), Service*>::type std::__invoke<void (Service::*)(), Service*>(void (Service::*&&)(), Service*&&) /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/bits/invoke.h:95
#25 0x7fb479fc7710 in std::call_once<void (Service::*)(), Service*>(std::once_flag&, void (Service::*&&)(), Service*&&)::{lambda()#1}::operator()() const /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/mutex:671
#26 0x7fb479fc7710 in std::call_once<void (Service::*)(), Service*>(std::once_flag&, void (Service::*&&)(), Service*&&)::{lambda()#2}::operator()() const /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/mutex:676
#27 0x7fb479fc7710 in std::call_once<void (Service::*)(), Service*>(std::once_flag&, void (Service::*&&)(), Service*&&)::{lambda()#2}::_FUN() /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/mutex:676
#28 0x7fb49259220a in __pthread_once_slow (/lib64/libpthread.so.0+0x620a)
#29 0x7fb479fcd26e in __gthread_once /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h:700
#30 0x7fb479fcd26e in void std::call_once<void (Service::*)(), Service*>(std::once_flag&, void (Service::*&&)(), Service*&&) /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/mutex:683
#31 0x7fb479faac0e in Service::sysInitialize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Service.cpp:35
#32 0x7fb474c99847 in ServiceManager::initialize() /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/ServiceManager.cpp:276
#33 0x7fb474b25f67 in ApplicationMgr::initialize() /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/ApplicationMgr.cpp:460
#34 0x7fb4790ae2d1 in Gaudi::Application::run() /workspace/build/Gaudi/GaudiKernel/src/Lib/Application.cpp:89
#35 0x7fb4790abd95 in _py_Gaudi__Application__run /workspace/build/Gaudi/GaudiKernel/src/Lib/Application.cpp:122
#36 0x7fb48ccfaafb in ffi_call_unix64 (/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_96b/Python/2.7.16/x86_64-centos7-gcc9-dbg/lib/python2.7/lib-dynload/_ctypes.so+0x1aafb)
#37 0x7fb48ccfa33a in ffi_call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/libffi/src/x86/ffi64.c:525
#38 0x7fb48ccf2e74 in _call_function_pointer /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/callproc.c:837
#39 0x7fb48ccf2e74 in _ctypes_callproc /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/callproc.c:1180
#40 0x7fb48ccea0ca in PyCFuncPtr_call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/_ctypes.c:4095
#41 0x7fb4927fbf92 in PyObject_Call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Objects/abstract.c:2544
#42 0x7fb4928a1de5 in do_call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4593
#43 0x7fb4928a1de5 in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4398
#44 0x7fb4928a1de5 in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#45 0x7fb4928a6f2e in fast_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4461
#46 0x7fb4928a6f2e in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4396
#47 0x7fb4928a6f2e in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#48 0x7fb4928a9637 in PyEval_EvalCodeEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3608
#49 0x7fb4928a6938 in fast_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4471
#50 0x7fb4928a6938 in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4396
#51 0x7fb4928a6938 in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#52 0x7fb4928a9637 in PyEval_EvalCodeEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3608
#53 0x7fb4928a6938 in fast_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4471
#54 0x7fb4928a6938 in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4396
#55 0x7fb4928a6938 in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#56 0x7fb4928a9637 in PyEval_EvalCodeEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3608
#57 0x7fb4928a97e8 in PyEval_EvalCode /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:669
#58 0x7fb4928ce658 in run_mod /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/pythonrun.c:1385
#59 0x7fb4928ce658 in PyRun_FileExFlags /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/pythonrun.c:1371
#60 0x7fb4928cf9ab in PyRun_SimpleFileExFlags /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/pythonrun.c:957
#61 0x7fb4928e2c1e in Py_Main /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/main.c:645
#62 0x7fb491ad7554 in __libc_start_main (/lib64/libc.so.6+0x22554)
#63 0x4006bd (/cvmfs/lhcb.cern.ch/lib/lcg/releases/Python/2.7.16-e553a/x86_64-centos7-gcc9-dbg/bin/python2.7+0x4006bd)
/workspace/build/Alignment/Alignment/TAlignment/src/AlParameters.h:24:7: runtime error: load of value 3682201092, which is not a valid value for type '._136'
#0 0x7fb422ccfa92 in AlParameters::operator=(AlParameters&&) /workspace/build/Alignment/Alignment/TAlignment/src/AlParameters.h:24
#1 0x7fb422ccfa92 in Al::AlignChisqConstraintTool::surveyParameters(AlignmentElement const&) const /workspace/build/Alignment/Alignment/TAlignment/src/AlignChisqConstraintTool.cpp:384
#2 0x7fb422cb386f in Al::AlignChisqConstraintTool::addConstraints(std::vector<AlignmentElement const*, std::allocator<AlignmentElement const*> > const&, Al::Equations&, std::ostream&) const /workspace/build/Alignment/Alignment/TAlignment/src/AlignChisqConstraintTool.cpp:537
#3 0x7fb422e3c432 in Al::AlignUpdateTool::process(Al::Equations const&, Al::IAlignUpdateTool::ConvergenceStatus&, unsigned long, unsigned long) const /workspace/build/Alignment/Alignment/TAlignment/src/AlignUpdateTool.cpp:517
#4 0x7fb422e50960 in Al::AlignUpdateTool::process(Al::Equations const&, unsigned long, unsigned long) const /workspace/build/Alignment/Alignment/TAlignment/src/AlignUpdateTool.cpp:365
#5 0x7fb4229a4766 in AlignAlgorithm::update(Al::Equations const&) /workspace/build/Alignment/Alignment/TAlignment/src/AlignAlgorithm.cpp:622
#6 0x7fb4229e6ea4 in AlignAlgorithm::update() /workspace/build/Alignment/Alignment/TAlignment/src/AlignAlgorithm.cpp:616
#7 0x7fb4229e7419 in AlignAlgorithm::finalize() /workspace/build/Alignment/Alignment/TAlignment/src/AlignAlgorithm.cpp:233
#8 0x7fb47904a252 in Gaudi::Algorithm::sysFinalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:480
#9 0x7fb479f8a1ab in operator() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:20
#10 0x7fb479f8a1ab in accumulate<__gnu_cxx::__normal_iterator<Gaudi::Algorithm**, std::vector<Gaudi::Algorithm*> >, bool, (anonymous namespace)::for_algorithms(C&) [with StatusCode (Gaudi::Algorithm::* f)() = &Gaudi::Algorithm::sysFinalize; C = std::vector<Gaudi::Algorithm*>]::<lambda(bool, Gaudi::Algorithm*)> > /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/bits/stl_numeric.h:162
#11 0x7fb479f8a1ab in for_algorithms<&Gaudi::Algorithm::sysFinalize, std::vector<Gaudi::Algorithm*> > /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:19
#12 0x7fb479f92f6b in Gaudi::Sequence::finalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:42
#13 0x7fb46367acaf in GaudiCommon<Gaudi::Sequence>::finalize() /workspace/build/Gaudi/GaudiAlg/src/lib/GaudiCommon.icpp:204
#14 0x7fb47904a252 in Gaudi::Algorithm::sysFinalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:480
#15 0x7fb479f8a1ab in operator() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:20
#16 0x7fb479f8a1ab in accumulate<__gnu_cxx::__normal_iterator<Gaudi::Algorithm**, std::vector<Gaudi::Algorithm*> >, bool, (anonymous namespace)::for_algorithms(C&) [with StatusCode (Gaudi::Algorithm::* f)() = &Gaudi::Algorithm::sysFinalize; C = std::vector<Gaudi::Algorithm*>]::<lambda(bool, Gaudi::Algorithm*)> > /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/bits/stl_numeric.h:162
#17 0x7fb479f8a1ab in for_algorithms<&Gaudi::Algorithm::sysFinalize, std::vector<Gaudi::Algorithm*> > /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:19
#18 0x7fb479f92f6b in Gaudi::Sequence::finalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:42
#19 0x7fb46367acaf in GaudiCommon<Gaudi::Sequence>::finalize() /workspace/build/Gaudi/GaudiAlg/src/lib/GaudiCommon.icpp:204
#20 0x7fb47904a252 in Gaudi::Algorithm::sysFinalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:480
#21 0x7fb479f8a1ab in operator() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:20
#22 0x7fb479f8a1ab in accumulate<__gnu_cxx::__normal_iterator<Gaudi::Algorithm**, std::vector<Gaudi::Algorithm*> >, bool, (anonymous namespace)::for_algorithms(C&) [with StatusCode (Gaudi::Algorithm::* f)() = &Gaudi::Algorithm::sysFinalize; C = std::vector<Gaudi::Algorithm*>]::<lambda(bool, Gaudi::Algorithm*)> > /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/bits/stl_numeric.h:162
#23 0x7fb479f8a1ab in for_algorithms<&Gaudi::Algorithm::sysFinalize, std::vector<Gaudi::Algorithm*> > /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:19
#24 0x7fb479f92f6b in Gaudi::Sequence::finalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:42
#25 0x7fb46367acaf in GaudiCommon<Gaudi::Sequence>::finalize() /workspace/build/Gaudi/GaudiAlg/src/lib/GaudiCommon.icpp:204
#26 0x7fb47904a252 in Gaudi::Algorithm::sysFinalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:480
#27 0x7fb4795a7c76 in MinimalEventLoopMgr::finalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/MinimalEventLoopMgr.cpp:251
#28 0x7fb474c49a1f in EventLoopMgr::finalize() /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/EventLoopMgr.cpp:183
#29 0x7fb479fb5ba0 in Service::sysFinalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Service.cpp:154
#30 0x7fb474ca0624 in ServiceManager::finalize() /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/ServiceManager.cpp:445
#31 0x7fb474b2348b in ApplicationMgr::finalize() /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/ApplicationMgr.cpp:607
#32 0x7fb4790aebbb in Gaudi::Application::run() /workspace/build/Gaudi/GaudiKernel/src/Lib/Application.cpp:97
#33 0x7fb4790abd95 in _py_Gaudi__Application__run /workspace/build/Gaudi/GaudiKernel/src/Lib/Application.cpp:122
#34 0x7fb48ccfaafb in ffi_call_unix64 (/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_96b/Python/2.7.16/x86_64-centos7-gcc9-dbg/lib/python2.7/lib-dynload/_ctypes.so+0x1aafb)
#35 0x7fb48ccfa33a in ffi_call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/libffi/src/x86/ffi64.c:525
#36 0x7fb48ccf2e74 in _call_function_pointer /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/callproc.c:837
#37 0x7fb48ccf2e74 in _ctypes_callproc /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/callproc.c:1180
#38 0x7fb48ccea0ca in PyCFuncPtr_call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/_ctypes.c:4095
#39 0x7fb4927fbf92 in PyObject_Call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Objects/abstract.c:2544
#40 0x7fb4928a1de5 in do_call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4593
#41 0x7fb4928a1de5 in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4398
#42 0x7fb4928a1de5 in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#43 0x7fb4928a6f2e in fast_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4461
#44 0x7fb4928a6f2e in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4396
#45 0x7fb4928a6f2e in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#46 0x7fb4928a9637 in PyEval_EvalCodeEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3608
#47 0x7fb4928a6938 in fast_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4471
#48 0x7fb4928a6938 in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4396
#49 0x7fb4928a6938 in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#50 0x7fb4928a9637 in PyEval_EvalCodeEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3608
#51 0x7fb4928a6938 in fast_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4471
#52 0x7fb4928a6938 in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4396
#53 0x7fb4928a6938 in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#54 0x7fb4928a9637 in PyEval_EvalCodeEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3608
#55 0x7fb4928a97e8 in PyEval_EvalCode /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:669
#56 0x7fb4928ce658 in run_mod /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/pythonrun.c:1385
#57 0x7fb4928ce658 in PyRun_FileExFlags /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/pythonrun.c:1371
#58 0x7fb4928cf9ab in PyRun_SimpleFileExFlags /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/pythonrun.c:957
#59 0x7fb4928e2c1e in Py_Main /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/main.c:645
#60 0x7fb491ad7554 in __libc_start_main (/lib64/libc.so.6+0x22554)
#61 0x4006bd (/cvmfs/lhcb.cern.ch/lib/lcg/releases/Python/2.7.16-e553a/x86_64-centos7-gcc9-dbg/bin/python2.7+0x4006bd)
/workspace/build/Alignment/Alignment/TAlignment/src/AlParameters.h:24:7: runtime error: load of value 3682201092, which is not a valid value for type '._136'
#0 0x7fb422cd5cdd in AlParameters::operator=(AlParameters const&) /workspace/build/Alignment/Alignment/TAlignment/src/AlParameters.h:24
#1 0x7fb422cd5cdd in Al::AlignChisqConstraintTool::surveyParameters(AlignmentElement const&) const /workspace/build/Alignment/Alignment/TAlignment/src/AlignChisqConstraintTool.cpp:481
#2 0x7fb422cb386f in Al::AlignChisqConstraintTool::addConstraints(std::vector<AlignmentElement const*, std::allocator<AlignmentElement const*> > const&, Al::Equations&, std::ostream&) const /workspace/build/Alignment/Alignment/TAlignment/src/AlignChisqConstraintTool.cpp:537
#3 0x7fb422e3c432 in Al::AlignUpdateTool::process(Al::Equations const&, Al::IAlignUpdateTool::ConvergenceStatus&, unsigned long, unsigned long) const /workspace/build/Alignment/Alignment/TAlignment/src/AlignUpdateTool.cpp:517
#4 0x7fb422e50960 in Al::AlignUpdateTool::process(Al::Equations const&, unsigned long, unsigned long) const /workspace/build/Alignment/Alignment/TAlignment/src/AlignUpdateTool.cpp:365
#5 0x7fb4229a4766 in AlignAlgorithm::update(Al::Equations const&) /workspace/build/Alignment/Alignment/TAlignment/src/AlignAlgorithm.cpp:622
#6 0x7fb4229e6ea4 in AlignAlgorithm::update() /workspace/build/Alignment/Alignment/TAlignment/src/AlignAlgorithm.cpp:616
#7 0x7fb4229e7419 in AlignAlgorithm::finalize() /workspace/build/Alignment/Alignment/TAlignment/src/AlignAlgorithm.cpp:233
#8 0x7fb47904a252 in Gaudi::Algorithm::sysFinalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:480
#9 0x7fb479f8a1ab in operator() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:20
#10 0x7fb479f8a1ab in accumulate<__gnu_cxx::__normal_iterator<Gaudi::Algorithm**, std::vector<Gaudi::Algorithm*> >, bool, (anonymous namespace)::for_algorithms(C&) [with StatusCode (Gaudi::Algorithm::* f)() = &Gaudi::Algorithm::sysFinalize; C = std::vector<Gaudi::Algorithm*>]::<lambda(bool, Gaudi::Algorithm*)> > /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/bits/stl_numeric.h:162
#11 0x7fb479f8a1ab in for_algorithms<&Gaudi::Algorithm::sysFinalize, std::vector<Gaudi::Algorithm*> > /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:19
#12 0x7fb479f92f6b in Gaudi::Sequence::finalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:42
#13 0x7fb46367acaf in GaudiCommon<Gaudi::Sequence>::finalize() /workspace/build/Gaudi/GaudiAlg/src/lib/GaudiCommon.icpp:204
#14 0x7fb47904a252 in Gaudi::Algorithm::sysFinalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:480
#15 0x7fb479f8a1ab in operator() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:20
#16 0x7fb479f8a1ab in accumulate<__gnu_cxx::__normal_iterator<Gaudi::Algorithm**, std::vector<Gaudi::Algorithm*> >, bool, (anonymous namespace)::for_algorithms(C&) [with StatusCode (Gaudi::Algorithm::* f)() = &Gaudi::Algorithm::sysFinalize; C = std::vector<Gaudi::Algorithm*>]::<lambda(bool, Gaudi::Algorithm*)> > /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/bits/stl_numeric.h:162
#17 0x7fb479f8a1ab in for_algorithms<&Gaudi::Algorithm::sysFinalize, std::vector<Gaudi::Algorithm*> > /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:19
#18 0x7fb479f92f6b in Gaudi::Sequence::finalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:42
#19 0x7fb46367acaf in GaudiCommon<Gaudi::Sequence>::finalize() /workspace/build/Gaudi/GaudiAlg/src/lib/GaudiCommon.icpp:204
#20 0x7fb47904a252 in Gaudi::Algorithm::sysFinalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:480
#21 0x7fb479f8a1ab in operator() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:20
#22 0x7fb479f8a1ab in accumulate<__gnu_cxx::__normal_iterator<Gaudi::Algorithm**, std::vector<Gaudi::Algorithm*> >, bool, (anonymous namespace)::for_algorithms(C&) [with StatusCode (Gaudi::Algorithm::* f)() = &Gaudi::Algorithm::sysFinalize; C = std::vector<Gaudi::Algorithm*>]::<lambda(bool, Gaudi::Algorithm*)> > /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/bits/stl_numeric.h:162
#23 0x7fb479f8a1ab in for_algorithms<&Gaudi::Algorithm::sysFinalize, std::vector<Gaudi::Algorithm*> > /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:19
#24 0x7fb479f92f6b in Gaudi::Sequence::finalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:42
#25 0x7fb46367acaf in GaudiCommon<Gaudi::Sequence>::finalize() /workspace/build/Gaudi/GaudiAlg/src/lib/GaudiCommon.icpp:204
#26 0x7fb47904a252 in Gaudi::Algorithm::sysFinalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:480
#27 0x7fb4795a7c76 in MinimalEventLoopMgr::finalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/MinimalEventLoopMgr.cpp:251
#28 0x7fb474c49a1f in EventLoopMgr::finalize() /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/EventLoopMgr.cpp:183
#29 0x7fb479fb5ba0 in Service::sysFinalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Service.cpp:154
#30 0x7fb474ca0624 in ServiceManager::finalize() /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/ServiceManager.cpp:445
#31 0x7fb474b2348b in ApplicationMgr::finalize() /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/ApplicationMgr.cpp:607
#32 0x7fb4790aebbb in Gaudi::Application::run() /workspace/build/Gaudi/GaudiKernel/src/Lib/Application.cpp:97
#33 0x7fb4790abd95 in _py_Gaudi__Application__run /workspace/build/Gaudi/GaudiKernel/src/Lib/Application.cpp:122
#34 0x7fb48ccfaafb in ffi_call_unix64 (/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_96b/Python/2.7.16/x86_64-centos7-gcc9-dbg/lib/python2.7/lib-dynload/_ctypes.so+0x1aafb)
#35 0x7fb48ccfa33a in ffi_call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/libffi/src/x86/ffi64.c:525
#36 0x7fb48ccf2e74 in _call_function_pointer /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/callproc.c:837
#37 0x7fb48ccf2e74 in _ctypes_callproc /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/callproc.c:1180
#38 0x7fb48ccea0ca in PyCFuncPtr_call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/_ctypes.c:4095
#39 0x7fb4927fbf92 in PyObject_Call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Objects/abstract.c:2544
#40 0x7fb4928a1de5 in do_call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4593
#41 0x7fb4928a1de5 in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4398
#42 0x7fb4928a1de5 in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#43 0x7fb4928a6f2e in fast_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4461
#44 0x7fb4928a6f2e in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4396
#45 0x7fb4928a6f2e in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#46 0x7fb4928a9637 in PyEval_EvalCodeEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3608
#47 0x7fb4928a6938 in fast_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4471
#48 0x7fb4928a6938 in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4396
#49 0x7fb4928a6938 in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#50 0x7fb4928a9637 in PyEval_EvalCodeEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3608
#51 0x7fb4928a6938 in fast_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4471
#52 0x7fb4928a6938 in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4396
#53 0x7fb4928a6938 in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#54 0x7fb4928a9637 in PyEval_EvalCodeEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3608
#55 0x7fb4928a97e8 in PyEval_EvalCode /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:669
#56 0x7fb4928ce658 in run_mod /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/pythonrun.c:1385
#57 0x7fb4928ce658 in PyRun_FileExFlags /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/pythonrun.c:1371
#58 0x7fb4928cf9ab in PyRun_SimpleFileExFlags /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/pythonrun.c:957
#59 0x7fb4928e2c1e in Py_Main /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/main.c:645
#60 0x7fb491ad7554 in __libc_start_main (/lib64/libc.so.6+0x22554)
#61 0x4006bd (/cvmfs/lhcb.cern.ch/lib/lcg/releases/Python/2.7.16-e553a/x86_64-centos7-gcc9-dbg/bin/python2.7+0x4006bd)
/workspace/build/Alignment/Alignment/TAlignment/src/AlParameters.h:24:7: runtime error: load of value 155054656, which is not a valid value for type '._146'
#0 0x7fb422f0b5fc in AlParameters::AlParameters(AlParameters const&) /workspace/build/Alignment/Alignment/TAlignment/src/AlParameters.h:24
#1 0x7fb422f0b5fc in AlignmentElement::currentActiveDelta() const /workspace/build/Alignment/Alignment/TAlignment/src/AlignmentElement.cpp:376
#2 0x7fb422e48082 in Al::AlignUpdateTool::process(Al::Equations const&, Al::IAlignUpdateTool::ConvergenceStatus&, unsigned long, unsigned long) const /workspace/build/Alignment/Alignment/TAlignment/src/AlignUpdateTool.cpp:695
#3 0x7fb422e50960 in Al::AlignUpdateTool::process(Al::Equations const&, unsigned long, unsigned long) const /workspace/build/Alignment/Alignment/TAlignment/src/AlignUpdateTool.cpp:365
#4 0x7fb4229a4766 in AlignAlgorithm::update(Al::Equations const&) /workspace/build/Alignment/Alignment/TAlignment/src/AlignAlgorithm.cpp:622
#5 0x7fb4229e6ea4 in AlignAlgorithm::update() /workspace/build/Alignment/Alignment/TAlignment/src/AlignAlgorithm.cpp:616
#6 0x7fb4229e7419 in AlignAlgorithm::finalize() /workspace/build/Alignment/Alignment/TAlignment/src/AlignAlgorithm.cpp:233
#7 0x7fb47904a252 in Gaudi::Algorithm::sysFinalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:480
#8 0x7fb479f8a1ab in operator() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:20
#9 0x7fb479f8a1ab in accumulate<__gnu_cxx::__normal_iterator<Gaudi::Algorithm**, std::vector<Gaudi::Algorithm*> >, bool, (anonymous namespace)::for_algorithms(C&) [with StatusCode (Gaudi::Algorithm::* f)() = &Gaudi::Algorithm::sysFinalize; C = std::vector<Gaudi::Algorithm*>]::<lambda(bool, Gaudi::Algorithm*)> > /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/bits/stl_numeric.h:162
#10 0x7fb479f8a1ab in for_algorithms<&Gaudi::Algorithm::sysFinalize, std::vector<Gaudi::Algorithm*> > /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:19
#11 0x7fb479f92f6b in Gaudi::Sequence::finalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:42
#12 0x7fb46367acaf in GaudiCommon<Gaudi::Sequence>::finalize() /workspace/build/Gaudi/GaudiAlg/src/lib/GaudiCommon.icpp:204
#13 0x7fb47904a252 in Gaudi::Algorithm::sysFinalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:480
#14 0x7fb479f8a1ab in operator() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:20
#15 0x7fb479f8a1ab in accumulate<__gnu_cxx::__normal_iterator<Gaudi::Algorithm**, std::vector<Gaudi::Algorithm*> >, bool, (anonymous namespace)::for_algorithms(C&) [with StatusCode (Gaudi::Algorithm::* f)() = &Gaudi::Algorithm::sysFinalize; C = std::vector<Gaudi::Algorithm*>]::<lambda(bool, Gaudi::Algorithm*)> > /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/bits/stl_numeric.h:162
#16 0x7fb479f8a1ab in for_algorithms<&Gaudi::Algorithm::sysFinalize, std::vector<Gaudi::Algorithm*> > /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:19
#17 0x7fb479f92f6b in Gaudi::Sequence::finalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:42
#18 0x7fb46367acaf in GaudiCommon<Gaudi::Sequence>::finalize() /workspace/build/Gaudi/GaudiAlg/src/lib/GaudiCommon.icpp:204
#19 0x7fb47904a252 in Gaudi::Algorithm::sysFinalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:480
#20 0x7fb479f8a1ab in operator() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:20
#21 0x7fb479f8a1ab in accumulate<__gnu_cxx::__normal_iterator<Gaudi::Algorithm**, std::vector<Gaudi::Algorithm*> >, bool, (anonymous namespace)::for_algorithms(C&) [with StatusCode (Gaudi::Algorithm::* f)() = &Gaudi::Algorithm::sysFinalize; C = std::vector<Gaudi::Algorithm*>]::<lambda(bool, Gaudi::Algorithm*)> > /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/bits/stl_numeric.h:162
#22 0x7fb479f8a1ab in for_algorithms<&Gaudi::Algorithm::sysFinalize, std::vector<Gaudi::Algorithm*> > /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:19
#23 0x7fb479f92f6b in Gaudi::Sequence::finalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:42
#24 0x7fb46367acaf in GaudiCommon<Gaudi::Sequence>::finalize() /workspace/build/Gaudi/GaudiAlg/src/lib/GaudiCommon.icpp:204
#25 0x7fb47904a252 in Gaudi::Algorithm::sysFinalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:480
#26 0x7fb4795a7c76 in MinimalEventLoopMgr::finalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/MinimalEventLoopMgr.cpp:251
#27 0x7fb474c49a1f in EventLoopMgr::finalize() /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/EventLoopMgr.cpp:183
#28 0x7fb479fb5ba0 in Service::sysFinalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Service.cpp:154
#29 0x7fb474ca0624 in ServiceManager::finalize() /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/ServiceManager.cpp:445
#30 0x7fb474b2348b in ApplicationMgr::finalize() /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/ApplicationMgr.cpp:607
#31 0x7fb4790aebbb in Gaudi::Application::run() /workspace/build/Gaudi/GaudiKernel/src/Lib/Application.cpp:97
#32 0x7fb4790abd95 in _py_Gaudi__Application__run /workspace/build/Gaudi/GaudiKernel/src/Lib/Application.cpp:122
#33 0x7fb48ccfaafb in ffi_call_unix64 (/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_96b/Python/2.7.16/x86_64-centos7-gcc9-dbg/lib/python2.7/lib-dynload/_ctypes.so+0x1aafb)
#34 0x7fb48ccfa33a in ffi_call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/libffi/src/x86/ffi64.c:525
#35 0x7fb48ccf2e74 in _call_function_pointer /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/callproc.c:837
#36 0x7fb48ccf2e74 in _ctypes_callproc /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/callproc.c:1180
#37 0x7fb48ccea0ca in PyCFuncPtr_call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/_ctypes.c:4095
#38 0x7fb4927fbf92 in PyObject_Call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Objects/abstract.c:2544
#39 0x7fb4928a1de5 in do_call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4593
#40 0x7fb4928a1de5 in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4398
#41 0x7fb4928a1de5 in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#42 0x7fb4928a6f2e in fast_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4461
#43 0x7fb4928a6f2e in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4396
#44 0x7fb4928a6f2e in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#45 0x7fb4928a9637 in PyEval_EvalCodeEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3608
#46 0x7fb4928a6938 in fast_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4471
#47 0x7fb4928a6938 in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4396
#48 0x7fb4928a6938 in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#49 0x7fb4928a9637 in PyEval_EvalCodeEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3608
#50 0x7fb4928a6938 in fast_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4471
#51 0x7fb4928a6938 in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4396
#52 0x7fb4928a6938 in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#53 0x7fb4928a9637 in PyEval_EvalCodeEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3608
#54 0x7fb4928a97e8 in PyEval_EvalCode /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:669
#55 0x7fb4928ce658 in run_mod /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/pythonrun.c:1385
#56 0x7fb4928ce658 in PyRun_FileExFlags /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/pythonrun.c:1371
#57 0x7fb4928cf9ab in PyRun_SimpleFileExFlags /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/pythonrun.c:957
#58 0x7fb4928e2c1e in Py_Main /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/main.c:645
#59 0x7fb491ad7554 in __libc_start_main (/lib64/libc.so.6+0x22554)
#60 0x4006bd (/cvmfs/lhcb.cern.ch/lib/lcg/releases/Python/2.7.16-e553a/x86_64-centos7-gcc9-dbg/bin/python2.7+0x4006bd)
/workspace/build/Alignment/Alignment/TAlignment/src/AlParameters.h:24:7: runtime error: load of value 159636144, which is not a valid value for type '._146'
#0 0x7fb422efc48b in AlParameters::operator=(AlParameters const&) /workspace/build/Alignment/Alignment/TAlignment/src/AlParameters.h:24
#1 0x7fb422efc48b in AlignmentElement::updateGeometry(AlParameters const&) /workspace/build/Alignment/Alignment/TAlignment/src/AlignmentElement.cpp:409
#2 0x7fb422e4aaa2 in Al::AlignUpdateTool::process(Al::Equations const&, Al::IAlignUpdateTool::ConvergenceStatus&, unsigned long, unsigned long) const /workspace/build/Alignment/Alignment/TAlignment/src/AlignUpdateTool.cpp:724
#3 0x7fb422e50960 in Al::AlignUpdateTool::process(Al::Equations const&, unsigned long, unsigned long) const /workspace/build/Alignment/Alignment/TAlignment/src/AlignUpdateTool.cpp:365
#4 0x7fb4229a4766 in AlignAlgorithm::update(Al::Equations const&) /workspace/build/Alignment/Alignment/TAlignment/src/AlignAlgorithm.cpp:622
#5 0x7fb4229e6ea4 in AlignAlgorithm::update() /workspace/build/Alignment/Alignment/TAlignment/src/AlignAlgorithm.cpp:616
#6 0x7fb4229e7419 in AlignAlgorithm::finalize() /workspace/build/Alignment/Alignment/TAlignment/src/AlignAlgorithm.cpp:233
#7 0x7fb47904a252 in Gaudi::Algorithm::sysFinalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:480
#8 0x7fb479f8a1ab in operator() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:20
#9 0x7fb479f8a1ab in accumulate<__gnu_cxx::__normal_iterator<Gaudi::Algorithm**, std::vector<Gaudi::Algorithm*> >, bool, (anonymous namespace)::for_algorithms(C&) [with StatusCode (Gaudi::Algorithm::* f)() = &Gaudi::Algorithm::sysFinalize; C = std::vector<Gaudi::Algorithm*>]::<lambda(bool, Gaudi::Algorithm*)> > /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/bits/stl_numeric.h:162
#10 0x7fb479f8a1ab in for_algorithms<&Gaudi::Algorithm::sysFinalize, std::vector<Gaudi::Algorithm*> > /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:19
#11 0x7fb479f92f6b in Gaudi::Sequence::finalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:42
#12 0x7fb46367acaf in GaudiCommon<Gaudi::Sequence>::finalize() /workspace/build/Gaudi/GaudiAlg/src/lib/GaudiCommon.icpp:204
#13 0x7fb47904a252 in Gaudi::Algorithm::sysFinalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:480
#14 0x7fb479f8a1ab in operator() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:20
#15 0x7fb479f8a1ab in accumulate<__gnu_cxx::__normal_iterator<Gaudi::Algorithm**, std::vector<Gaudi::Algorithm*> >, bool, (anonymous namespace)::for_algorithms(C&) [with StatusCode (Gaudi::Algorithm::* f)() = &Gaudi::Algorithm::sysFinalize; C = std::vector<Gaudi::Algorithm*>]::<lambda(bool, Gaudi::Algorithm*)> > /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/bits/stl_numeric.h:162
#16 0x7fb479f8a1ab in for_algorithms<&Gaudi::Algorithm::sysFinalize, std::vector<Gaudi::Algorithm*> > /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:19
#17 0x7fb479f92f6b in Gaudi::Sequence::finalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:42
#18 0x7fb46367acaf in GaudiCommon<Gaudi::Sequence>::finalize() /workspace/build/Gaudi/GaudiAlg/src/lib/GaudiCommon.icpp:204
#19 0x7fb47904a252 in Gaudi::Algorithm::sysFinalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:480
#20 0x7fb479f8a1ab in operator() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:20
#21 0x7fb479f8a1ab in accumulate<__gnu_cxx::__normal_iterator<Gaudi::Algorithm**, std::vector<Gaudi::Algorithm*> >, bool, (anonymous namespace)::for_algorithms(C&) [with StatusCode (Gaudi::Algorithm::* f)() = &Gaudi::Algorithm::sysFinalize; C = std::vector<Gaudi::Algorithm*>]::<lambda(bool, Gaudi::Algorithm*)> > /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/9.2.0-afc57/x86_64-centos7/include/c++/9.2.0/bits/stl_numeric.h:162
#22 0x7fb479f8a1ab in for_algorithms<&Gaudi::Algorithm::sysFinalize, std::vector<Gaudi::Algorithm*> > /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:19
#23 0x7fb479f92f6b in Gaudi::Sequence::finalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Sequence.cpp:42
#24 0x7fb46367acaf in GaudiCommon<Gaudi::Sequence>::finalize() /workspace/build/Gaudi/GaudiAlg/src/lib/GaudiCommon.icpp:204
#25 0x7fb47904a252 in Gaudi::Algorithm::sysFinalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Algorithm.cpp:480
#26 0x7fb4795a7c76 in MinimalEventLoopMgr::finalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/MinimalEventLoopMgr.cpp:251
#27 0x7fb474c49a1f in EventLoopMgr::finalize() /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/EventLoopMgr.cpp:183
#28 0x7fb479fb5ba0 in Service::sysFinalize() /workspace/build/Gaudi/GaudiKernel/src/Lib/Service.cpp:154
#29 0x7fb474ca0624 in ServiceManager::finalize() /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/ServiceManager.cpp:445
#30 0x7fb474b2348b in ApplicationMgr::finalize() /workspace/build/Gaudi/GaudiCoreSvc/src/ApplicationMgr/ApplicationMgr.cpp:607
#31 0x7fb4790aebbb in Gaudi::Application::run() /workspace/build/Gaudi/GaudiKernel/src/Lib/Application.cpp:97
#32 0x7fb4790abd95 in _py_Gaudi__Application__run /workspace/build/Gaudi/GaudiKernel/src/Lib/Application.cpp:122
#33 0x7fb48ccfaafb in ffi_call_unix64 (/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_96b/Python/2.7.16/x86_64-centos7-gcc9-dbg/lib/python2.7/lib-dynload/_ctypes.so+0x1aafb)
#34 0x7fb48ccfa33a in ffi_call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/libffi/src/x86/ffi64.c:525
#35 0x7fb48ccf2e74 in _call_function_pointer /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/callproc.c:837
#36 0x7fb48ccf2e74 in _ctypes_callproc /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/callproc.c:1180
#37 0x7fb48ccea0ca in PyCFuncPtr_call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/_ctypes/_ctypes.c:4095
#38 0x7fb4927fbf92 in PyObject_Call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Objects/abstract.c:2544
#39 0x7fb4928a1de5 in do_call /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4593
#40 0x7fb4928a1de5 in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4398
#41 0x7fb4928a1de5 in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#42 0x7fb4928a6f2e in fast_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4461
#43 0x7fb4928a6f2e in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4396
#44 0x7fb4928a6f2e in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#45 0x7fb4928a9637 in PyEval_EvalCodeEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3608
#46 0x7fb4928a6938 in fast_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4471
#47 0x7fb4928a6938 in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4396
#48 0x7fb4928a6938 in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#49 0x7fb4928a9637 in PyEval_EvalCodeEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3608
#50 0x7fb4928a6938 in fast_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4471
#51 0x7fb4928a6938 in call_function /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:4396
#52 0x7fb4928a6938 in PyEval_EvalFrameEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3013
#53 0x7fb4928a9637 in PyEval_EvalCodeEx /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:3608
#54 0x7fb4928a97e8 in PyEval_EvalCode /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/ceval.c:669
#55 0x7fb4928ce658 in run_mod /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/pythonrun.c:1385
#56 0x7fb4928ce658 in PyRun_FileExFlags /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/pythonrun.c:1371
#57 0x7fb4928cf9ab in PyRun_SimpleFileExFlags /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Python/pythonrun.c:957
#58 0x7fb4928e2c1e in Py_Main /mnt/build/jenkins/workspace/lcg_release_tar/BUILDTYPE/Debug/COMPILER/gcc9binutils/LABEL/centos7/build/externals/Python-2.7.16/src/Python/2.7.16/Modules/main.c:645
#59 0x7fb491ad7554 in __libc_start_main (/lib64/libc.so.6+0x22554)
#60 0x4006bd (/cvmfs/lhcb.cern.ch/lib/lcg/releases/Python/2.7.16-e553a/x86_64-centos7-gcc9-dbg/bin/python2.7+0x4006bd)