]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliTPCFast.h
Splitting TPC library (T.Kuhr)
[u/mrichter/AliRoot.git] / TPC / AliTPCFast.h
diff --git a/TPC/AliTPCFast.h b/TPC/AliTPCFast.h
new file mode 100644 (file)
index 0000000..6a3c845
--- /dev/null
@@ -0,0 +1,31 @@
+#ifndef ALITPCFAST_H
+#define ALITPCFAST_H
+/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ * See cxx source for full Copyright notice                               */
+
+/* $Id$ */
+
+////////////////////////////////////////////////
+//  fast TPC cluster simulation               //
+////////////////////////////////////////////////
+
+#include <TObject.h>
+
+class AliRunLoader;
+class AliTPCClustersArray;
+
+
+class AliTPCFast : public TObject {
+
+public:
+  void Hits2Clusters(AliRunLoader* runLoader) const;
+  void Hits2ExactClustersSector(AliRunLoader* runLoader,
+                               AliTPCClustersArray* clustersArray,
+                               Int_t isec) const;
+  void FindTrackHitsIntersection(AliRunLoader* runLoader,
+                                AliTPCClustersArray* clustersArray) const;
+
+  ClassDef(AliTPCFast,0)  // fast TPC cluster simulation
+};
+
+#endif