Skip to content
Snippets Groups Projects
Commit 142953c7 authored by sutt's avatar sutt
Browse files

Enhance TDT feature retrieval by allowing regex matching

In order to allow exact matching, replace the approximate, default and impossible to turn
off matching with more precise regex matching so that either exact, or approximate matches
me used as the developer wishes
parent 9a50865e
No related branches found
No related tags found
7 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!37019Enhance TDT feature retrieval by allowing regex matching,!36437Enhance TDT feature retrieval by allowing regex matching
......@@ -3,6 +3,7 @@
*/
#include "AsgMessaging/MessageCheck.h"
#include <regex>
namespace TrigCompositeUtils {
......@@ -139,7 +140,18 @@ namespace TrigCompositeUtils {
return;
}
auto it = std::remove_if(vector.begin(), vector.end(), [&](const ElementLink<CONTAINER>& el) {
return (el.dataID().find(containerSGKey) == std::string::npos);
bool oldmatch = ( el.dataID().find(containerSGKey) == std::string::npos);
bool newmatch = !std::regex_match( el.dataID(), std::regex(containerSGKey) );
// ANA_MSG_WARNING ( "Strict match violation" << el.dataID() << " : " << containerSGKey );
if ( oldmatch!=newmatch ) std::cerr << "SUTT:: Strict match violation" << el.dataID() << " : " << containerSGKey << std::endl;;
return !std::regex_match( el.dataID(), std::regex(containerSGKey) );
// return (el.dataID().find(containerSGKey) == std::string::npos);
});
// Collection has been re-ordered to put the bad elements at the end
vector.erase(it, vector.end());
......
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