-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cab1ae9
commit d53c8ae
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
from Gaudi.Configuration import * | ||
|
||
from Configurables import K4DataSvc | ||
podioevent = K4DataSvc("EventDataSvc") | ||
podioevent.input = "output_k4test_exampledata.root" | ||
from Configurables import CreateExampleEventData | ||
producer = CreateExampleEventData() | ||
|
||
from Configurables import PodioInput | ||
inp = PodioInput("InputReader") | ||
inp.collections = ["MCParticles", "SimTrackerHit"] | ||
|
||
from Configurables import ApplicationMgr | ||
ApplicationMgr( TopAlg=[inp], | ||
EvtSel="NONE", | ||
EvtMax=100, | ||
ExtSvc=[podioevent], | ||
OutputLevel=DEBUG, | ||
) | ||
|
||
|