]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliSegmentID.h
Added AddTrackParams() method for convenience + some comments
[u/mrichter/AliRoot.git] / TPC / AliSegmentID.h
CommitLineData
a46e9031 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
15class AliSegmentID: public TObject{
16public:
179c6296 17 AliSegmentID() : fSegmentID(0) {}
18 AliSegmentID(Int_t index) : fSegmentID(index) {}
a46e9031 19 Int_t GetID() {return fSegmentID;}
20 void SetID(Int_t index){fSegmentID = index;}
21protected:
22 Int_t fSegmentID; //identification number of Segment
23 ClassDef(AliSegmentID,1)
24};
25
26#endif //ALISEGMENTID_H
27