]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/MUONCDB.h
- Added handling of tracks and file mask (used when merging different files).
[u/mrichter/AliRoot.git] / MUON / MUONCDB.h
CommitLineData
b3c7c475 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
9class TList;
10
11TList* padList(Bool_t reset=kFALSE);
12
13class Triplet : public TObject
14{
15public:
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
25private:
26 Int_t fDetElemId;
27 Int_t fManuId;
28 Int_t fManuChannel;
29 ClassDef(Triplet,1)
30};
31
32
33#endif