Skip to content
Snippets Groups Projects
Commit b0443f86 authored by Imma Riu's avatar Imma Riu
Browse files

Merge branch 'demote-prefetching-info' into '21.1'

demote a per invocation INFO message a cleanup of unneeded code

See merge request !4268
parents e73ec67c a07a97ce
No related merge requests found
...@@ -532,9 +532,8 @@ namespace InDet{ ...@@ -532,9 +532,8 @@ namespace InDet{
//-------------------------------- //--------------------------------
HLT::ErrorCode TRT_TrgRIO_Maker::prepareRobRequests(const HLT::TriggerElement* inputTE){ HLT::ErrorCode TRT_TrgRIO_Maker::prepareRobRequests(const HLT::TriggerElement* inputTE){
ATH_MSG_INFO( "TRT_TrgRIO_Maker::prepareRobRequests()" ); ATH_MSG_DEBUG( "TRT_TrgRIO_Maker::prepareRobRequests()" );
//Calculate ROBs needed - this code should be shared with hltExecute to avoid slightly different requests
const TrigRoiDescriptor* roi = 0; const TrigRoiDescriptor* roi = 0;
if (getFeature(inputTE, roi) != HLT::OK || roi == 0){ if (getFeature(inputTE, roi) != HLT::OK || roi == 0){
...@@ -542,15 +541,10 @@ namespace InDet{ ...@@ -542,15 +541,10 @@ namespace InDet{
return HLT::NAV_ERROR; return HLT::NAV_ERROR;
} }
ATH_MSG_DEBUG( "REGTEST prepareROBs / event RoI ID " << roi->roiId() ATH_MSG_DEBUG( "REGTEST prepareROBs / event RoI " << *roi);
<< " located at phi = " << roi->phi()
<< ", eta = " << roi->eta() );
//const TrigRoiDescriptor fs(true);
std::vector<unsigned int> uIntListOfRobs; std::vector<unsigned int> uIntListOfRobs;
m_regionSelector->DetROBIDListUint( TRT, *roi, uIntListOfRobs ); m_regionSelector->DetROBIDListUint( TRT, *roi, uIntListOfRobs );
//m_regionSelector->DetROBIDListUint( TRT, fs, uIntListOfRobs );
ATH_MSG_DEBUG( "list of pre-registered ROB ID in TRT: "); ATH_MSG_DEBUG( "list of pre-registered ROB ID in TRT: ");
for(auto i : uIntListOfRobs) for(auto i : uIntListOfRobs)
......
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