Skip to content
Snippets Groups Projects
Commit c8fc17e9 authored by Marco Clemencic's avatar Marco Clemencic
Browse files

updated to match v29r8 tag in svn

parent 55decb79
No related branches found
No related tags found
No related merge requests found
......@@ -48,8 +48,8 @@ StatusCode DigitQC::initialize()
if ( sc.isFailure() ) { return sc; }
// acquire tools
acquireTool( "RichSmartIDTool" , m_smartIDs, NULL, true );
acquireTool( "RichMCTruthTool", m_mcTool, NULL, true );
acquireTool( "RichSmartIDTool" , m_smartIDs, 0, true );
acquireTool( "RichMCTruthTool", m_mcTool, 0, true );
// RichDet
m_richSys = getDet<DeRichSystem>( DeRichLocations::RichSystem );
......
......@@ -50,7 +50,7 @@ StatusCode MCRichDigitSummaryAlg::initialize()
if ( sc.isFailure() ) { return sc; }
// tool
acquireTool( "RichMCTruthTool", m_truth, NULL, true );
acquireTool( "RichMCTruthTool", m_truth, 0, true );
if ( !m_storeSpill )
info() << "Will only store MCParticle references for main event" << endreq;
......
......@@ -45,7 +45,7 @@ StatusCode MCRichDigitsToRawBufferAlg::initialize()
if ( sc.isFailure() ) { return sc; }
// acquire tools
acquireTool( "RichRawDataFormatTool", m_rawFormatT, NULL, true );
acquireTool( "RichRawDataFormatTool", m_rawFormatT, 0, true );
info() << "Using RICH Level1 buffer format : " << m_version << endmsg;
......
......@@ -46,7 +46,7 @@ StatusCode MCRichHitsToRawBufferAlg::initialize()
if ( sc.isFailure() ) { return sc; }
// acquire tools
acquireTool( "RichRawDataFormatTool", m_rawFormatT, NULL, true );
acquireTool( "RichRawDataFormatTool", m_rawFormatT, 0, true );
info() << "Using RICH Level1 buffer format : " << m_version << endmsg;
......
......@@ -63,7 +63,7 @@ StatusCode DetailedFrontEndResponse::initialize()
// create a collection of all pixels
const Rich::ISmartIDTool * smartIDs(NULL);
acquireTool( "RichSmartIDTool" , smartIDs, NULL, true );
acquireTool( "RichSmartIDTool" , smartIDs, 0, true );
const LHCb::RichSmartID::Vector & pixels = smartIDs->readoutChannelList();
if ( msgLevel(MSG::DEBUG) )
debug() << "Retrieved " << pixels.size() << " pixels in active list" << endmsg;
......
......@@ -49,8 +49,8 @@ StatusCode AlgMoni::initialize()
if ( sc.isFailure() ) { return sc; }
// get tools
acquireTool( "RichSmartIDTool", m_smartIDTool, NULL, true );
acquireTool( "RichMCTruthTool", m_mcTool, NULL, true );
acquireTool( "RichSmartIDTool", m_smartIDTool, 0, true );
acquireTool( "RichMCTruthTool", m_mcTool, 0, true );
// RichDet
m_richSys = getDet<DeRichSystem>( DeRichLocations::RichSystem );
......
......@@ -44,7 +44,7 @@ StatusCode SimpleChargeSharing::initialize()
}
// tools
acquireTool( "RichSmartIDTool", m_smartIDTool, NULL, true );
acquireTool( "RichSmartIDTool", m_smartIDTool, 0, true );
// printout
info() << "Will add charge sharing at " << 100*m_shareFrac << " % level" << endmsg;
......
......@@ -50,7 +50,7 @@ StatusCode SimpleFrontEndResponse::initialize()
// create a collection of all pixels
const Rich::ISmartIDTool * smartIDs = NULL;
acquireTool( "RichSmartIDTool" , smartIDs, NULL, true );
acquireTool( "RichSmartIDTool" , smartIDs, 0, true );
const LHCb::RichSmartID::Vector & pixels = smartIDs->readoutChannelList();
actual_base = theRegistry.GetNewBase( pixels );
releaseTool( smartIDs );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment