1 """parsing the LCGDict namespace and build dictionary
2 (quick'n'dirty solution)
4 benedikt.hegner@cern.ch
14 process = popen2.Popen3(
'SealPluginDump')
15 output = process.fromchild.read()
19 for line
in output.split(
'\n'):
21 if line.find(
'Reflex') !=-1
and line.find(
':') ==-1
and line.find(
'<') ==-1:
22 className = line.replace(
'LCGReflex/',
'').strip()
23 namespaceDict[className] = line.strip()