]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/TPCLib/AliHLTTPCConfMapFit.h
added 'backwards' mapping: row/pad to channel; code cleanup
[u/mrichter/AliRoot.git] / HLT / TPCLib / AliHLTTPCConfMapFit.h
index 447848a180b9ee567e300000cc9c9a0c395bcbcd..5a188aeeb9990d3e3fb604fbbf38a5977d9a822f 100644 (file)
@@ -1,21 +1,42 @@
 // @(#) $Id$
 // Original: AliHLTConfMapFit.h,v 1.5 2004/07/05 09:03:11 loizides 
 
-#ifndef ALIHLTTPC_ConfMapFit
-#define ALIHLTTPC_ConfMapFit
+#ifndef ALIHLTTPCCONFMAPFIT_H
+#define ALIHLTTPCCONFMAPFIT_H
+
+/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ * See cxx source for full Copyright notice                               */
+
+/** @file   AliHLTTPCConfMapFit.h
+    @author Anders Vestbo, maintained by Matthias Richter
+    @date   
+    @brief  Fit class for conformal mapping tracking.
+*/
+
+// see below for class documentation
+// or
+// refer to README to build package
+// or
+// visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
 
 class AliHLTTPCConfMapTrack;
 class AliHLTTPCVertex;
 
+/** 
+ * @class AliHLTTPCConfMapFit
+ *
+ * Fit class for conformal mapping tracking
+ *
+ */
 class AliHLTTPCConfMapFit {
 
- private:
-  AliHLTTPCConfMapTrack *fTrack; //!
-  AliHLTTPCVertex *fVertex; //!
-  
  public:
+  /** default constructor */
+  AliHLTTPCConfMapFit();
+  /** constructor */
   AliHLTTPCConfMapFit (AliHLTTPCConfMapTrack *track,AliHLTTPCVertex *vertex);
-  virtual ~AliHLTTPCConfMapFit() {};
+  /** destructor */
+  virtual ~AliHLTTPCConfMapFit();
 
   // helix fit
   Int_t FitHelix();
@@ -27,7 +48,16 @@ class AliHLTTPCConfMapFit {
   Int_t FitLineXY();
   Int_t FitLineSZ();
   
+ private:
+  /** copy constructor prohibited */
+  AliHLTTPCConfMapFit(const AliHLTTPCConfMapFit&);
+  /** assignment operator prohibited */
+  AliHLTTPCConfMapFit& operator=(const AliHLTTPCConfMapFit&);
+
+  AliHLTTPCConfMapTrack *fTrack; //!
+  AliHLTTPCVertex *fVertex; //!
+  
   ClassDef(AliHLTTPCConfMapFit,1) //Conformal mapping fit class
 };
 
-#endif
+#endif // ALIHLTTPCCONFMAPFIT_H