67 #ifndef _ST_MU_FGT_STRIP_H_
68 #define _ST_MU_FGT_STRIP_H_
71 #include "StFgtUtil/StFgtConsts.h"
90 Int_t getGeoId()
const;
91 Int_t getAdcStartIdx()
const;
92 Short_t getNumSavedTimeBins()
const;
93 Short_t getClusterSeedType()
const;
94 Float_t getCharge()
const;
95 Float_t getChargeUncert()
const;
98 void setGeoId ( Int_t geoId );
99 void setAdcInfo ( Int_t adcIdx, Short_t numAdc );
100 void setClusterSeedType ( Short_t type );
101 void setCharge ( Float_t charge );
102 void setChargeUncert ( Float_t uncert );
108 Short_t mNumSavedTimeBins;
109 Short_t mClusterSeedType;
111 Float_t mChargeUncert;
119 inline Int_t StMuFgtStrip::getGeoId()
const {
return mGeoId; };
120 inline Int_t StMuFgtStrip::getAdcStartIdx()
const {
return mAdcStartIdx; };
121 inline Short_t StMuFgtStrip::getNumSavedTimeBins()
const {
return mNumSavedTimeBins; };
122 inline Float_t StMuFgtStrip::getCharge()
const {
return mCharge; };
123 inline Float_t StMuFgtStrip::getChargeUncert()
const {
return mChargeUncert; };
124 inline Short_t StMuFgtStrip::getClusterSeedType()
const {
return mClusterSeedType; };
126 inline void StMuFgtStrip::setGeoId ( Int_t geoId ){ mGeoId = geoId; };
127 inline void StMuFgtStrip::setCharge ( Float_t charge ){ mCharge = charge; };
128 inline void StMuFgtStrip::setChargeUncert ( Float_t charge ){ mCharge = charge; };
129 inline void StMuFgtStrip::setClusterSeedType ( Short_t type ){ mClusterSeedType = type; };
131 inline void StMuFgtStrip::setAdcInfo( Int_t adcIdx, Short_t numAdc ) { mAdcStartIdx = adcIdx; mNumSavedTimeBins = numAdc; };