Skip to content
Snippets Groups Projects
secondalg.py 360 B
Newer Older
lintao@ihep.ac.cn's avatar
lintao@ihep.ac.cn committed
#!/usr/bin/env python

from Gaudi.Configuration import *

from Configurables import FirstSvc

firstsvc = FirstSvc("FirstSvc")

from Configurables import SecondAlg

secondalg = SecondAlg("secondAlg")

# ApplicationMgr
from Configurables import ApplicationMgr
ApplicationMgr( TopAlg = [secondalg],
                EvtSel = 'NONE',
                EvtMax = 10,
)