Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kjvbrt authored and jmcarcell committed Mar 15, 2024
1 parent e0603fd commit c3184b0
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions test/k4FWCoreTest/options/createExampleEventDataInDirectory.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,26 @@
from Gaudi.Configuration import *

from Configurables import k4DataSvc

podioevent = k4DataSvc("EventDataSvc")

from Configurables import k4FWCoreTest_CreateExampleEventData

producer = k4FWCoreTest_CreateExampleEventData()

from Configurables import PodioOutput

out = PodioOutput("out")
out.filename = "output/dir/output_k4test_exampledata.root"
out.outputCommands = ["keep *"]

from Configurables import ApplicationMgr
ApplicationMgr( TopAlg=[producer, out],
EvtSel="NONE",
EvtMax=100,
ExtSvc=[podioevent],
OutputLevel=INFO,
StopOnSignal=True,
)


ApplicationMgr(
TopAlg=[producer, out],
EvtSel="NONE",
EvtMax=100,
ExtSvc=[podioevent],
OutputLevel=INFO,
StopOnSignal=True,
)

0 comments on commit c3184b0

Please sign in to comment.