Skip to content
Snippets Groups Projects

remove unused UT code

Merged Gerhard Raven requested to merge ut-cleanup into master
Files
14
@@ -93,8 +93,7 @@ private:
LHCb::UTLiteCluster RawBankToUTClusterAlg::word2LiteCluster( const UTClusterWord aWord, const LHCb::UTChannelID chan,
const unsigned int fracStrip ) const {
return LHCb::UTLiteCluster( fracStrip, aWord.pseudoSizeBits(), aWord.hasHighThreshold(), chan,
( detType() == "UT" ) );
return LHCb::UTLiteCluster( fracStrip, aWord.pseudoSizeBits(), aWord.hasHighThreshold(), chan, true );
}
using namespace LHCb;
@@ -195,7 +194,8 @@ LHCb::UTSummary RawBankToUTClusterAlg::decodeBanks( const RawEvent& rawEvt, LHCb
++m_nBanksFound;
// get the board and data
UTTell1ID tell1ID = UTTell1ID( (unsigned int)bank->sourceID(), detType() == "UT" );
bool isUT = true;
UTTell1ID tell1ID = UTTell1ID( (unsigned int)bank->sourceID(), isUT );
const UTTell1Board* aBoard = readoutTool()->findByBoardID( tell1ID );
if ( !aBoard && !m_skipErrors ) {
Loading