]> Creatis software - gdcm.git/blobdiff - gdcmPython/demo/printGroupedPublicDict.py
* Changed the layout of the python part to avoid bloating main
[gdcm.git] / gdcmPython / demo / printGroupedPublicDict.py
diff --git a/gdcmPython/demo/printGroupedPublicDict.py b/gdcmPython/demo/printGroupedPublicDict.py
deleted file mode 100644 (file)
index 1dcd2f7..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-from gdcmPython import *
-toRead = gdcmHeader(FileName)
-toRead.LoadElements()
-
-print "##############################################################"
-print "### Display all the possible tags of the current public"
-print "### dictionary, but grouped by using the Fourth field"
-print "##############################################################"
-AllDictFields = toRead.GetPubTagNamesByCategory()
-for fourth in AllDictFields.keys():
-       print "   ############ Fourth group = ", fourth, " ##############"
-       for entry in  AllDictFields[fourth]:
-               print "   ", entry
-