]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONSegmentManuIndex.h
Using TGeo as default transport package
[u/mrichter/AliRoot.git] / MUON / AliMUONSegmentManuIndex.h
CommitLineData
74f8c8e3 1#ifndef ALIMUONSEGMENTMANUINDEX_H
2#define ALIMUONSEGMENTMANUINDEX_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// Segment element indexing in a detection element for electronics
10// Gines MARTINEZ, SUBATECH July 04
11// This class is the basic component of
12// AliMUONSegmentationDetectionElement and contains al the
13// info about a segment (pad or strip):
14// Id-indetectionelement, #manu, #manuchannel
15// Detailed information in Alice Technical Note xxxxxxxx (2004)
16//====================================================================
17
18#include <TNamed.h>
19
212bb69d 20class TString;
74f8c8e3 21
22class AliMUONSegmentManuIndex : public TNamed {
23 public:
24 AliMUONSegmentManuIndex();
5d0435dd 25 AliMUONSegmentManuIndex(Int_t channelId, Int_t manuId, Int_t busPatchId, Int_t manuChannelId);
74f8c8e3 26
27 virtual ~AliMUONSegmentManuIndex();
28
29 Int_t Compare(const TObject *obj) const;
30
31 Int_t GetChannelId() const{return fChannelId;}
32 Int_t GetManuId() const{return fManuId;}
33 Int_t GetBusPatchId() const{return fBusPatchId;}
34 Int_t GetManuChannelId() const{return fManuChannelId;}
212bb69d 35
36 static TString Name(Int_t manuId, Int_t manuchannel);
74f8c8e3 37
f1501d74 38 void SetBusPatchId(Int_t b) {fBusPatchId = b;}
337c9041 39 void Print(const char* opt="") const;
74f8c8e3 40
41 private:
42 Int_t fChannelId; // Id of the channel within the detection element
43 Int_t fManuId; // Manu id in the detection element
44 Int_t fBusPatchId; // BusPatchId in the detection element up to 4 for slats
45 Int_t fManuChannelId; // ChannelId in the manu card 1-64
46
47 ClassDef(AliMUONSegmentManuIndex,1) // Segmenation for MUON detection elements
48
49};
50
51#endif
52
53
54
55
56
57