Skip to content
Snippets Groups Projects
Commit 54bbba88 authored by Ryan Mackenzie White's avatar Ryan Mackenzie White Committed by Graeme Stewart
Browse files

remove rawdataTool (TrigTRTHighTHitCounter-00-00-30)

	* Remove TrigTRT_DriftCircleProviderTool
	* ATR-15839
	* TrigTRTHighTHitCounter-00-00-30


Former-commit-id: 46662a0bab9eb86b58121c093c2e9a364c80c7e8
parent 51b8a216
No related branches found
Tags release/21.0.16
No related merge requests found
......@@ -9,7 +9,6 @@
#include "InDetIdentifier/TRT_ID.h"
#include "Identifier/IdentifierHash.h"
#include "InDetPrepRawData/TRT_DriftCircleContainer.h"
#include "TrigInDetToolInterfaces/ITrigTRT_DriftCircleProvider.h"
#include "TrigCaloEvent/TrigEMCluster.h"
#include "xAODTrigRinger/TrigRNNOutput.h"
......@@ -55,7 +54,6 @@ TrigTRTHTHCounter::TrigTRTHTHCounter(const std::string& name, ISvcLocator* pSvcL
m_detStore("DetectorStore", name),
m_storeGate("StoreGateSvc", name),
m_trtHelper(0),
m_rawDataTool("TrigTRT_DriftCircleProviderTool"),
m_phiHalfWidth(0.1),
m_etaHalfWidth(0.1),
m_doFullScan(false),
......@@ -69,7 +67,6 @@ TrigTRTHTHCounter::TrigTRTHTHCounter(const std::string& name, ISvcLocator* pSvcL
{
declareProperty("TRT_DC_ContainerName", m_trtDCContainerName = "TRT_TrigDriftCircles" );
declareProperty("TrtDataProviderTool", m_rawDataTool, "TrigTRT_DriftCircleProviderTool");
declareProperty("EtaHalfWidth", m_etaHalfWidth); //Used to define subsection of RoI (to retrieve fewer TRT hits)
declareProperty("PhiHalfWidth", m_phiHalfWidth); //Used to define subsection of RoI (to retrieve fewer TRT hits)
declareProperty("doFullScan", m_doFullScan); //Whether to use all RoI (not implmented)
......@@ -111,14 +108,6 @@ HLT::ErrorCode TrigTRTHTHCounter::hltInitialize() {
return StatusCode::FAILURE;
} else
ATH_MSG_INFO ( "Retrieved service " << m_trtHelper);
// Get TrigTRT_DriftCircleProviderTool
if( m_rawDataTool.retrieve().isFailure() ){
ATH_MSG_FATAL ( "Failed to retrieve " << m_rawDataTool);
return StatusCode::FAILURE;
} else
ATH_MSG_INFO ( "Retrieved service " << m_rawDataTool);
ATH_MSG_INFO ( " TrigTRTHTHCounter initialized successfully");
......
......@@ -49,7 +49,6 @@ class TrigTRTHTHCounter: public HLT::FexAlgo {
ToolHandle<ITrigTRT_DriftCircleProviderTool> m_rawDataTool;
std::vector<int> m_trtDataErrors;
/** A pointer to the DriftCircles container */
......
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