]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/TPCLib/AliHLTTPCBenchmark.cxx
- added TPCLib to doxygen docu, code corrections according to documentation and effC++
[u/mrichter/AliRoot.git] / HLT / TPCLib / AliHLTTPCBenchmark.cxx
index 8969ec2752fadf316a276d0292bc8a1226ebc9ae..71487fc951026eb2e31d64380e1e59a3ceb22dee 100644 (file)
@@ -4,7 +4,7 @@
 //*-- Copyright &copy ALICE HLT Group
 
 /** \class AliHLTTPCBenchmark
-</pre>
+<pre>
 //_____________________________________________________________
 //
 // AliHLTTPCBenchmark
@@ -33,16 +33,37 @@ using namespace std;
 ClassImp(AliHLTTPCBenchmark)
 
 AliHLTTPCBenchmark::AliHLTTPCBenchmark()
+  :
+  fNbench(0),
+  fNmax(20),
+  fNames(NULL),
+  fTimer(NULL),
+  fSum(NULL),
+  fMin(NULL),
+  fMax(NULL),
+  fCount(NULL)
 {
   //Constructor
-  fNbench = 0;
-  fNmax   = 20;
-  fNames  = 0;
-  fTimer  = 0;
-  fSum    = 0;
-  fMin    = 0;
-  fMax    = 0;
-  fCount  = 0;
+}
+
+AliHLTTPCBenchmark::AliHLTTPCBenchmark(const AliHLTTPCBenchmark&)
+  :
+  fNbench(0),
+  fNmax(20),
+  fNames(NULL),
+  fTimer(NULL),
+  fSum(NULL),
+  fMin(NULL),
+  fMax(NULL),
+  fCount(NULL)
+{
+  HLTFatal("copy constructor untested");
+}
+
+AliHLTTPCBenchmark& AliHLTTPCBenchmark::operator=(const AliHLTTPCBenchmark&)
+{ 
+  HLTFatal("assignment operator untested");
+  return *this;
 }
 
 AliHLTTPCBenchmark::~AliHLTTPCBenchmark()