]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
cosmetics
authorphille <phille@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 28 Apr 2011 11:04:16 +0000 (11:04 +0000)
committerphille <phille@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 28 Apr 2011 11:04:16 +0000 (11:04 +0000)
HLT/CALO/AliHLTCaloUtilities.h

index 1695a4d53b1f11ae3a72040e96f412b8a6e8d455..4055188316de0761690b6a95edb9de6eade5f303 100644 (file)
@@ -31,40 +31,6 @@ class  AliHLTCaloUtilities
  public:
   AliHLTCaloUtilities();
   virtual ~AliHLTCaloUtilities();
-  // static bool CheckFile(const char *fileName, const char *opt);
-  // static bool ScanSingleIntArgument(int argc, const char** argv, const char *name, int *value = 0 );
-  // static bool ScanSingleFloatArgument(int argc, const char** argv, const char *name, float *value = 0 );
-  // static bool ScanSingleNameArgument(int argc, const char** argv, const char *name, char *outname = 0 );
-  // static bool ScanSingleArgument(int argc, const char** argv, const char *name);
-
-  /*
-  template<typename T> 
-    static void  DumpData(T *array, int N, int nPerLine)
-    {
-      for(int i= 0; i< N; i++)
-       {
-         if((i%nPerLine == 0)  &&  (i != 0))
-           {
-             cout << endl;
-           }
-
-         cout << array[i]<< "\t";
-       }
-      cout << endl;
-    }
-  */
-
-  /*
-  template<typename T> 
-    static void  ResetArray(T *array, int N)
-    {
-      for(int i= 0; i< N; i++)
-       {
-         array[i] = 0;
-       }
-    }
-  */
-
   
   template<typename T> 
     static T  MaxValue(T *array, int N)
@@ -81,11 +47,6 @@ class  AliHLTCaloUtilities
       return tmpMax;
     }
   
-
-  
-  //private:
-  // static int DoExistArgument(const int argc, const char** argv, const char *argument);
-
 };
 
 #endif