Functions | |
def | configure |
def | run |
def Keep::configure | ( | argv = [] |
) |
Definition at line 12 of file Keep.py.
00012 : 00013 00014 from DybPython.Control import nuwa 00015 outFile = nuwa.opts.output 00016 00017 import getopt 00018 opts,args = getopt.getopt(argv,"",[]) 00019 output_streams = {"/Event/RegistrationSequence":outFile, 00020 "/JobHeader":outFile, 00021 "/RunHeader":outFile 00022 } 00023 for arg in args: 00024 output_streams[arg] = outFile 00025 print "================================================" 00026 print " Keeping path:",arg 00027 print "================================================" 00028 00029 from RootIOSvc.RootIOSvcConf import RootIOCnvSvc 00030 rio = RootIOCnvSvc() 00031 rio.OutputStreams = output_streams 00032 def run(app):