#include <LinkBoardPackedStrip.h>
Public Member Functions | |
int | febInLB () const |
LinkBoardPackedStrip (int febInLB, int stripPinInFeb) | |
LinkBoardPackedStrip (int packedStripLB) | |
int | packedStrip () const |
int | stripPinInFeb () const |
Private Attributes | |
int | thePackedStrip |
Definition at line 4 of file LinkBoardPackedStrip.h.
LinkBoardPackedStrip::LinkBoardPackedStrip | ( | int | packedStripLB | ) | [inline] |
Definition at line 7 of file LinkBoardPackedStrip.h.
: thePackedStrip(packedStripLB) { }
LinkBoardPackedStrip::LinkBoardPackedStrip | ( | int | febInLB, |
int | stripPinInFeb | ||
) | [inline] |
Definition at line 10 of file LinkBoardPackedStrip.h.
: thePackedStrip( (febInLB-1)*16+stripPinInFeb-1) { }
int LinkBoardPackedStrip::febInLB | ( | ) | const [inline] |
Definition at line 13 of file LinkBoardPackedStrip.h.
References thePackedStrip.
Referenced by RPCReadOutMapping::detUnitFrame().
{ return thePackedStrip/16+1; }
int LinkBoardPackedStrip::packedStrip | ( | ) | const [inline] |
Definition at line 15 of file LinkBoardPackedStrip.h.
References thePackedStrip.
Referenced by RPCRecordFormatter::recordPack().
{ return thePackedStrip; }
int LinkBoardPackedStrip::stripPinInFeb | ( | ) | const [inline] |
Definition at line 14 of file LinkBoardPackedStrip.h.
References thePackedStrip.
Referenced by RPCReadOutMapping::detUnitFrame().
{ return thePackedStrip%16+1; }
int LinkBoardPackedStrip::thePackedStrip [private] |
Definition at line 18 of file LinkBoardPackedStrip.h.
Referenced by febInLB(), packedStrip(), and stripPinInFeb().