Skip to content

Commit

Permalink
Edm4hep format as default when both edm4hep and lcio enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
BrieucF committed Oct 11, 2024
1 parent 18c7637 commit 985a4bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions DDG4/python/DDSim/Helper/OutputConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@


def defaultOutputFile():
if DD4HEP_USE_LCIO:
return "dummyOutput.slcio"
return "dummyOutput.root"
if DD4HEP_USE_LCIO and not DD4HEP_USE_EDM4HEP:
return "ddsimOutput.slcio"
return "ddsimOutput.root"


class OutputConfig(ConfigHelper):
Expand Down

0 comments on commit 985a4bb

Please sign in to comment.