Skip to content
Snippets Groups Projects
Commit 171c3541 authored by scott snyder's avatar scott snyder
Browse files

PyDumper: Explicitly disable CaloRinger during event dumping.

CaloRinger is on by default in RecExCommon, and doesn't obey the doWrite
switches.  Futher, it loads Athena libraries during job configuration,
which can lead to crashes in gcc8 builds.  Explicitly disable it.
parent 0c3e7251
No related branches found
No related tags found
No related merge requests found
...@@ -73,6 +73,7 @@ def _gen_jobo(dct): ...@@ -73,6 +73,7 @@ def _gen_jobo(dct):
'doAOD', 'doAOD',
'doDPD', 'doDPD',
'doEgamma', # avoid dict clash 'doEgamma', # avoid dict clash
'doCaloRinger', # avoid loading Ath libs too early
): ):
getattr (rec, item).set_Value_and_Lock(False) getattr (rec, item).set_Value_and_Lock(False)
......
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