]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/MUONCDB.h
bd167817cbd6b730edfd99cf78602907d75d6af2
[u/mrichter/AliRoot.git] / MUON / MUONCDB.h
1 #ifndef MUONCDB_H
2 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  * See cxx source for full Copyright notice                               */
4
5 /* $Id$ */
6
7 /// By Laurent Aphecetche
8
9 class TList;
10
11 TList* padList(Bool_t reset=kFALSE);
12
13 class Triplet : public TObject
14 {
15 public:
16   Triplet(Int_t detElemId=0, Int_t manuId=0, Int_t manuChannel=0)
17   : TObject(),fDetElemId(detElemId),fManuId(manuId),fManuChannel(manuChannel)
18 {}
19   virtual ~Triplet() {}
20   
21   Int_t DetElemId() const { return fDetElemId; }
22   Int_t ManuId() const { return fManuId; }
23   Int_t ManuChannel() const { return fManuChannel; }
24   
25 private:
26     Int_t fDetElemId;
27   Int_t fManuId;
28   Int_t fManuChannel;
29   ClassDef(Triplet,1)
30 };
31
32
33 #endif