]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/mapping/AliMpConnection.h
Update manu serial number files (Christian)
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpConnection.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: AliMpConnection.h,v 1.9 2006/05/24 13:58:18 ivana Exp $
6
7 /// \ingroup motif
8 /// \class AliMpConnection
9 /// \brief A connection properties.
10 ///
11 /// \author David Guez, Ivana Hrivnacova; IPN Orsay
12
13 #ifndef ALI_MP_CONNECTION_H
14 #define ALI_MP_CONNECTION_H
15
16 #include <TObject.h>
17
18 #include "AliMpMotifType.h"
19 #include "AliMpIntPair.h"
20
21 #include <TString.h>
22
23 class AliMpConnection : public TObject
24 {
25   public:
26     AliMpConnection();
27     AliMpConnection(Int_t padNum,Int_t bergNum,Int_t kaptonNum,Int_t gassiNum);
28     virtual ~AliMpConnection();
29
30     // methods
31
32     // accessors
33     Int_t GetBergNum()   const {return fBergNum;}
34     Int_t GetKaptonNum() const {return fKaptonNum;}
35     Int_t GetGassiNum()  const {return fGassiNum;}
36     Int_t GetPadNum()  const {return fPadNum;}
37     AliMpMotifType *GetOwner() const {return fOwner;}
38     
39     void SetGassiNum(Int_t n) { fGassiNum = n; }
40     
41     AliMpIntPair LocalIndices() const;
42     TString  PadName() const;
43     // modifiers
44     void SetOwner(AliMpMotifType *owner) {fOwner=owner;}
45
46   private:
47     AliMpConnection(const AliMpConnection& right);
48     AliMpConnection& operator=(const AliMpConnection& right);
49
50     // data members
51     Int_t fPadNum;    ///< Pad number
52     Int_t fBergNum;   ///< Berg connector number
53     Int_t fKaptonNum; ///< Kapton connector number
54     Int_t fGassiNum;  ///< Gassiplex channel number
55     AliMpMotifType *fOwner; ///< The motif type which contains this connection
56
57   ClassDef(AliMpConnection,1)  // Connection description
58 };
59
60 // inline functions
61
62 inline TString AliMpConnection::PadName() const 
63 { return fOwner->PadName(fPadNum); }
64
65 inline AliMpIntPair AliMpConnection::LocalIndices() const
66 { return fOwner->FindLocalIndicesByConnection(this);}
67
68 #endif //ALI_MP_CONNECTION_H