Skip to content
Snippets Groups Projects
helloalg.py 306 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 HelloAlg

helloalg = HelloAlg("helloAlg")
helloalg.MyInt = 42

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