]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - RICH/AliRICHReconstructor.h
inital import
[u/mrichter/AliRoot.git] / RICH / AliRICHReconstructor.h
diff --git a/RICH/AliRICHReconstructor.h b/RICH/AliRICHReconstructor.h
new file mode 100644 (file)
index 0000000..1a55b57
--- /dev/null
@@ -0,0 +1,25 @@
+#ifndef AliRICHReconstructor_h
+#define AliRICHReconstructor_h
+
+/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ * See cxx source for full Copyright notice                               */
+
+/* $Id: */
+
+#include <TTask.h>
+#include <TROOT.h>
+
+class AliRICHReconstructor: public TTask 
+{
+public:
+// ctor & dtor:      
+   AliRICHReconstructor(){} 
+   AliRICHReconstructor(const char *sName,const char *sTitle):TTask(sName,sTitle)
+        {gROOT->GetListOfTasks()->Add(this);gROOT->GetListOfBrowsables()->Add(this);}  
+   virtual ~AliRICHReconstructor(){}
+// The following staff is defined in .cxx:   
+   virtual void  Exec(Option_t *option);
+protected:
+   ClassDef(AliRICHReconstructor,1)     // Digits or Clusters to RecoClonesArray 
+};
+#endif // AliRICHReconstructor_h