Skip to content
Snippets Groups Projects

feat(functor): add functor data dependencies to ExtraInputs property of owning algorithm

Merged Christoph Hasse requested to merge chasse_Functor_JIT into master
1 file
+ 6
1
Compare changes
  • Side-by-side
  • Inline
@@ -140,7 +140,12 @@ preprocessor = (
r'.*SUCCESS (Exceptions/Errors/Warnings/Infos Statistics :| #WARNINGS =| #ERRORS =|List of booked \dD histograms in directory).*'
) +
# TODO To be removed when GaudiAlgorithm is gone and thus this output line is no more present
SortGroupOfLines(r'CompareTracksTr.*DEBUG Changing \S* to \S*'))
SortGroupOfLines(r'CompareTracksTr.*DEBUG Changing \S* to \S*') +
RegexpReplacer( # normalize any timing prints
when="INFO",
orig=r'\d+\.*\d*(\s+(ns|us|ms|seconds|s|minutes|min)(\s+|\.|$))',
repl=r'n\1',
))
try:
from DDDB.Configuration import GIT_CONDDBS
Loading