Skip to content
Snippets Groups Projects
Commit cdf819c8 authored by lintao@ihep.ac.cn's avatar lintao@ihep.ac.cn
Browse files

WIP: add the real tut_detsim.py.

parent f0ea8151
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python
from Gaudi.Configuration import *
from Configurables import DetSimSvc
detsimsvc = DetSimSvc("DetSimSvc")
from Configurables import DetSimAlg
detsimalg = DetSimAlg("DetSimAlg")
detsimalg.VisMacs = ["vis.mac"]
detsimalg.RunCmds = [
"/tracking/verbose 1",
]
# ApplicationMgr
from Configurables import ApplicationMgr
ApplicationMgr( TopAlg = [detsimalg],
EvtSel = 'NONE',
EvtMax = 10,
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment