"git@code.ihep.ac.cn:dhb112358/CEPCSW.git" did not exist on "5081e0d92c8c344617bea06cba8af24236e128fa"
Newer
Older
#!/usr/bin/env python
from Gaudi.Configuration import *
from Configurables import K4DataSvc
dsvc = K4DataSvc("EventDataSvc", input="test.root")
from Configurables import Edm4hepReadAlg
alg = Edm4hepReadAlg("Edm4hepReadAlg")
alg.HeaderCol.Path = "EventHeader"
alg.InputCol.Path = "MCParticle"
from Configurables import PodioInput
podioinput = PodioInput("PodioReader", collections=[
"EventHeader",
"MCParticle"
])
# ApplicationMgr
from Configurables import ApplicationMgr
ApplicationMgr( TopAlg = [podioinput, alg],
EvtSel = 'NONE',
EvtMax = 10,
ExtSvc = [dsvc],
OutputLevel=DEBUG
)