/search.css" rel="stylesheet" type="text/css"/> /search.js">
Functions | |
def | configure |
def | run |
def CoincidenceTight::configure | ( | argv = [] | ) |
Tag AD coincidence events with tighter cuts and store more user data
Definition at line 19 of file CoincidenceTight.py.
00020 : 00021 """ Tag AD coincidence events with tighter cuts and store more user data""" 00022 from Gaudi.Configuration import ApplicationMgr 00023 app = ApplicationMgr() 00024 00025 from ADCoincTagging.ADCoincTaggingConf import CoincidenceTight 00026 myAlg = CoincidenceTight("CoincidenceTight") 00027 00028 opts,args = getopt.getopt(argv,"w:", ['MaxGapWindow']) 00029 for opt, arg in opts: 00030 if opt in ('-w', '--MaxGapWindow'): 00031 myAlg.MaxGapWindow = float(arg) * units.second 00032 else: 00033 assert False, "unhandled option: %s, %s" % (opt, arg) 00034 00035 app.TopAlg.append(myAlg) 00036 00037 return
def CoincidenceTight::run | ( | app | ) |
Definition at line 38 of file CoincidenceTight.py.