/search.css" rel="stylesheet" type="text/css"/> /search.js">
Functions | |
def | configure |
def | run |
def KeepTight::configure | ( | argv = [] | ) |
Definition at line 7 of file KeepTight.py.
00008 : 00009 00010 paths = ["/Event/Data/Physics/CoincidenceTight"] 00011 00012 from SmartFilter.SmartFilterConf import SmartFilterAlg 00013 from Gaudi.Configuration import ApplicationMgr 00014 app = ApplicationMgr() 00015 keepers = [] 00016 00017 for path in paths: 00018 filtername = "keep"+path.replace('/','_') 00019 keepers.append( SmartFilterAlg(filtername) ) 00020 keepers[-1].KeepLocation = path 00021 keepers[-1].KeepAllParents = False 00022 app.TopAlg.append(keepers[-1])
def KeepTight::run | ( | app | ) |
Definition at line 23 of file KeepTight.py.