]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/TPCLib/AliHLTTPCFitter.h
minor update of documentation
[u/mrichter/AliRoot.git] / HLT / TPCLib / AliHLTTPCFitter.h
index 8ece9c8381e80bfe63ef1bf0966da37bd256fe12..52064048d6ff19026a9e6fe2f60e511aba4c19fd 100644 (file)
@@ -3,8 +3,9 @@
 
 #ifndef ALIHLTTPCFITTER_H
 #define ALIHLTTPCFITTER_H
-/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
- * See cxx source for full Copyright notice                               */
+//* This file is property of and copyright by the ALICE HLT Project        * 
+//* ALICE Experiment at CERN, All rights reserved.                         *
+//* See cxx source for full Copyright notice                               *
 
 /** @file   AliHLTTPCFitter.h
     @author Anders Vestbo, maintained by Matthias Richter
@@ -19,15 +20,13 @@ class AliHLTTPCSpacePointData;
 /** 
  * @class AliHLTTPCFitter
  * Fit class HLT for helix
+ *
+ * @ingroup alihlt_tpc
  */
 class AliHLTTPCFitter {
 
   public:
   AliHLTTPCFitter();
-  /** not a valid copy constructor, defined according to effective C++ style */
-  AliHLTTPCFitter(const AliHLTTPCFitter& src);
-  /** not a valid assignment op, but defined according to effective C++ style */
-  AliHLTTPCFitter& operator=(const AliHLTTPCFitter& src);
   AliHLTTPCFitter(AliHLTTPCVertex *vertex,Bool_t vertexconstraint=kTRUE);
   virtual ~AliHLTTPCFitter();
   
@@ -39,13 +38,18 @@ class AliHLTTPCFitter {
   void NoVertex() {fVertexConstraint=kFALSE;}
  
  private:
+  /** copy constructor prohibited */
+  AliHLTTPCFitter(const AliHLTTPCFitter& src);
+  /** assignment operator prohibited */
+  AliHLTTPCFitter& operator=(const AliHLTTPCFitter& src);
+
   AliHLTTPCTrack *fTrack; //!                    actual track
   AliHLTTPCVertex *fVertex; //!                  vertex info
   Bool_t fVertexConstraint; //               include vertex constraint
   AliHLTTPCSpacePointData *fClusters[36][6]; //! clusters
   UInt_t fNcl[36][6]; //                     cluster numbers
  
-  ClassDef(AliHLTTPCFitter,1) //HLT fit class
+  ClassDef(AliHLTTPCFitter,0) //HLT fit class
 };
 
 #endif