Skip to content
Snippets Groups Projects
Commit 2f0b56c3 authored by Marcin Wandas's avatar Marcin Wandas
Browse files

Remove printing stack trace in execute() const in TauRecToolBase

parent 3394f03d
No related branches found
No related tags found
No related merge requests found
......@@ -146,14 +146,6 @@ StatusCode TauRecToolBase::eventInitialize(){
//________________________________________
StatusCode TauRecToolBase::execute(xAOD::TauJet&) const {
ATH_MSG_ERROR("function not implemented");
pid_t myPid = getpid();
std::string pstackCommand = "pstack ";
std::stringstream ss;
ss << myPid;
pstackCommand += ss.str();
system(pstackCommand.c_str());
return StatusCode::FAILURE;
}
......
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