]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/mapping/AliMpConnection.h
Comments for Doxygen (mostly added comments for inline functions)
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpConnection.h
CommitLineData
dee1d5f1 1/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2 * See cxx source for full Copyright notice */
3
5f91c9e8 4// $Id$
13985652 5// $MpId: AliMpConnection.h,v 1.9 2006/05/24 13:58:18 ivana Exp $
dee1d5f1 6
7/// \ingroup motif
8/// \class AliMpConnection
9/// \brief A connection properties.
10///
13985652 11/// \author David Guez, Ivana Hrivnacova; IPN Orsay
5f91c9e8 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
2a7ea2e6 21#include <TString.h>
22
5f91c9e8 23class 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
f5671fc3 32 //
5f91c9e8 33 // accessors
f5671fc3 34 //
35 /// Return Berg connector number
5f91c9e8 36 Int_t GetBergNum() const {return fBergNum;}
f5671fc3 37 /// Return kapton connector number
5f91c9e8 38 Int_t GetKaptonNum() const {return fKaptonNum;}
f5671fc3 39 /// Return Gassiplex channel number
5f91c9e8 40 Int_t GetGassiNum() const {return fGassiNum;}
f5671fc3 41 /// Return pad number
5f91c9e8 42 Int_t GetPadNum() const {return fPadNum;}
f5671fc3 43 /// Return the motif type which contains this connection
5f91c9e8 44 AliMpMotifType *GetOwner() const {return fOwner;}
45
46 AliMpIntPair LocalIndices() const;
47 TString PadName() const;
f5671fc3 48
49 //
5f91c9e8 50 // modifiers
f5671fc3 51 //
71a2d3aa 52
53 /// Set Gassiplex channel number
54 void SetGassiNum(Int_t n) { fGassiNum = n; }
f5671fc3 55 /// Set the motif type which contains this connection
5f91c9e8 56 void SetOwner(AliMpMotifType *owner) {fOwner=owner;}
57
13e7956b 58 private:
f5671fc3 59 /// Not implemented
2998a151 60 AliMpConnection(const AliMpConnection& right);
f5671fc3 61 /// Not implemented
2998a151 62 AliMpConnection& operator=(const AliMpConnection& right);
13e7956b 63
5f91c9e8 64 // data members
829425a5 65 Int_t fPadNum; ///< Pad number
66 Int_t fBergNum; ///< Berg connector number
67 Int_t fKaptonNum; ///< Kapton connector number
68 Int_t fGassiNum; ///< Gassiplex channel number
69 AliMpMotifType *fOwner; ///< The motif type which contains this connection
5f91c9e8 70
71 ClassDef(AliMpConnection,1) // Connection description
72};
73
74// inline functions
75
f5671fc3 76 /// Return the pad number converted to a name
5f91c9e8 77inline TString AliMpConnection::PadName() const
78{ return fOwner->PadName(fPadNum); }
79
f5671fc3 80 /// Return the local indices of this pad in the motif
5f91c9e8 81inline AliMpIntPair AliMpConnection::LocalIndices() const
82{ return fOwner->FindLocalIndicesByConnection(this);}
83
84#endif //ALI_MP_CONNECTION_H