Skip to content
Snippets Groups Projects
Commit a3931a56 authored by Markus Frank's avatar Markus Frank
Browse files

Fix unitialized variable

parent 45b82572
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ typedef DetElement::Children _C;
/// Initializing constructor
SurfaceInstaller::SurfaceInstaller(LCDD& lcdd, int argc, char** argv)
: m_lcdd(lcdd), m_det()
: m_lcdd(lcdd), m_det(), m_stopScanning(false)
{
if ( argc > 0 ) {
string det_name = argv[0];
......
......@@ -235,6 +235,7 @@
<plugins>
<plugin name="DD4hep_SiTrackerBarrelSurfacePlugin">
<argument value="SiTrackerBarrel"/>
<argument value="dimension=1"/>
</plugin>
<plugin name="DD4hep_SurfaceExamplePlugin">
<argument value="SiTrackerBarrel"/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment