Functions | |
def | configure |
def | run |
def DumpWaveforms::__init__::configure | ( | argv = [] |
) |
Configure this module with LED position
Definition at line 3 of file __init__.py.
00003 : 00004 """Configure this module with LED position""" 00005 00006 import GaudiKernel.SystemOfUnits as units 00007 import sys, getopt 00008 from time import gmtime, mktime, strftime, strptime, timezone 00009 opts,args = getopt.getopt(argv, 00010 "p:w:z:n:i:f:m:s:",["no-geometry"]) 00011 00012 00013 from StatisticsSvc.StatisticsSvcConf import StatisticsSvc 00014 statsSvc = StatisticsSvc() 00015 statsSvc.Output ={"file1":"waveforms.root"} 00016 statsSvc.OutputLevel=ERROR 00017 def run(app):
def DumpWaveforms::__init__::run | ( | app | ) |
Definition at line 18 of file __init__.py.
00018 : 00019 app.ExtSvc += ["StatisticsSvc"] 00020 00021 from ElecTutorial import WaveDumper 00022 00023 wavealg = WaveDumper.WaveDumperAlg("WaveDumper") 00024 app.addAlgorithm(wavealg) 00025 00026 pass 00027