]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/STEERBase/AliDetectorEventHeader.h
Moving the classes that belong to the following libraries: STEERBase, ESD, CDB, AOD...
[u/mrichter/AliRoot.git] / STEER / STEERBase / AliDetectorEventHeader.h
diff --git a/STEER/STEERBase/AliDetectorEventHeader.h b/STEER/STEERBase/AliDetectorEventHeader.h
new file mode 100644 (file)
index 0000000..9b33c99
--- /dev/null
@@ -0,0 +1,27 @@
+#ifndef ALIDETECTOREVENTHEADER_H
+#define ALIDETECTOREVENTHEADER_H
+
+/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ * See cxx source for full Copyright notice                               */
+
+/* $Id$ */
+
+//---------------------------------------------------------------------
+// Event header base class for detetors 
+// Stores detector specific information
+// Author: andreas.morsch@cern.ch
+//---------------------------------------------------------------------
+
+#include <TNamed.h>
+class AliDetectorEventHeader : public TNamed
+{
+ public:
+
+  AliDetectorEventHeader(const char* name);
+  AliDetectorEventHeader();
+  virtual ~AliDetectorEventHeader() {}
+protected:
+  ClassDef(AliDetectorEventHeader,0) // Event header for detectors
+};
+
+#endif