Enhance TDT feature retrieval by allowing regex matching
- Oct 06, 2020
-
-
Tim Martin authored
-
Tim Martin authored
Conflicts: Trigger/TrigMonitoring/TrigMuonMonitoringMT/src/EFMuonMonMT.cxx Trigger/TrigMonitoring/TrigMuonMonitoringMT/src/MuonMatchingTool.cxx
-
- Sep 18, 2020
- Sep 16, 2020
-
-
sutt authored
-
sutt authored
A empty regex string will match no patterns, whereas as find for an empty string will match any pattern, so to maintain the expected behaviour of an empty string matching any key, this has to be handled separately
-
sutt authored
The check on the difference is whether the output from the find and the regex_match was different. However, if a regex is passed in, ie ".*SomeContainer" then a find for this and for the regex will be different, so we don't want to bother with this check for regexs
-
sutt authored
-
- Sep 15, 2020
-
-
sutt authored
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
-