/search.css" rel="stylesheet" type="text/css"/> /search.js">
00001 #!/usr/bin/env python 00002 ''' 00003 Run XmlDetDescCheck's XddDumpAlg 00004 00005 eg: 00006 00007 nuwa.py -G $XMLDETDESCROOT/DDDB/radslabs.xml -n1 -m XmlDetDesc.dump_geo 00008 00009 ''' 00010 00011 def configure(argv=None): 00012 if argv: 00013 path = argv[0] 00014 else: 00015 path = '/dd/Geometry' 00016 00017 from XmlDetDescChecks.XmlDetDescChecksConf import XddDumpAlg 00018 00019 da = XddDumpAlg() 00020 da.Paths = [path] 00021 00022 from Gaudi.Configuration import ApplicationMgr 00023 app = ApplicationMgr() 00024 app.TopAlg.append(da)