@@ -1335,7 +1335,7 @@ void CSCCathodeLCTProcessor::runCCLUT(CSCCLCTDigi& digi) const {
13351335 strm << " + Before CCCLUT algorithm: +\n " ;
13361336 strm << " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n " ;
13371337 strm << " Old CLCT digi " << digi << " \n " ;
1338- strm << " 1/4 strip bit " << digi.getQuartStrip () << " 1/8 strip bit " << digi.getEighthStrip () << " \n " ;
1338+ strm << " 1/4 strip bit " << digi.getQuartStripBit () << " 1/8 strip bit " << digi.getEighthStripBit () << " \n " ;
13391339 strm << " 1/4 strip number " << digi.getKeyStrip (4 ) << " 1/8 strip number " << digi.getKeyStrip (8 ) << " \n " ;
13401340 strm << " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n " ;
13411341 LogDebug (" CSCCathodeLCTProcessor" ) << strm.str ();
@@ -1411,8 +1411,8 @@ void CSCCathodeLCTProcessor::runCCLUT(CSCCLCTDigi& digi) const {
14111411
14121412 // store the new 1/2, 1/4 and 1/8 strip positions
14131413 digi.setStrip (halfstrip - digi.getCFEB () * CSCConstants::NUM_HALF_STRIPS_PER_CFEB);
1414- digi.setQuartStrip (std::get<1 >(stripoffset));
1415- digi.setEighthStrip (std::get<2 >(stripoffset));
1414+ digi.setQuartStripBit (std::get<1 >(stripoffset));
1415+ digi.setEighthStripBit (std::get<2 >(stripoffset));
14161416
14171417 // store the bending angle value in the pattern data member
14181418 digi.setSlope (slopeCCValue);
@@ -1428,7 +1428,7 @@ void CSCCathodeLCTProcessor::runCCLUT(CSCCLCTDigi& digi) const {
14281428 strm << " + CCCLUT algorithm results: +\n " ;
14291429 strm << " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n " ;
14301430 strm << " New CLCT digi " << digi << " \n " ;
1431- strm << " 1/4 strip bit " << digi.getQuartStrip () << " 1/8 strip bit " << digi.getEighthStrip () << " \n " ;
1431+ strm << " 1/4 strip bit " << digi.getQuartStripBit () << " 1/8 strip bit " << digi.getEighthStripBit () << " \n " ;
14321432 strm << " 1/4 strip number " << digi.getKeyStrip (4 ) << " 1/8 strip number " << digi.getKeyStrip (8 ) << " \n " ;
14331433 strm << " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n " ;
14341434 LogDebug (" CSCCathodeLCTProcessor" ) << strm.str ();
0 commit comments