]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliSegmentID.h
Removing CONTAINERS. The classes needed by TPC: AliDigits, AliSegmentArray, AliSegmen...
[u/mrichter/AliRoot.git] / TPC / AliSegmentID.h
diff --git a/TPC/AliSegmentID.h b/TPC/AliSegmentID.h
new file mode 100644 (file)
index 0000000..3da7ee3
--- /dev/null
@@ -0,0 +1,27 @@
+#ifndef ALISEGMENTID_H
+#define ALISEGMENTID_H
+/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ * See cxx source for full Copyright notice                               */
+
+/* $Id$ */
+
+////////////////////////////////////////////////
+//  Manager class generaol Alice segment 
+//  segment is for example one pad row in TPC //
+////////////////////////////////////////////////
+
+#include "TObject.h"
+
+class AliSegmentID: public TObject{
+public:
+  AliSegmentID();
+  AliSegmentID(Int_t index){fSegmentID = index;}
+  Int_t GetID() {return fSegmentID;}
+  void  SetID(Int_t index){fSegmentID = index;} 
+protected:
+  Int_t fSegmentID;   //identification number of Segment
+  ClassDef(AliSegmentID,1) 
+};
+   
+#endif //ALISEGMENTID_H
+