Index: /trunk/FACT++/src/EventBuilderWrapper.h
===================================================================
--- /trunk/FACT++/src/EventBuilderWrapper.h	(revision 11202)
+++ /trunk/FACT++/src/EventBuilderWrapper.h	(revision 11203)
@@ -1162,51 +1162,4 @@
 
 	} __attribute__((__packed__));;
-/*
-        template<typename T>
-        vector<T> CheckVals(const PEVNT_HEADER *fadhd, const T *val, bool &rc)
-        {
-            const size_t offset = reinterpret_cast<const char*>(val)-reinterpret_cast<const char*>(fadhd);
-
-            vector<T> vec(40);
-
-            vec[0] = *val;
-
-            rc = true;
-            for (int i=1; i<40; i++)
-            {
-
-                const T &t = *reinterpret_cast<const T*>(reinterpret_cast<const char*>(fadhd+i)+offset);
-                if (t!=*val)
-                    rc = false;
-
-                vec[i] = t;
-            }
-
-            return vec;
-        }
-
-        template<typename T>
-        vector<uint8_t> CheckBits(const PEVNT_HEADER *fadhd, const T &val, T &rc)
-        {
-            const size_t offset = reinterpret_cast<const char*>(&val)-reinterpret_cast<const char*>(fadhd);
-
-            vector<uint8_t> vec(40);
-
-            rc = 0;
-            for (int i=0; i<40; i++)
-            {
-                const T &t = *reinterpret_cast<const T*>(reinterpret_cast<const char*>(fadhd+i)+offset);
-
-                rc |= val^t;
-
-                vec[i] = t;
-            }
-
-            // Return 1 for all bits which are identical
-            //        0 for all other bits
-            rc = ~rc;
-            return vec;
-        }*/
-
 
     int eventCheck(PEVNT_HEADER *fadhd, EVENT *event)
