]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/AliSegmentID.h
Adding charge and position corrections as a function of relative position to the...
[u/mrichter/AliRoot.git] / TPC / AliSegmentID.h
1 #ifndef ALISEGMENTID_H
2 #define ALISEGMENTID_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 ////////////////////////////////////////////////
9 //  Manager class generaol Alice segment 
10 //  segment is for example one pad row in TPC //
11 ////////////////////////////////////////////////
12
13 #include "TObject.h"
14
15 class AliSegmentID: public TObject{
16 public:
17   AliSegmentID() : fSegmentID(0) {}
18   AliSegmentID(Int_t index) : fSegmentID(index) {}
19   Int_t GetID() {return fSegmentID;}
20   void  SetID(Int_t index){fSegmentID = index;} 
21 protected:
22   Int_t fSegmentID;   //identification number of Segment
23   ClassDef(AliSegmentID,1) 
24 };
25    
26 #endif //ALISEGMENTID_H
27