11 #include "StFttRawHit.h"
27 mQuadrant(kFttUnknownQuadrant),
30 mOrientation(kFttUnknownOrientation),
36 UChar_t mVMM, UChar_t mChannel, UShort_t mADC,
37 UShort_t mBCID, Short_t mTB, Short_t mBCIDDelta){
38 setRaw( mSector, mRDO, mFEB, mVMM, mChannel, mADC, mBCID, mTB, mBCIDDelta);
41 void StFttRawHit::setRaw( UChar_t mSector, UChar_t mRDO, UChar_t mFEB,
42 UChar_t mVMM, UChar_t mChannel, UShort_t mADC,
43 UShort_t mBCID, Short_t mTB, Short_t mBCIDDelta){
44 this->mSector = mSector;
48 this->mChannel = mChannel;
52 this->mBCIDDelta = mBCIDDelta;
55 void StFttRawHit::setMapping( UChar_t mPlane, UChar_t mQuadrant,
56 UChar_t mRow, UChar_t mStrip, UChar_t mOrientation ){
57 this->mPlane = mPlane;
58 this->mQuadrant = mQuadrant;
60 this->mStrip = mStrip;
61 this->mOrientation = mOrientation;
69 os <<
" StFttRawHit( " << endl;
70 os <<
"\tmSector = " << (int)rh.sector() << endl;
71 os <<
"\tmRDO = " << (int)rh.rdo() << endl;
72 os <<
"\tmFEB = " << (int)rh.feb() << endl;
73 os <<
"\tmVMM = " << (int)rh.vmm() << endl;
74 os <<
"\tmChannel = " << (int)rh.channel() << endl;
75 os <<
"\tmADC = " << (int)rh.adc() << endl;
76 os <<
"\tmBCID = " << (int)rh.bcid() << endl;
77 os <<
"\tmBCIDDelta = " << (int)rh.dbcid() << endl;
78 os <<
"\tmTB = " << (int)rh.tb() << endl;
79 os <<
"\tmTime = " << (int)rh.time() << endl;
80 os <<
"\tmPlane = " << (int)rh.plane() << endl;
81 os <<
"\tmQuadrant = " << (int)rh.quadrant() << endl;
82 os <<
"\tmRow = " << (int)rh.row() << endl;
83 os <<
"\tmStrip = " << (int)rh.strip() << endl;
84 os <<
"\tmOrientation = " << (int)rh.orientation() << endl;
85 os <<
"\tidTruth = " << (int)rh.idTruth() << endl;
86 os <<
"\tqaTruth = " << (int)rh.qaTruth() << endl;
StFttRawHit()
Default constructor.