/search.css" rel="stylesheet" type="text/css"/> /search.js">
Classes | |
class | Chirp |
Functions | |
def | configure |
def | run |
Variables | |
int | detmask = 0 |
int | expected = 0 |
def DybAlg::TestAbortEventAlg::configure | ( | argv = [] | ) |
Definition at line 55 of file TestAbortEventAlg.py.
00056 : 00057 global detmask 00058 global expected 00059 00060 themask = argv[0] 00061 if '0x' in themask: 00062 detmask = int(themask,16) 00063 elif "<<" in themask: 00064 detmask = eval(themask) 00065 elif themask.isdigit(): 00066 detmask = int(themask) 00067 else: 00068 detmask = int(themask) # hope is a powerful thing 00069 pass 00070 00071 expected = int(argv[1]) 00072 00073 from Gaudi.Configuration import ApplicationMgr 00074 theApp = ApplicationMgr() 00075 00076 from DybAlg.DybAlgConf import DybAbortEventAlg 00077 alg = DybAbortEventAlg() 00078 #alg.Force = True 00079 alg.RequireReadout = "yes" 00080 alg.Detectors = detmask 00081 alg.OutputLevel = 2 00082 00083 theApp.TopAlg.append(alg) 00084 return 00085
def DybAlg::TestAbortEventAlg::run | ( | app | ) |
Definition at line 86 of file TestAbortEventAlg.py.
Definition at line 52 of file TestAbortEventAlg.py.
Definition at line 53 of file TestAbortEventAlg.py.