]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/mapping/AliMpBusPatch.h
Added number of manus per patch module (needed for Crocus configuration)
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpBusPatch.h
1 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2  * See cxx source for full Copyright notice                               */
3
4 // $Id$
5 // $MpId: $ 
6
7 /// \ingroup management
8 /// \class AliMpBusPatch
9 /// \brief The class defines the properties of BusPatch
10 ///
11 /// \author Ivana Hrivnacova, IPN Orsay
12
13 #ifndef ALI_MP_BUS_PATCH_H
14 #define ALI_MP_BUS_PATCH_H
15
16 #include <TObject.h>
17
18 #include "AliMpArrayI.h"
19
20 class AliMpBusPatch : public  TObject {
21
22   public:
23     AliMpBusPatch(Int_t id, Int_t deId, Int_t ddlId);
24     AliMpBusPatch(TRootIOCtor* /*ioCtor*/);
25     virtual ~AliMpBusPatch();
26
27     // static methods
28     static Int_t GetGlobalBusID(Int_t localID, Int_t ddlID);
29     static Int_t GetLocalBusID(Int_t globalID, Int_t ddlID);
30
31     // methods 
32     Bool_t AddManu(Int_t manuId);
33     Bool_t SetNofManusPerModule();
34
35     // get methods
36     Int_t  GetId() const;
37     Int_t  GetDEId() const;
38     Int_t  GetDdlId() const;
39     Int_t  GetNofManus() const;
40     Int_t  GetManuId(Int_t index) const;
41     Bool_t HasManu(Int_t manuId) const;
42     
43     Int_t  GetNofPatchModules() const;
44     Int_t  GetNofManusPerModule(Int_t patchModule) const;
45     
46
47   private:
48     /// Not implemented
49     AliMpBusPatch();
50     /// Not implemented
51     AliMpBusPatch(const AliMpBusPatch& rhs);
52     /// Not implemented
53     AliMpBusPatch& operator=(const AliMpBusPatch& rhs);
54
55     // static data members      
56     static const Int_t  fgkOffset; ///< Offset for conversion global/local ID  
57
58     // data members     
59     Int_t        fId;    ///< Identifier (unique)
60     Int_t        fDEId;  ///< Detection element to which this bus patch is connected
61     Int_t        fDdlId; ///< DDL to which this bus patch is connected
62     AliMpArrayI  fManus; ///< Manu Ids connected to this bus patch
63     AliMpArrayI  fNofManusPerModule;///< Nof Manus per patch modules (PCBs)
64     
65   ClassDef(AliMpBusPatch,1)  // The class collectiong electronics properties of DDL
66 };
67
68 // inline functions
69
70 /// Return the unique Id
71 inline Int_t AliMpBusPatch::GetId() const
72 {  return fId; }
73
74 /// Return the Detection element Id
75 inline Int_t AliMpBusPatch::GetDEId() const
76 {  return fDEId; }
77
78 /// Return the Ddl  Id
79 inline Int_t AliMpBusPatch::GetDdlId() const
80 {  return fDdlId; }
81
82 #endif //ALI_BUS_PATCH_H
83
84
85
86
87
88
89
90
91
92
93
94
95
96