/search.css" rel="stylesheet" type="text/css"/> /search.js">
00001 #!/usr/bin/env python 00002 00003 ''' 00004 Keep CoincidenceTight UserData 00005 ''' 00006 00007 def configure(argv = []): 00008 00009 paths = ["/Event/Data/Physics/CoincidenceTight"] 00010 00011 from SmartFilter.SmartFilterConf import SmartFilterAlg 00012 from Gaudi.Configuration import ApplicationMgr 00013 app = ApplicationMgr() 00014 keepers = [] 00015 00016 for path in paths: 00017 filtername = "keep"+path.replace('/','_') 00018 keepers.append( SmartFilterAlg(filtername) ) 00019 keepers[-1].KeepLocation = path 00020 keepers[-1].KeepAllParents = False 00021 app.TopAlg.append(keepers[-1]) 00022 00023 def run(app): 00024 pass