Skip to content
Snippets Groups Projects
Commit 5b1894a2 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Revert "athenaHLT: Fix missing child histograms"

The work-around is no longer needed as the histograms are now saved
already during the stop transition in the PSC.
parent f9f4caab
No related branches found
No related tags found
No related merge requests found
......@@ -178,7 +178,7 @@ def HLTMPPy_cfgdict(args):
cdict = {}
cdict['HLTMPPU'] = {
'application_name' : 'athenaHLT-%d' % os.getpid(), # unique name required to avoid interference
'extra_params' : ["SkipFinalizeWorker=0"],
'extra_params' : ["dumpFDs=1", "dumpThreads=1"] if args.debug_fork else None,
'interactive' : args.interactive,
'log_root' : os.getcwd(),
'log_name' : ('' if args.unique_log_files else 'athenaHLT:'),
......@@ -191,8 +191,6 @@ def HLTMPPy_cfgdict(args):
'soft_timeout_fraction' : 0.95,
'hltresultSizeMb': args.hltresult_size
}
if args.debug_fork:
cdict['HLTMPPU']['extra_params'] += ["dumpFDs=1", "dumpThreads=1"]
if args.debug:
cdict['HLTMPPU']['debug'] = args.debug
......
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