]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/TPCLib/AliHLTTPCConfMapTrack.h
cmake update (Oystein)
[u/mrichter/AliRoot.git] / HLT / TPCLib / AliHLTTPCConfMapTrack.h
index d224077c07bad5a53a18cc3d64a90a3ed0f0349d..9779f213b972f84f2e0c560900d7e39138f79966 100644 (file)
@@ -4,8 +4,9 @@
 #ifndef ALIHLTTPCCONFMAPTRACK_H
 #define ALIHLTTPCCONFMAPTRACK_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   AliHLTTPCConfMapTrack.h
     @author Anders Vestbo, maintained by Matthias Richter
     @brief  Track class for conformal mapper
 */
 
-#include <string.h>
-
 #include "AliHLTTPCTrack.h"
-
-#include "AliHLTTPCRootTypes.h"
 #include "AliHLTTPCConfMapPoint.h"
 
 class AliHLTTPCVertex;
@@ -26,16 +23,13 @@ class AliHLTTPCVertex;
  * @class AliHLTTPCConfMapTrack
  * Track class for conformal mapper
  *
+ * @ingroup alihlt_tpc
  */
 class AliHLTTPCConfMapTrack :public AliHLTTPCTrack {
 
  public:
   
   AliHLTTPCConfMapTrack();
-  /** not a valid copy constructor, defined according to effective C++ style */
-  AliHLTTPCConfMapTrack(const AliHLTTPCConfMapTrack&);
-  /** not a valid assignment op, but defined according to effective C++ style */
-  AliHLTTPCConfMapTrack& operator=(const AliHLTTPCConfMapTrack&);
   /** destructor */
   virtual ~AliHLTTPCConfMapTrack();
   void Fill(AliHLTTPCVertex *vertex,Double_t max_Dca);
@@ -105,6 +99,12 @@ class AliHLTTPCConfMapTrack :public AliHLTTPCTrack {
   
   Double_t    fddXy, fa1Xy, fa2Xy ;    /*fit par in xy */
   Double_t    fddSz, fa1Sz, fa2Sz ;    /*fit par in sz */
+
+ private:
+  /** copy constructor prohibited */
+  AliHLTTPCConfMapTrack(const AliHLTTPCConfMapTrack&);
+  /** assignment operator prohibited */
+  AliHLTTPCConfMapTrack& operator=(const AliHLTTPCConfMapTrack&);
   
   ClassDef(AliHLTTPCConfMapTrack,1) //Conformal mapping track class
 };