Functions | |
def | configure |
Variables | |
list | __all__ = [ "run" ] |
def RollingGain::__init__::configure | ( | argv = [] |
) |
Definition at line 5 of file __init__.py.
00005 : 00006 00007 # Parsing: 00008 from optparse import OptionParser 00009 parser = OptionParser() 00010 00011 parser.add_option("-o","--output",action="store", type="string", 00012 default = "pending.root",help="Root tree file name") 00013 (opts,args) = parser.parse_args(args=argv) 00014 00015 # 00016 from Gaudi.Configuration import ApplicationMgr 00017 theApp = ApplicationMgr() 00018 00019 # Add myself into the queue 00020 from RollingGain.RollingGainConf import RollingGain 00021 MyAlg=RollingGain() 00022 theApp.TopAlg.append(MyAlg) 00023 MyAlg.FitPeriod = 60*60 #seconds 00024 MyAlg.Fix = 1 00025 00026 #from DataSvc.DataSvcConf import StaticCableSvc 00027 #cableSvc = StaticCableSvc() 00028 #cableSvc.FeeCableMap = '$DATASVCROOT/share/feeCableMap_DryRun.txt' 00029 00030 return return
list RollingGain::__init__::__all__ = [ "run" ] [static] |
Definition at line 3 of file __init__.py.