From 3e69ca6cff2988e043131f230b83722009175a01 Mon Sep 17 00:00:00 2001 From: lintao <lintao51@gmail.com> Date: Fri, 9 Aug 2019 17:52:32 +0800 Subject: [PATCH] WIP: fix the warning of deprecated char* . --- Simulation/DetSimCore/src/DetSimAlg.cpp | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/Simulation/DetSimCore/src/DetSimAlg.cpp b/Simulation/DetSimCore/src/DetSimAlg.cpp index 8be8d269..209a51f0 100644 --- a/Simulation/DetSimCore/src/DetSimAlg.cpp +++ b/Simulation/DetSimCore/src/DetSimAlg.cpp @@ -1,4 +1,7 @@ #include "DetSimAlg.h" +#include "GaudiKernel/IEventProcessor.h" +#include "GaudiKernel/IAppMgrUI.h" +#include "GaudiKernel/GaudiException.h" #include "G4RunManager.hh" @@ -60,7 +63,7 @@ DetSimAlg::initialize() { info() << "Start Geant4 Visualization." << endmsg; // initialize Vis visManager = new G4VisExecutive; - char* argv[1] = {"geant4Vis"}; + char* argv[1] = {strdup("geant4Vis")}; ui = new G4UIExecutive(1,argv); } for (auto vismac: m_vis_macs.value()) { @@ -89,6 +92,20 @@ DetSimAlg::initialize() { delete visManager; // fixme: how to stop the run? + // auto ep = serviceLocator()->as<IEventProcessor>(); + // if ( !ep ) { + // error() << "Cannot get IEventProcessor" << endmsg; + // return StatusCode::FAILURE; + // } + // ep->stopRun(); + + // auto ep = serviceLocator()->as<IAppMgrUI>(); + // if ( !ep ) { + // error() << "Cannot get IAppMgrUI" << endmsg; + // return StatusCode::FAILURE; + // } + // ep->terminate(); + // throw GaudiException( "Stopping loop", "Stop", StatusCode::SUCCESS); return StatusCode::FAILURE; } -- GitLab