From b02d091083288480cdb5f30812490f19dc267275 Mon Sep 17 00:00:00 2001
From: Hal Finkel <hfinkel@anl.gov>
Date: Mon, 25 Sep 2017 16:16:59 -0500
Subject: [PATCH] Print column types in GenericIOPrint

---
 GenericIOPrint.cxx | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/GenericIOPrint.cxx b/GenericIOPrint.cxx
index 41f33c3..b14f4cb 100644
--- a/GenericIOPrint.cxx
+++ b/GenericIOPrint.cxx
@@ -275,6 +275,28 @@ int main(int argc, char *argv[]) {
     }
     cout << endl;
 
+    cout << "# ";
+    for (size_t i = 0; i < VI.size(); ++i) {
+      if (VI[i].Size == VI[i].ElementSize) {
+        cout << "(" << (VI[i].IsFloat ? "f" :
+                        (VI[i].IsSigned ? "s" : "u")) << 8*VI[i].Size << ")";
+      } else {
+        size_t NumElements = VI[i].Size/VI[i].ElementSize;
+        for (size_t j = 0; j < NumElements; ++j) {
+          cout << "(" << (VI[i].IsFloat ? "f" :
+                          (VI[i].IsSigned ? "s" : "u")) <<
+                  8*VI[i].ElementSize << ")";
+
+          if (j != NumElements - 1)
+            cout << "\t";
+        }
+      }
+
+      if (i != VI.size() - 1)
+        cout << "\t";
+    }
+    cout << endl;
+
     for (int i = 0; i < NR; ++i) {
       size_t NElem = GIO.readNumElems(i);
       int Coords[3];
-- 
GitLab