00001 #!/usr/bin/env python 00002 00003 import xmldetdesc 00004 xmldetdesc.config() 00005 00006 import sys, os 00007 00008 00009 from Gaudi.Configuration import * 00010 conf = ApplicationMgr() 00011 conf.EvtSel = "NONE" 00012 00013 from XmlDetDescChecks.XmlDetDescChecksConf import XddDumpAlg 00014 xdd = XddDumpAlg() 00015 xdd.Paths = sys.argv[1:] 00016 conf.TopAlg = [ xdd ] 00017 00018 from GaudiPython import AppMgr 00019 app = AppMgr() 00020 app.run(1) 00021