]> Creatis software - gdcm.git/blobdiff - gdcmPython/demo/printGroupedPublicDict.py
Remove useless TestDcm2Acr.cxx
[gdcm.git] / gdcmPython / demo / printGroupedPublicDict.py
index 636119d4cbdab76a0128a3408cac6470cab8c29f..fa03c30fb6ff2cfe70e9cd3b4d388c8be182676e 100644 (file)
@@ -4,7 +4,7 @@ print "##############################################################"
 print "### Display all the possible tags of the current public"
 print "### dictionary"
 print "##############################################################"
-PubList = GetPubDictTagNames()
+PubList = GetPubDictEntryNames()
 for i in range(0, len(PubList)):
    print "   ", PubList[i]
 
@@ -14,7 +14,7 @@ print "### dictionary, but grouped by using the Fourth field"
 print "##############################################################"
 print " WARNING : the 'fourth' fiels IS NOT part of DICOM"
 print " DO NOT use it"
-PubDict = GetPubDictTagNamesByCategory()
+PubDict = GetPubDictEntryNamesByCategory()
 for fourth in PubDict:
    print "   ############ Fourth group = ", fourth, " ##############"
    for key in PubDict[fourth]: