#include <CondFormats/RPCObjects/interface/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 10 of file LinkBoardPackedStrip.h.
00011 : 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().
00013 { return thePackedStrip/16+1; }
int LinkBoardPackedStrip::packedStrip | ( | ) | const [inline] |
Definition at line 15 of file LinkBoardPackedStrip.h.
References thePackedStrip.
Referenced by RPCRecordFormatter::recordPack().
00015 { return thePackedStrip; }
int LinkBoardPackedStrip::stripPinInFeb | ( | ) | const [inline] |
Definition at line 14 of file LinkBoardPackedStrip.h.
References thePackedStrip.
Referenced by RPCReadOutMapping::detUnitFrame().
00014 { return thePackedStrip%16+1; }
int LinkBoardPackedStrip::thePackedStrip [private] |
Definition at line 18 of file LinkBoardPackedStrip.h.
Referenced by febInLB(), packedStrip(), and stripPinInFeb().