]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/TPCLib/AliHLTTPCClusters.cxx
using '-release-memory' option for TPC clusterfinder
[u/mrichter/AliRoot.git] / HLT / TPCLib / AliHLTTPCClusters.cxx
index b71673ad0b8b2c4dda241972b8b9e73b890574c5..56aa0c050623f6f93014f484d9db7a7843b3bfaa 100644 (file)
@@ -2,21 +2,29 @@
 using namespace std;
 #endif
 
-#include <cerrno>
-#include "AliHLTTPCPadArray.h"
-#include "AliHLTTPCPad.h"
-#include "AliHLTStdIncludes.h"
-#include "AliHLTTPCTransform.h"
-#include "AliTPCRawStream.h"
-#include "AliRawReaderMemory.h"
-#include "AliHLTTPCDigitReader.h"
-#include <vector>
+// see header file for class documentation
+// or
+// refer to README to build package
+// or
+// visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
+
+//#include <cerrno>
+//#include "AliHLTTPCPadArray.h"
+//#include "AliHLTTPCPad.h"
+//#include "AliHLTStdIncludes.h"
+//#include "AliHLTTPCTransform.h"
+//#include "AliTPCRawStream.h"
+//#include "AliRawReaderMemory.h"
+//#include "AliHLTTPCDigitReader.h"
+//#include <vector>
 #include "AliHLTTPCClusters.h"
+
 /** ROOT macro for the implementation of ROOT specific class methods */
 //ClassImp(AliHLTTPCClusters)
 
 AliHLTTPCClusters::AliHLTTPCClusters()
   :
+  AliHLTLogging(),
   fTotalCharge(0),
   fPad(0),
   fTime(0),
@@ -27,14 +35,21 @@ AliHLTTPCClusters::AliHLTTPCClusters()
   fChargeFalling(0),
   fLastCharge(0),
   fLastMergedPad(0),
+  fRowNumber(0),
   fFirstPad(0),
   fLastPad(0),
-  fRowNumber(0)
+  fQMax(0)
 {
-
+  // see header file for class documentation
+  // or
+  // refer to README to build package
+  // or
+  // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
 }
+
 AliHLTTPCClusters::AliHLTTPCClusters(const AliHLTTPCClusters& src)
   :
+  AliHLTLogging(),
   fTotalCharge(src.fTotalCharge),
   fPad(src.fPad),
   fTime(src.fTime),
@@ -45,13 +60,18 @@ AliHLTTPCClusters::AliHLTTPCClusters(const AliHLTTPCClusters& src)
   fChargeFalling(src.fChargeFalling),
   fLastCharge(src.fLastCharge),
   fLastMergedPad(src.fLastMergedPad),
+  fRowNumber(src.fRowNumber),
   fFirstPad(src.fFirstPad),
   fLastPad(src.fLastPad),
-  fRowNumber(src.fRowNumber)
+  fQMax(src.fQMax)
 {
+  // see header file for class documentation
   //HLTInfo("Copy constructor called");
 }
-AliHLTTPCClusters& AliHLTTPCClusters::operator=(const AliHLTTPCClusters& src){
+
+AliHLTTPCClusters& AliHLTTPCClusters::operator=(const AliHLTTPCClusters& src)
+{
+  // see header file for class documentation
   fTotalCharge=src.fTotalCharge;
   fPad = src.fPad;
   fTime = src.fTime;
@@ -61,8 +81,9 @@ AliHLTTPCClusters& AliHLTTPCClusters::operator=(const AliHLTTPCClusters& src){
   fFlags = src.fFlags;
   fChargeFalling = src.fChargeFalling;
   fLastCharge = src.fLastCharge;
+  fRowNumber= src.fRowNumber;
   fLastMergedPad = src.fLastMergedPad;
   fFirstPad = src.fFirstPad;
-  fRowNumber= src.fRowNumber;
+  fQMax = src.fQMax;
   return (*this);
 }