/search.css" rel="stylesheet" type="text/css"/> /search.js">
Functions | |
def | configure |
def | run |
def TESDemo::configure | ( | ) |
Definition at line 14 of file __init__.py.
00015 : 00016 from Gaudi.Configuration import ApplicationMgr 00017 theApp = ApplicationMgr() 00018 00019 from MockEvt.MockEvtConf import MockEvtStorageSvc 00020 storeSvc = MockEvtStorageSvc("DybStorageSvc") 00021 theApp.ExtSvc.append(storeSvc) 00022 00023 from DybEventMgr.DybEventMgrConf import ArchiveTrimSvc 00024 trimSvc = ArchiveTrimSvc() 00025 theApp.ExtSvc.append(trimSvc) 00026 trimSvc.DefaultWindowSeconds = 0.0001 # not in system-of-units time! 00027 00028 from TESDemo.TESDemoConf import TESDemoTracing, TESDemoTrim, TESDemoFill1, \ 00029 TESDemoFill2, TESDemoUse, TESDemoMark, TESDemoOutput 00030 00031 tracing = TESDemoTracing() 00032 tracing.On = 1 00033 theApp.TopAlg.append(tracing) 00034 00035 trim = TESDemoTrim() 00036 theApp.TopAlg.append(trim) 00037 00038 fill1 = TESDemoFill1() 00039 fill1.PositronPercentage = 20 00040 theApp.TopAlg.append(fill1) 00041 00042 fill2 = TESDemoFill2() 00043 fill2.NeutronPercentage = 40 00044 theApp.TopAlg.append(fill2) 00045 00046 mark = TESDemoMark() 00047 theApp.TopAlg.append(mark) 00048 00049 out = TESDemoOutput() 00050 theApp.TopAlg.append(out) 00051 00052 return
def TESDemo::run | ( | app | ) |
Definition at line 53 of file __init__.py.