diff --git a/InnerDetector/InDetCalibAlgs/PixelCalibAlgs/ChargeCalibration/pixel/MakeReferenceFile.cxx b/InnerDetector/InDetCalibAlgs/PixelCalibAlgs/ChargeCalibration/pixel/MakeReferenceFile.cxx
index 73ad05657ba92b99d15b4d71ee20cb7c01ae6815..4c585b2470a57edbfc203f540b81b0554ae06de4 100644
--- a/InnerDetector/InDetCalibAlgs/PixelCalibAlgs/ChargeCalibration/pixel/MakeReferenceFile.cxx
+++ b/InnerDetector/InDetCalibAlgs/PixelCalibAlgs/ChargeCalibration/pixel/MakeReferenceFile.cxx
@@ -323,7 +323,7 @@ int main(int argc, char *argv[])
     printf("%-11s: %s\n", "Output File",outputFileName.c_str()) ; 
     printf("%-11s: %s\n", "Last IOV"   ,useLastIOV ? "True" : "False");  
     printf("%-11s: %s\n", "IOV used"   ,useIOV.c_str()) ; 
-
+    
     int returnCode = 0;
     DbConnection connection(dbName);
     FolderSpec fs(folderName, tagName);
@@ -368,10 +368,10 @@ int main(int argc, char *argv[])
     else{    
         const std::string fileName = tagName + ".log";
         std::ofstream opFile(fileName);
+        printf("%-11s: %s\n", "RunNumber"   ,(myIOVs.back().first).c_str()) ; 
         opFile << myIOVs.back().second << "\n";
         opFile.close();
     }
 
-
     return returnCode;
 }
\ No newline at end of file
diff --git a/InnerDetector/InDetCalibAlgs/PixelCalibAlgs/ChargeCalibration/pixel/python/CheckValues.py b/InnerDetector/InDetCalibAlgs/PixelCalibAlgs/ChargeCalibration/pixel/python/CheckValues.py
index 9818015989b9b9b08fa2334bfb731b34c0e8b480..014587a6c65143a49b11e404ab9d21301620152c 100644
--- a/InnerDetector/InDetCalibAlgs/PixelCalibAlgs/ChargeCalibration/pixel/python/CheckValues.py
+++ b/InnerDetector/InDetCalibAlgs/PixelCalibAlgs/ChargeCalibration/pixel/python/CheckValues.py
@@ -1,6 +1,5 @@
 # Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
 
-from PixelCalibAlgs.Recovery import ReadDbFile
 from PixelCalibAlgs.EvoMonitoring import ReadCSV
 from matplotlib.backends.backend_agg import FigureCanvasAgg
 from matplotlib.figure import Figure
@@ -17,32 +16,37 @@ def CalculateTOT(Q,params):
 def CheckThresholds(calib):
     
     import os
-    os.makedirs("plots/values", exist_ok=True)
+    os.makedirs("plots/parameters", exist_ok=True)
     
     mapping = ReadCSV()
     
-    expectedTOTint = { "Blayer": {"normal":[],"long":[],"ganged":[]},
+    expectedTOTint = { "IBL": {"normal":[],"long":[]},
+                    "Blayer": {"normal":[],"long":[],"ganged":[]},
                     "L1"    : {"normal":[],"long":[],"ganged":[]},
                     "L2"    : {"normal":[],"long":[],"ganged":[]},
                     "Disk"  : {"normal":[],"long":[],"ganged":[]}}
-    CalibThreshold = { "Blayer": {"normal":[],"long":[],"ganged":[]},
+    CalibThreshold = { "IBL": {"normal":[],"long":[]},
+                    "Blayer": {"normal":[],"long":[],"ganged":[]},
                     "L1"    : {"normal":[],"long":[],"ganged":[]},
                     "L2"    : {"normal":[],"long":[],"ganged":[]},
                     "Disk"  : {"normal":[],"long":[],"ganged":[]}}
-    CalibRMS       = { "Blayer": {"normal":[],"long":[],"ganged":[]},
+    CalibRMS       = { "IBL": {"normal":[],"long":[]},
+                    "Blayer": {"normal":[],"long":[],"ganged":[]},
                     "L1"    : {"normal":[],"long":[],"ganged":[]},
                     "L2"    : {"normal":[],"long":[],"ganged":[]},
                     "Disk"  : {"normal":[],"long":[],"ganged":[]}}
-    CalibNoise     = { "Blayer": {"normal":[],"long":[],"ganged":[]},
+    CalibNoise     = { "IBL": {"normal":[],"long":[]},
+                    "Blayer": {"normal":[],"long":[],"ganged":[]},
                     "L1"    : {"normal":[],"long":[],"ganged":[]},
                     "L2"    : {"normal":[],"long":[],"ganged":[]},
                     "Disk"  : {"normal":[],"long":[],"ganged":[]}}
-    CalibIntime    = { "Blayer": {"normal":[],"long":[],"ganged":[]},
+    CalibIntime    = { "IBL": {"normal":[],"long":[]},
+                    "Blayer": {"normal":[],"long":[],"ganged":[]},
                     "L1"    : {"normal":[],"long":[],"ganged":[]},
                     "L2"    : {"normal":[],"long":[],"ganged":[]},
                     "Disk"  : {"normal":[],"long":[],"ganged":[]}}
     
-    
+    report = {}
     for mod, FEs in calib.items():
         mod_name = mapping[str(mod)]
         mod_layer = ""
@@ -56,77 +60,133 @@ def CheckThresholds(calib):
             mod_layer = "Disk"
         else:
             mod_layer = "IBL"
-            continue
             if mod_name.startswith("LI_S15"): 
-                continue        
+                continue  
         
-        for fe in FEs:
-            totint_nor = CalculateTOT(fe[3],fe[12:15])
-            totint_lon = CalculateTOT(fe[7],fe[15:18])
-            totint_gan = CalculateTOT(fe[11],fe[15:18])
-            
-            expectedTOTint[mod_layer]["normal"].append(totint_nor)
-            expectedTOTint[mod_layer]["long"].append(totint_lon)
-            expectedTOTint[mod_layer]["ganged"].append(totint_gan)
-            
-            CalibThreshold[mod_layer]["normal"].append(fe[0])
-            CalibThreshold[mod_layer]["long"].append(fe[4])
-            CalibThreshold[mod_layer]["ganged"].append(fe[8])
-            
-            CalibRMS[mod_layer]["normal"].append(fe[1])
-            CalibRMS[mod_layer]["long"].append(fe[5])
-            CalibRMS[mod_layer]["ganged"].append(fe[9])
+        key = "%-16s - %s" % (mod_name,mod)
+        if key not in report:
+            report[key] = ""
             
-            CalibNoise[mod_layer]["normal"].append(fe[2])
-            CalibNoise[mod_layer]["long"].append(fe[6])
-            CalibNoise[mod_layer]["ganged"].append(fe[10])
-            
-            CalibIntime[mod_layer]["normal"].append(fe[3])
-            CalibIntime[mod_layer]["long"].append(fe[7])
-            CalibIntime[mod_layer]["ganged"].append(fe[11])
+        for ife in range(len(FEs)):
+            fe = FEs[ife]
+            if mod_layer == "IBL":
+                
+                bool1, str1 = ValThreshold(mod_layer,"normal",fe[0],5)
+                bool2, str2 = ValThreshold(mod_layer,"long"  ,fe[2],5)
+                if bool1:
+                    report[key] += ("FE%02u: "% ife) + str1
+                if bool2:
+                    report[key] += ("FE%02u: "% ife) + str2 
+                
+                CalibThreshold[mod_layer]["normal"].append(fe[0])
+                CalibThreshold[mod_layer]["long"].append(fe[2]) 
+                
+                CalibRMS[mod_layer]["normal"].append(fe[1])
+                CalibRMS[mod_layer]["long"].append(fe[3])               
+            else:
+                
+                bool1, str1 = ValThreshold(mod_layer,"normal",fe[0],5)
+                bool2, str2 = ValThreshold(mod_layer,"long"  ,fe[4],5)
+                bool3, str3 = ValThreshold(mod_layer,"ganged",fe[8],5)
+                if bool1:
+                    report[key] += ("FE%02u: "% ife) + str1
+                if bool2:
+                    report[key] += ("FE%02u: "% ife) + str2                 
+                if bool3:
+                    report[key] += ("FE%02u: "% ife) + str3                 
+                
+                totint_nor = CalculateTOT(fe[3],fe[12:15])
+                totint_lon = CalculateTOT(fe[7],fe[15:18])
+                totint_gan = CalculateTOT(fe[11],fe[15:18])
+                
+                expectedTOTint[mod_layer]["normal"].append(totint_nor)
+                expectedTOTint[mod_layer]["long"].append(totint_lon)
+                expectedTOTint[mod_layer]["ganged"].append(totint_gan)
+                
+                CalibThreshold[mod_layer]["normal"].append(fe[0])
+                CalibThreshold[mod_layer]["long"].append(fe[4])
+                CalibThreshold[mod_layer]["ganged"].append(fe[8])
+                
+                CalibRMS[mod_layer]["normal"].append(fe[1])
+                CalibRMS[mod_layer]["long"].append(fe[5])
+                CalibRMS[mod_layer]["ganged"].append(fe[9])
+                
+                CalibNoise[mod_layer]["normal"].append(fe[2])
+                CalibNoise[mod_layer]["long"].append(fe[6])
+                CalibNoise[mod_layer]["ganged"].append(fe[10])
+                
+                CalibIntime[mod_layer]["normal"].append(fe[3])
+                CalibIntime[mod_layer]["long"].append(fe[7])
+                CalibIntime[mod_layer]["ganged"].append(fe[11])
         
+    print("\n Threshold FE values validation:")
+    print("-"*40)
+    for key, val in report.items():
+        if val == "":
+            continue
+        print(key)
+        print(val)
+    print("-"*40)
     
-    
-    print("\n Threshold values validation:")
+    print("\n\n\n\n Threshold MEAN values validation:")
     print("-"*40)
-    for i in ["Blayer","L1","L2","Disk"]:
+    for i in ["IBL","Blayer","L1","L2","Disk"]:
+    # for i in ["IBL"]:
         
         for j in CalibThreshold[i]:
-            ValThreshold(i,j,CalibThreshold[i][j])
-        figur(i,expectedTOTint, "ToT for intime threshold", "totIntime_"+i+".png")
-        figur(i,CalibThreshold, "Threshold","CalibThreshold_"+i+".png")
-        figur(i,CalibRMS      , "RMS"      ,"CalibRMS_"+i+".png")
-        figur(i,CalibNoise    , "Noise"    ,"CalibNoise_"+i+".png")
-        figur(i,CalibIntime   , "Intime"   ,"CalibIntime_"+i+".png")
+            if len(CalibThreshold[i][j]) == 0:
+                continue 
+            _bool_, _str_ = ValThreshold(i,j,np.average(CalibThreshold[i][j]))
+            print(_str_, end="")
+            
+        if i == "IBL":
+            figurIBL(i,CalibThreshold, "Threshold","CalibThreshold_"+i+".png")
+            figurIBL(i,CalibRMS      , "RMS"      ,"CalibRMS_"+i+".png")
+        else:
+            figur(i,expectedTOTint, "ToT for intime threshold", "totIntime_"+i+".png")
+            figur(i,CalibThreshold, "Threshold","CalibThreshold_"+i+".png")
+            figur(i,CalibRMS      , "RMS"      ,"CalibRMS_"+i+".png")
+            figur(i,CalibNoise    , "Noise"    ,"CalibNoise_"+i+".png")
+            figur(i,CalibIntime   , "Intime"   ,"CalibIntime_"+i+".png")
         
     print("-"*40,"\n")
 
-def ValThreshold (layer, pix, list):
+def ValThreshold (layer, pix, listavg, perc=1):
     
     # Those values are coming from online crew - Analog thresholds
     # https://twiki.cern.ch/twiki/bin/viewauth/Atlas/PixelConditionsRUN3
-    realThresholds = { "Blayer": 4700 , "L1": 4300, "L2": 4300, "Disk": 4300} 
+    realThresholds = { "IBL": 1500, "Blayer": 4700 , "L1": 4300, "L2": 4300, "Disk": 4300} 
        
-    listavg = np.average(list)
-    dev = (realThresholds[layer]-listavg)/listavg*100
+    dev = abs((realThresholds[layer]-listavg)/listavg*100)
     status = "OK"
-    
     # If it deviates more than 1%
-    if dev > 1:
+    if dev > perc:
         status = "NEEDS CHECKING!!!"
+    if perc != 1 and status == "OK":
+        return False, "OK"
     
-    print("%-25s: %6.1fe (exp.: %4ue), dev.: %6.2f%% - status (<1%%): %s" % (layer+" avg. thr. ["+pix+"]", listavg, realThresholds[layer], dev, status))
+    _str_ = "\t%-25s: %6.1fe (exp.: %4ue), dev.: %6.2f%% - status (>%i%%): %s\n" % (layer+" avg. thr. ["+pix+"]", listavg, realThresholds[layer], dev, perc, status)
+    return True, _str_
+
+def figurIBL(title,hist,xlabel,namef):
+    fig = Figure(figsize=(13,10))
+    fig.suptitle(title)
+    plot(fig.add_subplot(2,2,1),hist[title]["normal"]if len(hist[title]["normal"]) else [-1], xlabel+" - normal")
+    plot(fig.add_subplot(2,2,2),hist[title]["long"]  if len(hist[title]["long"])   else [-1], xlabel+" - normal")
+    plot(fig.add_subplot(2,2,3),hist[title]["normal"]if len(hist[title]["normal"]) else [-1], xlabel+" - normal",True)
+    plot(fig.add_subplot(2,2,4),hist[title]["long"]  if len(hist[title]["long"])   else [-1], xlabel+" - normal",True)
+    FigureCanvasAgg(fig).print_figure("plots/parameters/"+namef, dpi=150)
 
 def figur(title,hist,xlabel,namef):
     fig = Figure(figsize=(13,10))
     fig.suptitle(title)
-    plot(fig.add_subplot(2,3,1),hist[title]["normal"], xlabel+" - normal")
-    plot(fig.add_subplot(2,3,2),hist[title]["long"]  , xlabel+" - long")
-    plot(fig.add_subplot(2,3,3),hist[title]["ganged"], xlabel+" - ganged")
-    plot(fig.add_subplot(2,3,4),hist[title]["normal"], xlabel+" - normal" ,True)
-    plot(fig.add_subplot(2,3,5),hist[title]["long"]  , xlabel+" - long"   ,True)
-    plot(fig.add_subplot(2,3,6),hist[title]["ganged"], xlabel+" - ganged" ,True)
-    FigureCanvasAgg(fig).print_figure("plots/values/"+namef, dpi=150)
+    plot(fig.add_subplot(2,3,1),hist[title]["normal"] if len(hist[title]["normal"]) else [-1], xlabel+" - normal")
+    plot(fig.add_subplot(2,3,2),hist[title]["long"]   if len(hist[title]["long"])   else [-1], xlabel+" - long")
+    plot(fig.add_subplot(2,3,3),hist[title]["ganged"] if len(hist[title]["ganged"]) else [-1], xlabel+" - ganged")
+    plot(fig.add_subplot(2,3,4),hist[title]["normal"] if len(hist[title]["normal"]) else [-1], xlabel+" - normal" ,True)
+    plot(fig.add_subplot(2,3,5),hist[title]["long"]   if len(hist[title]["long"])   else [-1], xlabel+" - long"   ,True)
+    plot(fig.add_subplot(2,3,6),hist[title]["ganged"] if len(hist[title]["ganged"]) else [-1], xlabel+" - ganged" ,True)
+    FigureCanvasAgg(fig).print_figure("plots/parameters/"+namef, dpi=150)
 
 def plot(axs,arr, xlabel, islog = False):
     axs.hist(arr, bins=60)
@@ -137,7 +197,24 @@ def plot(axs,arr, xlabel, islog = False):
     
     
 if __name__ == "__main__":
+
+    import argparse
+    parser = argparse.ArgumentParser(prog='python -m PixelCalibAlgs.CheckValues',
+                            description="""Checks the Threshold values.\n\n
+                            Example: python -m PixelCalibAlgs.CheckValues -f "path/to/file" """)
+    
+    parser.add_argument('-f'   , required=True, help="New calibration file (output format from the Recovery.py)")
+    parser.add_argument('--isDB' , action='store_true', help="File with a DB format (from MakeReferenceFile)")
+    args = parser.parse_args()
     
     # Used for testing and checking performance
-    old_calib, old_iov = ReadDbFile("PixelChargeCalibration-DATA-RUN2-UPD4-26.log")
-    CheckThresholds(old_calib)
\ No newline at end of file
+    if(args.isDB):
+        # Used to check the the calibration from the central DB format (using MakeReferenceFile)
+        from PixelCalibAlgs.Recovery import ReadDbFile
+        new_calib, new_iov = ReadDbFile(args.f)    
+    else:
+        # Used to check the the calibration from PixelCalibration or CalibrateIBL (removing comments)
+        from PixelCalibAlgs.EvoMonitoring import ReadCalibOutput
+        new_calib, new_iov = ReadCalibOutput(args.f)
+    
+    CheckThresholds(new_calib)
\ No newline at end of file
diff --git a/InnerDetector/InDetCalibAlgs/PixelCalibAlgs/ChargeCalibration/pixel/python/EvoMonitoring.py b/InnerDetector/InDetCalibAlgs/PixelCalibAlgs/ChargeCalibration/pixel/python/EvoMonitoring.py
index 35605a57fc48f504b623b8262652db5c6555f431..77e0f43d1a734c70eb931ebd51f576eb59829074 100644
--- a/InnerDetector/InDetCalibAlgs/PixelCalibAlgs/ChargeCalibration/pixel/python/EvoMonitoring.py
+++ b/InnerDetector/InDetCalibAlgs/PixelCalibAlgs/ChargeCalibration/pixel/python/EvoMonitoring.py
@@ -287,4 +287,4 @@ if __name__ == "__main__":
     
     args = parser.parse_args()
     setupRunEvo(args.new, args.old)
-    exit(0) 
+    exit(0)
\ No newline at end of file
diff --git a/InnerDetector/InDetDigitization/TRT_Digitization/python/TRT_DigitizationConfig.py b/InnerDetector/InDetDigitization/TRT_Digitization/python/TRT_DigitizationConfig.py
index f8e4aa25b10d9a80198223c8c0a6c9e67af3aa5c..25e3b16175d3847da1b0041a31a888f075479a5c 100644
--- a/InnerDetector/InDetDigitization/TRT_Digitization/python/TRT_DigitizationConfig.py
+++ b/InnerDetector/InDetDigitization/TRT_Digitization/python/TRT_DigitizationConfig.py
@@ -88,6 +88,15 @@ def TRT_DigitizationToolCfg(flags, name="TRTDigitizationTool", **kwargs):
         kwargs.setdefault("OutputObjectName", "TRT_RDOs")
         kwargs.setdefault("OutputSDOName", "TRT_SDO_Map")
     kwargs.setdefault("HardScatterSplittingMode", 0)
+    if flags.Digitization.TRT.HeavyIonHT:
+        kwargs.setdefault("Override_highThresholdBarShort", 0.00129875)
+        kwargs.setdefault("Override_highThresholdBarLong", 0.00118775)
+        kwargs.setdefault("Override_highThresholdECAwheels", 0.001185591)
+        kwargs.setdefault("Override_highThresholdECBwheels", 0.001145376)
+        kwargs.setdefault("Override_highThresholdBarShortArgon", 0.000468802)
+        kwargs.setdefault("Override_highThresholdBarLongArgon", 0.000456754)
+        kwargs.setdefault("Override_highThresholdECAwheelsArgon", 0.0006035)
+        kwargs.setdefault("Override_highThresholdECBwheelsArgon", 0.00057375)
     tool = acc.popToolsAndMerge(TRT_DigitizationBasicToolCfg(flags, name, **kwargs))
     acc.setPrivateTools(tool)
     return acc
diff --git a/MuonSpectrometer/MuonValidation/MuonDQA/MuonRawDataMonitoring/StgcRawDataMonitoring/python/StgcMonitorAlgorithm.py b/MuonSpectrometer/MuonValidation/MuonDQA/MuonRawDataMonitoring/StgcRawDataMonitoring/python/StgcMonitorAlgorithm.py
index 2700d442e16d454b3786ae2a8f7d36c3081cb3b2..bf78510514e9384bec9b715dca0bd91da7a0d7b6 100644
--- a/MuonSpectrometer/MuonValidation/MuonDQA/MuonRawDataMonitoring/StgcRawDataMonitoring/python/StgcMonitorAlgorithm.py
+++ b/MuonSpectrometer/MuonValidation/MuonDQA/MuonRawDataMonitoring/StgcRawDataMonitoring/python/StgcMonitorAlgorithm.py
@@ -56,11 +56,11 @@ def sTgcMonitoringConfig(inputFlags,NSW_PadTrigKey=''):
     sectorMax     = 16
     layerMax      = 8
     
-    titleEtaPhiEffMap = '; #eta (reco); #phi (reco); Efficiency'
+    titleEtaPhiEffMap = '; #eta (reco); #phi (reco); Pad trigger efficiency wrt. reco. muon'
     varEtaPhiEffMap   = 'muonRecoTriggerMatch,etaRecoMuonEff,phiRecoMuonEff;padTrigger_Efficiency_per_etaPhi'
     sTgcOverviewGroup.defineHistogram(varEtaPhiEffMap, type = 'TEfficiency', title = titleEtaPhiEffMap, path = 'Overview', xbins = 100, xmin = -3., xmax = 3., ybins = 100, ymin = -math.pi, ymax = math.pi, opt = 'kAlwaysCreate')
 
-    titleEtaEffMap = '; #eta (reco); Efficiency'
+    titleEtaEffMap = '; #eta (reco); Pad trigger efficiency wrt. reco. muon'
     varEtaEffMap   = 'muonRecoTriggerMatch,etaRecoMuonEff;padTrigger_Efficiency_per_eta'
     sTgcOverviewGroup.defineHistogram(varEtaEffMap, type = 'TEfficiency', title = titleEtaEffMap, path = 'Overview', xbins = 100, xmin = -3., xmax = 3., opt = 'kAlwaysCreate')
 
@@ -122,7 +122,7 @@ def sTgcMonitoringConfig(inputFlags,NSW_PadTrigKey=''):
         varPhiPadTriggerMap   = f'phiPadTrigger_{sideIndex};padTrigger_Map_per_phi_Side{sideIndex}'
         sTgcOverviewGroup.defineHistogram(varPhiPadTriggerMap, type = 'TH1F', title = titlePhiPadTriggerMap, path = 'Overview', xbins = 100, xmin = -math.pi, xmax = math.pi, opt = 'kAlwaysCreate')
         
-        titlePhiEffMap = f'{sideIndex}; #phi (reco); Efficiency'
+        titlePhiEffMap = f'{sideIndex}; #phi (reco); Pad trigger efficiency wrt. reco. muon'
         varPhiEffMap   = f'muonRecoTriggerMatch,phiRecoMuonEff_{sideIndex};padTrigger_Efficiency_per_phi_Side_{sideIndex}'
         sTgcOverviewGroup.defineHistogram(varPhiEffMap, type = 'TEfficiency', title = titlePhiEffMap, path = 'Overview', xbins = 100, xmin = -math.pi, xmax = math.pi, opt = 'kAlwaysCreate')
 
@@ -130,11 +130,11 @@ def sTgcMonitoringConfig(inputFlags,NSW_PadTrigKey=''):
             efficiencyGlobalRgroup = helper.addGroup(sTgcMonAlg, f'rPosStrip_{sideIndex}{sectorIndex}', globalPath + 'Expert/Efficiency/')
             
             for layerIndex in range(1, layerMax + 1):
-                titleEffGlobalRstrip = f'{sideIndex}' + f'{sectorIndex}'.zfill(2) + f'L{layerIndex}; sTgc-GlobalR-Strip (on track) [mm]; Efficiency'
+                titleEffGlobalRstrip = f'{sideIndex}' + f'{sectorIndex}'.zfill(2) + f'L{layerIndex}; sTgc-GlobalR-Strip (on track) [mm]' + f'; Efficiency sTGC strip {sideIndex}' + f'{sectorIndex}'.zfill(2) + f'L{layerIndex}'
                 varEffGlobalRstrip = f'hitLayer,rPosStrip_{sideIndex}_sector_{sectorIndex}_layer_{layerIndex};Efficiency_per_Radius_Layer{layerIndex}'
                 efficiencyGlobalRgroup.defineHistogram(varEffGlobalRstrip, type = 'TEfficiency', title = titleEffGlobalRstrip, path = f'{sideIndex}' + f'{sectorIndex}'.zfill(2), xbins = 100, xmin = 0., xmax = 5000., opt = 'kAlwaysCreate')
         for layerIndex in range(1, layerMax + 1):
-            titleEffYvsXstrip = f'{sideIndex}L{layerIndex}; sTgc-GlobalX-Strip (on track) [mm]; sTgc-GlobalY-Strip (on track) [mm]; Efficiency'
+            titleEffYvsXstrip = f'{sideIndex}L{layerIndex}; sTgc-GlobalX-Strip (on track) [mm]; sTgc-GlobalY-Strip (on track) [mm]; Efficiency sTGC strip {sideIndex}L{layerIndex}'
             varEffYvsXstrip = f'hitLayer,xPosStrip_{sideIndex}_layer_{layerIndex},yPosStrip_{sideIndex}_layer_{layerIndex};strip_efficiency_per_mm_squared_Wheel{sideIndex}_layer{layerIndex}'
             sTgcOverviewGroup.defineHistogram(varEffYvsXstrip, type = 'TEfficiency', title = titleEffYvsXstrip, path = 'Overview', xbins = 500, xmin = -5000., xmax = 5000., ybins = 500, ymin = -5000., ymax = 5000., opt = 'kAlwaysCreate')
 
@@ -160,15 +160,15 @@ def sTgcMonitoringConfig(inputFlags,NSW_PadTrigKey=''):
             varTimingWireTrack    = f'wireTrackSectorSided_quad_{stationEtaIndex}_layer_{layerIndex},wireTrackTiming_quad_{stationEtaIndex}_layer_{layerIndex};All_wire_timing_in_Q{stationEtaIndex}_Layer{layerIndex}'
             sTgcWireTimingExpertGroup.defineHistogram(varTimingWireTrack, type = 'TH2F', title = titleTimingWireTrack, path = f'Q{stationEtaIndex}', xbins = 2*sectorMax + 1, xmin = -sectorMax - 0.5, xmax = sectorMax + 0.5, ybins = 201, ymin = -75.5, ymax = 125.5, opt = 'kAlwaysCreate')
             
-            titleSectorsVersusLumiblockPad  = f'Pad_L{layerIndex}Q{stationEtaIndex}; LB; All Sectors; Hits'
+            titleSectorsVersusLumiblockPad  = f'Pad_L{layerIndex}Q{stationEtaIndex}; LB; Sector; Hits'
             varSectorsVersusLumiblockPad    = f'padLumiblock_quad_{stationEtaIndex}_layer_{layerIndex},padSector_quad_{stationEtaIndex}_layer_{layerIndex};Nhits_all_pad_in_sector_per_LB_in_Q{stationEtaIndex}_Layer{layerIndex}'
             sTgcLBpadShifterGroup.defineHistogram(varSectorsVersusLumiblockPad, type = 'TH2F', title = titleSectorsVersusLumiblockPad, path = f'Q{stationEtaIndex}', xbins = 2001, xmin = -0.5, xmax = 2000.5, ybins = 2*sectorMax + 1, ymin = -sectorMax - 0.5, ymax = sectorMax + 0.5, opt = 'kAlwaysCreate')
 
-            titleSectorsVersusLumiblockStrip  = f'Strip_L{layerIndex}Q{stationEtaIndex}; LB; All Sectors; Hits'
+            titleSectorsVersusLumiblockStrip  = f'Strip_L{layerIndex}Q{stationEtaIndex}; LB; Sector; Hits'
             varSectorsVersusLumiblockStrip    = f'stripLumiblock_quad_{stationEtaIndex}_layer_{layerIndex},stripSector_quad_{stationEtaIndex}_layer_{layerIndex};Nhits_all_strip_in_sector_per_LB_in_Q{stationEtaIndex}_Layer{layerIndex}'
             sTgcLBstripShifterGroup.defineHistogram(varSectorsVersusLumiblockStrip, type = 'TH2F', title = titleSectorsVersusLumiblockStrip, path = f'Q{stationEtaIndex}', xbins = 2001, xmin = -0.5, xmax = 2000.5, ybins = 2*sectorMax + 1, ymin = -sectorMax - 0.5, ymax = sectorMax + 0.5, opt = 'kAlwaysCreate')
             
-            titleSectorsVersusLumiblockWire  = f'Wire_L{layerIndex}Q{stationEtaIndex}; LB; All Sectors; Hits'
+            titleSectorsVersusLumiblockWire  = f'Wire_L{layerIndex}Q{stationEtaIndex}; LB; Sector; Hits'
             varSectorsVersusLumiblockWire    = f'wireLumiblock_quad_{stationEtaIndex}_layer_{layerIndex},wireSector_quad_{stationEtaIndex}_layer_{layerIndex};Nhits_all_wire_in_sector_per_LB_in_Q{stationEtaIndex}_Layer{layerIndex}'
             sTgcLBwireShifterGroup.defineHistogram(varSectorsVersusLumiblockWire, type = 'TH2F', title = titleSectorsVersusLumiblockWire, path = f'Q{stationEtaIndex}', xbins = 2001, xmin = -0.5, xmax = 2000.5, ybins = 2*sectorMax + 1, ymin = -sectorMax - 0.5, ymax = sectorMax + 0.5, opt = 'kAlwaysCreate')
 
diff --git a/Reconstruction/RecExample/RecExRecoTest/python/Jets_AODMC21.py b/Reconstruction/RecExample/RecExRecoTest/python/Jets_AODMC21.py
index 795f6b5cf85b8dddfbc9a6e8a0d37e9760a3925e..7f6813d88549c9a08a181fbaab6df68ac3b146bc 100644
--- a/Reconstruction/RecExample/RecExRecoTest/python/Jets_AODMC21.py
+++ b/Reconstruction/RecExample/RecExRecoTest/python/Jets_AODMC21.py
@@ -9,6 +9,7 @@ if __name__=="__main__":
     # We have to set the production step, which PFFlow muon linking uses for autoconfiguration.
     from AthenaConfiguration.Enums import ProductionStep
     flags.Common.ProductionStep=ProductionStep.Derivation
+    flags.IOVDb.GlobalTag = "OFLCOND-MC21-SDR-RUN3-07"
     flags.fillFromArgs()
     flags.lock()
 
diff --git a/Simulation/Digitization/DigitizationConfig/python/DigitizationConfigFlags.py b/Simulation/Digitization/DigitizationConfig/python/DigitizationConfigFlags.py
index 1cd19f365a7ce29c7cbd459d69e524551c925ef0..5d8a54946b137c81155cd78d50f4d2e0b1ea81db 100644
--- a/Simulation/Digitization/DigitizationConfig/python/DigitizationConfigFlags.py
+++ b/Simulation/Digitization/DigitizationConfig/python/DigitizationConfigFlags.py
@@ -135,6 +135,8 @@ def createDigitizationCfgFlags():
     flags.addFlag("Digitization.DoFastDigi", [])
     # Set the flag to True if the Common.ProductionStep is not one of the steps in the list
     flags.addFlag("Digitization.ReadParametersFromDB", lambda prevFlags : prevFlags.Common.ProductionStep in [ProductionStep.Digitization, ProductionStep.PileUpPresampling, ProductionStep.Overlay, ProductionStep.FastChain])
+    # Do TRT high threshold overrides for heay ion runs
+    flags.addFlag("Digitization.TRT.HeavyIonHT", False)
     return flags
 
 
diff --git a/Simulation/Tests/DigitizationTests/test/test_Digi_tf_RUN4_presampling_mu1.sh b/Simulation/Tests/DigitizationTests/test/test_Digi_tf_RUN4_presampling_mu1.sh
index b741e6c78181c7f7e846a2a46db164d35f83a406..7da51ed52e34f49e5ba7db6458a48dbcaff2a2d0 100755
--- a/Simulation/Tests/DigitizationTests/test/test_Digi_tf_RUN4_presampling_mu1.sh
+++ b/Simulation/Tests/DigitizationTests/test/test_Digi_tf_RUN4_presampling_mu1.sh
@@ -3,6 +3,7 @@
 # art-description: Run 4 pile-up presampling
 # art-type: grid
 # art-architecture:  '#x86_64-intel'
+# art-memory: 3999
 # art-include: 24.0/Athena
 # art-include: main/Athena
 # art-output: RUN4_presampling.mu1.RDO.pool.root
diff --git a/Simulation/Tests/DigitizationTests/test/test_Digi_tf_RUN4_single_muon_no_pileup.sh b/Simulation/Tests/DigitizationTests/test/test_Digi_tf_RUN4_single_muon_no_pileup.sh
index 29c69c3396ad95c0f17f2ebcb6765eff243c9522..c1a118c203f507fe0288ea3851c01b4942f53202 100755
--- a/Simulation/Tests/DigitizationTests/test/test_Digi_tf_RUN4_single_muon_no_pileup.sh
+++ b/Simulation/Tests/DigitizationTests/test/test_Digi_tf_RUN4_single_muon_no_pileup.sh
@@ -3,6 +3,7 @@
 # art-description: Run 4 digitization of a single muon sample without pile-up
 # art-type: grid
 # art-architecture:  '#x86_64-intel'
+# art-memory: 3999
 # art-include: 24.0/Athena
 # art-include: main/Athena
 # art-output: RUN4_muons.RDO.pool.root
diff --git a/Simulation/Tests/DigitizationTests/test/test_Digi_tf_RUN4_ttbar_mu1_inTimeTruth.sh b/Simulation/Tests/DigitizationTests/test/test_Digi_tf_RUN4_ttbar_mu1_inTimeTruth.sh
index 2d1cb34922ec18e17c13d793b6001efafcb9551e..91ef78d7b30c543e2917db2c802e750abf76e532 100755
--- a/Simulation/Tests/DigitizationTests/test/test_Digi_tf_RUN4_ttbar_mu1_inTimeTruth.sh
+++ b/Simulation/Tests/DigitizationTests/test/test_Digi_tf_RUN4_ttbar_mu1_inTimeTruth.sh
@@ -3,6 +3,7 @@
 # art-description: Run 4 digitization of a ttbar sample with pile-up (saving in-time truth)
 # art-type: grid
 # art-architecture:  '#x86_64-intel'
+# art-memory: 3999
 # art-include: 24.0/Athena
 # art-include: main/Athena
 # art-output: RUN4_ttbar.puTruth.RDO.pool.root
diff --git a/Simulation/Tests/DigitizationTests/test/test_Digi_tf_RUN4_ttbar_no_pileup.sh b/Simulation/Tests/DigitizationTests/test/test_Digi_tf_RUN4_ttbar_no_pileup.sh
index d227f3190b60c2e9905e44607ecfa2001908a7b0..a04f9ba87289ec6eb232ba03f164dd960bc82979 100755
--- a/Simulation/Tests/DigitizationTests/test/test_Digi_tf_RUN4_ttbar_no_pileup.sh
+++ b/Simulation/Tests/DigitizationTests/test/test_Digi_tf_RUN4_ttbar_no_pileup.sh
@@ -3,6 +3,7 @@
 # art-description: Run 4 digitization of a ttbar sample without pile-up
 # art-type: grid
 # art-architecture:  '#x86_64-intel'
+# art-memory: 3999
 # art-include: 24.0/Athena
 # art-include: main/Athena
 # art-output: RUN4_ttbar.RDO.pool.root
diff --git a/Simulation/Tests/ISF_Validation/test/test_MC16_ATLFAST3F_ACTSMT_ttbar.sh b/Simulation/Tests/ISF_Validation/test/test_MC16_ATLFAST3F_ACTSMT_ttbar.sh
index bfcf7a202c8068f5d7c5330b81385040fdd8a2a0..0173aeb3afe238e355389e7e1db811e5559e774b 100755
--- a/Simulation/Tests/ISF_Validation/test/test_MC16_ATLFAST3F_ACTSMT_ttbar.sh
+++ b/Simulation/Tests/ISF_Validation/test/test_MC16_ATLFAST3F_ACTSMT_ttbar.sh
@@ -5,6 +5,7 @@
 # art-include: main/Athena
 # art-type: grid
 # art-architecture:  '#x86_64-intel'
+# art-memory: 5999
 # art-output: test.CA.HITS.pool.root
 # art-output: Config*
 
diff --git a/Simulation/Tests/ISF_Validation/test/test_MC16_ATLFAST3F_G4MS_ttbar.sh b/Simulation/Tests/ISF_Validation/test/test_MC16_ATLFAST3F_G4MS_ttbar.sh
index 6d901addca33a66fcdf9f095b59de88f616882e2..e73ec1797bbe104ea3364208734902f143977f62 100755
--- a/Simulation/Tests/ISF_Validation/test/test_MC16_ATLFAST3F_G4MS_ttbar.sh
+++ b/Simulation/Tests/ISF_Validation/test/test_MC16_ATLFAST3F_G4MS_ttbar.sh
@@ -5,6 +5,7 @@
 # art-include: main/Athena
 # art-type: grid
 # art-architecture:  '#x86_64-intel'
+# art-memory: 7999
 # art-output: test.HITS.pool.root
 
 # MC16 setup
diff --git a/Simulation/Tests/ISF_Validation/test/test_MC21_FullG4MT_QS_SQLiteGeoM_ttbar.sh b/Simulation/Tests/ISF_Validation/test/test_MC21_FullG4MT_QS_SQLiteGeoM_ttbar.sh
index f209dfe9f0c1f1d2ad62ac9e452f4b6d73912913..4c0b6f13dd5f2774b5e84e0a9ba5d941db604b68 100755
--- a/Simulation/Tests/ISF_Validation/test/test_MC21_FullG4MT_QS_SQLiteGeoM_ttbar.sh
+++ b/Simulation/Tests/ISF_Validation/test/test_MC21_FullG4MT_QS_SQLiteGeoM_ttbar.sh
@@ -5,6 +5,7 @@
 # art-include: main/Athena
 # art-type: grid
 # art-architecture:  '#x86_64-intel'
+# art-memory: 4999
 # art-output: *.pool.root
 # art-output: log.*
 
diff --git a/Simulation/Tests/ISF_Validation/test/test_RUN3_ATLFAST3F_G4MS_ttbar.sh b/Simulation/Tests/ISF_Validation/test/test_RUN3_ATLFAST3F_G4MS_ttbar.sh
index d97d46228813ef5e41235b72637464e89e9d3844..d3a64c62d4490cec5884749b8cd7242629516f25 100755
--- a/Simulation/Tests/ISF_Validation/test/test_RUN3_ATLFAST3F_G4MS_ttbar.sh
+++ b/Simulation/Tests/ISF_Validation/test/test_RUN3_ATLFAST3F_G4MS_ttbar.sh
@@ -5,6 +5,7 @@
 # art-include: main/Athena
 # art-type: grid
 # art-architecture:  '#x86_64-intel'
+# art-memory: 6999
 # art-output: test.*.HITS.pool.root
 # art-output: log.*
 # art-output: Config*.pkl
diff --git a/Simulation/Tests/ISF_Validation/test/test_RUN3_ATLFAST3MT_QS_ttbar.sh b/Simulation/Tests/ISF_Validation/test/test_RUN3_ATLFAST3MT_QS_ttbar.sh
index fcc649b337d077c032ad937852e1330729b1685c..4c502da01f3c2dae1cbd09412c8e0673562e64f6 100755
--- a/Simulation/Tests/ISF_Validation/test/test_RUN3_ATLFAST3MT_QS_ttbar.sh
+++ b/Simulation/Tests/ISF_Validation/test/test_RUN3_ATLFAST3MT_QS_ttbar.sh
@@ -6,6 +6,7 @@
 # art-include: main/Athena
 # art-type: grid
 # art-architecture:  '#x86_64-intel'
+# art-memory: 6999
 # art-output: test.*.HITS.pool.root
 # art-output: log.*
 # art-output: Config*.pkl
diff --git a/Simulation/Tests/ISF_Validation/test/test_RUN3_ATLFAST3MT_ttbar.sh b/Simulation/Tests/ISF_Validation/test/test_RUN3_ATLFAST3MT_ttbar.sh
index 53d9ea3c72f0e581c2841008939aabbf406bf0f5..83a39c37c2fa67fb3f015946293618ee31cab1f5 100755
--- a/Simulation/Tests/ISF_Validation/test/test_RUN3_ATLFAST3MT_ttbar.sh
+++ b/Simulation/Tests/ISF_Validation/test/test_RUN3_ATLFAST3MT_ttbar.sh
@@ -5,6 +5,7 @@
 # art-include: main/Athena
 # art-type: grid
 # art-architecture:  '#x86_64-intel'
+# art-memory: 6999
 # art-output: test.*.HITS.pool.root
 # art-output: log.*
 # art-output: Config*.pkl
diff --git a/Tools/PROCTools/data/q454_AOD_content.ref b/Tools/PROCTools/data/q454_AOD_content.ref
index 659d7487c5100fabf5c313f3dd168e80e27f37d2..88891ae7e7e64481bc08685183e562cf203b900f 100644
--- a/Tools/PROCTools/data/q454_AOD_content.ref
+++ b/Tools/PROCTools/data/q454_AOD_content.ref
@@ -2429,8 +2429,6 @@ _Digitization_Parameters
 _Generation_Parameters
 _Simulation_Parameters
 _TagInfo
-eElesPerf
-eElesPerfAux.
 egammaClusters
 egammaClustersAux.
 egammaClustersAuxDyn.BadChannelList
diff --git a/Trigger/TrigAlgorithms/TrigCaloRec/src/TrigCaloClusterMaker.cxx b/Trigger/TrigAlgorithms/TrigCaloRec/src/TrigCaloClusterMaker.cxx
index 232f71632aec932306d25427309ef33967109170..4c7b538745ab174390bb1c07e2ca083123f621d1 100644
--- a/Trigger/TrigAlgorithms/TrigCaloRec/src/TrigCaloClusterMaker.cxx
+++ b/Trigger/TrigAlgorithms/TrigCaloRec/src/TrigCaloClusterMaker.cxx
@@ -113,6 +113,7 @@ StatusCode TrigCaloClusterMaker::execute(const EventContext& ctx) const
   time_tot.start();
 
   ATH_MSG_DEBUG("in TrigCaloClusterMaker::execute()" );
+  bool shouldMon = ((ctx.eventID().event_number() % 20)==0);
 
   // We now take care of the Cluster Making... 
   auto  clusterContainer =   SG::makeHandle (m_outputClustersKey, ctx); 
@@ -132,6 +133,9 @@ StatusCode TrigCaloClusterMaker::execute(const EventContext& ctx) const
   std::vector<double>       N_BAD_CELLS;
   std::vector<double>       ENG_FRAC_MAX;
   std::vector<unsigned int> sizeVec; 
+  clus_phi.reserve(300); clus_eta.reserve(300);
+  N_BAD_CELLS.reserve(300); ENG_FRAC_MAX.reserve(300);
+  sizeVec.reserve(300);
   auto mon_clusPhi = Monitored::Collection("Phi", clus_phi); // phi and eta are virtual methods of CaloCluster
   auto mon_clusEta = Monitored::Collection("Eta", clus_eta);
   auto mon_badCells = Monitored::Collection("N_BAD_CELLS",N_BAD_CELLS );
@@ -139,14 +143,6 @@ StatusCode TrigCaloClusterMaker::execute(const EventContext& ctx) const
   auto mon_size = Monitored::Collection("size",sizeVec );
   auto monmu = Monitored::Scalar("mu",-999.0);
   auto mon_container_size = Monitored::Scalar("container_size", 0.);
-  auto moncount_1thrsigma = Monitored::Scalar("count_1thrsigma",-999.0);
-  auto moncount_2thrsigma = Monitored::Scalar("count_2thrsigma",-999.0);
-  auto mon_container_size_by_mu  = Monitored::Scalar("container_size_by_mu", 0.);
-  auto moncount_1thrsigma_by_mu2 = Monitored::Scalar("count_1thrsigma_by_mu2",-999.0);
-  auto moncount_2thrsigma_by_mu2 = Monitored::Scalar("count_2thrsigma_by_mu2",-999.0);
-  auto monitorIt = Monitored::Group( m_monTool, time_tot, time_clusMaker,  time_clusCorr, mon_container_size, mon_clusEt,
-					    mon_clusPhi, mon_clusEta, mon_clusSignalState, mon_clusSize, 
-					    mon_badCells, mon_engFrac, mon_size, monmu, moncount_1thrsigma, moncount_2thrsigma, mon_container_size_by_mu, moncount_1thrsigma_by_mu2, moncount_2thrsigma_by_mu2);
 
 
   // Looping over cluster maker tools...
@@ -160,22 +156,24 @@ StatusCode TrigCaloClusterMaker::execute(const EventContext& ctx) const
   SG::ReadDecorHandle<xAOD::EventInfo,float> eventInfoDecor(m_avgMuKey,ctx);
   if(eventInfoDecor.isPresent()) {
        mu = eventInfoDecor(0);
-       ATH_MSG_DEBUG("Average mu " << mu);
   }
   unsigned int count_1thrsigma(0), count_2thrsigma(0);
-  if (m_monCells) {
+  if (m_monCells && shouldMon) {
      SG::ReadCondHandle<CaloNoise> noiseHdl{m_noiseCDOKey, ctx};
      const CaloNoise *noisep = *noiseHdl;
      for (const auto cell : *cells ) {
+        float energy = cell->energy();
+        if ( energy <= 0.0 ) continue;
         const CaloDetDescrElement* cdde = cell->caloDDE();
-	if (cdde->is_tile() ) continue;
-	float thr=noisep->getNoise(cdde->identifyHash(), cell->gain());
-	if ( cell->energy() > m_1thr*thr ){
-	   count_1thrsigma++;
-	   if ( cell->energy() > m_2thr*thr )count_2thrsigma++;
-	} // if 1th
+        if (cdde->is_tile() ) continue;
+        float thr=noisep->getNoise(cdde->identifyHash(), cell->gain());
+        if ( energy <= thr ) continue;
+        if ( energy > m_1thr*thr ){
+           count_1thrsigma++;
+           if ( energy > m_2thr*thr )count_2thrsigma++;
+        } // if 1th
      } // end of for over cells
-   } // end of if m_monCells
+  } // end of if m_monCells
   
    
 
@@ -191,18 +189,22 @@ StatusCode TrigCaloClusterMaker::execute(const EventContext& ctx) const
   //save raw state (uncalibrated)
   for (xAOD::CaloCluster* cl : *pCaloClusterContainer)
     {
+#ifndef NDEBUG
       ATH_MSG_VERBOSE("found cluster with state "
 		      << cl->signalState() <<  ", calE: " << cl->calE() << ", calEta: " << cl->calEta() << ", calPhi: " << cl->calPhi() << " calM: " <<cl->calM());
       ATH_MSG_VERBOSE(" Cluster Et  = " << cl->et() );
       ATH_MSG_VERBOSE(" Cluster eta = " << cl->eta() );
       ATH_MSG_VERBOSE(" Cluster phi = " << cl->phi() );
+#endif
       cl->setRawE(cl->calE());
       cl->setRawEta(cl->calEta());
       cl->setRawPhi(cl->calPhi());
       cl->setRawM(cl->calM());
+#ifndef NDEBUG
       ATH_MSG_VERBOSE(" before correction=>Cluster Et  = " << cl->et() );
       ATH_MSG_VERBOSE(" before correction=>Cluster eta = " << cl->eta() );
       ATH_MSG_VERBOSE(" before correction=>Cluster phi = " << cl->phi() );
+#endif
     }
   
   
@@ -210,7 +212,6 @@ StatusCode TrigCaloClusterMaker::execute(const EventContext& ctx) const
   // Looping over cluster correction tools... 
   
   time_clusCorr.start();
-  ATH_MSG_VERBOSE(" Running cluster correction tools");
     
   for (const ToolHandle<CaloClusterProcessor>& clcorr : m_clusterCorrections) {
 
@@ -219,7 +220,6 @@ StatusCode TrigCaloClusterMaker::execute(const EventContext& ctx) const
           (std::abs(cl->eta0()) < 1.45  && clcorr->name().find("37") != std::string::npos) ||
           (std::abs(cl->eta0()) >= 1.45 && clcorr->name().find("55") != std::string::npos) ) {
         ATH_CHECK(clcorr->execute(ctx, cl) );
-        ATH_MSG_VERBOSE("Executed correction tool " << clcorr->name());
       }
     }
   }
@@ -257,13 +257,27 @@ StatusCode TrigCaloClusterMaker::execute(const EventContext& ctx) const
     mon_container_size = pCaloClusterContainer->size(); // fill monitored variable
   }
   monmu=mu;
-  moncount_1thrsigma = count_1thrsigma;
-  moncount_2thrsigma = count_2thrsigma;
-  if ( mu > 5 ){
-    mon_container_size_by_mu  = pCaloClusterContainer->size()/mu; // fill monitored variable
-    float onemu2 = 1.0/(mu*mu);
-    moncount_1thrsigma_by_mu2 = count_1thrsigma*onemu2;
-    moncount_2thrsigma_by_mu2 = count_2thrsigma*onemu2;
+  if ( shouldMon ){
+    auto moncount_1thrsigma = Monitored::Scalar("count_1thrsigma",-999.0);
+    auto moncount_2thrsigma = Monitored::Scalar("count_2thrsigma",-999.0);
+    auto mon_container_size_by_mu  = Monitored::Scalar("container_size_by_mu", 0.);
+    auto moncount_1thrsigma_by_mu2 = Monitored::Scalar("count_1thrsigma_by_mu2",-999.0);
+    auto moncount_2thrsigma_by_mu2 = Monitored::Scalar("count_2thrsigma_by_mu2",-999.0);
+    moncount_1thrsigma = count_1thrsigma;
+    moncount_2thrsigma = count_2thrsigma;
+    if ( mu > 5 ){
+      mon_container_size_by_mu  = pCaloClusterContainer->size()/mu; // fill monitored variable
+      float onemu2 = 1.0/(mu*mu);
+      moncount_1thrsigma_by_mu2 = count_1thrsigma*onemu2;
+      moncount_2thrsigma_by_mu2 = count_2thrsigma*onemu2;
+    }
+    auto monitorIt = Monitored::Group( m_monTool, time_tot, time_clusMaker,  time_clusCorr, mon_container_size, mon_clusEt,
+					    mon_clusPhi, mon_clusEta, mon_clusSignalState, mon_clusSize, 
+					    mon_badCells, mon_engFrac, mon_size, monmu, moncount_1thrsigma, moncount_2thrsigma, mon_container_size_by_mu, moncount_1thrsigma_by_mu2, moncount_2thrsigma_by_mu2);
+  }else{
+    auto monitorIt = Monitored::Group( m_monTool, time_tot, time_clusMaker,  time_clusCorr, mon_container_size, mon_clusEt,
+					    mon_clusPhi, mon_clusEta, mon_clusSignalState, mon_clusSize, 
+					    mon_badCells, mon_engFrac, mon_size, monmu );
   }
 
   // Stop timer
diff --git a/Trigger/TrigMonitoring/TrigTauMonitoring/python/TrigTauMonitoringConfig.py b/Trigger/TrigMonitoring/TrigTauMonitoring/python/TrigTauMonitoringConfig.py
index 82e84a61caacb75c92a4c2f31bd4c244ee89b89d..78690d031260f3e987e28c389b62b91a041e3849 100644
--- a/Trigger/TrigMonitoring/TrigTauMonitoring/python/TrigTauMonitoringConfig.py
+++ b/Trigger/TrigMonitoring/TrigTauMonitoring/python/TrigTauMonitoringConfig.py
@@ -112,11 +112,29 @@ class TrigTauMonAlgBuilder:
     if self.activate_L1:
       self.configureAlgorithmL1()
 
+  @functools.cached_property
+  def _L1_Phase1_thresholds_stdmap(self):
+    import ROOT
+    m = ROOT.std.map[ROOT.std.string, ROOT.float]()
+    for item, thr in self.L1_Phase1_thresholds.items():
+      m[item] = thr
+    return m
+
+  @functools.cached_property
+  def _L1_Phase1_threshold_mappings_stdmap(self):
+    import ROOT
+    m = ROOT.std.map[ROOT.std.string, ROOT.uint64_t]()
+    for item, thr in self.L1_Phase1_threshold_mappings.items():
+      m[item] = thr
+    return m
 
   @functools.lru_cache(maxsize=1000)
-  def getTriggerInfo(self, trigger: str):
+  def getTriggerInfo(self, trigger: str, use_thresholds=True):
     from TrigTauMonitoring.TrigTauInfo import TrigTauInfo
-    return TrigTauInfo(trigger)
+    if use_thresholds:
+      return TrigTauInfo(trigger, self._L1_Phase1_thresholds_stdmap, self._L1_Phase1_threshold_mappings_stdmap)
+    else:
+      return TrigTauInfo(trigger)
 
 
   def configureTriggers(self):
@@ -142,7 +160,7 @@ class TrigTauMonAlgBuilder:
       # without PhI triggers. Also some old SMKs have broken HLTMonitoring DB links, with chains that are not in the Trigger Menu
       if trigger not in HLT_menu: continue
 
-      info = self.getTriggerInfo(trigger)
+      info = self.getTriggerInfo(trigger, use_thresholds=False)
 
       if self.activate_single_tau and info.isHLTSingleTau():
         self.HLT_single_items.append(trigger)
diff --git a/Trigger/TrigSteer/TrigOutputHandling/src/TriggerEDMSerialiserTool.cxx b/Trigger/TrigSteer/TrigOutputHandling/src/TriggerEDMSerialiserTool.cxx
index 4804693cd0a2be4eee7c74ee470068362f5f7543..3ae7e44f2325475d77c9226dd943861be6481cd6 100644
--- a/Trigger/TrigSteer/TrigOutputHandling/src/TriggerEDMSerialiserTool.cxx
+++ b/Trigger/TrigSteer/TrigOutputHandling/src/TriggerEDMSerialiserTool.cxx
@@ -454,11 +454,19 @@ StatusCode TriggerEDMSerialiserTool::fill( HLT::HLTResultMT& resultToFill, const
 
     const size_t thisFragmentSize = buffer.size()*sizeof(uint32_t);
     ATH_MSG_DEBUG( "Serialised size of " << address.persTypeName() << " is " << thisFragmentSize << " bytes" );
-
+    uint16_t  storeInterfaceId=0; std::vector<uint32_t> storeInterfaceBuffer;
     for (const uint16_t id : addressActiveModuleIds) {
+      
       // If result not yet truncated, try adding the serialised data
       if (resultToFill.getTruncatedModuleIds().count(id)==0) {
-        ATH_CHECK(tryAddData(resultToFill, id, buffer, address.truncationMode));
+        // for truncation allowed collecitons, save the interface for a later addition
+        if (address.truncationMode==Address::Truncation::Allowed){
+          if (address.category == Address::Category::xAODInterface){
+            storeInterfaceId=id;
+            storeInterfaceBuffer=buffer;
+          }        
+        } else 
+        ATH_CHECK(tryAddData(resultToFill, id, buffer, address.truncationMode, storeInterfaceId, storeInterfaceBuffer));
       }
       // Check for truncation after adding data
       if (resultToFill.getTruncatedModuleIds().count(id)==0) {
@@ -484,7 +492,8 @@ StatusCode TriggerEDMSerialiserTool::fill( HLT::HLTResultMT& resultToFill, const
 StatusCode TriggerEDMSerialiserTool::tryAddData(HLT::HLTResultMT& hltResult,
                                                 const uint16_t id,
                                                 const std::vector<uint32_t>& data,
-                                                Address::Truncation truncationMode) const {
+                                                Address::Truncation truncationMode, 
+                                                const uint16_t  storeInterfaceId, const std::vector<uint32_t>& storeInterfaceBuffer) const {
   if (m_truncationThresholds.value().count(id)==0) {
     ATH_MSG_ERROR("Module ID " << id << " missing from TruncationThresholds map. Cannot determine if result needs truncation");
     return StatusCode::FAILURE;
@@ -513,6 +522,10 @@ StatusCode TriggerEDMSerialiserTool::tryAddData(HLT::HLTResultMT& hltResult,
     hltResult.addTruncatedModuleId(id, severeTruncation);
   }
   else {
+    // for truncation allowed collections, add first the interface, only if the Aux is stored
+    if (truncationMode==Address::Truncation::Allowed){
+      hltResult.addSerialisedData(storeInterfaceId, storeInterfaceBuffer);
+    }
     // The data fits, so add it to the result
     ATH_MSG_DEBUG("Adding data to result with module ID " << id);
     hltResult.addSerialisedData(id, data);
@@ -524,6 +537,7 @@ StatusCode TriggerEDMSerialiserTool::fillDebugInfo(const TruncationInfoMap& trun
                                                    xAOD::TrigCompositeContainer& debugInfoCont,
                                                    HLT::HLTResultMT& resultToFill,
                                                    SGImplSvc* evtStore) const {
+  ATH_MSG_DEBUG("TriggerEDMSerialiserTool::fillDebugInfo");
   // If full result truncation happened, flag all results as truncated to produce debug info for all
   if (resultToFill.getTruncatedModuleIds().count(fullResultTruncationID)>0) {
     ATH_MSG_ERROR("HLT result truncation on total size! Limit of "
@@ -561,9 +575,11 @@ StatusCode TriggerEDMSerialiserTool::fillDebugInfo(const TruncationInfoMap& trun
         if (!truncationInfo.recorded && truncationInfo.size > largestDropped.second) {
           largestDropped = {truncationInfo.addrPtr->persTypeName(), truncationInfo.size};
         }
-        // Decide if this was a severe truncation (event goes to debug stream)
+        // Decide if this was a severe truncation (event goes to debug stream)                
         if (!truncationInfo.recorded) {
           severeTruncation |= (truncationInfo.addrPtr->truncationMode==Address::Truncation::Error);
+          ATH_MSG_DEBUG("Entering "<<truncationInfo.recorded<<" severeTruncation="<<severeTruncation);
+
         }
       }
       totalSize(*debugInfoThisModule) = sizeSum;
diff --git a/Trigger/TrigSteer/TrigOutputHandling/src/TriggerEDMSerialiserTool.h b/Trigger/TrigSteer/TrigOutputHandling/src/TriggerEDMSerialiserTool.h
index 88444057ecfe56500840eaacafd9d1b7710a7717..f9974683b95fb5f5a28381b12746fab893b276dc 100644
--- a/Trigger/TrigSteer/TrigOutputHandling/src/TriggerEDMSerialiserTool.h
+++ b/Trigger/TrigSteer/TrigOutputHandling/src/TriggerEDMSerialiserTool.h
@@ -180,7 +180,7 @@ class TriggerEDMSerialiserTool: public extends<AthAlgTool, HLTResultMTMakerTool>
    * corresponding module ID as truncated.
    * @return FAILURE in case the truncation threshold is undefined
    */
-  StatusCode tryAddData(HLT::HLTResultMT& hltResult, const uint16_t id, const std::vector<uint32_t>& data, Address::Truncation truncationMode) const;
+  StatusCode tryAddData(HLT::HLTResultMT& hltResult, const uint16_t id, const std::vector<uint32_t>& data, Address::Truncation truncationMode, const uint16_t  storeInterfaceId, const std::vector<uint32_t>& storeInterfaceBuffer) const;
 
   /**
    * Parse the truncation debug information, fill monitoring histograms, fill and record the debug info collection
diff --git a/Trigger/TrigValidation/TrigP1Test/share/BeamSpot.ref b/Trigger/TrigValidation/TrigP1Test/share/BeamSpot.ref
index 0b1f78362d2cd3bd7b0de0eb7c87830c51c1686a..f0d0d616ce0f466208b15d5247111c1ffdcd4754 100644
--- a/Trigger/TrigValidation/TrigP1Test/share/BeamSpot.ref
+++ b/Trigger/TrigValidation/TrigP1Test/share/BeamSpot.ref
@@ -6,133 +6,133 @@ BeamSpotCondAlg
 InDet::InDetBeamSpotReader
 BeamSpotCondAlg                              1   0   DEBUG Executing BeamSpotCondAlg...
 BeamSpotCondAlg                              1   0    INFO Read from condDB status 4 pos (0.06,1.06,-4.6) sigma (0.015,0.015,53) tilt (0,0) sigmaXY 0
-BeamSpotCondAlg                              1   0    INFO Recorded new InDet::BeamSpotData to BeamSpotData with range {[1,l:0] - [440499,l:2]} into conditions store.
-InDet::InDetBeamSpotReader                   1   0    INFO In event [440499,1135927926,t:1669370257.262334340,l:1,b:820]
+BeamSpotCondAlg                              1   0    INFO Recorded new InDet::BeamSpotData to BeamSpotData with range {[1,l:0] - [475321,l:2]} into conditions store.
+InDet::InDetBeamSpotReader                   1   0    INFO In event [475321,352579688,t:1715204691.957781740,l:1,b:3421]
 InDet::InDetBeamSpotReader                   1   0    INFO BeamSpot Position: 0.06 1.06 -4.6, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 4
-InDet::InDetBeamSpotReader                   2   0    INFO In event [440499,1135929044,t:1669370257.273643090,l:1,b:1435]
+InDet::InDetBeamSpotReader                   2   0    INFO In event [475321,352598703,t:1715204692.158221510,l:1,b:21]
 InDet::InDetBeamSpotReader                   2   0    INFO BeamSpot Position: 0.06 1.06 -4.6, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 4
-InDet::InDetBeamSpotReader                   3   0    INFO In event [440499,1135940380,t:1669370257.391699155,l:1,b:9]
+InDet::InDetBeamSpotReader                   3   0    INFO In event [475321,352623892,t:1715204692.426616690,l:1,b:872]
 InDet::InDetBeamSpotReader                   3   0    INFO BeamSpot Position: 0.06 1.06 -4.6, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 4
-InDet::InDetBeamSpotReader                   4   0    INFO In event [440499,1135938941,t:1669370257.376594350,l:1,b:504]
+InDet::InDetBeamSpotReader                   4   0    INFO In event [475321,352624003,t:1715204692.427724850,l:1,b:2518]
 InDet::InDetBeamSpotReader                   4   0    INFO BeamSpot Position: 0.06 1.06 -4.6, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 4
-InDet::InDetBeamSpotReader                   5   0    INFO In event [440499,1135940363,t:1669370257.391535530,l:1,b:579]
+InDet::InDetBeamSpotReader                   5   0    INFO In event [475321,352627637,t:1715204692.464900880,l:1,b:2743]
 InDet::InDetBeamSpotReader                   5   0    INFO BeamSpot Position: 0.06 1.06 -4.6, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 4
 BeamSpotCondAlg                              6   0   DEBUG Executing BeamSpotCondAlg...
 BeamSpotCondAlg                              6   0    INFO Read from condDB status 4 pos (0.06,1.06,-4.6) sigma (0.015,0.015,53) tilt (0,0) sigmaXY 0
-BeamSpotCondAlg                              6   0    INFO Recorded new InDet::BeamSpotData to BeamSpotData with range {[1,l:0] - [440499,l:3]} into conditions store.
-InDet::InDetBeamSpotReader                   6   0    INFO In event [440499,1135952889,t:1669370257.522711375,l:2,b:1072]
+BeamSpotCondAlg                              6   0    INFO Recorded new InDet::BeamSpotData to BeamSpotData with range {[1,l:0] - [475321,l:3]} into conditions store.
+InDet::InDetBeamSpotReader                   6   0    INFO In event [475321,352625468,t:1715204692.442481440,l:2,b:2323]
 InDet::InDetBeamSpotReader                   6   0    INFO BeamSpot Position: 0.06 1.06 -4.6, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 4
-InDet::InDetBeamSpotReader                   7   0    INFO In event [440499,1135954076,t:1669370257.534966005,l:2,b:393]
+InDet::InDetBeamSpotReader                   7   0    INFO In event [475321,352639968,t:1715204692.596483145,l:2,b:1705]
 InDet::InDetBeamSpotReader                   7   0    INFO BeamSpot Position: 0.06 1.06 -4.6, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 4
-InDet::InDetBeamSpotReader                   8   0    INFO In event [440499,1135955768,t:1669370257.552320515,l:2,b:964]
+InDet::InDetBeamSpotReader                   8   0    INFO In event [475321,352631027,t:1715204692.501350940,l:2,b:2384]
 InDet::InDetBeamSpotReader                   8   0    INFO BeamSpot Position: 0.06 1.06 -4.6, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 4
-InDet::InDetBeamSpotReader                   9   0    INFO In event [440499,1135958942,t:1669370257.585554800,l:2,b:24]
+InDet::InDetBeamSpotReader                   9   0    INFO In event [475321,352585416,t:1715204692.017760150,l:2,b:1594]
 InDet::InDetBeamSpotReader                   9   0    INFO BeamSpot Position: 0.06 1.06 -4.6, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 4
-InDet::InDetBeamSpotReader                  10   0    INFO In event [440499,1135963509,t:1669370257.633459170,l:2,b:2550]
+InDet::InDetBeamSpotReader                  10   0    INFO In event [475321,352650704,t:1715204692.709935625,l:2,b:1100]
 InDet::InDetBeamSpotReader                  10   0    INFO BeamSpot Position: 0.06 1.06 -4.6, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 4
 BeamSpotCondAlg                             11   0   DEBUG Executing BeamSpotCondAlg...
 BeamSpotCondAlg                             11   0    INFO Read from condDB status 4 pos (0.06,1.06,-4.6) sigma (0.015,0.015,53) tilt (0,0) sigmaXY 0
-BeamSpotCondAlg                             11   0    INFO Recorded new InDet::BeamSpotData to BeamSpotData with range {[1,l:0] - [440499,l:4]} into conditions store.
-InDet::InDetBeamSpotReader                  11   0    INFO In event [440499,1135968496,t:1669370257.686305835,l:3,b:10]
+BeamSpotCondAlg                             11   0    INFO Recorded new InDet::BeamSpotData to BeamSpotData with range {[1,l:0] - [475321,l:4]} into conditions store.
+InDet::InDetBeamSpotReader                  11   0    INFO In event [475321,352654901,t:1715204692.754644435,l:3,b:291]
 InDet::InDetBeamSpotReader                  11   0    INFO BeamSpot Position: 0.06 1.06 -4.6, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 4
-InDet::InDetBeamSpotReader                  12   0    INFO In event [440499,1135968691,t:1669370257.688316715,l:3,b:2196]
+InDet::InDetBeamSpotReader                  12   0    INFO In event [475321,352656933,t:1715204692.776188825,l:3,b:1280]
 InDet::InDetBeamSpotReader                  12   0    INFO BeamSpot Position: 0.06 1.06 -4.6, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 4
-InDet::InDetBeamSpotReader                  13   0    INFO In event [440499,1135974297,t:1669370257.747754390,l:3,b:81]
+InDet::InDetBeamSpotReader                  13   0    INFO In event [475321,352654691,t:1715204692.752638645,l:3,b:1873]
 InDet::InDetBeamSpotReader                  13   0    INFO BeamSpot Position: 0.06 1.06 -4.6, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 4
-InDet::InDetBeamSpotReader                  14   0    INFO In event [440499,1135975530,t:1669370257.760406160,l:3,b:1063]
+InDet::InDetBeamSpotReader                  14   0    INFO In event [475321,352666548,t:1715204692.879665475,l:3,b:22]
 InDet::InDetBeamSpotReader                  14   0    INFO BeamSpot Position: 0.06 1.06 -4.6, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 4
-InDet::InDetBeamSpotReader                  15   0    INFO In event [440499,1135980226,t:1669370257.810145110,l:3,b:2273]
+InDet::InDetBeamSpotReader                  15   0    INFO In event [475321,352682036,t:1715204693.046432100,l:3,b:1357]
 InDet::InDetBeamSpotReader                  15   0    INFO BeamSpot Position: 0.06 1.06 -4.6, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 4
 BeamSpotCondAlg                             16   0   DEBUG Executing BeamSpotCondAlg...
 BeamSpotCondAlg                             16   0    INFO Read from condDB status 4 pos (0.04,1.04,-4.4) sigma (0.015,0.015,53) tilt (0,0) sigmaXY 0
-BeamSpotCondAlg                             16   0    INFO Recorded new InDet::BeamSpotData to BeamSpotData with range {[440499,l:4] - [440499,l:5]} into conditions store.
-InDet::InDetBeamSpotReader                  16   0    INFO In event [440499,1135981642,t:1669370257.824879370,l:4,b:1183]
+BeamSpotCondAlg                             16   0    INFO Recorded new InDet::BeamSpotData to BeamSpotData with range {[475321,l:4] - [475321,l:5]} into conditions store.
+InDet::InDetBeamSpotReader                  16   0    INFO In event [475321,352586372,t:1715204692.027981495,l:4,b:1395]
 InDet::InDetBeamSpotReader                  16   0    INFO BeamSpot Position: 0.04 1.04 -4.4, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 4
-InDet::InDetBeamSpotReader                  17   0    INFO In event [440499,1135991949,t:1669370257.932004350,l:4,b:22]
+InDet::InDetBeamSpotReader                  17   0    INFO In event [475321,352673075,t:1715204692.949902205,l:4,b:3042]
 InDet::InDetBeamSpotReader                  17   0    INFO BeamSpot Position: 0.04 1.04 -4.4, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 4
-InDet::InDetBeamSpotReader                  18   0    INFO In event [440499,1135989825,t:1669370257.909639525,l:4,b:1791]
+InDet::InDetBeamSpotReader                  18   0    INFO In event [475321,352686347,t:1715204693.092635655,l:4,b:3432]
 InDet::InDetBeamSpotReader                  18   0    INFO BeamSpot Position: 0.04 1.04 -4.4, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 4
-InDet::InDetBeamSpotReader                  19   0    INFO In event [440499,1135995179,t:1669370257.965908135,l:4,b:967]
+InDet::InDetBeamSpotReader                  19   0    INFO In event [475321,352694208,t:1715204693.175850165,l:4,b:2680]
 InDet::InDetBeamSpotReader                  19   0    INFO BeamSpot Position: 0.04 1.04 -4.4, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 4
-InDet::InDetBeamSpotReader                  20   0    INFO In event [440499,1136008817,t:1669370258.109483545,l:4,b:3026]
+InDet::InDetBeamSpotReader                  20   0    INFO In event [475321,352695238,t:1715204693.186475960,l:4,b:871]
 InDet::InDetBeamSpotReader                  20   0    INFO BeamSpot Position: 0.04 1.04 -4.4, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 4
 BeamSpotCondAlg                             21   0   DEBUG Executing BeamSpotCondAlg...
 BeamSpotCondAlg                             21   0    INFO Read from condDB status 7 pos (0.05,1.05,-4.5) sigma (0.015,0.015,53) tilt (0,0) sigmaXY 0
-BeamSpotCondAlg                             21   0    INFO Recorded new InDet::BeamSpotData to BeamSpotData with range {[440499,l:5] - [440499,l:6]} into conditions store.
-InDet::InDetBeamSpotReader                  21   0    INFO In event [440499,1136011685,t:1669370258.138636040,l:5,b:2436]
+BeamSpotCondAlg                             21   0    INFO Recorded new InDet::BeamSpotData to BeamSpotData with range {[475321,l:5] - [475321,l:6]} into conditions store.
+InDet::InDetBeamSpotReader                  21   0    INFO In event [475321,352693078,t:1715204693.163543140,l:5,b:1259]
 InDet::InDetBeamSpotReader                  21   0    INFO BeamSpot Position: 0.05 1.05 -4.5, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  22   0    INFO In event [440499,1135993846,t:1669370257.951998620,l:5,b:3036]
+InDet::InDetBeamSpotReader                  22   0    INFO In event [475321,352697246,t:1715204693.207681445,l:5,b:2533]
 InDet::InDetBeamSpotReader                  22   0    INFO BeamSpot Position: 0.05 1.05 -4.5, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  23   0    INFO In event [440499,1136018755,t:1669370258.212581820,l:5,b:859]
+InDet::InDetBeamSpotReader                  23   0    INFO In event [475321,352717391,t:1715204693.420325995,l:5,b:20]
 InDet::InDetBeamSpotReader                  23   0    INFO BeamSpot Position: 0.05 1.05 -4.5, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  24   0    INFO In event [440499,1136023307,t:1669370258.260500090,l:5,b:378]
+InDet::InDetBeamSpotReader                  24   0    INFO In event [475321,352716507,t:1715204693.411183715,l:5,b:699]
 InDet::InDetBeamSpotReader                  24   0    INFO BeamSpot Position: 0.05 1.05 -4.5, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  25   0    INFO In event [440499,1136027682,t:1669370258.307256755,l:5,b:3237]
+InDet::InDetBeamSpotReader                  25   0    INFO In event [475321,352697272,t:1715204693.207943425,l:5,b:2341]
 InDet::InDetBeamSpotReader                  25   0    INFO BeamSpot Position: 0.05 1.05 -4.5, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
 BeamSpotCondAlg                             26   0   DEBUG Executing BeamSpotCondAlg...
 BeamSpotCondAlg                             26   0    INFO Read from condDB status 7 pos (0.05,1.05,-4.5) sigma (0.015,0.015,53) tilt (0,0) sigmaXY 0
-BeamSpotCondAlg                             26   0    INFO Recorded new InDet::BeamSpotData to BeamSpotData with range {[440499,l:5] - [440499,l:7]} into conditions store.
-InDet::InDetBeamSpotReader                  26   0    INFO In event [440499,1136028071,t:1669370258.311584560,l:6,b:2055]
+BeamSpotCondAlg                             26   0    INFO Recorded new InDet::BeamSpotData to BeamSpotData with range {[475321,l:5] - [475321,l:7]} into conditions store.
+InDet::InDetBeamSpotReader                  26   0    INFO In event [475321,352705723,t:1715204693.296519050,l:6,b:2617]
 InDet::InDetBeamSpotReader                  26   0    INFO BeamSpot Position: 0.05 1.05 -4.5, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  27   0    INFO In event [440499,1136032342,t:1669370258.355246730,l:6,b:2066]
+InDet::InDetBeamSpotReader                  27   0    INFO In event [475321,352729904,t:1715204693.554586670,l:6,b:2974]
 InDet::InDetBeamSpotReader                  27   0    INFO BeamSpot Position: 0.05 1.05 -4.5, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  28   0    INFO In event [440499,1136018608,t:1669370258.211029260,l:6,b:2786]
+InDet::InDetBeamSpotReader                  28   0    INFO In event [475321,352729801,t:1715204693.553582205,l:6,b:1920]
 InDet::InDetBeamSpotReader                  28   0    INFO BeamSpot Position: 0.05 1.05 -4.5, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  29   0    INFO In event [440499,1136041282,t:1669370258.447854995,l:6,b:22]
+InDet::InDetBeamSpotReader                  29   0    INFO In event [475321,352714731,t:1715204693.392282835,l:6,b:2303]
 InDet::InDetBeamSpotReader                  29   0    INFO BeamSpot Position: 0.05 1.05 -4.5, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  30   0    INFO In event [440499,1136044515,t:1669370258.481015525,l:6,b:3254]
+InDet::InDetBeamSpotReader                  30   0    INFO In event [475321,352736624,t:1715204693.625015645,l:6,b:3007]
 InDet::InDetBeamSpotReader                  30   0    INFO BeamSpot Position: 0.05 1.05 -4.5, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
 BeamSpotCondAlg                             31   0   DEBUG Executing BeamSpotCondAlg...
 BeamSpotCondAlg                             31   0    INFO Read from condDB status 7 pos (0.05,1.05,-4.5) sigma (0.015,0.015,53) tilt (0,0) sigmaXY 0
-BeamSpotCondAlg                             31   0    INFO Recorded new InDet::BeamSpotData to BeamSpotData with range {[440499,l:5] - [440499,l:8]} into conditions store.
-InDet::InDetBeamSpotReader                  31   0    INFO In event [440499,1136038957,t:1669370258.423395185,l:7,b:3362]
+BeamSpotCondAlg                             31   0    INFO Recorded new InDet::BeamSpotData to BeamSpotData with range {[475321,l:5] - [475321,l:8]} into conditions store.
+InDet::InDetBeamSpotReader                  31   0    INFO In event [475321,352705817,t:1715204693.297619405,l:7,b:386]
 InDet::InDetBeamSpotReader                  31   0    INFO BeamSpot Position: 0.05 1.05 -4.5, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  32   0    INFO In event [440499,1136032643,t:1669370258.358238750,l:7,b:807]
+InDet::InDetBeamSpotReader                  32   0    INFO In event [475321,352614968,t:1715204692.331155185,l:7,b:2609]
 InDet::InDetBeamSpotReader                  32   0    INFO BeamSpot Position: 0.05 1.05 -4.5, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  33   0    INFO In event [440499,1136023252,t:1669370258.259938025,l:7,b:2799]
+InDet::InDetBeamSpotReader                  33   0    INFO In event [475321,352747155,t:1715204693.737612120,l:7,b:170]
 InDet::InDetBeamSpotReader                  33   0    INFO BeamSpot Position: 0.05 1.05 -4.5, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  34   0    INFO In event [440499,1136047742,t:1669370258.514860930,l:7,b:1859]
+InDet::InDetBeamSpotReader                  34   0    INFO In event [475321,352744707,t:1715204693.710997515,l:7,b:2684]
 InDet::InDetBeamSpotReader                  34   0    INFO BeamSpot Position: 0.05 1.05 -4.5, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  35   0    INFO In event [440499,1136054815,t:1669370258.589692285,l:7,b:135]
+InDet::InDetBeamSpotReader                  35   0    INFO In event [475321,352757836,t:1715204693.849803845,l:7,b:2495]
 InDet::InDetBeamSpotReader                  35   0    INFO BeamSpot Position: 0.05 1.05 -4.5, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
 BeamSpotCondAlg                             36   0   DEBUG Executing BeamSpotCondAlg...
 BeamSpotCondAlg                             36   0    INFO Read from condDB status 7 pos (0.05,1.05,-4.5) sigma (0.015,0.015,53) tilt (0,0) sigmaXY 0
-BeamSpotCondAlg                             36   0    INFO Recorded new InDet::BeamSpotData to BeamSpotData with range {[440499,l:5] - [440499,l:9]} into conditions store.
-InDet::InDetBeamSpotReader                  36   0    INFO In event [440499,1136062038,t:1669370258.666538315,l:8,b:749]
+BeamSpotCondAlg                             36   0    INFO Recorded new InDet::BeamSpotData to BeamSpotData with range {[475321,l:5] - [475321,l:9]} into conditions store.
+InDet::InDetBeamSpotReader                  36   0    INFO In event [475321,352747024,t:1715204693.736156895,l:8,b:2434]
 InDet::InDetBeamSpotReader                  36   0    INFO BeamSpot Position: 0.05 1.05 -4.5, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  37   0    INFO In event [440499,1136062180,t:1669370258.668020640,l:8,b:3135]
+InDet::InDetBeamSpotReader                  37   0    INFO In event [475321,352712518,t:1715204693.369055115,l:8,b:1564]
 InDet::InDetBeamSpotReader                  37   0    INFO BeamSpot Position: 0.05 1.05 -4.5, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  38   0    INFO In event [440499,1136059811,t:1669370258.643240540,l:8,b:766]
+InDet::InDetBeamSpotReader                  38   0    INFO In event [475321,352758742,t:1715204693.859309025,l:8,b:2105]
 InDet::InDetBeamSpotReader                  38   0    INFO BeamSpot Position: 0.05 1.05 -4.5, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  39   0    INFO In event [440499,1136068845,t:1669370258.737383270,l:8,b:3198]
+InDet::InDetBeamSpotReader                  39   0    INFO In event [475321,352667426,t:1715204692.888864040,l:8,b:1599]
 InDet::InDetBeamSpotReader                  39   0    INFO BeamSpot Position: 0.05 1.05 -4.5, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  40   0    INFO In event [440499,1136068646,t:1669370258.735560845,l:8,b:1437]
+InDet::InDetBeamSpotReader                  40   0    INFO In event [475321,352763818,t:1715204693.912414780,l:8,b:2821]
 InDet::InDetBeamSpotReader                  40   0    INFO BeamSpot Position: 0.05 1.05 -4.5, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
 BeamSpotCondAlg                             41   0   DEBUG Executing BeamSpotCondAlg...
 BeamSpotCondAlg                             41   0    INFO Read from condDB status 7 pos (0.09,1.09,-4.9) sigma (0.015,0.015,53) tilt (0,0) sigmaXY 0
-BeamSpotCondAlg                             41   0    INFO Recorded new InDet::BeamSpotData to BeamSpotData with range {[440499,l:9] - [440499,l:10]} into conditions store.
-InDet::InDetBeamSpotReader                  41   0    INFO In event [440499,1136069349,t:1669370258.742501365,l:9,b:1614]
+BeamSpotCondAlg                             41   0    INFO Recorded new InDet::BeamSpotData to BeamSpotData with range {[475321,l:9] - [475321,l:10]} into conditions store.
+InDet::InDetBeamSpotReader                  41   0    INFO In event [475321,352656457,t:1715204692.771063440,l:9,b:2572]
 InDet::InDetBeamSpotReader                  41   0    INFO BeamSpot Position: 0.09 1.09 -4.9, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  42   0    INFO In event [440499,1136036590,t:1669370258.399132415,l:9,b:343]
+InDet::InDetBeamSpotReader                  42   0    INFO In event [475321,352727051,t:1715204693.521724950,l:9,b:1026]
 InDet::InDetBeamSpotReader                  42   0    INFO BeamSpot Position: 0.09 1.09 -4.9, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  43   0    INFO In event [440499,1136077545,t:1669370258.828199250,l:9,b:601]
+InDet::InDetBeamSpotReader                  43   0    INFO In event [475321,352747026,t:1715204693.736169445,l:9,b:2937]
 InDet::InDetBeamSpotReader                  43   0    INFO BeamSpot Position: 0.09 1.09 -4.9, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  44   0    INFO In event [440499,1136078979,t:1669370258.842712045,l:9,b:1327]
+InDet::InDetBeamSpotReader                  44   0    INFO In event [475321,352788810,t:1715204694.176843315,l:9,b:1509]
 InDet::InDetBeamSpotReader                  44   0    INFO BeamSpot Position: 0.09 1.09 -4.9, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  45   0    INFO In event [440499,1136082743,t:1669370258.882252505,l:9,b:88]
+InDet::InDetBeamSpotReader                  45   0    INFO In event [475321,352792487,t:1715204694.215820635,l:9,b:2648]
 InDet::InDetBeamSpotReader                  45   0    INFO BeamSpot Position: 0.09 1.09 -4.9, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
 BeamSpotCondAlg                             46   0   DEBUG Executing BeamSpotCondAlg...
 BeamSpotCondAlg                             46   0    INFO Read from condDB status 7 pos (0.09,1.09,-4.9) sigma (0.015,0.015,53) tilt (0,0) sigmaXY 0
-BeamSpotCondAlg                             46   0    INFO Recorded new InDet::BeamSpotData to BeamSpotData with range {[440499,l:9] - [440499,l:11]} into conditions store.
-InDet::InDetBeamSpotReader                  46   0    INFO In event [440499,1136083623,t:1669370258.891044470,l:10,b:3189]
+BeamSpotCondAlg                             46   0    INFO Recorded new InDet::BeamSpotData to BeamSpotData with range {[475321,l:9] - [475321,l:11]} into conditions store.
+InDet::InDetBeamSpotReader                  46   0    INFO In event [475321,352746196,t:1715204693.727131160,l:10,b:656]
 InDet::InDetBeamSpotReader                  46   0    INFO BeamSpot Position: 0.09 1.09 -4.9, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  47   0    INFO In event [440499,1136083233,t:1669370258.887205425,l:10,b:2576]
+InDet::InDetBeamSpotReader                  47   0    INFO In event [475321,352773814,t:1715204694.017401500,l:10,b:1497]
 InDet::InDetBeamSpotReader                  47   0    INFO BeamSpot Position: 0.09 1.09 -4.9, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  48   0    INFO In event [440499,1136090603,t:1669370258.963988730,l:10,b:676]
+InDet::InDetBeamSpotReader                  48   0    INFO In event [475321,352802443,t:1715204694.323413735,l:10,b:2429]
 InDet::InDetBeamSpotReader                  48   0    INFO BeamSpot Position: 0.09 1.09 -4.9, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  49   0    INFO In event [440499,1136087519,t:1669370258.932038610,l:10,b:3188]
+InDet::InDetBeamSpotReader                  49   0    INFO In event [475321,352727643,t:1715204693.528047515,l:10,b:1384]
 InDet::InDetBeamSpotReader                  49   0    INFO BeamSpot Position: 0.09 1.09 -4.9, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
-InDet::InDetBeamSpotReader                  50   0    INFO In event [440499,1136096920,t:1669370259.030274410,l:10,b:2158]
+InDet::InDetBeamSpotReader                  50   0    INFO In event [475321,352807779,t:1715204694.379826885,l:10,b:270]
 InDet::InDetBeamSpotReader                  50   0    INFO BeamSpot Position: 0.09 1.09 -4.9, Sigma: 0.015 0.015 53, Tilt: 0 0, Status: 7
 BeamSpotCondAlg                                      DEBUG Property update for OutputLevel : new value = 2
 BeamSpotCondAlg                                      DEBUG Initializing BeamSpotCondAlg...
diff --git a/Trigger/TrigValidation/TrigP1Test/share/ref_v1Dev_decodeBS_build.ref b/Trigger/TrigValidation/TrigP1Test/share/ref_v1Dev_decodeBS_build.ref
index 88f4ebf136d3d5d8015d17c9fb595e6f55762348..6b166b450ea535608a76b48d1c83d9b5a220d844 100644
--- a/Trigger/TrigValidation/TrigP1Test/share/ref_v1Dev_decodeBS_build.ref
+++ b/Trigger/TrigValidation/TrigP1Test/share/ref_v1Dev_decodeBS_build.ref
@@ -58,16 +58,16 @@ HLT_2e5_lhvloose_L1EM3_bBeeM6000_L1All:
     0: 10
     1: 10
     2: 4
-    3: 1
-    4: 1
-    5: 1
-  stepFeatures:
-    0: 42
-    1: 28
-    2: 18
-    3: 4
+    3: 2
     4: 2
     5: 2
+  stepFeatures:
+    0: 42
+    1: 26
+    2: 20
+    3: 5
+    4: 4
+    5: 4
     6: 1
 HLT_2e5_lhvloose_L1eEM5_bBeeM6000_L1All:
   eventCount: 0
@@ -75,11 +75,17 @@ HLT_2e5_lhvloose_L1eEM5_bBeeM6000_L1All:
     0: 3
     1: 3
     2: 2
+    3: 1
+    4: 1
+    5: 1
   stepFeatures:
-    0: 15
-    1: 6
-    2: 4
-    3: 2
+    0: 17
+    1: 9
+    2: 13
+    3: 5
+    4: 4
+    5: 4
+    6: 1
 HLT_2e5_lhvloose_bBeeM6000_L14J15:
   eventCount: 0
 HLT_2e5_lhvloose_bBeeM6000_L14jJ40:
@@ -87,56 +93,68 @@ HLT_2e5_lhvloose_bBeeM6000_L14jJ40:
 HLT_2e5_lhvloose_bBeeM6000_L1BKeePrescaled:
   eventCount: 0
   stepCounts:
-    0: 1
-    1: 1
-    2: 1
-  stepFeatures:
-    0: 6
+    0: 2
     1: 2
-    2: 2
+    2: 1
     3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 8
+    1: 6
+    2: 11
+    3: 4
+    4: 4
+    5: 4
+    6: 1
 HLT_2e5_lhvloose_bBeeM6000_L1BKeePrescaledLegacy:
   eventCount: 0
   stepCounts:
-    0: 3
-    1: 3
-    2: 2
+    0: 2
+    1: 2
+    2: 1
     3: 1
     4: 1
     5: 1
   stepFeatures:
-    0: 14
-    1: 9
-    2: 6
-    3: 3
+    0: 12
+    1: 4
+    2: 8
+    3: 2
     4: 2
     5: 2
     6: 1
 HLT_2e5_lhvloose_bBeeM6000_L1BKeePrimary:
   eventCount: 0
   stepCounts:
-    0: 1
-    1: 1
-    2: 1
-  stepFeatures:
-    0: 6
+    0: 2
     1: 2
-    2: 2
+    2: 1
     3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 9
+    1: 6
+    2: 11
+    3: 4
+    4: 4
+    5: 4
+    6: 1
 HLT_2e5_lhvloose_bBeeM6000_L1BKeePrimaryLegacy:
   eventCount: 0
   stepCounts:
     0: 3
     1: 3
-    2: 2
+    2: 1
     3: 1
     4: 1
     5: 1
   stepFeatures:
-    0: 12
-    1: 9
-    2: 6
-    3: 3
+    0: 14
+    1: 7
+    2: 9
+    3: 2
     4: 2
     5: 2
     6: 1
@@ -144,20 +162,48 @@ HLT_2e5_lhvloose_bBeeM6000_L1BPH-0M9-EM7-EM5_MU5VF:
   eventCount: 0
 HLT_2e5_lhvloose_bBeeM6000_L1BPH-0M9-eEM9-eEM7_MU5VF:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 4
+    1: 4
+    2: 10
+    3: 4
+    4: 4
+    5: 4
+    6: 1
 HLT_2e5_lhvloose_bBeeM6000_L1eEM26M:
   eventCount: 0
-  stepFeatures:
+  stepCounts:
     0: 1
+    1: 1
+  stepFeatures:
+    0: 4
+    1: 2
+    2: 1
 HLT_2g10_loose_EgammaPEBTLA_L12DR15-M70-2eEM9L:
   eventCount: 0
 HLT_2g10_loose_L1eEM9_mu20_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_2g10_loose_L1eEM9_mu23_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_2g10_loose_mu20_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_2g10_loose_mu23_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_2g10_medium_EgammaPEBTLA_L12DR15-M70-2eEM9L:
   eventCount: 0
 HLT_2g13_loose_EgammaPEBTLA_L113DR25-25M70-2eEM12L:
@@ -175,28 +221,37 @@ HLT_2g13_medium_EgammaPEBTLA_L12DR15-M70-2eEM12L:
 HLT_2g15_loose_25dphiAA_invmAA80_L12eEM9:
   eventCount: 0
   stepCounts:
-    0: 3
-  stepFeatures:
-    0: 9
+    0: 4
     1: 1
+    2: 1
+  stepFeatures:
+    0: 11
+    1: 5
+    2: 2
 HLT_2g15_loose_25dphiAA_invmAA80_L1DPHI-M70-2eEM15M:
   eventCount: 0
 HLT_2g15_tight_25dphiAA_L12eEM9:
   eventCount: 0
   stepCounts:
-    0: 3
-  stepFeatures:
-    0: 9
+    0: 4
     1: 1
+    2: 1
+  stepFeatures:
+    0: 11
+    1: 5
+    2: 2
 HLT_2g15_tight_25dphiAA_L1DPHI-M70-2eEM15M:
   eventCount: 0
 HLT_2g15_tight_25dphiAA_invmAA80_L12eEM9:
   eventCount: 0
   stepCounts:
-    0: 3
-  stepFeatures:
-    0: 9
+    0: 4
     1: 1
+    2: 1
+  stepFeatures:
+    0: 11
+    1: 5
+    2: 2
 HLT_2g15_tight_25dphiAA_invmAA80_L1DPHI-M70-2eEM15M:
   eventCount: 0
 HLT_2g15_tight_L1DPHI-M70-2eEM15M:
@@ -242,21 +297,24 @@ HLT_2g50_tight_L1eEM9_UNPAIRED_ISO:
 HLT_2g9_loose_25dphiAA_invmAA80_L12eEM9:
   eventCount: 0
   stepCounts:
-    0: 6
-    1: 3
-    2: 2
+    0: 8
+    1: 6
+    2: 5
   stepFeatures:
-    0: 14
-    1: 10
-    2: 6
-    3: 2
+    0: 21
+    1: 14
+    2: 14
+    3: 1
 HLT_2g9_loose_25dphiAA_invmAA80_L1DPHI-M70-2eEM9:
   eventCount: 0
   stepCounts:
     0: 3
+    1: 2
+    2: 1
   stepFeatures:
-    0: 7
-    1: 3
+    0: 10
+    1: 6
+    2: 5
 HLT_2g9_loose_25dphiAA_invmAA80_L1DPHI-M70-2eEM9L:
   eventCount: 0
 HLT_2j100_2timeSig15_L1jJ90:
@@ -319,29 +377,29 @@ HLT_2j20_ftf_mb_afprec_afpdz10_L1RD0_FILLED:
   eventCount: 0
   stepCounts:
     0: 50
-    1: 32
-    2: 32
+    1: 35
+    2: 35
   stepFeatures:
     0: 50
-    1: 143
-    2: 32
+    1: 183
+    2: 35
 HLT_2j20_ftf_mb_afprec_afpdz5_L1RD0_FILLED:
   eventCount: 0
   stepCounts:
     0: 50
-    1: 32
-    2: 32
+    1: 35
+    2: 35
   stepFeatures:
     0: 50
-    1: 143
-    2: 32
+    1: 183
+    2: 35
 HLT_2j20_mb_afprec_afpdijet_L1RD0_FILLED:
   eventCount: 0
   stepCounts:
-    0: 31
+    0: 32
   stepFeatures:
-    0: 124
-    1: 31
+    0: 144
+    1: 32
 HLT_2j20c_2j20c_80bdips_roiftf_presel4c20_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
 HLT_2j20c_2j20c_85bdips_roiftf_presel4c20_L14jJ40p0ETA25:
@@ -460,14 +518,10 @@ HLT_2j45_0eta290_020jvt_bdl1d60_pf_ftf_xe50_cell_xe85_pfopufit_L12J15_XE55:
   eventCount: 0
 HLT_2j45_0eta290_020jvt_bdl1d60_pf_ftf_xe50_cell_xe85_pfopufit_L12jJ40_jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_2j45_0eta290_020jvt_bdl1d60_pf_ftf_xe50_cell_xe85_tcpufit_L12J15_XE55:
   eventCount: 0
 HLT_2j45_0eta290_020jvt_bdl1d60_pf_ftf_xe50_cell_xe85_tcpufit_L12jJ40_jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 1
 HLT_2j45_0eta290_020jvt_bdl1d70_j0_HT290_j0_DJMASS700j35_pf_ftf_L1HT150-J20s5pETA31_MJJ-400-CF:
   eventCount: 0
 HLT_2j45_0eta290_020jvt_bdl1d70_j0_HT290_j0_DJMASS700j35_pf_ftf_L1HT150-jJ50s5pETA32_jMJJ-400-CF:
@@ -488,14 +542,10 @@ HLT_2j45_0eta290_020jvt_bgn160_pf_ftf_xe50_cell_xe85_pfopufit_L12J15_XE55:
   eventCount: 0
 HLT_2j45_0eta290_020jvt_bgn160_pf_ftf_xe50_cell_xe85_pfopufit_L12jJ40_jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_2j45_0eta290_020jvt_bgn160_pf_ftf_xe50_cell_xe85_tcpufit_L12J15_XE55:
   eventCount: 0
 HLT_2j45_0eta290_020jvt_bgn160_pf_ftf_xe50_cell_xe85_tcpufit_L12jJ40_jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 1
 HLT_2j45_0eta290_020jvt_bgn170_j0_HT290_j0_DJMASS700j35_pf_ftf_L1HT150-J20s5pETA31_MJJ-400-CF:
   eventCount: 0
 HLT_2j45_0eta290_020jvt_bgn170_j0_HT290_j0_DJMASS700j35_pf_ftf_L1HT150-jJ50s5pETA32_jMJJ-400-CF:
@@ -510,12 +560,8 @@ HLT_2j45_0eta290_020jvt_bgn260_3j45_pf_ftf_presel3j25XX2j25bgtwo85_L15jJ40p0ETA2
   eventCount: 0
 HLT_2j45_0eta290_020jvt_bgn260_pf_ftf_xe50_cell_xe85_pfopufit_L12jJ40_jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_2j45_0eta290_020jvt_bgn260_pf_ftf_xe50_cell_xe85_tcpufit_L12jJ40_jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 1
 HLT_2j45_0eta290_020jvt_bgn270_j0_HT290_j0_DJMASS700j35_pf_ftf_L1HT150-jJ50s5pETA32_jMJJ-400-CF:
   eventCount: 0
 HLT_2j45_2j45_2timeSig15_L14jJ40:
@@ -601,29 +647,37 @@ HLT_2mu15_L12MU8F:
 HLT_2mu3_L12MU3V:
   eventCount: 0
   stepCounts:
-    0: 2
+    0: 1
   stepFeatures:
-    0: 6
+    0: 2
 HLT_2mu3_L12MU3VF:
   eventCount: 0
-  stepCounts:
-    0: 2
-  stepFeatures:
-    0: 5
 HLT_2mu4_11invmAA60_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_2mu4_11invmAA60_L12MU3VF:
   eventCount: 0
 HLT_2mu4_11invmAA60_L1DY-BOX-2MU3VF:
   eventCount: 0
 HLT_2mu4_7invmAA9_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_2mu4_7invmAA9_L12MU3VF:
   eventCount: 0
 HLT_2mu4_7invmAA9_L1DY-BOX-2MU3VF:
   eventCount: 0
 HLT_2mu4_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_2mu4_L1BPH-7M11-25DR99-2MU3VF:
   eventCount: 0
 HLT_2mu4_L1BPH-7M14-0DR25-MU5VFMU3VF:
@@ -634,6 +688,10 @@ HLT_2mu4_L1BPH-7M14-2MU3VF:
   eventCount: 0
 HLT_2mu4_PhysicsTLA_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_2mu4_PhysicsTLA_L1BPH-7M22-0DR12-2MU3V:
   eventCount: 0
 HLT_2mu4_PhysicsTLA_L1BPH-7M22-0DR20-2MU3V:
@@ -652,6 +710,10 @@ HLT_2mu4_b7invmAB22vtx20_L1BPH-7M22-2MU3VF:
   eventCount: 0
 HLT_2mu4_bBmumu_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_2mu4_bBmumu_L12MU3VF:
   eventCount: 0
 HLT_2mu4_bBmumu_L1BPH-2M9-0DR15-2MU3V:
@@ -660,6 +722,10 @@ HLT_2mu4_bBmumu_L1BPH-2M9-0DR15-2MU3VF:
   eventCount: 0
 HLT_2mu4_bBmumu_Lxy0_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_2mu4_bBmumu_Lxy0_L12MU3VF:
   eventCount: 0
 HLT_2mu4_bBmumu_Lxy0_L1BPH-2M9-0DR15-2MU3V:
@@ -668,6 +734,10 @@ HLT_2mu4_bBmumu_Lxy0_L1BPH-2M9-0DR15-2MU3VF:
   eventCount: 0
 HLT_2mu4_bBmumux_BcmumuD0Xloose_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_2mu4_bBmumux_BcmumuD0Xloose_L12MU3VF:
   eventCount: 0
 HLT_2mu4_bBmumux_BcmumuD0Xloose_L1BPH-2M9-0DR15-2MU3V:
@@ -676,6 +746,10 @@ HLT_2mu4_bBmumux_BcmumuD0Xloose_L1BPH-2M9-0DR15-2MU3VF:
   eventCount: 0
 HLT_2mu4_bBmumux_BcmumuDploose_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_2mu4_bBmumux_BcmumuDploose_L12MU3VF:
   eventCount: 0
 HLT_2mu4_bBmumux_BcmumuDploose_L1BPH-2M9-0DR15-2MU3V:
@@ -684,6 +758,10 @@ HLT_2mu4_bBmumux_BcmumuDploose_L1BPH-2M9-0DR15-2MU3VF:
   eventCount: 0
 HLT_2mu4_bBmumux_BcmumuDsloose_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_2mu4_bBmumux_BcmumuDsloose_L12MU3VF:
   eventCount: 0
 HLT_2mu4_bBmumux_BcmumuDsloose_L1BPH-2M9-0DR15-2MU3V:
@@ -692,6 +770,10 @@ HLT_2mu4_bBmumux_BcmumuDsloose_L1BPH-2M9-0DR15-2MU3VF:
   eventCount: 0
 HLT_2mu4_bBmumux_BcmumuDstarloose_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_2mu4_bBmumux_BcmumuDstarloose_L12MU3VF:
   eventCount: 0
 HLT_2mu4_bBmumux_BcmumuDstarloose_L1BPH-2M9-0DR15-2MU3V:
@@ -700,6 +782,10 @@ HLT_2mu4_bBmumux_BcmumuDstarloose_L1BPH-2M9-0DR15-2MU3VF:
   eventCount: 0
 HLT_2mu4_bBmumux_BcmumuPi_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_2mu4_bBmumux_BcmumuPi_L12MU3VF:
   eventCount: 0
 HLT_2mu4_bBmumux_BcmumuPi_L1BPH-2M9-0DR15-2MU3V:
@@ -708,6 +794,10 @@ HLT_2mu4_bBmumux_BcmumuPi_L1BPH-2M9-0DR15-2MU3VF:
   eventCount: 0
 HLT_2mu4_bBmumux_BdmumuKst_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_2mu4_bBmumux_BdmumuKst_L12MU3VF:
   eventCount: 0
 HLT_2mu4_bBmumux_BdmumuKst_L1BPH-2M9-0DR15-2MU3V:
@@ -716,6 +806,10 @@ HLT_2mu4_bBmumux_BdmumuKst_L1BPH-2M9-0DR15-2MU3VF:
   eventCount: 0
 HLT_2mu4_bBmumux_BpmumuKp_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_2mu4_bBmumux_BpmumuKp_L12MU3VF:
   eventCount: 0
 HLT_2mu4_bBmumux_BpmumuKp_L1BPH-2M9-0DR15-2MU3V:
@@ -724,6 +818,10 @@ HLT_2mu4_bBmumux_BpmumuKp_L1BPH-2M9-0DR15-2MU3VF:
   eventCount: 0
 HLT_2mu4_bBmumux_BsmumuPhi_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_2mu4_bBmumux_BsmumuPhi_L12MU3VF:
   eventCount: 0
 HLT_2mu4_bBmumux_BsmumuPhi_L1BPH-2M9-0DR15-2MU3V:
@@ -732,7 +830,11 @@ HLT_2mu4_bBmumux_BsmumuPhi_L1BPH-2M9-0DR15-2MU3VF:
   eventCount: 0
 HLT_2mu4_bBmumux_LbPqKm_L12MU3V:
   eventCount: 0
-HLT_2mu4_bBmumux_LbPqKm_L12MU3VF:
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
+HLT_2mu4_bBmumux_LbPqKm_L12MU3VF:
   eventCount: 0
 HLT_2mu4_bBmumux_LbPqKm_L1BPH-2M9-0DR15-2MU3V:
   eventCount: 0
@@ -740,22 +842,42 @@ HLT_2mu4_bBmumux_LbPqKm_L1BPH-2M9-0DR15-2MU3VF:
   eventCount: 0
 HLT_2mu4_bBmux_BdmuDstarX_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_2mu4_bBmux_BdmuDstarX_L12MU3VF:
   eventCount: 0
 HLT_2mu4_bDimu2700_sigmaLxy3_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_2mu4_bDimu2700_sigmaLxy3_L12MU3VF:
   eventCount: 0
 HLT_2mu4_bDimu_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_2mu4_bDimu_L12MU3VF:
   eventCount: 0
 HLT_2mu4_bJpsimumu_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_2mu4_bJpsimumu_L12MU3VF:
   eventCount: 0
 HLT_2mu4_bJpsimumu_Lxy0_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_2mu4_bJpsimumu_Lxy0_L12MU3VF:
   eventCount: 0
 HLT_2mu4_bJpsimumu_Lxy0_L1BPH-2M9-0DR15-2MU3V:
@@ -764,16 +886,28 @@ HLT_2mu4_bJpsimumu_Lxy0_L1BPH-2M9-0DR15-2MU3VF:
   eventCount: 0
 HLT_2mu4_bJpsimumu_sigmaLxy3_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_2mu4_bJpsimumu_sigmaLxy3_L12MU3VF:
   eventCount: 0
 HLT_2mu4_bUpsimumu_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_2mu4_bUpsimumu_L12MU3VF:
   eventCount: 0
 HLT_2mu4_ivarloose_L1BPH-7M14-0DR25-MU5VFMU3VF:
   eventCount: 0
 HLT_2mu4_l2io_invmDimu_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_2mu4_l2io_invmDimu_L12MU3VF:
   eventCount: 0
 HLT_2mu4_l2io_invmDimu_L1BPH-2M9-0DR15-2MU3V:
@@ -784,14 +918,38 @@ HLT_2mu4_l2mt_L1MU4BOM:
   eventCount: 0
 HLT_2mu4_muonqual_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_2mu4_noL2Comb_bBmumux_BpmumuKp_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
+    1: 2
 HLT_2mu4_noL2Comb_bBmumux_BsmumuPhi_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
+    1: 2
 HLT_2mu4_noL2Comb_bBmumux_LbPqKm_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
+    1: 2
 HLT_2mu4_noL2Comb_bJpsimumu_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
+    1: 2
 HLT_2mu50_msonly_L1MU14FCH:
   eventCount: 0
 HLT_2mu50_msonly_L1MU18VFCH:
@@ -914,12 +1072,8 @@ HLT_2mu6_l2io_invmDimu_L1LFV-MU5VF:
   eventCount: 0
 HLT_2mu6_mu4_bTau_L12MU5VF_3MU3V:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_2mu6_mu4_bUpsi_L12MU5VF_3MU3V:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_2mu6_muonqual_L12MU5VF:
   eventCount: 0
 HLT_2mu6noL1_msonly_nscan_j50_j30a_j0_DJMASS1000j30dphi260x200deta_L1MJJ-500-NFF:
@@ -964,10 +1118,17 @@ HLT_3j20_020jvt_j20_0eta290_boffperf_pf_ftf_L1HT190-J15s5pETA21:
   eventCount: 0
 HLT_3j35_0eta290_020jvt_bdl1d60_pf_ftf_xe50_cell_xe70_pfopufit_L13J15p0ETA25_XE40:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 3
+    1: 3
 HLT_3j35_0eta290_020jvt_bdl1d60_pf_ftf_xe50_cell_xe70_pfopufit_L13jJ40p0ETA25_jXE80:
   eventCount: 0
 HLT_3j35_0eta290_020jvt_bdl1d60_pf_ftf_xe50_cell_xe70_tcpufit_L13J15p0ETA25_XE40:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_3j35_0eta290_020jvt_bdl1d60_pf_ftf_xe50_cell_xe70_tcpufit_L13jJ40p0ETA25_jXE80:
   eventCount: 0
 HLT_3j35_0eta290_020jvt_bdl1d70_j35_pf_ftf_presel2j25XX2j25b85_L14J15p0ETA25:
@@ -976,10 +1137,17 @@ HLT_3j35_0eta290_020jvt_bdl1d70_j35_pf_ftf_presel2j25XX2j25b85_L14jJ40p0ETA25:
   eventCount: 0
 HLT_3j35_0eta290_020jvt_bgn160_pf_ftf_xe50_cell_xe70_pfopufit_L13J15p0ETA25_XE40:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 3
+    1: 3
 HLT_3j35_0eta290_020jvt_bgn160_pf_ftf_xe50_cell_xe70_pfopufit_L13jJ40p0ETA25_jXE80:
   eventCount: 0
 HLT_3j35_0eta290_020jvt_bgn160_pf_ftf_xe50_cell_xe70_tcpufit_L13J15p0ETA25_XE40:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_3j35_0eta290_020jvt_bgn160_pf_ftf_xe50_cell_xe70_tcpufit_L13jJ40p0ETA25_jXE80:
   eventCount: 0
 HLT_3j35_0eta290_020jvt_bgn170_j35_pf_ftf_presel2j25XX2j25b85_L14J15p0ETA25:
@@ -1100,36 +1268,40 @@ HLT_4j20_020jvt_boffperf_pf_ftf_L1HT190-J15s5pETA21:
   eventCount: 0
 HLT_4j20_020jvt_boffperf_pf_ftf_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 1
 HLT_4j20_0eta290_boffperf_pf_ftf_L1HT190-J15s5pETA21:
   eventCount: 0
 HLT_4j20c_L14jJ40p0ETA25:
   eventCount: 0
 HLT_4j20c_pf_ftf_presel4c20_L1RD0_FILLED:
-  eventCount: 4
+  eventCount: 9
   stepCounts:
-    0: 13
-    1: 4
+    0: 19
+    1: 9
   stepFeatures:
-    0: 13
-    1: 18
+    0: 19
+    1: 43
 HLT_4j20c_pf_ftf_preselZ120XX4c20_L1RD0_FILLED:
-  eventCount: 3
+  eventCount: 5
   stepCounts:
-    0: 13
-    1: 3
-    2: 3
+    0: 19
+    1: 7
+    2: 5
   stepFeatures:
-    0: 13
-    1: 3
-    2: 14
+    0: 19
+    1: 7
+    2: 24
 HLT_4j20c_roiftf_presel4c20_L1RD0_FILLED:
-  eventCount: 13
+  eventCount: 19
   stepCounts:
-    0: 13
-    1: 13
+    0: 19
+    1: 19
   stepFeatures:
-    0: 13
-    1: 65
+    0: 19
+    1: 107
 HLT_4j25_PhysicsTLA_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
 HLT_4j35_0eta290_020jvt_bdl1d77_pf_ftf_presel4j25b95_L14J15p0ETA25:
@@ -1320,54 +1492,68 @@ HLT_7j45_pf_ftf_presel7j30_L14jJ40:
   eventCount: 0
 HLT_dispvtx0_loose_L1XE50:
   eventCount: 0
+  stepCounts:
+    0: 2
+    1: 2
+  stepFeatures:
+    0: 2
+    1: 2
 HLT_distrk20_medium_L1XE50:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_distrk20_medium_L1XE55:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 1
 HLT_distrk20_medium_L1gXEJWOJ100:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_distrk20_medium_L1gXEJWOJ110:
   eventCount: 0
 HLT_distrk20_medium_L1jXE100:
-  eventCount: 1
+  eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 1
   stepFeatures:
-    0: 2
-    1: 1
+    0: 1
 HLT_distrk20_medium_L1jXE110:
-  eventCount: 1
+  eventCount: 0
+HLT_distrk20_tight_L1XE50:
+  eventCount: 0
   stepCounts:
     0: 2
-    1: 1
   stepFeatures:
     0: 2
-    1: 1
-HLT_distrk20_tight_L1XE50:
-  eventCount: 0
 HLT_distrk20_tight_L1XE55:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 1
 HLT_distrk20_tight_L1gXEJWOJ100:
   eventCount: 0
-HLT_distrk20_tight_L1gXEJWOJ110:
-  eventCount: 0
-HLT_distrk20_tight_L1jXE100:
-  eventCount: 1
   stepCounts:
     0: 2
-    1: 1
   stepFeatures:
     0: 2
-    1: 1
-HLT_distrk20_tight_L1jXE110:
-  eventCount: 1
+HLT_distrk20_tight_L1gXEJWOJ110:
+  eventCount: 0
+HLT_distrk20_tight_L1jXE100:
+  eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 1
   stepFeatures:
-    0: 2
-    1: 1
+    0: 1
+HLT_distrk20_tight_L1jXE110:
+  eventCount: 0
 HLT_e100_etcut_L1eEM26M:
   eventCount: 0
 HLT_e100_etcut_L1eEM28M:
@@ -1377,17 +1563,17 @@ HLT_e100_lhvloose_L1eEM26M:
 HLT_e100_lhvloose_L1eEM28M:
   eventCount: 0
 HLT_e10_etcut_L1eEM9:
-  eventCount: 13
+  eventCount: 15
   stepCounts:
-    0: 17
-    1: 17
+    0: 16
+    1: 16
     2: 15
-    3: 13
+    3: 15
   stepFeatures:
-    0: 25
-    1: 25
-    2: 52
-    3: 18
+    0: 29
+    1: 29
+    2: 89
+    3: 30
 HLT_e10_lhmedium_ivarloose_j70_j50a_j0_DJMASS900j50_L1MJJ-500-NFF:
   eventCount: 0
 HLT_e10_lhmedium_ivarloose_j70_j50a_j0_DJMASS900j50_L1jMJJ-500-NFF:
@@ -1402,12 +1588,12 @@ HLT_e10_lhvloose_L1eEM9:
     4: 3
     5: 3
   stepFeatures:
-    0: 4
-    1: 4
-    2: 5
-    3: 3
-    4: 3
-    5: 3
+    0: 6
+    1: 6
+    2: 13
+    3: 5
+    4: 5
+    5: 5
 HLT_e120_etcut_L1eEM26M:
   eventCount: 0
 HLT_e120_etcut_L1eEM28M:
@@ -1441,19 +1627,19 @@ HLT_e14_idperf_loose_L1eEM9:
     3: 2
     4: 2
   stepFeatures:
-    0: 3
-    1: 3
-    2: 3
-    3: 3
-    4: 3
+    0: 2
+    1: 2
+    2: 2
+    3: 2
+    4: 2
 HLT_e14_idperf_tight_L1eEM9:
-  eventCount: 1
+  eventCount: 2
   stepCounts:
-    0: 1
-    1: 1
-    2: 1
-    3: 1
-    4: 1
+    0: 2
+    1: 2
+    2: 2
+    3: 2
+    4: 2
   stepFeatures:
     0: 2
     1: 2
@@ -1461,12 +1647,12 @@ HLT_e14_idperf_tight_L1eEM9:
     3: 2
     4: 2
 HLT_e14_idperf_tight_nogsf_L1eEM9:
-  eventCount: 1
+  eventCount: 2
   stepCounts:
-    0: 1
-    1: 1
-    2: 1
-    3: 1
+    0: 2
+    1: 2
+    2: 2
+    3: 2
   stepFeatures:
     0: 2
     1: 2
@@ -1477,7 +1663,7 @@ HLT_e14_lhtight_e4_etcut_1invmAB5_L1JPSI-1M5-EM12:
 HLT_e14_lhtight_e4_etcut_1invmAB5_L1JPSI-1M5-eEM15:
   eventCount: 0
   stepFeatures:
-    0: 12
+    0: 16
 HLT_e14_lhtight_e4_etcut_probe_1invmAB5_L1JPSI-1M5-EM12:
   eventCount: 0
 HLT_e14_lhtight_e4_idperf_tight_nogsf_probe_1invmAB5_L1JPSI-1M5-EM12:
@@ -1500,8 +1686,8 @@ HLT_e14_lhvloose_L1EM10VH:
     4: 2
     5: 2
   stepFeatures:
-    0: 3
-    1: 3
+    0: 2
+    1: 2
     2: 3
     3: 2
     4: 2
@@ -1509,38 +1695,33 @@ HLT_e14_lhvloose_L1EM10VH:
 HLT_e14_lhvloose_L1eEM12L:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 2
-    2: 2
-    3: 2
-    4: 2
-    5: 2
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
   stepFeatures:
-    0: 3
-    1: 3
-    2: 3
-    3: 2
-    4: 2
-    5: 2
-HLT_e15_etcut_L1eEM9:
-  eventCount: 7
-  stepCounts:
-    0: 12
-    1: 12
-    2: 10
-    3: 7
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e15_etcut_L1eEM9:
+  eventCount: 11
+  stepCounts:
+    0: 14
+    1: 14
+    2: 13
+    3: 11
   stepFeatures:
-    0: 19
-    1: 19
-    2: 37
-    3: 12
+    0: 23
+    1: 23
+    2: 73
+    3: 16
 HLT_e17_lhloose_mu14_L1eEM18L_MU8F:
   eventCount: 0
-  stepCounts:
-    0: 1
-  stepFeatures:
-    0: 2
-    1: 1
 HLT_e17_lhmedium_ivarloose_tau25_mediumRNN_tracktwoMVA_03dRAB_L1EM15VHI_2TAU12IM_4J12:
   eventCount: 0
 HLT_e17_lhmedium_ivarloose_tau25_mediumRNN_tracktwoMVA_03dRAB_L1eEM18M_2eTAU20M_4jJ30:
@@ -1548,21 +1729,23 @@ HLT_e17_lhmedium_ivarloose_tau25_mediumRNN_tracktwoMVA_03dRAB_L1eEM18M_2eTAU20M_
 HLT_e17_lhmedium_tau25_mediumRNN_tracktwoMVA_xe50_cell_03dRAB_L1EM15VHI_2TAU12IM_XE35:
   eventCount: 0
   stepFeatures:
-    0: 1
+    0: 3
 HLT_e17_lhmedium_tau25_mediumRNN_tracktwoMVA_xe50_cell_03dRAB_L1eEM18M_2eTAU20M_jXE70:
   eventCount: 0
+  stepFeatures:
+    0: 5
 HLT_e20_etcut_L1eEM18M:
-  eventCount: 2
+  eventCount: 7
   stepCounts:
-    0: 2
-    1: 2
-    2: 2
-    3: 2
+    0: 7
+    1: 7
+    2: 7
+    3: 7
   stepFeatures:
-    0: 2
-    1: 2
-    2: 4
-    3: 2
+    0: 7
+    1: 7
+    2: 19
+    3: 7
 HLT_e20_idperf_loose_lrtloose_L1eEM18L:
   eventCount: 1
   stepCounts:
@@ -1611,10 +1794,10 @@ HLT_e24_lhmedium_ivarloose_tau20_mediumRNN_tracktwoMVA_03dRAB_L1eEM26M:
     4: 1
     5: 1
   stepFeatures:
-    0: 5
-    1: 3
-    2: 3
-    3: 3
+    0: 14
+    1: 2
+    2: 2
+    3: 2
     4: 2
     5: 1
 HLT_e24_lhmedium_ivarloose_tau20_mediumRNN_tracktwoMVA_03dRAB_L1eEM28M:
@@ -1627,14 +1810,28 @@ HLT_e24_lhmedium_ivarloose_tau20_mediumRNN_tracktwoMVA_03dRAB_L1eEM28M:
     4: 1
     5: 1
   stepFeatures:
-    0: 5
-    1: 3
-    2: 3
-    3: 3
+    0: 14
+    1: 2
+    2: 2
+    3: 2
     4: 2
     5: 1
 HLT_e24_lhtight_ivarloose_L1eEM26M:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
 HLT_e24_lhvloose_2e12_lhvloose_L1eEM24L_3eEM12L:
   eventCount: 0
 HLT_e250_etcut_L1eEM26M:
@@ -1642,33 +1839,47 @@ HLT_e250_etcut_L1eEM26M:
 HLT_e250_etcut_L1eEM28M:
   eventCount: 0
 HLT_e25_etcut_L1eEM18M:
-  eventCount: 2
+  eventCount: 7
   stepCounts:
-    0: 2
-    1: 2
-    2: 2
-    3: 2
+    0: 7
+    1: 7
+    2: 7
+    3: 7
   stepFeatures:
-    0: 2
-    1: 2
-    2: 4
-    3: 2
+    0: 7
+    1: 7
+    2: 19
+    3: 7
 HLT_e25_mergedtight_g35_medium_90invmAB_02dRAB_L12eEM24L:
   eventCount: 0
 HLT_e26_dnntight_ivarloose_L1eEM26M:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
 HLT_e26_etcut_L1eEM26M:
-  eventCount: 2
+  eventCount: 7
   stepCounts:
-    0: 2
-    1: 2
-    2: 2
-    3: 2
+    0: 7
+    1: 7
+    2: 7
+    3: 7
   stepFeatures:
-    0: 2
-    1: 2
-    2: 4
-    3: 2
+    0: 7
+    1: 7
+    2: 19
+    3: 7
 HLT_e26_idperf_loose_L1eEM26M:
   eventCount: 1
   stepCounts:
@@ -1684,9 +1895,31 @@ HLT_e26_idperf_loose_L1eEM26M:
     3: 1
     4: 1
 HLT_e26_idperf_tight_L1eEM26M:
-  eventCount: 0
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
 HLT_e26_idperf_tight_nogsf_L1eEM26M:
-  eventCount: 0
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
 HLT_e26_lhmedium_mu8noL1_L1eEM26M:
   eventCount: 0
   stepCounts:
@@ -1705,96 +1938,138 @@ HLT_e26_lhmedium_mu8noL1_L1eEM26M:
     5: 1
 HLT_e26_lhtight_L1eEM26:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
 HLT_e26_lhtight_L1eEM26L:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
 HLT_e26_lhtight_L1eEM26M:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
 HLT_e26_lhtight_L1eEM26T:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
 HLT_e26_lhtight_e14_etcut_L1eEM26M:
   eventCount: 0
   stepFeatures:
-    0: 4
+    0: 13
 HLT_e26_lhtight_e14_etcut_probe_50invmAB130_L1eEM26M:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
 HLT_e26_lhtight_e14_idperf_tight_nogsf_probe_50invmAB130_L1eEM26M:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
 HLT_e26_lhtight_e14_idperf_tight_probe_50invmAB130_L1eEM26M:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
 HLT_e26_lhtight_ivarloose_2j20_0eta290_020jvt_boffperf_pf_ftf_L1eEM26M:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
 HLT_e26_lhtight_ivarloose_2j20_roiftf_preselj20_L1eEM26M:
   eventCount: 0
-HLT_e26_lhtight_ivarloose_L1eEM26:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_L1eEM26L:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_L1eEM26T:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_e12_lhloose_probe_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_e12_lhvloose_probe_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_e14_etcut_probe_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_e14_idperf_tight_probe_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_e14_lhtight_probe_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_e15_idperf_tight_probe_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_e17_lhloose_probe_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_e17_lhmedium_probe_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_e17_lhvloose_probe_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_e20_lhtight_ivarloose_probe_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_e24_lhvloose_probe_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_e26_lhmedium_probe_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_e26_lhtight_probe_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_e30_lhloose_nopix_lrtmedium_probe_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_e30_lhloose_nopix_probe_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_e4_etcut_probe_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_e5_idperf_loose_lrtloose_probe_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_e5_lhtight_noringer_probe_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_e5_lhtight_probe_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_e7_lhmedium_probe_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_e9_etcut_probe_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_e9_lhtight_probe_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_e9_lhvloose_probe_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_j20_pf_ftf_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_mu22noL1_2j20_0eta290_020jvt_bdl1d85_pf_ftf_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_mu22noL1_2j20_0eta290_020jvt_bgn185_pf_ftf_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_mu22noL1_2j20_0eta290_020jvt_bgn285_pf_ftf_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_mu22noL1_j20_0eta290_020jvt_boffperf_pf_ftf_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_mu22noL1_j20_roiftf_preselj20_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_nogsf_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_noringer_L1eEM26M:
-  eventCount: 0
   stepCounts:
     0: 1
     1: 1
@@ -1809,81 +2084,23 @@ HLT_e26_lhtight_ivarloose_noringer_L1eEM26M:
     3: 1
     4: 1
     5: 1
-HLT_e26_lhtight_ivarloose_tau160_mediumRNN_tracktwoMVA_probe_L1TAU100_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau160_mediumRNN_tracktwoMVA_probe_L1eTAU140_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau180_mediumRNN_tracktwoLLP_probe_L1TAU100_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau180_mediumRNN_tracktwoLLP_probe_L1eTAU140_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau20_mediumRNN_tracktwoMVA_probe_L1TAU12IM_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau20_mediumRNN_tracktwoMVA_probe_L1TAU8_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau20_mediumRNN_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau20_mediumRNN_tracktwoMVA_probe_L1eTAU12_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau25_mediumRNN_tracktwoMVA_probe_L1TAU12IM_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau25_mediumRNN_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau30_mediumRNN_tracktwoMVA_probe_L1TAU20IM_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau30_mediumRNN_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau30_mediumRNN_tracktwoMVA_probe_L1cTAU30M_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau35_mediumRNN_tracktwoMVA_probe_L1TAU20IM_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau35_mediumRNN_tracktwoMVA_probe_L1cTAU30M_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau40_mediumRNN_tracktwoMVA_probe_L1TAU25IM_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau40_mediumRNN_tracktwoMVA_probe_L1cTAU35M_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau60_mediumRNN_tracktwoLLP_probe_L1TAU40_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau60_mediumRNN_tracktwoLLP_probe_L1eTAU60_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau60_mediumRNN_tracktwoMVA_probe_L1TAU40_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau60_mediumRNN_tracktwoMVA_probe_L1eTAU60_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau80_mediumRNN_tracktwoLLP_probe_L1TAU60_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau80_mediumRNN_tracktwoLLP_probe_L1eTAU80_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau80_mediumRNN_tracktwoMVA_probe_L1TAU60_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarloose_tau80_mediumRNN_tracktwoMVA_probe_L1eTAU80_03dRAB_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivarmedium_L1eEM26M:
-  eventCount: 0
-HLT_e26_lhtight_ivartight_L1eEM26M:
-  eventCount: 0
-HLT_e28_dnntight_ivarloose_L1eEM28M:
+HLT_e26_lhtight_ivarloose_L1eEM26:
   eventCount: 0
-HLT_e28_idperf_loose_L1eEM28M:
-  eventCount: 1
   stepCounts:
     0: 1
     1: 1
     2: 1
     3: 1
     4: 1
+    5: 1
   stepFeatures:
     0: 1
     1: 1
     2: 1
     3: 1
     4: 1
-HLT_e28_idperf_tight_L1eEM28M:
-  eventCount: 0
-HLT_e28_idperf_tight_nogsf_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhmedium_mu8noL1_L1eEM28M:
+    5: 1
+HLT_e26_lhtight_ivarloose_L1eEM26L:
   eventCount: 0
   stepCounts:
     0: 1
@@ -1899,87 +2116,23 @@ HLT_e28_lhmedium_mu8noL1_L1eEM28M:
     3: 1
     4: 1
     5: 1
-HLT_e28_lhtight_L1eEM26M:
-  eventCount: 0
-HLT_e28_lhtight_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_e14_etcut_L1eEM28M:
+HLT_e26_lhtight_ivarloose_L1eEM26M:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
   stepFeatures:
-    0: 4
-HLT_e28_lhtight_e14_etcut_probe_50invmAB130_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_e14_idperf_tight_nogsf_probe_50invmAB130_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_e14_idperf_tight_probe_50invmAB130_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_2j20_0eta290_020jvt_boffperf_pf_ftf_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_2j20_roiftf_preselj20_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e12_lhloose_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e12_lhvloose_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e14_etcut_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e14_idperf_tight_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e14_lhtight_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e15_idperf_tight_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e17_lhloose_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e17_lhmedium_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e17_lhvloose_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e20_lhtight_ivarloose_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e24_lhvloose_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e26_lhmedium_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e26_lhtight_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e28_lhtight_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e30_lhloose_nopix_lrtmedium_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e30_lhloose_nopix_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e4_etcut_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e5_idperf_loose_lrtloose_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e5_lhtight_noringer_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e5_lhtight_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e7_lhmedium_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e9_etcut_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e9_lhtight_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_e9_lhvloose_probe_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_j20_pf_ftf_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_mu22noL1_2j20_0eta290_020jvt_bdl1d85_pf_ftf_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_mu22noL1_2j20_0eta290_020jvt_bgn185_pf_ftf_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_mu22noL1_2j20_0eta290_020jvt_bgn285_pf_ftf_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_mu22noL1_j20_0eta290_020jvt_boffperf_pf_ftf_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_mu22noL1_j20_roiftf_preselj20_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_noringer_L1eEM26M:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_L1eEM26T:
   eventCount: 0
   stepCounts:
     0: 1
@@ -1995,7 +2148,7 @@ HLT_e28_lhtight_ivarloose_noringer_L1eEM26M:
     3: 1
     4: 1
     5: 1
-HLT_e28_lhtight_ivarloose_noringer_L1eEM28M:
+HLT_e26_lhtight_ivarloose_e12_lhloose_probe_L1eEM26M:
   eventCount: 0
   stepCounts:
     0: 1
@@ -2011,105 +2164,39 @@ HLT_e28_lhtight_ivarloose_noringer_L1eEM28M:
     3: 1
     4: 1
     5: 1
-HLT_e28_lhtight_ivarloose_tau160_mediumRNN_tracktwoMVA_probe_L1TAU100_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_tau160_mediumRNN_tracktwoMVA_probe_L1eTAU140_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_tau180_mediumRNN_tracktwoLLP_probe_L1TAU100_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_tau180_mediumRNN_tracktwoLLP_probe_L1eTAU140_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_tau20_mediumRNN_tracktwoMVA_probe_L1TAU12IM_03dRAB_L1eEM28M:
+HLT_e26_lhtight_ivarloose_e12_lhvloose_probe_L1eEM26M:
   eventCount: 0
-HLT_e28_lhtight_ivarloose_tau20_mediumRNN_tracktwoMVA_probe_L1TAU8_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_tau20_mediumRNN_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_tau20_mediumRNN_tracktwoMVA_probe_L1eTAU12_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_tau25_mediumRNN_tracktwoMVA_probe_L1TAU12IM_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_tau25_mediumRNN_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_tau30_mediumRNN_tracktwoMVA_probe_L1TAU20IM_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_tau30_mediumRNN_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_tau30_mediumRNN_tracktwoMVA_probe_L1cTAU30M_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_tau35_mediumRNN_tracktwoMVA_probe_L1TAU20IM_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_tau35_mediumRNN_tracktwoMVA_probe_L1cTAU30M_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_tau40_mediumRNN_tracktwoMVA_probe_L1TAU25IM_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_tau40_mediumRNN_tracktwoMVA_probe_L1cTAU35M_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_tau60_mediumRNN_tracktwoLLP_probe_L1TAU40_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_tau60_mediumRNN_tracktwoLLP_probe_L1eTAU60_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_tau60_mediumRNN_tracktwoMVA_probe_L1TAU40_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_tau60_mediumRNN_tracktwoMVA_probe_L1eTAU60_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_tau80_mediumRNN_tracktwoLLP_probe_L1TAU60_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_tau80_mediumRNN_tracktwoLLP_probe_L1eTAU80_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_tau80_mediumRNN_tracktwoMVA_probe_L1TAU60_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarloose_tau80_mediumRNN_tracktwoMVA_probe_L1eTAU80_03dRAB_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivarmedium_L1eEM28M:
-  eventCount: 0
-HLT_e28_lhtight_ivartight_L1eEM28M:
-  eventCount: 0
-HLT_e300_etcut_L1eEM26M:
-  eventCount: 0
-HLT_e300_etcut_L1eEM28M:
-  eventCount: 0
-HLT_e30_etcut_L1eEM18M:
-  eventCount: 2
-  stepCounts:
-    0: 2
-    1: 2
-    2: 2
-    3: 2
-  stepFeatures:
-    0: 2
-    1: 2
-    2: 4
-    3: 2
-HLT_e30_idperf_loose_lrtloose_L1eEM26M:
-  eventCount: 1
   stepCounts:
     0: 1
     1: 1
     2: 1
     3: 1
     4: 1
+    5: 1
   stepFeatures:
     0: 1
     1: 1
     2: 1
     3: 1
     4: 1
-HLT_e30_idperf_loose_lrtloose_L1eEM28M:
-  eventCount: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_e14_etcut_probe_L1eEM26M:
+  eventCount: 0
   stepCounts:
     0: 1
     1: 1
     2: 1
     3: 1
     4: 1
+    5: 1
   stepFeatures:
     0: 1
     1: 1
     2: 1
     3: 1
     4: 1
-HLT_e30_lhloose_nopix_lrtmedium_L1eEM26M:
+    5: 1
+HLT_e26_lhtight_ivarloose_e14_idperf_tight_probe_L1eEM26M:
   eventCount: 0
   stepCounts:
     0: 1
@@ -2125,7 +2212,7 @@ HLT_e30_lhloose_nopix_lrtmedium_L1eEM26M:
     3: 1
     4: 1
     5: 1
-HLT_e30_lhloose_nopix_lrtmedium_L1eEM28M:
+HLT_e26_lhtight_ivarloose_e14_lhtight_probe_L1eEM26M:
   eventCount: 0
   stepCounts:
     0: 1
@@ -2141,20 +2228,23 @@ HLT_e30_lhloose_nopix_lrtmedium_L1eEM28M:
     3: 1
     4: 1
     5: 1
-HLT_e30_lhloose_nopix_lrtmedium_probe_g25_medium_L1eEM24L:
+HLT_e26_lhtight_ivarloose_e15_idperf_tight_probe_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
+    0: 1
     1: 1
     2: 1
     3: 1
+    4: 1
+    5: 1
   stepFeatures:
-    0: 3
+    0: 1
     1: 1
     2: 1
     3: 1
     4: 1
-HLT_e30_lhtight_ivarloose_noringer_L1eEM28M:
+    5: 1
+HLT_e26_lhtight_ivarloose_e17_lhloose_probe_L1eEM26M:
   eventCount: 0
   stepCounts:
     0: 1
@@ -2170,7 +2260,7 @@ HLT_e30_lhtight_ivarloose_noringer_L1eEM28M:
     3: 1
     4: 1
     5: 1
-HLT_e30_lhvloose_L1eEM26M:
+HLT_e26_lhtight_ivarloose_e17_lhmedium_probe_L1eEM26M:
   eventCount: 0
   stepCounts:
     0: 1
@@ -2186,7 +2276,7 @@ HLT_e30_lhvloose_L1eEM26M:
     3: 1
     4: 1
     5: 1
-HLT_e30_lhvloose_L1eEM28M:
+HLT_e26_lhtight_ivarloose_e17_lhvloose_probe_L1eEM26M:
   eventCount: 0
   stepCounts:
     0: 1
@@ -2202,219 +2292,2024 @@ HLT_e30_lhvloose_L1eEM28M:
     3: 1
     4: 1
     5: 1
-HLT_e35_lhloose_nopix_lrtmedium_L1eEM26M:
+HLT_e26_lhtight_ivarloose_e20_lhtight_ivarloose_probe_L1eEM26M:
   eventCount: 0
   stepCounts:
     0: 1
     1: 1
     2: 1
+    3: 1
+    4: 1
+    5: 1
   stepFeatures:
     0: 1
     1: 1
     2: 1
-HLT_e35_lhloose_nopix_lrtmedium_L1eEM28M:
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_e24_lhvloose_probe_L1eEM26M:
   eventCount: 0
   stepCounts:
     0: 1
     1: 1
     2: 1
+    3: 1
+    4: 1
+    5: 1
   stepFeatures:
     0: 1
     1: 1
     2: 1
-HLT_e40_etcut_L1eEM18M:
-  eventCount: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_e26_lhmedium_probe_L1eEM26M:
+  eventCount: 0
   stepCounts:
     0: 1
     1: 1
     2: 1
     3: 1
+    4: 1
+    5: 1
   stepFeatures:
     0: 1
     1: 1
-    2: 3
+    2: 1
     3: 1
-HLT_e40_lhvloose_L1eEM26M:
-  eventCount: 0
-HLT_e40_lhvloose_L1eEM28M:
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_e26_lhtight_probe_L1eEM26M:
   eventCount: 0
-HLT_e50_etcut_L1eEM26M:
-  eventCount: 1
   stepCounts:
     0: 1
     1: 1
     2: 1
     3: 1
+    4: 1
+    5: 1
   stepFeatures:
     0: 1
     1: 1
-    2: 3
+    2: 1
     3: 1
-HLT_e50_etcut_L1eEM28M:
-  eventCount: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_e30_lhloose_nopix_lrtmedium_probe_L1eEM26M:
+  eventCount: 0
   stepCounts:
     0: 1
     1: 1
     2: 1
     3: 1
+    4: 1
+    5: 1
   stepFeatures:
     0: 1
     1: 1
-    2: 3
+    2: 1
     3: 1
-HLT_e5_dnnloose_L1EM3:
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_e30_lhloose_nopix_probe_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 24
-    1: 24
-    2: 14
-    3: 8
-    4: 8
-    5: 8
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
   stepFeatures:
-    0: 40
-    1: 40
-    2: 25
-    3: 9
-    4: 9
-    5: 9
-HLT_e5_dnnmedium_L1EM3:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_e4_etcut_probe_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 24
-    1: 24
-    2: 14
-    3: 8
-    4: 8
-    5: 8
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
   stepFeatures:
-    0: 40
-    1: 40
-    2: 25
-    3: 9
-    4: 9
-    5: 9
-HLT_e5_dnntight_L1EM3:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_e5_idperf_loose_lrtloose_probe_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 23
-    1: 23
-    2: 13
-    3: 7
-    4: 7
-    5: 7
-  stepFeatures:
-    0: 38
-    1: 38
-    2: 24
-    3: 8
-    4: 8
-    5: 8
-HLT_e5_etcut_L1EM3:
-  eventCount: 25
-  stepCounts:
-    0: 37
-    1: 37
-    2: 30
-    3: 25
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
   stepFeatures:
-    0: 139
-    1: 139
-    2: 161
-    3: 51
-HLT_e5_etcut_L1eEM5:
-  eventCount: 20
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_e5_lhtight_noringer_probe_L1eEM26M:
+  eventCount: 0
   stepCounts:
-    0: 25
-    1: 25
-    2: 20
-    3: 20
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
   stepFeatures:
-    0: 58
-    1: 58
-    2: 102
-    3: 43
-HLT_e5_idperf_loose_lrtloose_probe_g25_medium_L1eEM24L:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_e5_lhtight_probe_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 3
-    1: 2
-    2: 2
+    0: 1
+    1: 1
+    2: 1
     3: 1
+    4: 1
+    5: 1
   stepFeatures:
-    0: 3
-    1: 2
-    2: 2
+    0: 1
+    1: 1
+    2: 1
     3: 1
     4: 1
-HLT_e5_idperf_tight_L1EM3:
-  eventCount: 13
-  stepCounts:
-    0: 23
-    1: 23
-    2: 13
-    3: 13
-    4: 13
+    5: 1
+HLT_e26_lhtight_ivarloose_e7_lhmedium_probe_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_e9_etcut_probe_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_e9_lhtight_probe_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_e9_lhvloose_probe_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_j20_pf_ftf_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_mu22noL1_2j20_0eta290_020jvt_bdl1d85_pf_ftf_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_mu22noL1_2j20_0eta290_020jvt_bgn185_pf_ftf_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_mu22noL1_2j20_0eta290_020jvt_bgn285_pf_ftf_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_mu22noL1_j20_0eta290_020jvt_boffperf_pf_ftf_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_mu22noL1_j20_roiftf_preselj20_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_nogsf_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+HLT_e26_lhtight_ivarloose_noringer_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 4
+    1: 4
+    2: 4
+    3: 4
+    4: 4
+    5: 4
+  stepFeatures:
+    0: 4
+    1: 4
+    2: 9
+    3: 4
+    4: 4
+    5: 4
+HLT_e26_lhtight_ivarloose_tau160_mediumRNN_tracktwoMVA_probe_L1TAU100_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e26_lhtight_ivarloose_tau160_mediumRNN_tracktwoMVA_probe_L1eTAU140_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e26_lhtight_ivarloose_tau180_mediumRNN_tracktwoLLP_probe_L1TAU100_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e26_lhtight_ivarloose_tau180_mediumRNN_tracktwoLLP_probe_L1eTAU140_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e26_lhtight_ivarloose_tau20_mediumRNN_tracktwoMVA_probe_L1TAU12IM_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_tau20_mediumRNN_tracktwoMVA_probe_L1TAU8_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_tau20_mediumRNN_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_tau20_mediumRNN_tracktwoMVA_probe_L1eTAU12_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_tau25_mediumRNN_tracktwoMVA_probe_L1TAU12IM_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_tau25_mediumRNN_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_tau30_mediumRNN_tracktwoMVA_probe_L1TAU20IM_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_tau30_mediumRNN_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_tau30_mediumRNN_tracktwoMVA_probe_L1cTAU30M_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_tau35_mediumRNN_tracktwoMVA_probe_L1TAU20IM_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_tau35_mediumRNN_tracktwoMVA_probe_L1cTAU30M_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_tau40_mediumRNN_tracktwoMVA_probe_L1TAU25IM_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_tau40_mediumRNN_tracktwoMVA_probe_L1cTAU35M_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivarloose_tau60_mediumRNN_tracktwoLLP_probe_L1TAU40_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e26_lhtight_ivarloose_tau60_mediumRNN_tracktwoLLP_probe_L1eTAU60_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e26_lhtight_ivarloose_tau60_mediumRNN_tracktwoMVA_probe_L1TAU40_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e26_lhtight_ivarloose_tau60_mediumRNN_tracktwoMVA_probe_L1eTAU60_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e26_lhtight_ivarloose_tau80_mediumRNN_tracktwoLLP_probe_L1TAU60_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e26_lhtight_ivarloose_tau80_mediumRNN_tracktwoLLP_probe_L1eTAU80_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e26_lhtight_ivarloose_tau80_mediumRNN_tracktwoMVA_probe_L1TAU60_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e26_lhtight_ivarloose_tau80_mediumRNN_tracktwoMVA_probe_L1eTAU80_03dRAB_L1eEM26M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e26_lhtight_ivarmedium_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e26_lhtight_ivartight_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_dnntight_ivarloose_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_idperf_loose_L1eEM28M:
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+HLT_e28_idperf_tight_L1eEM28M:
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+HLT_e28_idperf_tight_nogsf_L1eEM28M:
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+HLT_e28_lhmedium_mu8noL1_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_e14_etcut_L1eEM28M:
+  eventCount: 0
+  stepFeatures:
+    0: 13
+HLT_e28_lhtight_e14_etcut_probe_50invmAB130_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_e14_idperf_tight_nogsf_probe_50invmAB130_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_e14_idperf_tight_probe_50invmAB130_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_2j20_0eta290_020jvt_boffperf_pf_ftf_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_2j20_roiftf_preselj20_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e12_lhloose_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e12_lhvloose_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e14_etcut_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e14_idperf_tight_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e14_lhtight_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e15_idperf_tight_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e17_lhloose_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e17_lhmedium_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e17_lhvloose_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e20_lhtight_ivarloose_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e24_lhvloose_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e26_lhmedium_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e26_lhtight_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e28_lhtight_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e30_lhloose_nopix_lrtmedium_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e30_lhloose_nopix_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e4_etcut_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e5_idperf_loose_lrtloose_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e5_lhtight_noringer_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e5_lhtight_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e7_lhmedium_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e9_etcut_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e9_lhtight_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_e9_lhvloose_probe_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_j20_pf_ftf_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_mu22noL1_2j20_0eta290_020jvt_bdl1d85_pf_ftf_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_mu22noL1_2j20_0eta290_020jvt_bgn185_pf_ftf_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_mu22noL1_2j20_0eta290_020jvt_bgn285_pf_ftf_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_mu22noL1_j20_0eta290_020jvt_boffperf_pf_ftf_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_mu22noL1_j20_roiftf_preselj20_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_noringer_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 4
+    1: 4
+    2: 4
+    3: 4
+    4: 4
+    5: 4
+  stepFeatures:
+    0: 4
+    1: 4
+    2: 9
+    3: 4
+    4: 4
+    5: 4
+HLT_e28_lhtight_ivarloose_noringer_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 4
+    1: 4
+    2: 4
+    3: 4
+    4: 4
+    5: 4
+  stepFeatures:
+    0: 4
+    1: 4
+    2: 9
+    3: 4
+    4: 4
+    5: 4
+HLT_e28_lhtight_ivarloose_tau160_mediumRNN_tracktwoMVA_probe_L1TAU100_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e28_lhtight_ivarloose_tau160_mediumRNN_tracktwoMVA_probe_L1eTAU140_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e28_lhtight_ivarloose_tau180_mediumRNN_tracktwoLLP_probe_L1TAU100_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e28_lhtight_ivarloose_tau180_mediumRNN_tracktwoLLP_probe_L1eTAU140_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e28_lhtight_ivarloose_tau20_mediumRNN_tracktwoMVA_probe_L1TAU12IM_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_tau20_mediumRNN_tracktwoMVA_probe_L1TAU8_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_tau20_mediumRNN_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_tau20_mediumRNN_tracktwoMVA_probe_L1eTAU12_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_tau25_mediumRNN_tracktwoMVA_probe_L1TAU12IM_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_tau25_mediumRNN_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_tau30_mediumRNN_tracktwoMVA_probe_L1TAU20IM_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_tau30_mediumRNN_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_tau30_mediumRNN_tracktwoMVA_probe_L1cTAU30M_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_tau35_mediumRNN_tracktwoMVA_probe_L1TAU20IM_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_tau35_mediumRNN_tracktwoMVA_probe_L1cTAU30M_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_tau40_mediumRNN_tracktwoMVA_probe_L1TAU25IM_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_tau40_mediumRNN_tracktwoMVA_probe_L1cTAU35M_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivarloose_tau60_mediumRNN_tracktwoLLP_probe_L1TAU40_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e28_lhtight_ivarloose_tau60_mediumRNN_tracktwoLLP_probe_L1eTAU60_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e28_lhtight_ivarloose_tau60_mediumRNN_tracktwoMVA_probe_L1TAU40_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e28_lhtight_ivarloose_tau60_mediumRNN_tracktwoMVA_probe_L1eTAU60_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e28_lhtight_ivarloose_tau80_mediumRNN_tracktwoLLP_probe_L1TAU60_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e28_lhtight_ivarloose_tau80_mediumRNN_tracktwoLLP_probe_L1eTAU80_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e28_lhtight_ivarloose_tau80_mediumRNN_tracktwoMVA_probe_L1TAU60_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e28_lhtight_ivarloose_tau80_mediumRNN_tracktwoMVA_probe_L1eTAU80_03dRAB_L1eEM28M:
+  eventCount: 0
+  stepFeatures:
+    0: 1
+HLT_e28_lhtight_ivarmedium_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e28_lhtight_ivartight_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e300_etcut_L1eEM26M:
+  eventCount: 0
+HLT_e300_etcut_L1eEM28M:
+  eventCount: 0
+HLT_e30_etcut_L1eEM18M:
+  eventCount: 7
+  stepCounts:
+    0: 7
+    1: 7
+    2: 7
+    3: 7
+  stepFeatures:
+    0: 7
+    1: 7
+    2: 19
+    3: 7
+HLT_e30_idperf_loose_lrtloose_L1eEM26M:
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+HLT_e30_idperf_loose_lrtloose_L1eEM28M:
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+HLT_e30_lhloose_nopix_lrtmedium_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 2
+    3: 1
+    4: 1
+    5: 1
+HLT_e30_lhloose_nopix_lrtmedium_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 2
+    3: 1
+    4: 1
+    5: 1
+HLT_e30_lhloose_nopix_lrtmedium_probe_g25_medium_L1eEM24L:
+  eventCount: 0
+  stepCounts:
+    0: 7
+    1: 7
+    2: 7
+    3: 2
+  stepFeatures:
+    0: 8
+    1: 7
+    2: 7
+    3: 2
+HLT_e30_lhtight_ivarloose_noringer_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 4
+    1: 4
+    2: 4
+    3: 4
+    4: 4
+    5: 4
+  stepFeatures:
+    0: 4
+    1: 4
+    2: 9
+    3: 4
+    4: 4
+    5: 4
+HLT_e30_lhvloose_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e30_lhvloose_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e35_lhloose_nopix_lrtmedium_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 2
+    3: 1
+    4: 1
+    5: 1
+HLT_e35_lhloose_nopix_lrtmedium_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 2
+    3: 1
+    4: 1
+    5: 1
+HLT_e40_etcut_L1eEM18M:
+  eventCount: 3
+  stepCounts:
+    0: 4
+    1: 4
+    2: 4
+    3: 3
+  stepFeatures:
+    0: 4
+    1: 4
+    2: 12
+    3: 3
+HLT_e40_lhvloose_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+HLT_e40_lhvloose_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+HLT_e50_etcut_L1eEM26M:
+  eventCount: 3
+  stepCounts:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 11
+    3: 3
+HLT_e50_etcut_L1eEM28M:
+  eventCount: 3
+  stepCounts:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 11
+    3: 3
+HLT_e5_dnnloose_L1EM3:
+  eventCount: 0
+  stepCounts:
+    0: 26
+    1: 26
+    2: 15
+    3: 10
+    4: 10
+    5: 10
+  stepFeatures:
+    0: 41
+    1: 41
+    2: 34
+    3: 11
+    4: 11
+    5: 11
+HLT_e5_dnnmedium_L1EM3:
+  eventCount: 0
+  stepCounts:
+    0: 26
+    1: 26
+    2: 15
+    3: 10
+    4: 10
+    5: 10
+  stepFeatures:
+    0: 41
+    1: 41
+    2: 34
+    3: 11
+    4: 11
+    5: 11
+HLT_e5_dnntight_L1EM3:
+  eventCount: 0
+  stepCounts:
+    0: 26
+    1: 26
+    2: 15
+    3: 10
+    4: 10
+    5: 10
   stepFeatures:
+    0: 40
+    1: 40
+    2: 32
+    3: 11
+    4: 11
+    5: 11
+HLT_e5_etcut_L1EM3:
+  eventCount: 26
+  stepCounts:
     0: 38
     1: 38
-    2: 20
-    3: 20
-    4: 20
+    2: 32
+    3: 26
+  stepFeatures:
+    0: 171
+    1: 171
+    2: 233
+    3: 64
+HLT_e5_etcut_L1eEM5:
+  eventCount: 22
+  stepCounts:
+    0: 26
+    1: 26
+    2: 22
+    3: 22
+  stepFeatures:
+    0: 64
+    1: 64
+    2: 142
+    3: 60
+HLT_e5_idperf_loose_lrtloose_probe_g25_medium_L1eEM24L:
+  eventCount: 0
+  stepCounts:
+    0: 8
+    1: 7
+    2: 7
+    3: 2
+  stepFeatures:
+    0: 8
+    1: 7
+    2: 7
+    3: 2
+HLT_e5_idperf_tight_L1EM3:
+  eventCount: 16
+  stepCounts:
+    0: 26
+    1: 26
+    2: 16
+    3: 16
+    4: 16
+  stepFeatures:
+    0: 40
+    1: 40
+    2: 22
+    3: 22
+    4: 22
 HLT_e5_idperf_tight_L1eEM5:
-  eventCount: 11
+  eventCount: 10
   stepCounts:
     0: 11
     1: 11
-    2: 11
-    3: 11
-    4: 11
+    2: 10
+    3: 10
+    4: 10
   stepFeatures:
-    0: 14
-    1: 14
+    0: 15
+    1: 15
     2: 14
     3: 14
     4: 14
 HLT_e5_idperf_tight_nogsf_L1EM3:
-  eventCount: 13
+  eventCount: 16
   stepCounts:
-    0: 23
-    1: 23
-    2: 13
-    3: 13
+    0: 26
+    1: 26
+    2: 16
+    3: 16
   stepFeatures:
-    0: 38
-    1: 38
-    2: 20
-    3: 20
+    0: 40
+    1: 40
+    2: 22
+    3: 22
 HLT_e5_idperf_tight_nogsf_L1eEM5:
-  eventCount: 11
+  eventCount: 10
   stepCounts:
     0: 11
     1: 11
-    2: 11
-    3: 11
+    2: 10
+    3: 10
   stepFeatures:
-    0: 14
-    1: 14
+    0: 15
+    1: 15
     2: 14
     3: 14
 HLT_e5_lhtight_L1EM3:
   eventCount: 0
   stepCounts:
-    0: 23
-    1: 23
-    2: 13
-    3: 7
-    4: 7
-    5: 7
+    0: 26
+    1: 26
+    2: 15
+    3: 10
+    4: 10
+    5: 10
   stepFeatures:
-    0: 38
-    1: 38
-    2: 24
-    3: 8
-    4: 8
-    5: 8
+    0: 40
+    1: 40
+    2: 32
+    3: 11
+    4: 11
+    5: 11
 HLT_e5_lhtight_e14_etcut_1invmAB5_L1JPSI-1M5-EM12:
   eventCount: 0
 HLT_e5_lhtight_e14_etcut_1invmAB5_L1JPSI-1M5-eEM15:
@@ -2422,102 +4317,139 @@ HLT_e5_lhtight_e14_etcut_1invmAB5_L1JPSI-1M5-eEM15:
   stepCounts:
     0: 2
     1: 2
+    2: 1
+    3: 1
+    4: 1
+    5: 1
   stepFeatures:
-    0: 6
-    1: 4
-    2: 7
+    0: 7
+    1: 5
+    2: 12
+    3: 3
+    4: 2
+    5: 2
 HLT_e5_lhtight_e14_etcut_probe_1invmAB5_L1JPSI-1M5-EM12:
   eventCount: 0
 HLT_e5_lhtight_e9_etcut_1invmAB5_L1JPSI-1M5-EM7:
   eventCount: 0
+  stepFeatures:
+    0: 5
 HLT_e5_lhtight_e9_etcut_1invmAB5_L1JPSI-1M5-eEM9:
   eventCount: 0
   stepCounts:
     0: 2
     1: 2
+    2: 1
+    3: 1
+    4: 1
+    5: 1
   stepFeatures:
-    0: 7
-    1: 5
-    2: 9
+    0: 13
+    1: 8
+    2: 20
+    3: 6
+    4: 2
+    5: 2
 HLT_e5_lhtight_e9_etcut_probe_1invmAB5_L1JPSI-1M5-EM7:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
 HLT_e5_lhtight_noringer_L1EM3:
   eventCount: 0
   stepCounts:
-    0: 27
-    1: 27
-    2: 17
-    3: 13
-    4: 13
-    5: 13
-  stepFeatures:
-    0: 50
-    1: 50
-    2: 43
+    0: 30
+    1: 30
+    2: 26
     3: 19
     4: 19
     5: 19
+  stepFeatures:
+    0: 63
+    1: 63
+    2: 82
+    3: 26
+    4: 26
+    5: 26
 HLT_e5_lhvloose_L1EM3_bBeeM6000_L1All:
   eventCount: 0
   stepCounts:
-    0: 24
-    1: 24
+    0: 26
+    1: 26
     2: 15
-    3: 8
-    4: 8
-    5: 8
+    3: 10
+    4: 10
+    5: 10
   stepFeatures:
     0: 42
     1: 42
-    2: 28
-    3: 9
-    4: 9
-    5: 9
+    2: 36
+    3: 12
+    4: 12
+    5: 12
     6: 1
 HLT_e5_lhvloose_L1EM3_e3_lhvloose_L1EM3_bBeeM6000_L1All:
   eventCount: 0
   stepCounts:
-    0: 10
-    1: 10
-    2: 4
-    3: 2
-    4: 2
-    5: 2
+    0: 15
+    1: 15
+    2: 7
+    3: 3
+    4: 3
+    5: 3
   stepFeatures:
-    0: 85
-    1: 56
-    2: 36
-    3: 11
-    4: 7
-    5: 7
+    0: 90
+    1: 68
+    2: 64
+    3: 18
+    4: 11
+    5: 11
     6: 2
 HLT_e5_lhvloose_L1eEM5_bBeeM6000_L1All:
   eventCount: 0
   stepCounts:
-    0: 12
-    1: 12
+    0: 11
+    1: 11
     2: 6
     3: 6
     4: 6
     5: 6
   stepFeatures:
-    0: 15
-    1: 15
-    2: 9
-    3: 6
-    4: 6
-    5: 6
+    0: 17
+    1: 17
+    2: 17
+    3: 9
+    4: 9
+    5: 9
+    6: 1
 HLT_e5_lhvloose_L1eEM5_e3_lhvloose_L1eEM5_bBeeM6000_L1All:
   eventCount: 0
   stepCounts:
     0: 3
     1: 3
     2: 2
+    3: 1
+    4: 1
+    5: 1
   stepFeatures:
-    0: 30
-    1: 12
-    2: 8
-    3: 4
+    0: 34
+    1: 18
+    2: 26
+    3: 10
+    4: 8
+    5: 8
+    6: 2
 HLT_e5_lhvloose_bBeeM6000_L14J15:
   eventCount: 0
 HLT_e5_lhvloose_bBeeM6000_L14jJ40:
@@ -2525,85 +4457,87 @@ HLT_e5_lhvloose_bBeeM6000_L14jJ40:
 HLT_e5_lhvloose_bBeeM6000_L1BKeePrescaled:
   eventCount: 0
   stepCounts:
-    0: 5
-    1: 5
+    0: 4
+    1: 4
     2: 2
     3: 2
     4: 2
     5: 2
   stepFeatures:
-    0: 6
-    1: 6
-    2: 3
-    3: 2
-    4: 2
-    5: 2
+    0: 8
+    1: 8
+    2: 11
+    3: 5
+    4: 5
+    5: 5
+    6: 1
 HLT_e5_lhvloose_bBeeM6000_L1BKeePrescaledLegacy:
   eventCount: 0
   stepCounts:
-    0: 8
-    1: 8
-    2: 5
-    3: 3
-    4: 3
-    5: 3
-  stepFeatures:
-    0: 14
-    1: 14
-    2: 8
+    0: 10
+    1: 10
+    2: 6
     3: 4
     4: 4
     5: 4
+  stepFeatures:
+    0: 12
+    1: 12
+    2: 17
+    3: 5
+    4: 5
+    5: 5
     6: 1
 HLT_e5_lhvloose_bBeeM6000_L1BKeePrimary:
   eventCount: 0
   stepCounts:
     0: 5
     1: 5
-    2: 2
-    3: 2
-    4: 2
-    5: 2
-  stepFeatures:
-    0: 6
-    1: 6
     2: 3
-    3: 2
-    4: 2
-    5: 2
-HLT_e5_lhvloose_bBeeM6000_L1BKeePrimaryLegacy:
-  eventCount: 0
-  stepCounts:
-    0: 6
-    1: 6
-    2: 4
     3: 3
     4: 3
     5: 3
   stepFeatures:
-    0: 12
-    1: 12
-    2: 7
+    0: 9
+    1: 9
+    2: 12
+    3: 6
+    4: 6
+    5: 6
+    6: 1
+HLT_e5_lhvloose_bBeeM6000_L1BKeePrimaryLegacy:
+  eventCount: 0
+  stepCounts:
+    0: 10
+    1: 10
+    2: 6
     3: 4
     4: 4
     5: 4
+  stepFeatures:
+    0: 14
+    1: 14
+    2: 17
+    3: 5
+    4: 5
+    5: 5
     6: 1
 HLT_e5_lhvloose_bBeeM6000_L1BPH-0DR3-EM7J15_MU5VF:
   eventCount: 0
   stepCounts:
-    0: 4
-    1: 4
-    2: 3
+    0: 2
+    1: 2
+    2: 2
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 8
     3: 2
     4: 2
     5: 2
-  stepFeatures:
-    0: 8
-    1: 8
-    2: 5
-    3: 3
-    4: 3
-    5: 3
     6: 1
 HLT_e5_lhvloose_bBeeM6000_L1BPH-0DR3-eEM9jJ40_MU5VF:
   eventCount: 0
@@ -2615,104 +4549,141 @@ HLT_e5_lhvloose_bBeeM6000_L1BPH-0DR3-eEM9jJ40_MU5VF:
     4: 1
     5: 1
   stepFeatures:
-    0: 1
-    1: 1
+    0: 4
+    1: 4
+    2: 10
+    3: 4
+    4: 4
+    5: 4
+    6: 1
+HLT_e5_lhvloose_bBeeM6000_L1eEM26M:
+  eventCount: 0
+  stepCounts:
+    0: 3
+    1: 3
     2: 1
     3: 1
     4: 1
     5: 1
-HLT_e5_lhvloose_bBeeM6000_L1eEM26M:
+  stepFeatures:
+    0: 4
+    1: 4
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+HLT_e5_lhvloose_e3_lhvloose_bBeeM6000_L14jJ40:
+  eventCount: 0
+HLT_e5_lhvloose_e3_lhvloose_bBeeM6000_L1BKeePrescaled:
   eventCount: 0
   stepCounts:
-    0: 1
-    1: 1
+    0: 2
+    1: 2
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 16
+    1: 12
+    2: 22
+    3: 8
+    4: 8
+    5: 8
+    6: 2
+HLT_e5_lhvloose_e3_lhvloose_bBeeM6000_L1BKeePrimary:
+  eventCount: 0
+  stepCounts:
+    0: 2
+    1: 2
     2: 1
     3: 1
     4: 1
     5: 1
   stepFeatures:
+    0: 18
+    1: 12
+    2: 22
+    3: 8
+    4: 8
+    5: 8
+    6: 2
+HLT_e5_lhvloose_e3_lhvloose_bBeeM6000_L1BPH-0M9-eEM9-eEM7_MU5VF:
+  eventCount: 0
+  stepCounts:
     0: 1
     1: 1
     2: 1
     3: 1
     4: 1
     5: 1
-HLT_e5_lhvloose_e3_lhvloose_bBeeM6000_L14jJ40:
-  eventCount: 0
-HLT_e5_lhvloose_e3_lhvloose_bBeeM6000_L1BKeePrescaled:
-  eventCount: 0
-  stepCounts:
-    0: 1
-    1: 1
-    2: 1
   stepFeatures:
-    0: 12
-    1: 4
-    2: 4
-    3: 2
-HLT_e5_lhvloose_e3_lhvloose_bBeeM6000_L1BKeePrimary:
+    0: 8
+    1: 8
+    2: 20
+    3: 8
+    4: 8
+    5: 8
+    6: 2
+HLT_e5_lhvloose_e3_lhvloose_bBeeM6000_L1eEM26M:
   eventCount: 0
   stepCounts:
     0: 1
     1: 1
-    2: 1
   stepFeatures:
-    0: 12
+    0: 8
     1: 4
-    2: 4
-    3: 2
-HLT_e5_lhvloose_e3_lhvloose_bBeeM6000_L1BPH-0M9-eEM9-eEM7_MU5VF:
-  eventCount: 0
-HLT_e5_lhvloose_e3_lhvloose_bBeeM6000_L1eEM26M:
-  eventCount: 0
-  stepFeatures:
-    0: 2
+    2: 2
 HLT_e5_lhvloose_j70_j50a_j0_DJMASS1000j50_xe50_tcpufit_L1MJJ-500-NFF:
   eventCount: 0
 HLT_e5_lhvloose_j70_j50a_j0_DJMASS1000j50_xe50_tcpufit_L1jMJJ-500-NFF:
   eventCount: 0
 HLT_e5_nopid_L1eEM5:
-  eventCount: 18
+  eventCount: 17
   stepCounts:
-    0: 25
-    1: 25
-    2: 20
-    3: 20
-    4: 20
-    5: 20
-    6: 18
-  stepFeatures:
-    0: 58
-    1: 58
-    2: 102
-    3: 43
-    4: 43
-    5: 43
-    6: 38
+    0: 26
+    1: 26
+    2: 22
+    3: 22
+    4: 22
+    5: 22
+    6: 17
+  stepFeatures:
+    0: 64
+    1: 64
+    2: 142
+    3: 60
+    4: 60
+    5: 60
+    6: 41
 HLT_e60_dnnmedium_L1eEM26M:
   eventCount: 0
 HLT_e60_dnnmedium_L1eEM28M:
   eventCount: 0
 HLT_e60_etcut_L1eEM26M:
-  eventCount: 0
+  eventCount: 2
   stepCounts:
-    0: 1
-    1: 1
-    2: 1
+    0: 2
+    1: 2
+    2: 2
+    3: 2
   stepFeatures:
-    0: 1
-    1: 1
-    2: 3
+    0: 2
+    1: 2
+    2: 10
+    3: 2
 HLT_e60_etcut_L1eEM28M:
-  eventCount: 0
+  eventCount: 2
   stepCounts:
-    0: 1
-    1: 1
-    2: 1
+    0: 2
+    1: 2
+    2: 2
+    3: 2
   stepFeatures:
-    0: 1
-    1: 1
-    2: 3
+    0: 2
+    1: 2
+    2: 10
+    3: 2
 HLT_e60_idperf_medium_L1eEM26M:
   eventCount: 0
 HLT_e60_idperf_medium_L1eEM28M:
@@ -2729,60 +4700,241 @@ HLT_e60_lhmedium_nogsf_L1eEM26M:
   eventCount: 0
 HLT_e60_lhmedium_noringer_L1eEM26M:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 5
+    3: 1
+    4: 1
+    5: 1
 HLT_e60_lhmedium_noringer_L1eEM28M:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 5
+    3: 1
+    4: 1
+    5: 1
 HLT_e60_lhvloose_L1eEM26M:
   eventCount: 0
 HLT_e60_lhvloose_L1eEM28M:
   eventCount: 0
 HLT_e70_etcut_L1eEM26M:
-  eventCount: 0
+  eventCount: 2
+  stepCounts:
+    0: 2
+    1: 2
+    2: 2
+    3: 2
+  stepFeatures:
+    0: 2
+    1: 2
+    2: 10
+    3: 2
 HLT_e70_etcut_L1eEM28M:
-  eventCount: 0
+  eventCount: 2
+  stepCounts:
+    0: 2
+    1: 2
+    2: 2
+    3: 2
+  stepFeatures:
+    0: 2
+    1: 2
+    2: 10
+    3: 2
 HLT_e70_lhloose_xe70_cell_L1eEM26M:
   eventCount: 0
 HLT_e70_lhloose_xe70_cell_L1eEM28M:
   eventCount: 0
 HLT_e7_lhmedium_L1eEM5_mu24_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 3
+    1: 1
 HLT_e7_lhmedium_L1eEM5_mu24_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 3
+    1: 1
 HLT_e7_lhmedium_mu24_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 4
+    1: 2
 HLT_e7_lhmedium_mu24_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 4
+    1: 2
 HLT_e80_etcut_L1eEM26M:
-  eventCount: 0
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 5
+    3: 1
 HLT_e80_etcut_L1eEM28M:
-  eventCount: 0
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 5
+    3: 1
 HLT_e80_lhvloose_L1eEM26M:
   eventCount: 0
 HLT_e80_lhvloose_L1eEM28M:
   eventCount: 0
 HLT_e9_lhtight_e4_etcut_1invmAB5_L1JPSI-1M5-EM7:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+  stepFeatures:
+    0: 22
+    1: 7
+    2: 9
+    3: 4
 HLT_e9_lhtight_e4_etcut_1invmAB5_L1JPSI-1M5-eEM9:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
   stepFeatures:
-    0: 12
+    0: 23
+    1: 9
+    2: 18
+    3: 8
+    4: 2
+    5: 2
 HLT_e9_lhtight_e4_etcut_probe_1invmAB5_L1JPSI-1M5-EM7:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
 HLT_e9_lhtight_e4_idperf_tight_nogsf_probe_1invmAB5_L1JPSI-1M5-EM7:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
 HLT_e9_lhtight_e4_idperf_tight_nogsf_probe_1invmAB5_L1JPSI-1M5-eEM9:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 2
+    1: 2
+    2: 6
+    3: 2
+    4: 2
+    5: 2
 HLT_e9_lhtight_e4_idperf_tight_probe_1invmAB5_L1JPSI-1M5-EM7:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
 HLT_e9_lhtight_e4_idperf_tight_probe_1invmAB5_L1JPSI-1M5-eEM9:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 2
+    1: 2
+    2: 6
+    3: 2
+    4: 2
+    5: 2
 HLT_e9_lhvloose_L1eEM5_mu20_mu8noL1_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 3
+    1: 1
 HLT_e9_lhvloose_L1eEM5_mu23_mu8noL1_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 3
+    1: 1
 HLT_e9_lhvloose_mu20_mu8noL1_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 4
+    1: 2
 HLT_e9_lhvloose_mu23_mu8noL1_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 4
+    1: 2
 HLT_fslrt0_L14J15:
   eventCount: 0
 HLT_fslrt0_L1All:
@@ -2798,31 +4950,31 @@ HLT_fsvsi0_L1XE50:
 HLT_g0_hiptrt_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
+    0: 7
   stepFeatures:
-    0: 2
+    0: 7
 HLT_g0_hiptrt_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
+    0: 7
   stepFeatures:
-    0: 2
+    0: 7
 HLT_g100_loose_L1eEM26M:
   eventCount: 0
 HLT_g100_loose_L1eEM28M:
   eventCount: 0
 HLT_g10_loose_L1eEM9:
-  eventCount: 4
+  eventCount: 3
   stepCounts:
-    0: 17
-    1: 8
-    2: 8
-    3: 4
-  stepFeatures:
-    0: 25
-    1: 8
+    0: 16
+    1: 9
     2: 9
-    3: 4
+    3: 3
+  stepFeatures:
+    0: 29
+    1: 13
+    2: 12
+    3: 3
 HLT_g120_loose_L1eEM26M:
   eventCount: 0
 HLT_g120_loose_L1eEM28M:
@@ -2830,19 +4982,19 @@ HLT_g120_loose_L1eEM28M:
 HLT_g120_loose_ringer_L1eEM26M:
   eventCount: 0
 HLT_g12_loose_LArPEBHLT_L1EM10VH:
-  eventCount: 4
+  eventCount: 3
   stepCounts:
-    0: 10
-    1: 6
-    2: 6
-    3: 4
-    4: 4
+    0: 13
+    1: 9
+    2: 9
+    3: 3
+    4: 3
   stepFeatures:
-    0: 12
-    1: 6
-    2: 7
-    3: 4
-    4: 4
+    0: 16
+    1: 10
+    2: 10
+    3: 3
+    4: 3
 HLT_g13_loose_g10_loose_EgammaPEBTLA_L113DR25-25M70-eEM12LeEM9L:
   eventCount: 0
 HLT_g13_loose_g10_loose_EgammaPEBTLA_L12DR15-0M30-eEM12LeEM9L:
@@ -2864,14 +5016,14 @@ HLT_g140_loose_tau20_mediumRNN_tracktwoMVA_probe_L1eTAU12_03dRAB_L1eEM28M:
 HLT_g15_loose_L1EM10VH:
   eventCount: 3
   stepCounts:
-    0: 10
-    1: 6
-    2: 5
+    0: 12
+    1: 9
+    2: 8
     3: 3
   stepFeatures:
-    0: 12
-    1: 6
-    2: 5
+    0: 14
+    1: 10
+    2: 9
     3: 3
 HLT_g15_loose_L1eEM10L_2mu10_msonly_L12MU5VF_EMPTY:
   eventCount: 0
@@ -2884,165 +5036,173 @@ HLT_g15_loose_L1eEM10L_2mu10_msonly_L1MU3V_UNPAIRED_ISO:
 HLT_g15_loose_L1eEM12L:
   eventCount: 3
   stepCounts:
-    0: 7
-    1: 5
-    2: 4
+    0: 9
+    1: 8
+    2: 7
     3: 3
   stepFeatures:
-    0: 8
-    1: 5
-    2: 4
+    0: 9
+    1: 8
+    2: 7
     3: 3
 HLT_g15_tight_L1EM10VH:
   eventCount: 1
   stepCounts:
-    0: 10
-    1: 6
-    2: 5
+    0: 12
+    1: 9
+    2: 8
     3: 1
   stepFeatures:
-    0: 12
-    1: 6
-    2: 5
+    0: 14
+    1: 10
+    2: 9
     3: 1
 HLT_g15_tight_L1eEM12L:
   eventCount: 1
   stepCounts:
-    0: 7
-    1: 5
-    2: 4
+    0: 9
+    1: 8
+    2: 7
     3: 1
   stepFeatures:
-    0: 8
-    1: 5
-    2: 4
+    0: 9
+    1: 8
+    2: 7
     3: 1
 HLT_g15_tight_ringer_L1eEM12L:
   eventCount: 1
   stepCounts:
     0: 4
-    1: 3
-    2: 3
+    1: 4
+    2: 4
     3: 1
   stepFeatures:
     0: 4
-    1: 3
-    2: 3
+    1: 4
+    2: 4
     3: 1
 HLT_g20_loose_L1eEM18L:
-  eventCount: 2
+  eventCount: 3
   stepCounts:
-    0: 3
-    1: 2
-    2: 2
-    3: 2
+    0: 8
+    1: 7
+    2: 7
+    3: 3
   stepFeatures:
-    0: 3
-    1: 2
-    2: 2
-    3: 2
+    0: 8
+    1: 7
+    2: 7
+    3: 3
 HLT_g20_loose_L1eEM18M:
-  eventCount: 1
+  eventCount: 3
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 3
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 3
 HLT_g20_loose_LArPEBHLT_L1EM15:
-  eventCount: 2
+  eventCount: 3
   stepCounts:
-    0: 8
-    1: 5
-    2: 4
-    3: 2
-    4: 2
+    0: 11
+    1: 7
+    2: 7
+    3: 3
+    4: 3
   stepFeatures:
-    0: 12
-    1: 5
-    2: 4
-    3: 2
-    4: 2
+    0: 15
+    1: 9
+    2: 8
+    3: 3
+    4: 3
 HLT_g20_loose_ringer_L1eEM18M:
-  eventCount: 1
+  eventCount: 3
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 6
+    1: 6
+    2: 6
+    3: 3
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 6
+    1: 6
+    2: 6
+    3: 3
 HLT_g20_medium_L1eEM18M:
-  eventCount: 1
+  eventCount: 2
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
 HLT_g20_medium_ringer_L1eEM18M:
-  eventCount: 1
+  eventCount: 2
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 5
+    1: 5
+    2: 5
+    3: 2
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 5
+    1: 5
+    2: 5
+    3: 2
 HLT_g20_tight_L1eEM18M:
   eventCount: 1
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
 HLT_g20_tight_icaloloose_L1eEM18M:
   eventCount: 1
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
 HLT_g20_tight_icaloloose_j35_0eta290_020jvt_bdl1d77_3j35a_j0_DJMASS500j35_pf_ftf_L1EM18VHI_MJJ-300:
   eventCount: 0
   stepCounts:
     0: 1
+    1: 1
+    2: 1
   stepFeatures:
     0: 1
+    1: 1
+    2: 1
 HLT_g20_tight_icaloloose_j35_0eta290_020jvt_bdl1d77_3j35a_j0_DJMASS500j35_pf_ftf_L1eEM22M_jMJJ-300:
   eventCount: 0
 HLT_g20_tight_icaloloose_j35_0eta290_020jvt_bgn177_3j35a_j0_DJMASS500j35_pf_ftf_L1EM18VHI_MJJ-300:
   eventCount: 0
   stepCounts:
     0: 1
+    1: 1
+    2: 1
   stepFeatures:
     0: 1
+    1: 1
+    2: 1
 HLT_g20_tight_icaloloose_j35_0eta290_020jvt_bgn177_3j35a_j0_DJMASS500j35_pf_ftf_L1eEM22M_jMJJ-300:
   eventCount: 0
 HLT_g20_tight_icaloloose_j35_0eta290_020jvt_bgn277_3j35a_j0_DJMASS500j35_pf_ftf_L1eEM22M_jMJJ-300:
@@ -3054,29 +5214,37 @@ HLT_g20_tight_icaloloose_j40_j35a_j25a_j25_j20c_j0_DJMASS300j35_pf_ftf_L1eEM22M_
 HLT_g20_tight_icaloloose_ringer_L1eEM18M:
   eventCount: 1
   stepCounts:
-    0: 1
-    1: 1
-    2: 1
+    0: 4
+    1: 4
+    2: 4
     3: 1
     4: 1
   stepFeatures:
-    0: 1
-    1: 1
-    2: 1
+    0: 4
+    1: 4
+    2: 4
     3: 1
     4: 1
 HLT_g20_tight_j35_0eta290_020jvt_bdl1d77_3j35a_j0_DJMASS500j35_pf_ftf_L1EM18VHI_MJJ-300:
   eventCount: 0
   stepCounts:
     0: 1
+    1: 1
+    2: 1
   stepFeatures:
     0: 1
+    1: 1
+    2: 1
 HLT_g20_tight_j35_0eta290_020jvt_bgn177_3j35a_j0_DJMASS500j35_pf_ftf_L1EM18VHI_MJJ-300:
   eventCount: 0
   stepCounts:
     0: 1
+    1: 1
+    2: 1
   stepFeatures:
     0: 1
+    1: 1
+    2: 1
 HLT_g20_tight_j35_0eta290_020jvt_bgn177_3j35a_j0_DJMASS500j35_pf_ftf_L1eEM22M_jMJJ-300:
   eventCount: 0
 HLT_g20_tight_j35_0eta290_020jvt_bgn277_3j35a_j0_DJMASS500j35_pf_ftf_L1eEM22M_jMJJ-300:
@@ -3084,40 +5252,40 @@ HLT_g20_tight_j35_0eta290_020jvt_bgn277_3j35a_j0_DJMASS500j35_pf_ftf_L1eEM22M_jM
 HLT_g20_tight_ringer_L1eEM18M:
   eventCount: 1
   stepCounts:
-    0: 1
-    1: 1
-    2: 1
+    0: 4
+    1: 4
+    2: 4
     3: 1
   stepFeatures:
-    0: 1
-    1: 1
-    2: 1
+    0: 4
+    1: 4
+    2: 4
     3: 1
 HLT_g22_tight_L1eEM18M:
   eventCount: 1
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
 HLT_g24_tight_icaloloose_j40c_j30c_j24c_03dRAB35_03dRAC35_15dRBC45_50invmBC130_pf_ftf_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
     5: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
     5: 3
@@ -3125,1208 +5293,1244 @@ HLT_g24_tight_icaloloose_j40c_j30c_j24c_03dRAB35_03dRAC35_15dRBC45_50invmBC130_p
 HLT_g24_tight_icaloloose_j50c_j30c_j24c_03dRAB30_03dRAC30_15dRBC45_50invmBC130_pf_ftf_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
     5: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
     5: 3
-    6: 6
+    6: 7
 HLT_g24_tight_icaloloose_j50c_j30c_j24c_03dRAB35_03dRAC35_15dRBC45_50invmBC130_pf_ftf_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
     5: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
     5: 3
-    6: 6
+    6: 7
 HLT_g250_etcut_L1eEM26M:
   eventCount: 0
 HLT_g250_etcut_L1eEM28M:
   eventCount: 0
 HLT_g25_loose_L1eEM24L:
-  eventCount: 2
+  eventCount: 3
   stepCounts:
-    0: 3
-    1: 2
-    2: 2
-    3: 2
+    0: 8
+    1: 7
+    2: 7
+    3: 3
   stepFeatures:
-    0: 3
-    1: 2
-    2: 2
-    3: 2
+    0: 8
+    1: 7
+    2: 7
+    3: 3
 HLT_g25_loose_xe40_cell_xe50_tcpufit_18dphiAB_18dphiAC_80mTAC_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 3
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 3
 HLT_g25_medium_2j35_0eta290_020jvt_bdl1d77_2j35a_pf_ftf_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
-    4: 1
-  stepFeatures:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 2
+    5: 1
+  stepFeatures:
+    0: 7
+    1: 7
+    2: 7
+    3: 2
+    4: 4
+    5: 6
 HLT_g25_medium_2j35_0eta290_020jvt_bdl1d77_2j35a_pf_ftf_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
-    4: 1
-  stepFeatures:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 2
+    5: 1
+  stepFeatures:
+    0: 7
+    1: 7
+    2: 7
+    3: 2
+    4: 4
+    5: 6
 HLT_g25_medium_2j35_0eta290_020jvt_bdl1d77_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 2
 HLT_g25_medium_2j35_0eta290_020jvt_bdl1d77_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 2
 HLT_g25_medium_2j35_0eta290_020jvt_bgn177_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 2
 HLT_g25_medium_2j35_0eta290_020jvt_bgn177_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 2
 HLT_g25_medium_2j35_0eta290_020jvt_bgn277_2j35a_pf_ftf_presel2a20bgtwo90XX2a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 2
-HLT_g25_medium_2j35_0eta290_020jvt_bgn277_2j35a_pf_ftf_presel2a20bgtwo90XX2a20_L1eEM28M:
-  eventCount: 0
-  stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+HLT_g25_medium_2j35_0eta290_020jvt_bgn277_2j35a_pf_ftf_presel2a20bgtwo90XX2a20_L1eEM28M:
+  eventCount: 0
+  stepCounts:
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 2
 HLT_g25_medium_4j35a_j0_DJMASS1000j35_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
 HLT_g25_medium_4j35a_j0_DJMASS1000j35_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
 HLT_g25_medium_L1eEM18L_mu24_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_g25_medium_L1eEM18L_mu24_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_g25_medium_L1eEM24L:
-  eventCount: 1
+  eventCount: 2
   stepCounts:
-    0: 3
-    1: 2
-    2: 2
-    3: 1
+    0: 8
+    1: 7
+    2: 7
+    3: 2
   stepFeatures:
-    0: 3
-    1: 2
-    2: 2
-    3: 1
+    0: 8
+    1: 7
+    2: 7
+    3: 2
 HLT_g25_medium_L1eEM26M_mu24_ivarmedium_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_g25_medium_L1eEM26M_mu24_ivarmedium_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_g25_medium_j35_0eta290_020jvt_bdl1d77_3j35a_j0_DJMASS700j35_pf_ftf_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
-    4: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
+    4: 2
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
-    4: 3
+    0: 7
+    1: 7
+    2: 7
+    3: 2
+    4: 6
 HLT_g25_medium_j35_0eta290_020jvt_bdl1d77_3j35a_j0_DJMASS700j35_pf_ftf_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
-    4: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
+    4: 2
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
-    4: 3
+    0: 7
+    1: 7
+    2: 7
+    3: 2
+    4: 6
 HLT_g25_medium_j35_0eta290_020jvt_bdl1d77_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 3
 HLT_g25_medium_j35_0eta290_020jvt_bdl1d77_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 3
 HLT_g25_medium_j35_0eta290_020jvt_bgn177_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 3
 HLT_g25_medium_j35_0eta290_020jvt_bgn177_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 3
 HLT_g25_medium_j35_0eta290_020jvt_bgn277_3j35a_j0_DJMASS700j35_pf_ftf_presela20bgtwo85XX3a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 3
 HLT_g25_medium_j35_0eta290_020jvt_bgn277_3j35a_j0_DJMASS700j35_pf_ftf_presela20bgtwo85XX3a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
     4: 3
 HLT_g25_medium_mu24_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_g25_medium_mu24_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_g25_medium_mu24_ivarmedium_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_g25_medium_mu24_ivarmedium_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_g25_medium_ringer_L1eEM24L:
-  eventCount: 1
+  eventCount: 2
   stepCounts:
-    0: 3
-    1: 2
-    2: 2
-    3: 1
+    0: 5
+    1: 5
+    2: 5
+    3: 2
   stepFeatures:
-    0: 3
-    1: 2
-    2: 2
-    3: 1
+    0: 5
+    1: 5
+    2: 5
+    3: 2
 HLT_g25_medium_tau25_dikaonmass_tracktwoMVA_50invmAB_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
   stepFeatures:
-    0: 6
-    1: 5
-    2: 3
-    3: 3
+    0: 20
+    1: 20
+    2: 20
+    3: 15
 HLT_g25_medium_tau25_dikaonmass_tracktwoMVA_50invmAB_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
   stepFeatures:
-    0: 6
-    1: 5
-    2: 3
-    3: 3
+    0: 20
+    1: 20
+    2: 20
+    3: 15
 HLT_g25_medium_tau25_dipion1_tracktwoMVA_50invmAB_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
   stepFeatures:
-    0: 6
-    1: 5
-    2: 3
-    3: 3
+    0: 20
+    1: 20
+    2: 20
+    3: 15
 HLT_g25_medium_tau25_dipion1_tracktwoMVA_50invmAB_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
   stepFeatures:
-    0: 6
-    1: 5
-    2: 3
-    3: 3
+    0: 20
+    1: 20
+    2: 20
+    3: 15
 HLT_g25_medium_tau25_dipion2_tracktwoMVA_50invmAB_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
   stepFeatures:
-    0: 6
-    1: 5
-    2: 3
-    3: 3
+    0: 20
+    1: 20
+    2: 20
+    3: 15
 HLT_g25_medium_tau25_dipion2_tracktwoMVA_50invmAB_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
   stepFeatures:
-    0: 6
-    1: 5
-    2: 3
-    3: 3
+    0: 20
+    1: 20
+    2: 20
+    3: 15
 HLT_g25_medium_tau25_kaonpi1_tracktwoMVA_50invmAB_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
   stepFeatures:
-    0: 6
-    1: 5
-    2: 3
-    3: 3
+    0: 20
+    1: 20
+    2: 20
+    3: 15
 HLT_g25_medium_tau25_kaonpi1_tracktwoMVA_50invmAB_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
   stepFeatures:
-    0: 6
-    1: 5
-    2: 3
-    3: 3
+    0: 20
+    1: 20
+    2: 20
+    3: 15
 HLT_g25_medium_tau25_kaonpi2_tracktwoMVA_50invmAB_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
   stepFeatures:
-    0: 6
-    1: 5
-    2: 3
-    3: 3
+    0: 20
+    1: 20
+    2: 20
+    3: 15
 HLT_g25_medium_tau25_kaonpi2_tracktwoMVA_50invmAB_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
   stepFeatures:
-    0: 6
-    1: 5
-    2: 3
-    3: 3
+    0: 20
+    1: 20
+    2: 20
+    3: 15
 HLT_g25_medium_tau25_singlepion_tracktwoMVA_50invmAB_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
   stepFeatures:
-    0: 6
-    1: 5
-    2: 3
-    3: 3
+    0: 20
+    1: 20
+    2: 20
+    3: 15
 HLT_g25_medium_tau25_singlepion_tracktwoMVA_50invmAB_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
-    3: 1
+    0: 7
+    1: 7
+    2: 7
+    3: 2
   stepFeatures:
-    0: 6
-    1: 5
-    2: 3
-    3: 3
+    0: 20
+    1: 20
+    2: 20
+    3: 15
 HLT_g25_tight_2j35_0eta290_020jvt_bdl1d77_2j35a_pf_ftf_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 2
 HLT_g25_tight_2j35_0eta290_020jvt_bdl1d77_2j35a_pf_ftf_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 2
 HLT_g25_tight_2j35_0eta290_020jvt_bdl1d77_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 2
 HLT_g25_tight_2j35_0eta290_020jvt_bdl1d77_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 2
 HLT_g25_tight_2j35_0eta290_020jvt_bgn177_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 2
 HLT_g25_tight_2j35_0eta290_020jvt_bgn177_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 2
 HLT_g25_tight_2j35_0eta290_020jvt_bgn277_2j35a_pf_ftf_presel2a20bgtwo90XX2a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 2
 HLT_g25_tight_2j35_0eta290_020jvt_bgn277_2j35a_pf_ftf_presel2a20bgtwo90XX2a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 2
 HLT_g25_tight_icaloloose_2j35_0eta290_020jvt_bdl1d77_2j35a_pf_ftf_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
     5: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
     5: 2
 HLT_g25_tight_icaloloose_2j35_0eta290_020jvt_bdl1d77_2j35a_pf_ftf_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
     5: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
     5: 2
 HLT_g25_tight_icaloloose_2j35_0eta290_020jvt_bdl1d77_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 2
 HLT_g25_tight_icaloloose_2j35_0eta290_020jvt_bdl1d77_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 2
 HLT_g25_tight_icaloloose_2j35_0eta290_020jvt_bgn177_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 2
 HLT_g25_tight_icaloloose_2j35_0eta290_020jvt_bgn177_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 2
 HLT_g25_tight_icaloloose_2j35_0eta290_020jvt_bgn277_2j35a_pf_ftf_presel2a20bgtwo90XX2a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 2
 HLT_g25_tight_icaloloose_2j35_0eta290_020jvt_bgn277_2j35a_pf_ftf_presel2a20bgtwo90XX2a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 2
 HLT_g25_tight_icaloloose_L1eEM24L:
   eventCount: 1
   stepCounts:
-    0: 3
-    1: 2
-    2: 2
+    0: 8
+    1: 7
+    2: 7
     3: 1
     4: 1
   stepFeatures:
-    0: 3
-    1: 2
-    2: 2
+    0: 8
+    1: 7
+    2: 7
     3: 1
     4: 1
 HLT_g25_tight_icaloloose_L1eEM26M:
   eventCount: 1
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
 HLT_g25_tight_icaloloose_j35_0eta290_020jvt_bdl1d77_3j35a_j0_DJMASS700j35_pf_ftf_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
     5: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
     5: 3
 HLT_g25_tight_icaloloose_j35_0eta290_020jvt_bdl1d77_3j35a_j0_DJMASS700j35_pf_ftf_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
     5: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
     5: 3
 HLT_g25_tight_icaloloose_j35_0eta290_020jvt_bdl1d77_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 3
 HLT_g25_tight_icaloloose_j35_0eta290_020jvt_bdl1d77_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 3
 HLT_g25_tight_icaloloose_j35_0eta290_020jvt_bgn177_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 3
 HLT_g25_tight_icaloloose_j35_0eta290_020jvt_bgn177_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 3
 HLT_g25_tight_icaloloose_j35_0eta290_020jvt_bgn277_3j35a_j0_DJMASS700j35_pf_ftf_presela20bgtwo85XX3a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 3
 HLT_g25_tight_icaloloose_j35_0eta290_020jvt_bgn277_3j35a_j0_DJMASS700j35_pf_ftf_presela20bgtwo85XX3a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
-    5: 3
 HLT_g25_tight_icalomedium_L1eEM24L:
-  eventCount: 1
-  stepCounts:
-    0: 3
-    1: 2
-    2: 2
+  eventCount: 0
+  stepCounts:
+    0: 8
+    1: 7
+    2: 7
     3: 1
-    4: 1
   stepFeatures:
-    0: 3
-    1: 2
-    2: 2
+    0: 8
+    1: 7
+    2: 7
     3: 1
-    4: 1
 HLT_g25_tight_icalotight_L1eEM24L:
   eventCount: 1
   stepCounts:
-    0: 3
-    1: 2
-    2: 2
+    0: 8
+    1: 7
+    2: 7
     3: 1
     4: 1
   stepFeatures:
-    0: 3
-    1: 2
-    2: 2
+    0: 8
+    1: 7
+    2: 7
     3: 1
     4: 1
 HLT_g25_tight_icalotight_L1eEM26M:
   eventCount: 1
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
 HLT_g25_tight_icalotight_xe40_cell_xe40_tcpufit_xe40_pfopufit_80mTAC_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
     5: 1
 HLT_g25_tight_icalotight_xe40_cell_xe50_tcpufit_80mTAC_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
 HLT_g25_tight_icalotight_xe40_cell_xe50_tcpufit_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
 HLT_g25_tight_j35_0eta290_020jvt_bdl1d77_3j35a_j0_DJMASS700j35_pf_ftf_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 3
 HLT_g25_tight_j35_0eta290_020jvt_bdl1d77_3j35a_j0_DJMASS700j35_pf_ftf_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
     4: 3
 HLT_g25_tight_j35_0eta290_020jvt_bdl1d77_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 3
 HLT_g25_tight_j35_0eta290_020jvt_bdl1d77_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 3
 HLT_g25_tight_j35_0eta290_020jvt_bgn177_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 3
 HLT_g25_tight_j35_0eta290_020jvt_bgn177_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 3
 HLT_g25_tight_j35_0eta290_020jvt_bgn277_3j35a_j0_DJMASS700j35_pf_ftf_presela20bgtwo85XX3a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 3
 HLT_g25_tight_j35_0eta290_020jvt_bgn277_3j35a_j0_DJMASS700j35_pf_ftf_presela20bgtwo85XX3a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 1
   stepFeatures:
-    0: 2
-    1: 1
-    2: 1
+    0: 7
+    1: 7
+    2: 7
     3: 1
-    4: 3
 HLT_g300_etcut_L1eEM26M:
   eventCount: 0
 HLT_g300_etcut_L1eEM28M:
   eventCount: 0
 HLT_g30_loose_L1eEM24L:
-  eventCount: 1
+  eventCount: 3
   stepCounts:
-    0: 3
-    1: 2
-    2: 1
-    3: 1
+    0: 8
+    1: 7
+    2: 7
+    3: 3
   stepFeatures:
-    0: 3
-    1: 2
-    2: 1
-    3: 1
+    0: 8
+    1: 7
+    2: 7
+    3: 3
 HLT_g35_loose_3j25_pf_ftf_PhysicsTLA_L1eEM26M:
-  eventCount: 0
+  eventCount: 1
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 2
+    4: 2
+    5: 1
+    6: 1
+    7: 1
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 2
+    4: 2
+    5: 4
+    6: 5
+    7: 2
 HLT_g35_loose_3j25_pf_ftf_PhysicsTLA_L1eEM28M:
-  eventCount: 0
+  eventCount: 1
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 2
+    4: 2
+    5: 1
+    6: 1
+    7: 1
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 2
+    4: 2
+    5: 4
+    6: 5
+    7: 2
 HLT_g35_loose_mu15_mu2noL1_L1eEM28M:
   eventCount: 0
-  stepCounts:
-    0: 1
   stepFeatures:
-    0: 3
-    1: 1
+    0: 5
 HLT_g35_loose_mu18_L1eEM28M:
   eventCount: 0
-  stepCounts:
-    0: 1
   stepFeatures:
-    0: 3
-    1: 1
+    0: 5
 HLT_g35_medium_2j35_0eta290_020jvt_bdl1d77_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 1
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 2
 HLT_g35_medium_2j35_0eta290_020jvt_bdl1d77_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 1
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 2
 HLT_g35_medium_2j35_0eta290_020jvt_bgn177_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 1
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 2
 HLT_g35_medium_2j35_0eta290_020jvt_bgn177_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 1
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 2
 HLT_g35_medium_2j35_0eta290_020jvt_bgn277_2j35a_pf_ftf_presel2a20bgtwo90XX2a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 1
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 2
 HLT_g35_medium_2j35_0eta290_020jvt_bgn277_2j35a_pf_ftf_presel2a20bgtwo90XX2a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 1
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 2
 HLT_g35_medium_4j35a_j0_DJMASS1000j35_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
 HLT_g35_medium_4j35a_j0_DJMASS1000j35_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
 HLT_g35_medium_L1eEM24L:
-  eventCount: 0
+  eventCount: 1
   stepCounts:
-    0: 2
-    1: 1
+    0: 6
+    1: 5
+    2: 4
+    3: 1
   stepFeatures:
-    0: 2
-    1: 1
+    0: 6
+    1: 5
+    2: 4
+    3: 1
 HLT_g35_medium_g25_medium_L12eEM24L:
   eventCount: 0
 HLT_g35_medium_g25_medium_L12eEM9_EMPTY:
@@ -4344,713 +6548,939 @@ HLT_g35_medium_g25_medium_ringer_L12eEM24L:
 HLT_g35_medium_j35_0eta290_020jvt_bdl1d77_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 1
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 3
 HLT_g35_medium_j35_0eta290_020jvt_bdl1d77_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 1
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 3
 HLT_g35_medium_j35_0eta290_020jvt_bgn177_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 1
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 3
 HLT_g35_medium_j35_0eta290_020jvt_bgn177_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 1
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 3
 HLT_g35_medium_j35_0eta290_020jvt_bgn277_3j35a_j0_DJMASS700j35_pf_ftf_presela20bgtwo85XX3a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 1
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 3
 HLT_g35_medium_j35_0eta290_020jvt_bgn277_3j35a_j0_DJMASS700j35_pf_ftf_presela20bgtwo85XX3a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 1
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
+    4: 3
 HLT_g35_medium_ringer_L1eEM24L:
-  eventCount: 0
+  eventCount: 1
   stepCounts:
-    0: 2
-    1: 1
+    0: 3
+    1: 3
+    2: 2
+    3: 1
   stepFeatures:
-    0: 2
-    1: 1
+    0: 3
+    1: 3
+    2: 2
+    3: 1
 HLT_g35_medium_tau25_dikaonmass_tracktwoMVA_50invmAB_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+    3: 1
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 9
 HLT_g35_medium_tau25_dikaonmass_tracktwoMVA_50invmAB_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+    3: 1
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 9
 HLT_g35_medium_tau25_dipion1_tracktwoMVA_50invmAB_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+    3: 1
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 9
 HLT_g35_medium_tau25_dipion1_tracktwoMVA_50invmAB_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
+    3: 1
   stepFeatures:
-    0: 5
-    1: 4
-    2: 1
+    0: 17
+    1: 15
+    2: 14
+    3: 9
 HLT_g35_medium_tau25_dipion2_tracktwoMVA_50invmAB_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+    3: 1
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 9
 HLT_g35_medium_tau25_dipion2_tracktwoMVA_50invmAB_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+    3: 1
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 9
 HLT_g35_medium_tau25_dipion3_tracktwoMVA_60invmAB_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
-    0: 6
+    0: 5
     1: 5
-    2: 2
+    2: 4
+    3: 1
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 9
 HLT_g35_medium_tau25_dipion3_tracktwoMVA_60invmAB_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
-    0: 6
+    0: 5
     1: 5
-    2: 2
+    2: 4
+    3: 1
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 9
 HLT_g35_medium_tau25_dipion3_tracktwoMVA_L1TAU12_60invmAB_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+    3: 1
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 9
 HLT_g35_medium_tau25_dipion3_tracktwoMVA_L1TAU12_60invmAB_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+    3: 1
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 9
 HLT_g35_medium_tau25_kaonpi1_tracktwoMVA_50invmAB_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+    3: 1
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 9
 HLT_g35_medium_tau25_kaonpi1_tracktwoMVA_50invmAB_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+    3: 1
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 9
 HLT_g35_medium_tau25_kaonpi2_tracktwoMVA_50invmAB_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+    3: 1
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 9
 HLT_g35_medium_tau25_kaonpi2_tracktwoMVA_50invmAB_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+    3: 1
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 9
 HLT_g35_medium_tau25_singlepion_tracktwoMVA_50invmAB_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+    3: 1
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 9
 HLT_g35_medium_tau25_singlepion_tracktwoMVA_50invmAB_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+    3: 1
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 9
 HLT_g35_tight_2j35_0eta290_020jvt_bdl1d77_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_2j35_0eta290_020jvt_bdl1d77_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_2j35_0eta290_020jvt_bgn177_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_2j35_0eta290_020jvt_bgn177_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_2j35_0eta290_020jvt_bgn277_2j35a_pf_ftf_presel2a20bgtwo90XX2a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_2j35_0eta290_020jvt_bgn277_2j35a_pf_ftf_presel2a20bgtwo90XX2a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_3j25_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_3j25_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_3j25_PhysicsTLA_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_3j25_PhysicsTLA_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_3j25_pf_ftf_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_3j25_pf_ftf_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_3j25_pf_ftf_PhysicsTLA_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_3j25_pf_ftf_PhysicsTLA_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_4j35a_j0_DJMASS1000j35_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_4j35a_j0_DJMASS1000j35_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_icaloloose_2j35_0eta290_020jvt_bdl1d77_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_icaloloose_2j35_0eta290_020jvt_bdl1d77_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_icaloloose_2j35_0eta290_020jvt_bgn177_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_icaloloose_2j35_0eta290_020jvt_bgn177_2j35a_pf_ftf_presel2a20b90XX2a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_icaloloose_2j35_0eta290_020jvt_bgn277_2j35a_pf_ftf_presel2a20bgtwo90XX2a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_icaloloose_2j35_0eta290_020jvt_bgn277_2j35a_pf_ftf_presel2a20bgtwo90XX2a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_icaloloose_j35_0eta290_020jvt_bdl1d77_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_icaloloose_j35_0eta290_020jvt_bdl1d77_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_icaloloose_j35_0eta290_020jvt_bgn177_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_icaloloose_j35_0eta290_020jvt_bgn177_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_icaloloose_j35_0eta290_020jvt_bgn277_3j35a_j0_DJMASS700j35_pf_ftf_presela20bgtwo85XX3a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_icaloloose_j35_0eta290_020jvt_bgn277_3j35a_j0_DJMASS700j35_pf_ftf_presela20bgtwo85XX3a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_icalotight_mu15noL1_mu2noL1_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_icalotight_mu18noL1_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_j35_0eta290_020jvt_bdl1d77_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_j35_0eta290_020jvt_bdl1d77_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_j35_0eta290_020jvt_bgn177_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_j35_0eta290_020jvt_bgn177_3j35a_j0_DJMASS700j35_pf_ftf_presela20b85XX3a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_j35_0eta290_020jvt_bgn277_3j35a_j0_DJMASS700j35_pf_ftf_presela20bgtwo85XX3a20_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_j35_0eta290_020jvt_bgn277_3j35a_j0_DJMASS700j35_pf_ftf_presela20bgtwo85XX3a20_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_mu15noL1_mu2noL1_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_mu18noL1_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_noiso_3j25_pf_ftf_PhysicsTLA_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_noiso_3j25_pf_ftf_PhysicsTLA_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
   stepFeatures:
-    0: 2
-    1: 1
+    0: 5
+    1: 5
+    2: 4
 HLT_g35_tight_tau25_dikaonmass_tracktwoMVA_50invmAB_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 8
 HLT_g35_tight_tau25_dikaonmass_tracktwoMVA_50invmAB_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 8
 HLT_g35_tight_tau25_dipion1_tracktwoMVA_50invmAB_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 8
 HLT_g35_tight_tau25_dipion1_tracktwoMVA_50invmAB_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 8
 HLT_g35_tight_tau25_dipion2_tracktwoMVA_50invmAB_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 8
 HLT_g35_tight_tau25_dipion2_tracktwoMVA_50invmAB_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 8
 HLT_g35_tight_tau25_dipion3_tracktwoMVA_60invmAB_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 8
 HLT_g35_tight_tau25_dipion3_tracktwoMVA_60invmAB_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 8
 HLT_g35_tight_tau25_kaonpi1_tracktwoMVA_50invmAB_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 8
 HLT_g35_tight_tau25_kaonpi1_tracktwoMVA_50invmAB_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 8
 HLT_g35_tight_tau25_kaonpi2_tracktwoMVA_50invmAB_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 8
 HLT_g35_tight_tau25_kaonpi2_tracktwoMVA_50invmAB_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 8
 HLT_g35_tight_tau25_singlepion_tracktwoMVA_50invmAB_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 8
 HLT_g35_tight_tau25_singlepion_tracktwoMVA_50invmAB_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 1
-  stepFeatures:
     0: 5
-    1: 4
-    2: 1
+    1: 5
+    2: 4
+  stepFeatures:
+    0: 17
+    1: 15
+    2: 14
+    3: 8
 HLT_g3_etcut_LArPEB_L1EM3:
-  eventCount: 36
+  eventCount: 34
   stepCounts:
-    0: 37
-    1: 37
-    2: 36
-    3: 36
+    0: 38
+    1: 38
+    2: 34
+    3: 34
   stepFeatures:
-    0: 151
-    1: 151
-    2: 132
-    3: 132
+    0: 192
+    1: 192
+    2: 152
+    3: 152
 HLT_g3_loose_LArPEBHLT_L1EM3:
-  eventCount: 15
+  eventCount: 14
   stepCounts:
-    0: 37
-    1: 35
-    2: 35
-    3: 15
-    4: 15
+    0: 38
+    1: 36
+    2: 34
+    3: 14
+    4: 14
   stepFeatures:
-    0: 151
-    1: 103
+    0: 192
+    1: 117
     2: 90
-    3: 20
-    4: 20
+    3: 18
+    4: 18
 HLT_g40_loose_L1eEM24L:
-  eventCount: 0
+  eventCount: 1
   stepCounts:
-    0: 1
+    0: 5
+    1: 4
+    2: 3
+    3: 1
   stepFeatures:
-    0: 1
+    0: 5
+    1: 4
+    2: 3
+    3: 1
 HLT_g40_loose_L1eEM24L_mu40_msonly_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_g40_loose_L1eEM24L_mu40_msonly_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_g40_loose_mu40_msonly_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_g40_loose_mu40_msonly_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_g40_tight_3j25_pf_ftf_PhysicsTLA_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 4
+    1: 4
+    2: 3
   stepFeatures:
-    0: 1
+    0: 4
+    1: 4
+    2: 3
 HLT_g40_tight_3j25_pf_ftf_PhysicsTLA_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 4
+    1: 4
+    2: 3
   stepFeatures:
-    0: 1
+    0: 4
+    1: 4
+    2: 3
 HLT_g40_tight_noiso_3j25_pf_ftf_PhysicsTLA_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 4
+    1: 4
+    2: 3
   stepFeatures:
-    0: 1
+    0: 4
+    1: 4
+    2: 3
 HLT_g40_tight_noiso_3j25_pf_ftf_PhysicsTLA_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 4
+    1: 4
+    2: 3
   stepFeatures:
-    0: 1
+    0: 4
+    1: 4
+    2: 3
 HLT_g45_loose_6j45c_L14J15p0ETA25:
   eventCount: 0
 HLT_g45_loose_6j45c_L14jJ40p0ETA25:
@@ -5064,105 +7494,187 @@ HLT_g45_medium_g20_medium_L1eEM40L_2eEM18L:
 HLT_g45_tight_2j50_0eta200_emergingPTF0p1dR0p4_pf_ftf_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
 HLT_g45_tight_2j50_0eta200_emergingPTF0p1dR0p4_pf_ftf_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
 HLT_g45_tight_2j55_0eta200_emergingPTF0p1dR0p4_pf_ftf_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
 HLT_g45_tight_2j55_0eta200_emergingPTF0p1dR0p4_pf_ftf_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
 HLT_g45_tight_3j25_pf_ftf_PhysicsTLA_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
 HLT_g45_tight_3j25_pf_ftf_PhysicsTLA_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
 HLT_g45_tight_icaloloose_2j50_0eta200_emergingPTF0p1dR0p4_pf_ftf_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
 HLT_g45_tight_icaloloose_2j50_0eta200_emergingPTF0p1dR0p4_pf_ftf_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
 HLT_g45_tight_icaloloose_2j55_0eta200_emergingPTF0p1dR0p4_pf_ftf_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
 HLT_g45_tight_icaloloose_2j55_0eta200_emergingPTF0p1dR0p4_pf_ftf_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
 HLT_g45_tight_noiso_3j25_pf_ftf_PhysicsTLA_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
 HLT_g45_tight_noiso_3j25_pf_ftf_PhysicsTLA_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
 HLT_g50_loose_L1eEM24L:
-  eventCount: 0
+  eventCount: 1
   stepCounts:
-    0: 1
+    0: 4
+    1: 3
+    2: 3
+    3: 1
   stepFeatures:
-    0: 1
+    0: 4
+    1: 3
+    2: 3
+    3: 1
 HLT_g50_loose_xe40_cell_xe70_pfopufit_80mTAC_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
+    3: 1
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
+    3: 1
+    4: 1
 HLT_g50_loose_xe40_cell_xe70_pfopufit_80mTAC_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
+    3: 1
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
+    3: 1
+    4: 1
 HLT_g50_loose_xe40_cell_xe70_pfopufit_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
+    3: 1
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
+    3: 1
+    4: 1
 HLT_g50_loose_xe40_cell_xe70_pfopufit_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
+    3: 1
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
+    3: 1
+    4: 1
 HLT_g50_medium_g20_medium_L12eEM18L:
   eventCount: 0
 HLT_g50_medium_g20_medium_L12eEM18M:
@@ -5170,230 +7682,386 @@ HLT_g50_medium_g20_medium_L12eEM18M:
 HLT_g50_tight_3j25_pf_ftf_PhysicsTLA_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
 HLT_g50_tight_3j25_pf_ftf_PhysicsTLA_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
 HLT_g50_tight_noiso_3j25_pf_ftf_PhysicsTLA_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
 HLT_g50_tight_noiso_3j25_pf_ftf_PhysicsTLA_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
 HLT_g50_tight_xe40_cell_xe50_pfopufit_80mTAC_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
 HLT_g50_tight_xe40_cell_xe50_pfopufit_80mTAC_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
 HLT_g50_tight_xe40_cell_xe60_pfopufit_80mTAC_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
 HLT_g50_tight_xe40_cell_xe60_pfopufit_80mTAC_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
 HLT_g50_tight_xe40_cell_xe70_pfopufit_80mTAC_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
 HLT_g50_tight_xe40_cell_xe70_pfopufit_80mTAC_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
   stepFeatures:
-    0: 1
+    0: 3
+    1: 3
+    2: 3
 HLT_g5_nopid_L1EM3:
-  eventCount: 30
+  eventCount: 27
   stepCounts:
-    0: 37
-    1: 37
-    2: 31
-    3: 30
+    0: 38
+    1: 38
+    2: 32
+    3: 27
   stepFeatures:
-    0: 139
-    1: 139
-    2: 87
+    0: 171
+    1: 171
+    2: 91
     3: 59
 HLT_g5_nopid_L1eEM5:
-  eventCount: 24
+  eventCount: 22
   stepCounts:
-    0: 25
-    1: 25
-    2: 24
-    3: 24
+    0: 26
+    1: 26
+    2: 23
+    3: 22
   stepFeatures:
-    0: 58
-    1: 58
-    2: 61
-    3: 58
+    0: 64
+    1: 64
+    2: 70
+    3: 61
 HLT_g60_loose_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
   stepFeatures:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
 HLT_g60_loose_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
   stepFeatures:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
 HLT_g60_tight_2j50_0eta200_emergingPTF0p1dR0p4_pf_ftf_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
   stepFeatures:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
 HLT_g60_tight_2j50_0eta200_emergingPTF0p1dR0p4_pf_ftf_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
   stepFeatures:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
 HLT_g60_tight_2j55_0eta200_emergingPTF0p1dR0p4_pf_ftf_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
   stepFeatures:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
 HLT_g60_tight_2j55_0eta200_emergingPTF0p1dR0p4_pf_ftf_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
   stepFeatures:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
 HLT_g60_tight_3j25_pf_ftf_PhysicsTLA_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
   stepFeatures:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
 HLT_g60_tight_3j25_pf_ftf_PhysicsTLA_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
   stepFeatures:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
 HLT_g60_tight_icaloloose_2j50_0eta200_emergingPTF0p1dR0p4_pf_ftf_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
   stepFeatures:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
 HLT_g60_tight_icaloloose_2j50_0eta200_emergingPTF0p1dR0p4_pf_ftf_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
   stepFeatures:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
 HLT_g60_tight_icaloloose_2j55_0eta200_emergingPTF0p1dR0p4_pf_ftf_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
   stepFeatures:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
 HLT_g60_tight_icaloloose_2j55_0eta200_emergingPTF0p1dR0p4_pf_ftf_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
   stepFeatures:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
 HLT_g60_tight_noiso_3j25_pf_ftf_PhysicsTLA_L1eEM26M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
   stepFeatures:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
 HLT_g60_tight_noiso_3j25_pf_ftf_PhysicsTLA_L1eEM28M:
   eventCount: 0
   stepCounts:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
   stepFeatures:
-    0: 1
+    0: 2
+    1: 2
+    2: 2
 HLT_g7_loose_EgammaPEBTLA_L1eEM5:
-  eventCount: 6
+  eventCount: 3
   stepCounts:
     0: 25
-    1: 22
-    2: 19
-    3: 6
-    4: 6
+    1: 21
+    2: 15
+    3: 3
+    4: 3
   stepFeatures:
-    0: 57
-    1: 40
-    2: 35
-    3: 6
-    4: 6
+    0: 61
+    1: 42
+    2: 31
+    3: 3
+    4: 3
 HLT_g7_loose_L1eEM5:
-  eventCount: 6
+  eventCount: 3
   stepCounts:
     0: 25
-    1: 22
-    2: 19
-    3: 6
+    1: 21
+    2: 15
+    3: 3
   stepFeatures:
-    0: 57
-    1: 40
-    2: 35
-    3: 6
+    0: 61
+    1: 42
+    2: 31
+    3: 3
 HLT_g80_loose_L1eEM26M:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
 HLT_g80_loose_L1eEM28M:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
 HLT_g85_tight_3j50_L1eEM26M:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
 HLT_g85_tight_3j50_L1eEM28M:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
 HLT_g85_tight_3j50_pf_ftf_L1eEM26M:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
 HLT_g85_tight_3j50_pf_ftf_L1eEM28M:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
 HLT_g90_loose_xe90_cell_L1eEM26M:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 1
 HLT_g90_loose_xe90_cell_L1eEM28M:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 1
 HLT_hitdvjet200_medium_L1XE50:
   eventCount: 0
-HLT_hitdvjet200_medium_L1XE55:
-  eventCount: 0
-HLT_hitdvjet200_medium_L1gXEJWOJ100:
-  eventCount: 0
-HLT_hitdvjet200_medium_L1gXEJWOJ110:
-  eventCount: 0
-HLT_hitdvjet200_medium_L1jXE100:
-  eventCount: 0
   stepCounts:
     0: 2
     1: 2
   stepFeatures:
     0: 2
     1: 2
-HLT_hitdvjet200_medium_L1jXE110:
+HLT_hitdvjet200_medium_L1XE55:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 1
+HLT_hitdvjet200_medium_L1gXEJWOJ100:
   eventCount: 0
   stepCounts:
     0: 2
@@ -5401,6 +8069,18 @@ HLT_hitdvjet200_medium_L1jXE110:
   stepFeatures:
     0: 2
     1: 2
+HLT_hitdvjet200_medium_L1gXEJWOJ110:
+  eventCount: 0
+HLT_hitdvjet200_medium_L1jXE100:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 1
+HLT_hitdvjet200_medium_L1jXE110:
+  eventCount: 0
 HLT_hitdvjet260_medium_L1J100:
   eventCount: 0
 HLT_hitdvjet260_medium_L1jJ160:
@@ -5411,6 +8091,10 @@ HLT_hitdvjet260_tight_L1jJ160:
   eventCount: 0
 HLT_isotrk50_L1XE50:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_j0_DJMASS900j50dphi260x200deta_calratiovar150_roiftf_preselj20emf24_L1jMJJ-500-NFF:
   eventCount: 0
 HLT_j0_DJMASS900j50dphi260x200deta_calratiovar165_roiftf_preselj20emf18_L1jMJJ-500-NFF:
@@ -5424,17 +8108,17 @@ HLT_j0_DJMASS900j50dphi260x200deta_calratiovar59_roiftf_preselj30emf72_L1MJJ-500
 HLT_j0_DJMASS900j50dphi260x200deta_calratiovar82_roiftf_preselj20emf60_L1MJJ-500-NFF:
   eventCount: 0
 HLT_j0_FBDJNOSHARED10etXX20etXX34massXX50fbet_L1J20:
-  eventCount: 2
+  eventCount: 4
   stepCounts:
-    0: 2
+    0: 4
   stepFeatures:
-    0: 25
+    0: 34
 HLT_j0_FBDJSHARED_L1J20:
-  eventCount: 2
+  eventCount: 4
   stepCounts:
-    0: 2
+    0: 4
   stepFeatures:
-    0: 25
+    0: 41
 HLT_j0_HT1000XX020jvt_pf_ftf_presel4j45_L1HT190-J15s5pETA21:
   eventCount: 0
 HLT_j0_HT1000XX020jvt_pf_ftf_presel5j25_L1HT190-J15s5pETA21:
@@ -5572,29 +8256,29 @@ HLT_j0_Z120XX10c40_roiftf_presel7j30_L14J15:
 HLT_j0_Z120XX4c120_roiftf_presel4j85_L13J50:
   eventCount: 0
 HLT_j0_Z120XX4c20_MAXMULT20c_roiftf_presel4c20_L1RD0_FILLED:
-  eventCount: 3
+  eventCount: 7
   stepCounts:
-    0: 13
-    1: 3
+    0: 19
+    1: 7
   stepFeatures:
-    0: 13
-    1: 14
+    0: 19
+    1: 34
 HLT_j0_Z120XX4c20_MAXMULT6c_roiftf_presel4c20_L1RD0_FILLED:
-  eventCount: 3
+  eventCount: 5
   stepCounts:
-    0: 13
-    1: 3
+    0: 19
+    1: 5
   stepFeatures:
-    0: 13
-    1: 13
+    0: 19
+    1: 22
 HLT_j0_Z120XX4c20_roiftf_presel4c20_L1RD0_FILLED:
-  eventCount: 3
+  eventCount: 7
   stepCounts:
-    0: 13
-    1: 3
+    0: 19
+    1: 7
   stepFeatures:
-    0: 13
-    1: 14
+    0: 19
+    1: 34
 HLT_j0_Z120XX5c70_roiftf_presel5j50_L14J15:
   eventCount: 0
 HLT_j0_Z120XX6c55_roiftf_presel6j40_L14J15:
@@ -5628,7 +8312,13 @@ HLT_j0_perf_pf_subjesgscIS_ftf_L1RD0_FILLED:
     0: 50
     1: 50
 HLT_j0_pf_ftf_L1jJ85p0ETA21_3jJ40p0ETA25:
-  eventCount: 0
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 8
 HLT_j0_pf_ftf_preselZ116XX4c20_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
 HLT_j0_pf_ftf_preselZ120MAXMULT20cXX4c20_L1jJ85p0ETA21_3jJ40p0ETA25:
@@ -5645,178 +8335,218 @@ HLT_j0_pf_ftf_preselZ167MAXMULT5cXX4c20_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
 HLT_j0_pf_ftf_preselZ82XX3c20_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 1
 HLT_j0_pf_ftf_preselZ84MAXMULT20cXX3c20_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 1
 HLT_j0_pf_ftf_preselZ84XX3c20_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 1
 HLT_j0_pf_ftf_preselZ87XX3c20_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 1
 HLT_j100_0eta290_020jvt_bdl1d60_pf_ftf_xe50_cell_xe85_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_j100_0eta290_020jvt_bdl1d60_pf_ftf_xe50_cell_xe85_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_j100_0eta290_020jvt_bdl1d60_pf_ftf_xe50_cell_xe85_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_j100_0eta290_020jvt_bdl1d60_pf_ftf_xe50_cell_xe85_tcpufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_j100_0eta290_020jvt_bdl1d60_pf_ftf_xe50_cell_xe85_tcpufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_j100_0eta290_020jvt_bdl1d60_pf_ftf_xe50_cell_xe85_tcpufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_j100_0eta290_020jvt_bgn160_pf_ftf_xe50_cell_xe85_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_j100_0eta290_020jvt_bgn160_pf_ftf_xe50_cell_xe85_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_j100_0eta290_020jvt_bgn160_pf_ftf_xe50_cell_xe85_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_j100_0eta290_020jvt_bgn160_pf_ftf_xe50_cell_xe85_tcpufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_j100_0eta290_020jvt_bgn160_pf_ftf_xe50_cell_xe85_tcpufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_j100_0eta290_020jvt_bgn160_pf_ftf_xe50_cell_xe85_tcpufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_j100_0eta290_020jvt_bgn260_pf_ftf_xe50_cell_xe85_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_j100_0eta290_020jvt_bgn260_pf_ftf_xe50_cell_xe85_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_j100_0eta290_020jvt_bgn260_pf_ftf_xe50_cell_xe85_tcpufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_j100_0eta290_020jvt_bgn260_pf_ftf_xe50_cell_xe85_tcpufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_j100_0eta290_020jvt_boffperf_pf_ftf_preselj80_L1J50:
-  eventCount: 2
+  eventCount: 4
   stepCounts:
-    0: 4
-    1: 2
-    2: 2
+    0: 5
+    1: 4
+    2: 4
   stepFeatures:
-    0: 4
-    1: 2
-    2: 2
+    0: 5
+    1: 5
+    2: 5
 HLT_j100_0eta290_020jvt_boffperf_pf_ftf_preselj80_L1jJ90:
-  eventCount: 2
+  eventCount: 4
   stepCounts:
-    0: 3
-    1: 2
-    2: 2
+    0: 5
+    1: 4
+    2: 4
   stepFeatures:
-    0: 3
-    1: 2
-    2: 2
+    0: 5
+    1: 5
+    2: 5
 HLT_j110_L1J30:
-  eventCount: 1
+  eventCount: 4
   stepCounts:
-    0: 1
+    0: 4
   stepFeatures:
-    0: 1
+    0: 5
 HLT_j110_L1gJ20p25ETA49:
   eventCount: 0
 HLT_j110_L1jJ60:
-  eventCount: 1
+  eventCount: 4
   stepCounts:
-    0: 1
+    0: 4
   stepFeatures:
-    0: 1
+    0: 5
 HLT_j110_a10sd_cssk_60bgntwox_pf_jes_ftf_preselj80_L1jJ60:
   eventCount: 0
   stepCounts:
-    0: 5
+    0: 7
   stepFeatures:
-    0: 5
+    0: 7
 HLT_j110_a10sd_cssk_70bgntwox_pf_jes_ftf_preselj80_L1jJ60:
   eventCount: 0
   stepCounts:
-    0: 5
+    0: 7
   stepFeatures:
-    0: 5
+    0: 7
 HLT_j110_a10sd_cssk_80bgntwox_pf_jes_ftf_preselj80_L1jJ60:
-  eventCount: 1
+  eventCount: 0
   stepCounts:
-    0: 5
-    1: 1
+    0: 7
   stepFeatures:
-    0: 5
-    1: 1
+    0: 7
 HLT_j110_a10sd_cssk_90bgntwox_pf_jes_ftf_preselj80_L1jJ60:
-  eventCount: 1
+  eventCount: 2
   stepCounts:
-    0: 5
-    1: 1
+    0: 7
+    1: 2
   stepFeatures:
-    0: 5
-    1: 1
+    0: 7
+    1: 2
 HLT_j110_a10sd_cssk_pf_jes_ftf_preselj80_L1J30:
-  eventCount: 1
+  eventCount: 7
   stepCounts:
-    0: 4
-    1: 1
+    0: 9
+    1: 7
   stepFeatures:
-    0: 4
-    1: 1
+    0: 9
+    1: 8
 HLT_j110_a10sd_cssk_pf_jes_ftf_preselj80_L1gLJ80p0ETA25:
-  eventCount: 0
-HLT_j110_a10sd_cssk_pf_jes_ftf_preselj80_L1jJ60:
   eventCount: 2
   stepCounts:
-    0: 5
+    0: 2
     1: 2
   stepFeatures:
-    0: 5
-    1: 2
+    0: 2
+    1: 3
+HLT_j110_a10sd_cssk_pf_jes_ftf_preselj80_L1jJ60:
+  eventCount: 6
+  stepCounts:
+    0: 7
+    1: 6
+  stepFeatures:
+    0: 7
+    1: 7
 HLT_j110_a10sd_cssk_pf_jes_ftf_preselj80_L1jLJ80:
-  eventCount: 0
+  eventCount: 2
+  stepCounts:
+    0: 2
+    1: 2
+  stepFeatures:
+    0: 2
+    1: 3
 HLT_j110_a10t_lcw_jes_L1J30:
-  eventCount: 3
+  eventCount: 8
   stepCounts:
-    0: 3
+    0: 8
   stepFeatures:
-    0: 4
+    0: 13
 HLT_j110_a10t_lcw_jes_L1gLJ80p0ETA25:
-  eventCount: 0
+  eventCount: 2
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 3
 HLT_j110_a10t_lcw_jes_L1jJ60:
-  eventCount: 4
+  eventCount: 6
   stepCounts:
-    0: 4
+    0: 6
   stepFeatures:
-    0: 5
+    0: 9
 HLT_j110_a10t_lcw_jes_L1jLJ80:
-  eventCount: 0
+  eventCount: 2
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 3
 HLT_j110_pf_ftf_preselj80_L1J30:
-  eventCount: 0
+  eventCount: 4
   stepCounts:
-    0: 4
+    0: 7
+    1: 4
   stepFeatures:
-    0: 4
+    0: 7
+    1: 5
 HLT_j110_pf_ftf_preselj80_L1jJ60:
-  eventCount: 1
+  eventCount: 4
   stepCounts:
-    0: 5
-    1: 1
+    0: 6
+    1: 4
   stepFeatures:
-    0: 5
-    1: 1
+    0: 6
+    1: 5
 HLT_j110f_L1J30p31ETA49:
   eventCount: 0
 HLT_j110f_L1jJ60p30ETA49:
   eventCount: 0
 HLT_j140_2j50_0eta290_020jvt_bdl1d70_pf_ftf_preselj80XX2j45b90_L1J85_3J30:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_j140_2j50_0eta290_020jvt_bdl1d70_pf_ftf_preselj80XX2j45b90_L1jJ140_3jJ60:
   eventCount: 0
 HLT_j140_2j50_0eta290_020jvt_bgn170_pf_ftf_preselj80XX2j45b90_L1J85_3J30:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_j140_2j50_0eta290_020jvt_bgn170_pf_ftf_preselj80XX2j45b90_L1jJ140_3jJ60:
   eventCount: 0
 HLT_j140_2j50_0eta290_020jvt_bgn270_pf_ftf_preselj80XX2j45bgtwo90_L1jJ140_3jJ60:
@@ -5829,32 +8559,40 @@ HLT_j150_0eta290_020jvt_boffperf_pf_ftf_preselj120_L1jJ160:
   eventCount: 0
 HLT_j150_2j55_0eta290_020jvt_bdl1d70_pf_ftf_preselj80XX2j45b90_L1J85_3J30:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_j150_2j55_0eta290_020jvt_bdl1d70_pf_ftf_preselj80XX2j45b90_L1jJ140_3jJ60:
   eventCount: 0
 HLT_j150_2j55_0eta290_020jvt_bgn170_pf_ftf_preselj80XX2j45b90_L1J85_3J30:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 2
 HLT_j150_2j55_0eta290_020jvt_bgn170_pf_ftf_preselj80XX2j45b90_L1jJ140_3jJ60:
   eventCount: 0
 HLT_j15_L1RD0_FILLED:
-  eventCount: 43
+  eventCount: 40
   stepCounts:
-    0: 43
+    0: 40
   stepFeatures:
-    0: 230
+    0: 272
 HLT_j15_pf_ftf_L1RD0_FILLED:
-  eventCount: 40
+  eventCount: 38
   stepCounts:
     0: 50
-    1: 40
+    1: 38
   stepFeatures:
     0: 50
-    1: 167
+    1: 199
 HLT_j15f_L1RD0_FILLED:
-  eventCount: 10
+  eventCount: 14
   stepCounts:
-    0: 10
+    0: 14
   stepFeatures:
-    0: 15
+    0: 18
 HLT_j165_0eta290_020jvt_bdl1d60_j55_0eta290_020jvt_bdl1d60_pf_ftf_preselj140b85XXj45b85_L1J100:
   eventCount: 0
 HLT_j165_0eta290_020jvt_bdl1d60_j55_0eta290_020jvt_bdl1d60_pf_ftf_preselj140b85XXj45b85_L1jJ160:
@@ -5961,20 +8699,24 @@ HLT_j180_dispjet90_x3d1p_L1jJ160:
   eventCount: 0
 HLT_j180_hitdvjet200_medium_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_j180_hitdvjet200_medium_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_j180_hitdvjet200_medium_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_j180_hitdvjet200_medium_L1gXEJWOJ110:
   eventCount: 0
 HLT_j180_hitdvjet200_medium_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_j180_hitdvjet200_medium_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_j180_hitdvjet260_medium_L1J100:
   eventCount: 0
 HLT_j180_hitdvjet260_medium_L1jJ160:
@@ -6013,38 +8755,38 @@ HLT_j20_0eta290_020jvt_boffperf_pf_ftf_L1J15:
     2: 13
   stepFeatures:
     0: 14
-    1: 44
-    2: 44
+    1: 43
+    2: 43
 HLT_j20_0eta290_020jvt_boffperf_pf_ftf_L1RD0_FILLED:
-  eventCount: 25
+  eventCount: 30
   stepCounts:
     0: 50
-    1: 25
-    2: 25
+    1: 30
+    2: 30
   stepFeatures:
     0: 50
-    1: 68
-    2: 68
+    1: 78
+    2: 78
 HLT_j20_0eta290_020jvt_boffperf_pf_ftf_L1jJ30:
-  eventCount: 14
+  eventCount: 12
   stepCounts:
-    0: 15
-    1: 14
-    2: 14
+    0: 13
+    1: 12
+    2: 12
   stepFeatures:
-    0: 15
-    1: 43
-    2: 43
+    0: 13
+    1: 40
+    2: 40
 HLT_j20_0eta290_020jvt_boffperf_pf_ftf_L1jJ40:
-  eventCount: 14
+  eventCount: 12
   stepCounts:
-    0: 15
-    1: 14
-    2: 14
+    0: 13
+    1: 12
+    2: 12
   stepFeatures:
-    0: 15
-    1: 43
-    2: 43
+    0: 13
+    1: 40
+    2: 40
 HLT_j20_0eta290_boffperf_pf_ftf_L1HT190-J15s5pETA21:
   eventCount: 0
 HLT_j20_0eta290_boffperf_pf_ftf_preselcHT450_PhysicsTLA_L1HT190-J15s5pETA21:
@@ -6088,15 +8830,13 @@ HLT_j20_CLEANllp_momemfrac048_calratiovar103_roiftf_preselj20emf48_L1MJJ-500-NFF
 HLT_j20_CLEANllp_momemfrac072_calratiovar59_roiftf_preselj20emf72_L1MJJ-500-NFF:
   eventCount: 0
 HLT_j20_CLEANllp_momemfrac072_calratiovar59_roiftf_preselj20emf72_L1eTAU80:
-  eventCount: 1
+  eventCount: 0
   stepCounts:
     0: 2
     1: 2
-    2: 1
   stepFeatures:
     0: 2
     1: 3
-    2: 1
 HLT_j20_CLEANllp_momemfrac072_calratiovar59_roiftf_preselj20emf72_L1jJ160:
   eventCount: 0
 HLT_j20_CLEANllp_momemfrac072_calratiovar82_roiftf_preselj20emf60_L1MJJ-500-NFF:
@@ -6112,27 +8852,27 @@ HLT_j20_PhysicsTLA_L1HT190-jJ40s5pETA21:
 HLT_j20_PhysicsTLA_L1J100:
   eventCount: 0
 HLT_j20_PhysicsTLA_L1J50_DETA20-J50J:
-  eventCount: 3
+  eventCount: 1
   stepCounts:
+    0: 1
+    1: 1
+    2: 1
+  stepFeatures:
     0: 3
     1: 3
-    2: 3
-  stepFeatures:
-    0: 10
-    1: 10
-    2: 3
+    2: 1
 HLT_j20_PhysicsTLA_L1jJ160:
   eventCount: 0
 HLT_j20_PhysicsTLA_L1jJ90_DETA20-jJ90J:
-  eventCount: 3
+  eventCount: 2
   stepCounts:
-    0: 3
-    1: 3
-    2: 3
+    0: 2
+    1: 2
+    2: 2
   stepFeatures:
-    0: 13
-    1: 13
-    2: 3
+    0: 7
+    1: 7
+    2: 2
 HLT_j20_calratiovar103_j70_j50a_j0_DJMASS900j50dphi260x200deta_roiftf_preselj20emf48_L1MJJ-500-NFF:
   eventCount: 0
 HLT_j20_calratiovar59_j70_j50a_j0_DJMASS900j50dphi260x200deta_roiftf_preselj20emf72_L1MJJ-500-NFF:
@@ -6182,13 +8922,13 @@ HLT_j20_pf_ftf_preselj200_PhysicsTLA_L1J100:
 HLT_j20_pf_ftf_preselj200_PhysicsTLA_L1jJ160:
   eventCount: 0
 HLT_j20_roiftf_preselj20_L1RD0_FILLED:
-  eventCount: 41
+  eventCount: 35
   stepCounts:
-    0: 41
-    1: 41
+    0: 35
+    1: 35
   stepFeatures:
-    0: 41
-    1: 134
+    0: 35
+    1: 147
 HLT_j210_0eta290_020jvt_bdl1d60_pf_ftf_preselj180_L1J100:
   eventCount: 0
 HLT_j210_0eta290_020jvt_bdl1d60_pf_ftf_preselj180_L1jJ160:
@@ -6312,41 +9052,41 @@ HLT_j255_0eta290_020jvt_bgn170_pf_ftf_preselj225_L1jJ160:
 HLT_j255_0eta290_020jvt_bgn270_pf_ftf_preselj225_L1jJ160:
   eventCount: 0
 HLT_j25_020jvt_pf_ftf_L1RD0_FILLED:
-  eventCount: 23
+  eventCount: 22
   stepCounts:
     0: 50
-    1: 23
+    1: 22
   stepFeatures:
     0: 50
-    1: 51
+    1: 52
 HLT_j25_L1RD0_FILLED:
-  eventCount: 33
+  eventCount: 29
   stepCounts:
-    0: 33
+    0: 29
   stepFeatures:
-    0: 84
+    0: 82
 HLT_j25_pf_ftf_L1RD0_FILLED:
-  eventCount: 26
+  eventCount: 27
   stepCounts:
     0: 50
-    1: 26
+    1: 27
   stepFeatures:
     0: 50
-    1: 62
+    1: 70
 HLT_j25_pf_subjesgscIS_ftf_L1RD0_FILLED:
-  eventCount: 24
+  eventCount: 22
   stepCounts:
     0: 50
-    1: 24
+    1: 22
   stepFeatures:
     0: 50
     1: 51
 HLT_j25f_L1RD0_FILLED:
-  eventCount: 6
+  eventCount: 2
   stepCounts:
-    0: 6
+    0: 2
   stepFeatures:
-    0: 8
+    0: 2
 HLT_j260_0eta200_tracklessdR1p2_a10r_subjesIS_ftf_preselj200_L1J100:
   eventCount: 0
 HLT_j260_L1J75:
@@ -6472,41 +9212,41 @@ HLT_j300f_L1J75p31ETA49:
 HLT_j300f_L1jJ125p30ETA49:
   eventCount: 0
 HLT_j30_0eta290_020jvt_boffperf_pf_ftf_L1J20:
-  eventCount: 9
+  eventCount: 11
   stepCounts:
-    0: 11
-    1: 9
-    2: 9
+    0: 13
+    1: 11
+    2: 11
   stepFeatures:
-    0: 11
-    1: 19
-    2: 19
+    0: 13
+    1: 25
+    2: 25
 HLT_j30_0eta290_020jvt_boffperf_pf_ftf_L1jJ50:
-  eventCount: 10
+  eventCount: 11
   stepCounts:
     0: 13
-    1: 10
-    2: 10
+    1: 11
+    2: 11
   stepFeatures:
     0: 13
-    1: 20
-    2: 20
+    1: 25
+    2: 25
 HLT_j30_CLEANllp_calratio_L1TAU100:
   eventCount: 0
 HLT_j30_CLEANllp_calratio_L1TAU60:
   eventCount: 0
   stepCounts:
-    0: 2
+    0: 3
   stepFeatures:
-    0: 5
+    0: 8
 HLT_j30_CLEANllp_calratiormbib_L1TAU100:
   eventCount: 0
 HLT_j30_CLEANllp_calratiormbib_L1TAU60:
   eventCount: 0
   stepCounts:
-    0: 2
+    0: 3
   stepFeatures:
-    0: 5
+    0: 8
 HLT_j30_CLEANllp_momemfrac006_calratio_L1eTAU140:
   eventCount: 0
 HLT_j30_CLEANllp_momemfrac006_calratio_L1eTAU40HT:
@@ -6574,27 +9314,27 @@ HLT_j35_020jvt_pf_ftf_L1RD0_FILLED:
     1: 14
   stepFeatures:
     0: 50
-    1: 26
+    1: 25
 HLT_j35_L1RD0_FILLED:
-  eventCount: 19
+  eventCount: 20
   stepCounts:
-    0: 19
+    0: 20
   stepFeatures:
-    0: 40
+    0: 39
 HLT_j35_pf_ftf_L1RD0_FILLED:
-  eventCount: 16
+  eventCount: 17
   stepCounts:
     0: 50
-    1: 16
+    1: 17
   stepFeatures:
     0: 50
-    1: 31
+    1: 30
 HLT_j35f_L1RD0_FILLED:
-  eventCount: 3
+  eventCount: 1
   stepCounts:
-    0: 3
+    0: 1
   stepFeatures:
-    0: 3
+    0: 1
 HLT_j360_0eta290_020jvt_bdl1d77_pf_ftf_L1J100:
   eventCount: 0
 HLT_j360_0eta290_020jvt_bdl1d77_pf_ftf_preselj225_L1J100:
@@ -6706,11 +9446,9 @@ HLT_j40c_020jvt_j28c_020jvt_j20c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_p
 ? HLT_j40c_020jvt_j28c_020jvt_j20c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b85_L1MU8F_2jJ40_jJ50
 : eventCount: 0
   stepCounts:
-    0: 1
-    1: 1
+    0: 2
   stepFeatures:
-    0: 5
-    1: 5
+    0: 10
 HLT_j40c_020jvt_j40c_020jvt_j20c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b85_L1MU8F_2J15_J20:
   eventCount: 0
   stepCounts:
@@ -6720,11 +9458,9 @@ HLT_j40c_020jvt_j40c_020jvt_j20c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_p
 ? HLT_j40c_020jvt_j40c_020jvt_j20c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b85_L1MU8F_2jJ40_jJ50
 : eventCount: 0
   stepCounts:
-    0: 1
-    1: 1
+    0: 2
   stepFeatures:
-    0: 5
-    1: 5
+    0: 10
 HLT_j420_35smcINF_a10sd_cssk_pf_jes_ftf_L1J100:
   eventCount: 0
 HLT_j420_35smcINF_a10sd_cssk_pf_jes_ftf_L1SC111-CJ15:
@@ -6830,117 +9566,105 @@ HLT_j450_pf_ftf_preselj225_L1J100:
 HLT_j450_pf_ftf_preselj225_L1jJ160:
   eventCount: 0
 HLT_j45_020jvt_pf_ftf_preselj20_L1J15:
-  eventCount: 9
+  eventCount: 11
   stepCounts:
     0: 14
-    1: 9
+    1: 11
   stepFeatures:
     0: 14
     1: 19
 HLT_j45_020jvt_pf_ftf_preselj20_L1RD0_FILLED:
-  eventCount: 10
+  eventCount: 12
   stepCounts:
-    0: 41
-    1: 10
+    0: 35
+    1: 12
   stepFeatures:
-    0: 41
+    0: 35
     1: 20
 HLT_j45_0eta290_020jvt_boffperf_pf_ftf_L1J20:
-  eventCount: 9
+  eventCount: 10
   stepCounts:
-    0: 11
-    1: 9
-    2: 9
+    0: 13
+    1: 10
+    2: 10
   stepFeatures:
-    0: 11
-    1: 17
-    2: 17
+    0: 13
+    1: 18
+    2: 18
 HLT_j45_0eta290_020jvt_boffperf_pf_ftf_L1jJ50:
-  eventCount: 9
+  eventCount: 10
   stepCounts:
     0: 13
-    1: 9
-    2: 9
+    1: 10
+    2: 10
   stepFeatures:
     0: 13
-    1: 17
-    2: 17
+    1: 18
+    2: 18
 HLT_j45_320eta490_L1J15p31ETA49:
-  eventCount: 1
-  stepCounts:
-    0: 1
-  stepFeatures:
-    0: 1
+  eventCount: 0
 HLT_j45_L1J15:
-  eventCount: 13
+  eventCount: 14
   stepCounts:
-    0: 13
+    0: 14
   stepFeatures:
-    0: 23
+    0: 24
 HLT_j45_L1RD0_FILLED:
-  eventCount: 13
+  eventCount: 15
   stepCounts:
-    0: 13
+    0: 15
   stepFeatures:
-    0: 23
+    0: 25
 HLT_j45_L1jJ40:
-  eventCount: 12
+  eventCount: 13
   stepCounts:
-    0: 12
+    0: 13
   stepFeatures:
     0: 22
 HLT_j45_ftf_preselj20_L1J15:
-  eventCount: 13
+  eventCount: 14
   stepCounts:
     0: 14
-    1: 13
+    1: 14
   stepFeatures:
     0: 14
-    1: 26
+    1: 22
 HLT_j45_ftf_preselj20_L1jJ40:
   eventCount: 13
   stepCounts:
-    0: 15
+    0: 13
     1: 13
   stepFeatures:
-    0: 15
-    1: 26
+    0: 13
+    1: 21
 HLT_j45_pf_ftf_preselj20_L1J15:
-  eventCount: 10
+  eventCount: 12
   stepCounts:
     0: 14
-    1: 10
+    1: 12
   stepFeatures:
     0: 14
-    1: 22
+    1: 20
 HLT_j45_pf_ftf_preselj20_L1RD0_FILLED:
-  eventCount: 11
+  eventCount: 13
   stepCounts:
-    0: 41
-    1: 11
+    0: 35
+    1: 13
   stepFeatures:
-    0: 41
-    1: 23
+    0: 35
+    1: 21
 HLT_j45_pf_ftf_preselj20_L1jJ40:
   eventCount: 11
   stepCounts:
-    0: 15
+    0: 13
     1: 11
   stepFeatures:
-    0: 15
-    1: 23
+    0: 13
+    1: 19
 HLT_j45f_L1J15p31ETA49:
-  eventCount: 1
-  stepCounts:
-    0: 1
-  stepFeatures:
-    0: 1
+  eventCount: 0
 HLT_j45f_L1jJ40p30ETA49:
-  eventCount: 1
-  stepCounts:
-    0: 1
-  stepFeatures:
-    0: 1
+  eventCount: 0
 HLT_j460_L1J100:
   eventCount: 0
 HLT_j460_L1jJ160:
@@ -7096,11 +9820,9 @@ HLT_j55c_020jvt_j28c_020jvt_j20c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_p
 ? HLT_j55c_020jvt_j28c_020jvt_j20c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b85_L1MU8F_2jJ40_jJ50
 : eventCount: 0
   stepCounts:
-    0: 1
-    1: 1
+    0: 2
   stepFeatures:
-    0: 5
-    1: 5
+    0: 10
 HLT_j55c_020jvt_j40c_020jvt_j20c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b85_L1MU8F_2J15_J20:
   eventCount: 0
   stepCounts:
@@ -7110,11 +9832,9 @@ HLT_j55c_020jvt_j40c_020jvt_j20c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_p
 ? HLT_j55c_020jvt_j40c_020jvt_j20c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b85_L1MU8F_2jJ40_jJ50
 : eventCount: 0
   stepCounts:
-    0: 1
-    1: 1
+    0: 2
   stepFeatures:
-    0: 5
-    1: 5
+    0: 10
 HLT_j55c_xe50_cell_L1J30_EMPTY:
   eventCount: 0
 HLT_j55c_xe50_cell_L1J30_FIRSTEMPTY:
@@ -7124,87 +9844,79 @@ HLT_j55c_xe50_cell_L1jJ60_EMPTY:
 HLT_j55c_xe50_cell_L1jJ60_FIRSTEMPTY:
   eventCount: 0
 HLT_j60_0eta290_020jvt_boffperf_pf_ftf_L1J50:
-  eventCount: 4
+  eventCount: 6
   stepCounts:
-    0: 4
-    1: 4
-    2: 4
+    0: 6
+    1: 6
+    2: 6
   stepFeatures:
-    0: 4
-    1: 7
-    2: 7
+    0: 6
+    1: 10
+    2: 10
 HLT_j60_0eta290_020jvt_boffperf_pf_ftf_L1jJ90:
-  eventCount: 2
+  eventCount: 5
   stepCounts:
-    0: 3
-    1: 2
-    2: 2
+    0: 5
+    1: 5
+    2: 5
   stepFeatures:
-    0: 3
-    1: 4
-    2: 4
+    0: 5
+    1: 9
+    2: 9
 HLT_j60_L1J20:
-  eventCount: 8
+  eventCount: 11
   stepCounts:
-    0: 8
+    0: 11
   stepFeatures:
-    0: 13
+    0: 17
 HLT_j60_L1gJ20p0ETA25:
-  eventCount: 8
+  eventCount: 12
   stepCounts:
-    0: 8
+    0: 12
   stepFeatures:
-    0: 13
+    0: 18
 HLT_j60_L1jJ50:
-  eventCount: 8
+  eventCount: 11
   stepCounts:
-    0: 8
+    0: 11
   stepFeatures:
-    0: 13
+    0: 17
 HLT_j60_L1jJ90:
-  eventCount: 3
+  eventCount: 5
   stepCounts:
-    0: 3
-  stepFeatures:
     0: 5
+  stepFeatures:
+    0: 9
 HLT_j60_j0_FBDJSHARED_L1J20:
-  eventCount: 2
+  eventCount: 4
   stepCounts:
-    0: 2
+    0: 4
   stepFeatures:
-    0: 29
+    0: 49
 HLT_j60_j45_j25_j20_pf_ftf_preselc60XXc45XXc25XXc20_PhysicsTLA_L1J45p0ETA21_3J15p0ETA25:
   eventCount: 0
 HLT_j60_j45_j25_j20_pf_ftf_preselc60XXc45XXc25XXc20_PhysicsTLA_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
 HLT_j60_pf_ftf_preselj50_L1J20:
-  eventCount: 6
+  eventCount: 10
   stepCounts:
-    0: 11
-    1: 6
-  stepFeatures:
-    0: 11
+    0: 12
     1: 10
+  stepFeatures:
+    0: 12
+    1: 16
 HLT_j60_pf_ftf_preselj50_L1jJ50:
-  eventCount: 6
+  eventCount: 10
   stepCounts:
-    0: 11
-    1: 6
-  stepFeatures:
-    0: 11
+    0: 12
     1: 10
-HLT_j60f_L1J20p31ETA49:
-  eventCount: 1
-  stepCounts:
-    0: 1
   stepFeatures:
-    0: 1
+    0: 12
+    1: 16
+HLT_j60f_L1J20p31ETA49:
+  eventCount: 0
 HLT_j60f_L1jJ50p30ETA49:
-  eventCount: 1
-  stepCounts:
-    0: 1
-  stepFeatures:
-    0: 1
+  eventCount: 0
 HLT_j65a_j45a_2j35a_SHARED_2j35_0eta290_020jvt_bdl1d70_j0_DJMASS1000j50_pf_ftf_presela60XXa40XX2a25_L1MJJ-500-NFF:
   eventCount: 0
 HLT_j65a_j45a_2j35a_SHARED_2j35_0eta290_020jvt_bdl1d70_j0_DJMASS1000j50_pf_ftf_presela60XXa40XX2a25_L1jMJJ-500-NFF:
@@ -7281,6 +9993,8 @@ HLT_j75_0eta290_020jvt_bdl1d60_3j75_pf_ftf_preselj50b85XX3j50_L14jJ50:
   eventCount: 0
 HLT_j75_0eta290_020jvt_bdl1d60_pf_ftf_xe60_cell_L12J50_XE40:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_j75_0eta290_020jvt_bdl1d60_pf_ftf_xe60_cell_L12jJ90_jXE80:
   eventCount: 0
 HLT_j75_0eta290_020jvt_bdl1d70_j55_0eta290_020jvt_bdl1d85_j45f_pf_ftf_preselj60XXj45XXf40_L1J40p0ETA25_2J25_J20p31ETA49:
@@ -7293,6 +10007,8 @@ HLT_j75_0eta290_020jvt_bgn160_3j75_pf_ftf_preselj50b85XX3j50_L14jJ50:
   eventCount: 0
 HLT_j75_0eta290_020jvt_bgn160_pf_ftf_xe60_cell_L12J50_XE40:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_j75_0eta290_020jvt_bgn160_pf_ftf_xe60_cell_L12jJ90_jXE80:
   eventCount: 0
 HLT_j75_0eta290_020jvt_bgn170_j55_0eta290_020jvt_bgn185_j45f_pf_ftf_preselj60XXj45XXf40_L1J40p0ETA25_2J25_J20p31ETA49:
@@ -7312,11 +10028,9 @@ HLT_j75c_020jvt_j40c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_p
 ? HLT_j75c_020jvt_j40c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b85_L1MU8F_2jJ40_jJ50
 : eventCount: 0
   stepCounts:
-    0: 1
-    1: 1
+    0: 2
   stepFeatures:
-    0: 5
-    1: 5
+    0: 10
 HLT_j75c_020jvt_j50c_020jvt_j20c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b85_L1MU8F_2J15_J20:
   eventCount: 0
   stepCounts:
@@ -7326,11 +10040,9 @@ HLT_j75c_020jvt_j50c_020jvt_j20c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_p
 ? HLT_j75c_020jvt_j50c_020jvt_j20c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b85_L1MU8F_2jJ40_jJ50
 : eventCount: 0
   stepCounts:
-    0: 1
-    1: 1
+    0: 2
   stepFeatures:
-    0: 5
-    1: 5
+    0: 10
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bdl1d77_pf_ftf_presel2c20XX2c20b80_L1J45p0ETA21_3J15p0ETA25
 : eventCount: 0
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bdl1d77_pf_ftf_presel2c20XX2c20b80_L1jJ85p0ETA21_3jJ40p0ETA25
@@ -7350,11 +10062,9 @@ HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bdl1d77_
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bdl1d77_pf_ftf_presel2c20XX2c20b85_L1MU8F_2jJ40_jJ50
 : eventCount: 0
   stepCounts:
-    0: 1
-    1: 1
+    0: 2
   stepFeatures:
-    0: 5
-    1: 5
+    0: 10
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bdl1d77_pf_ftf_presel2c20XX2c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn165_pf_ftf_presel2c20XX2c20b85_L1J45p0ETA21_3J15p0ETA25
@@ -7367,6 +10077,10 @@ HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bdl1d77_
 : eventCount: 0
 HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 5
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b80_L1J45p0ETA21_3J15p0ETA25
 : eventCount: 0
 HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b80_L1MU8F_2J15_J20:
@@ -7378,9 +10092,9 @@ HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_p
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b80_L1MU8F_2jJ40_jJ50
 : eventCount: 0
   stepCounts:
-    0: 1
+    0: 2
   stepFeatures:
-    0: 5
+    0: 10
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b80_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b82_L1J45p0ETA21_3J15p0ETA25
@@ -7394,9 +10108,9 @@ HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_p
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b82_L1MU8F_2jJ40_jJ50
 : eventCount: 0
   stepCounts:
-    0: 1
+    0: 2
   stepFeatures:
-    0: 5
+    0: 10
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b82_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b85_L1J45p0ETA21_3J15p0ETA25
@@ -7410,11 +10124,9 @@ HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_p
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b85_L1MU8F_2jJ40_jJ50
 : eventCount: 0
   stepCounts:
-    0: 1
-    1: 1
+    0: 2
   stepFeatures:
-    0: 5
-    1: 5
+    0: 10
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20bg80_L1jJ85p0ETA21_3jJ40p0ETA25
@@ -7441,10 +10153,22 @@ HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_p
 : eventCount: 0
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_preselZ84MAXMULT20cXX3c20_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 5
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_preselZ84XX1c20XX2c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 5
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_preselZ84XX3c20_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 5
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn180_pf_ftf_presel2c20XX2c20b85_L1J45p0ETA21_3J15p0ETA25
 : eventCount: 0
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn182_pf_ftf_presel2c20XX2c20b85_L1J45p0ETA21_3J15p0ETA25
@@ -7464,9 +10188,9 @@ HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_p
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn277_pf_ftf_presel2c20XX2c20bgtwo85_L1MU8F_2jJ40_jJ50
 : eventCount: 0
   stepCounts:
-    0: 1
+    0: 2
   stepFeatures:
-    0: 5
+    0: 10
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn277_pf_ftf_presel2c20XX2c20bgtwo85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn280_pf_ftf_presel2c20XX2c20bgtwo85_L1J45p0ETA21_3J15p0ETA25
@@ -7474,9 +10198,9 @@ HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_p
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn280_pf_ftf_presel2c20XX2c20bgtwo85_L1MU8F_2jJ40_jJ50
 : eventCount: 0
   stepCounts:
-    0: 1
+    0: 2
   stepFeatures:
-    0: 5
+    0: 10
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn280_pf_ftf_presel2c20XX2c20bgtwo85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
 ? HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn282_pf_ftf_presel2c20XX2c20bgtwo85_L1J45p0ETA21_3J15p0ETA25
@@ -7529,6 +10253,10 @@ HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_boffperf_pf_ftf_presel2c20XX
   eventCount: 0
 HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_pf_ftf_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 4
 HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_pf_ftf_presel2c20XX2c20b85_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
 HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_pf_ftf_preselZ116XX4c20_L1jJ85p0ETA21_3jJ40p0ETA25:
@@ -7551,16 +10279,40 @@ HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_pf_ftf_preselZ167MAXMULT5cXX
   eventCount: 0
 HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_pf_ftf_preselZ82XX3c20_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 4
 HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_pf_ftf_preselZ84MAXMULT20cXX3c20_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 4
 HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_pf_ftf_preselZ84XX1c20XX2c20b85_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 4
 HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_pf_ftf_preselZ84XX3c20_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 4
 HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_pf_ftf_preselZ87XX3c20_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 4
 HLT_j75c_j50c_j25c_j20c_pf_ftf_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 4
 HLT_j75c_j50c_j25c_j20c_pf_ftf_preselZ116XX4c20_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
 HLT_j75c_j50c_j25c_j20c_pf_ftf_preselZ120MAXMULT20cXX4c20_L1jJ85p0ETA21_3jJ40p0ETA25:
@@ -7577,12 +10329,28 @@ HLT_j75c_j50c_j25c_j20c_pf_ftf_preselZ167MAXMULT5cXX4c20_L1jJ85p0ETA21_3jJ40p0ET
   eventCount: 0
 HLT_j75c_j50c_j25c_j20c_pf_ftf_preselZ82XX3c20_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 4
 HLT_j75c_j50c_j25c_j20c_pf_ftf_preselZ84MAXMULT20cXX3c20_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 4
 HLT_j75c_j50c_j25c_j20c_pf_ftf_preselZ84XX3c20_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 4
 HLT_j75c_j50c_j25c_j20c_pf_ftf_preselZ87XX3c20_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 4
 HLT_j75c_j55_j45f_SHARED_2j45_0eta290_020jvt_bdl1d60_pf_ftf_preselc60XXj45XXf40_L1J40p0ETA25_2J25_J20p31ETA49:
   eventCount: 0
 HLT_j75c_j55_j45f_SHARED_2j45_0eta290_020jvt_bdl1d60_pf_ftf_preselc60XXj45XXf40_L1jJ80p0ETA25_2jJ55_jJ50p30ETA49:
@@ -7595,6 +10363,8 @@ HLT_j75c_j55_j45f_SHARED_2j45_0eta290_020jvt_bgn260_pf_ftf_preselc60XXj45XXf40_L
   eventCount: 0
 HLT_j80_0eta290_020jvt_bdl1d60_pf_ftf_xe60_cell_L12J50_XE40:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_j80_0eta290_020jvt_bdl1d60_pf_ftf_xe60_cell_L12jJ90_jXE80:
   eventCount: 0
 HLT_j80_0eta290_020jvt_bdl1d70_j60_0eta290_020jvt_bdl1d85_j45f_pf_ftf_preselj60XXj45XXf40_L1J40p0ETA25_2J25_J20p31ETA49:
@@ -7603,6 +10373,8 @@ HLT_j80_0eta290_020jvt_bdl1d70_j60_0eta290_020jvt_bdl1d85_j45f_pf_ftf_preselj60X
   eventCount: 0
 HLT_j80_0eta290_020jvt_bgn160_pf_ftf_xe60_cell_L12J50_XE40:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_j80_0eta290_020jvt_bgn160_pf_ftf_xe60_cell_L12jJ90_jXE80:
   eventCount: 0
 HLT_j80_0eta290_020jvt_bgn170_j60_0eta290_020jvt_bgn185_j45f_pf_ftf_preselj60XXj45XXf40_L1J40p0ETA25_2J25_J20p31ETA49:
@@ -7610,73 +10382,77 @@ HLT_j80_0eta290_020jvt_bgn170_j60_0eta290_020jvt_bgn185_j45f_pf_ftf_preselj60XXj
 HLT_j80_0eta290_020jvt_bgn170_j60_0eta290_020jvt_bgn185_j45f_pf_ftf_preselj60XXj45XXf40_L1jJ80p0ETA25_2jJ55_jJ50p30ETA49:
   eventCount: 0
 HLT_j80_0eta290_020jvt_boffperf_pf_ftf_L1J50:
-  eventCount: 4
+  eventCount: 5
   stepCounts:
-    0: 4
-    1: 4
-    2: 4
-  stepFeatures:
-    0: 4
+    0: 6
     1: 5
     2: 5
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
 HLT_j80_0eta290_020jvt_boffperf_pf_ftf_L1jJ90:
-  eventCount: 2
+  eventCount: 5
   stepCounts:
-    0: 3
-    1: 2
-    2: 2
+    0: 5
+    1: 5
+    2: 5
   stepFeatures:
-    0: 3
-    1: 3
-    2: 3
+    0: 5
+    1: 6
+    2: 6
 HLT_j80_77bdips_roiftf_preselj20_L1J20:
-  eventCount: 0
-  stepCounts:
-    0: 11
-  stepFeatures:
-    0: 11
-HLT_j80_95bdips_roiftf_preselj20_L1J20:
   eventCount: 1
   stepCounts:
-    0: 11
+    0: 13
     1: 1
   stepFeatures:
-    0: 11
+    0: 13
     1: 1
-HLT_j80_pf_ftf_preselj20_L1J20:
-  eventCount: 5
+HLT_j80_95bdips_roiftf_preselj20_L1J20:
+  eventCount: 4
   stepCounts:
-    0: 11
-    1: 5
+    0: 13
+    1: 4
   stepFeatures:
-    0: 11
+    0: 13
+    1: 4
+HLT_j80_pf_ftf_preselj20_L1J20:
+  eventCount: 7
+  stepCounts:
+    0: 13
     1: 7
+  stepFeatures:
+    0: 13
+    1: 8
 HLT_j80_pf_ftf_preselj20b77_L1J20:
-  eventCount: 0
+  eventCount: 2
   stepCounts:
-    0: 11
+    0: 13
     1: 2
+    2: 2
   stepFeatures:
-    0: 11
+    0: 13
     1: 2
+    2: 2
 HLT_j80_pf_ftf_preselj20b95_L1J20:
-  eventCount: 5
+  eventCount: 7
   stepCounts:
-    0: 11
+    0: 13
     1: 11
-    2: 5
+    2: 7
   stepFeatures:
-    0: 11
+    0: 13
     1: 11
-    2: 7
+    2: 8
 HLT_j80_roiftf_preselj20_L1J20:
-  eventCount: 5
+  eventCount: 7
   stepCounts:
-    0: 11
-    1: 5
+    0: 13
+    1: 7
   stepFeatures:
-    0: 11
-    1: 6
+    0: 13
+    1: 8
 ? HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bdl1d60_pf_ftf_preselc60XXc45XXc25XXc20_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
 ? HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bdl1d65_pf_ftf_preselc60XXc45XXc25XXc20_L1jJ85p0ETA21_3jJ40p0ETA25
@@ -7706,11 +10482,9 @@ HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bdl1d77_
 ? HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bdl1d77_pf_ftf_presel2c20XX2c20b85_L1MU8F_2jJ40_jJ50
 : eventCount: 0
   stepCounts:
-    0: 1
-    1: 1
+    0: 2
   stepFeatures:
-    0: 5
-    1: 5
+    0: 10
 ? HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bdl1d77_pf_ftf_presel2c20XX2c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
 ? HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bdl1d77_pf_ftf_presel2c20XX2c20b85_L1jJ85p0ETA21_3jJ40p0ETA25_cTAU20M_2cTAU12M
@@ -7719,10 +10493,8 @@ HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bdl1d77_
   eventCount: 0
   stepCounts:
     0: 2
-    1: 1
   stepFeatures:
     0: 10
-    1: 5
 ? HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bdl1d77_pf_ftf_presel2c20XX2c20b90_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
 ? HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bdl1d77_pf_ftf_preselc60XXc45XXc25XXc20_L1jJ85p0ETA21_3jJ40p0ETA25
@@ -7742,9 +10514,9 @@ HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_p
 ? HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b80_L1MU8F_2jJ40_jJ50
 : eventCount: 0
   stepCounts:
-    0: 1
+    0: 2
   stepFeatures:
-    0: 5
+    0: 10
 ? HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b80_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
 ? HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b82_L1J45p0ETA21_3J15p0ETA25
@@ -7758,9 +10530,9 @@ HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_p
 ? HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b82_L1MU8F_2jJ40_jJ50
 : eventCount: 0
   stepCounts:
-    0: 1
+    0: 2
   stepFeatures:
-    0: 5
+    0: 10
 ? HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b82_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
 ? HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b85_L1J45p0ETA21_3J15p0ETA25
@@ -7774,11 +10546,9 @@ HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_p
 ? HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b85_L1MU8F_2jJ40_jJ50
 : eventCount: 0
   stepCounts:
-    0: 1
-    1: 1
+    0: 2
   stepFeatures:
-    0: 5
-    1: 5
+    0: 10
 ? HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn177_pf_ftf_presel2c20XX2c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
 ? HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_2j20c_020jvt_bgn180_pf_ftf_presel2c20XX2c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
@@ -7828,11 +10598,9 @@ HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_3j20c_020jvt_bdl1d82_
 ? HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_3j20c_020jvt_bdl1d82_pf_ftf_presel2c20XX2c20b85_L1MU8F_2jJ40_jJ50
 : eventCount: 0
   stepCounts:
-    0: 1
-    1: 1
+    0: 2
   stepFeatures:
-    0: 5
-    1: 5
+    0: 10
 ? HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_3j20c_020jvt_bdl1d82_pf_ftf_presel2c20XX2c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
 ? HLT_j80c_020jvt_j55c_020jvt_j28c_020jvt_j20c_020jvt_SHARED_3j20c_020jvt_bdl1d82_pf_ftf_preselc60XXc45XXc25XXc20_L1jJ85p0ETA21_3jJ40p0ETA25
@@ -7948,45 +10716,45 @@ HLT_j80c_j60_j45f_SHARED_2j45_0eta290_020jvt_bgn160_pf_ftf_preselc60XXj45XXf40_L
 HLT_j80c_j60_j45f_SHARED_2j45_0eta290_020jvt_bgn160_pf_ftf_preselc60XXj45XXf40_L1jJ80p0ETA25_2jJ55_jJ50p30ETA49:
   eventCount: 0
 HLT_j85_L1J20:
-  eventCount: 4
+  eventCount: 7
   stepCounts:
-    0: 4
+    0: 7
   stepFeatures:
-    0: 5
+    0: 8
 HLT_j85_L1gJ20p0ETA25:
-  eventCount: 4
+  eventCount: 7
   stepCounts:
-    0: 4
+    0: 7
   stepFeatures:
-    0: 5
+    0: 8
 HLT_j85_L1jJ50:
-  eventCount: 4
+  eventCount: 7
   stepCounts:
-    0: 4
+    0: 7
   stepFeatures:
-    0: 5
+    0: 8
 HLT_j85_L1jJ90:
-  eventCount: 3
+  eventCount: 5
   stepCounts:
-    0: 3
+    0: 5
   stepFeatures:
-    0: 4
+    0: 6
 HLT_j85_a10sd_cssk_pf_jes_ftf_preselj50_L1J20:
-  eventCount: 5
+  eventCount: 9
   stepCounts:
-    0: 11
-    1: 5
-  stepFeatures:
-    0: 11
+    0: 12
     1: 9
+  stepFeatures:
+    0: 12
+    1: 13
 HLT_j85_a10sd_cssk_pf_jes_ftf_preselj50_L1jJ50:
-  eventCount: 5
+  eventCount: 9
   stepCounts:
     0: 12
-    1: 5
+    1: 9
   stepFeatures:
     0: 12
-    1: 9
+    1: 13
 HLT_j85_a10sd_cssk_pf_jes_ftf_preselj50_L1jLJ60:
   eventCount: 4
   stepCounts:
@@ -7994,131 +10762,127 @@ HLT_j85_a10sd_cssk_pf_jes_ftf_preselj50_L1jLJ60:
     1: 4
   stepFeatures:
     0: 4
-    1: 8
+    1: 5
 HLT_j85_a10sd_cssk_pf_nojcalib_ftf_preselj50_L1J20:
-  eventCount: 2
+  eventCount: 6
   stepCounts:
-    0: 11
-    1: 2
+    0: 12
+    1: 6
   stepFeatures:
-    0: 11
-    1: 2
+    0: 12
+    1: 7
 HLT_j85_a10sd_cssk_pf_nojcalib_ftf_preselj50_L1jJ50:
-  eventCount: 2
+  eventCount: 6
   stepCounts:
     0: 12
-    1: 2
+    1: 6
   stepFeatures:
     0: 12
-    1: 2
+    1: 7
 HLT_j85_a10sd_cssk_pf_nojcalib_ftf_preselj50_L1jLJ60:
-  eventCount: 2
+  eventCount: 4
   stepCounts:
     0: 4
-    1: 2
+    1: 4
   stepFeatures:
     0: 4
-    1: 2
+    1: 5
 HLT_j85_a10t_lcw_jes_L1J20:
-  eventCount: 9
+  eventCount: 10
   stepCounts:
-    0: 9
+    0: 10
   stepFeatures:
-    0: 17
+    0: 25
 HLT_j85_a10t_lcw_jes_L1jJ50:
   eventCount: 10
   stepCounts:
     0: 10
   stepFeatures:
-    0: 19
+    0: 25
 HLT_j85_a10t_lcw_jes_L1jLJ60:
   eventCount: 4
   stepCounts:
     0: 4
   stepFeatures:
-    0: 9
+    0: 10
 HLT_j85_a10t_lcw_nojcalib_L1J20:
-  eventCount: 8
+  eventCount: 10
   stepCounts:
-    0: 8
+    0: 10
   stepFeatures:
-    0: 16
+    0: 24
 HLT_j85_a10t_lcw_nojcalib_L1jJ50:
-  eventCount: 9
+  eventCount: 10
   stepCounts:
-    0: 9
+    0: 10
   stepFeatures:
-    0: 18
+    0: 24
 HLT_j85_a10t_lcw_nojcalib_L1jLJ60:
   eventCount: 4
   stepCounts:
     0: 4
   stepFeatures:
-    0: 9
+    0: 10
 HLT_j85_pf_ftf_preselj50_L1J20:
-  eventCount: 4
+  eventCount: 6
   stepCounts:
-    0: 11
-    1: 4
+    0: 12
+    1: 6
   stepFeatures:
-    0: 11
-    1: 4
+    0: 12
+    1: 7
 HLT_j85_pf_ftf_preselj50_L1jJ50:
-  eventCount: 4
+  eventCount: 6
   stepCounts:
-    0: 11
-    1: 4
+    0: 12
+    1: 6
   stepFeatures:
-    0: 11
-    1: 4
+    0: 12
+    1: 7
 HLT_j85f_L1J20p31ETA49:
   eventCount: 0
 HLT_j85f_L1jJ50p30ETA49:
   eventCount: 0
 HLT_j95_0eta290_020jvt_bdl1d60_pf_ftf_xe50_cell_xe85_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_j95_0eta290_020jvt_bdl1d60_pf_ftf_xe50_cell_xe85_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_j95_0eta290_020jvt_bdl1d60_pf_ftf_xe50_cell_xe85_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_j95_0eta290_020jvt_bdl1d60_pf_ftf_xe50_cell_xe85_tcpufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_j95_0eta290_020jvt_bdl1d60_pf_ftf_xe50_cell_xe85_tcpufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_j95_0eta290_020jvt_bdl1d60_pf_ftf_xe50_cell_xe85_tcpufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_j95_0eta290_020jvt_bgn160_pf_ftf_xe50_cell_xe85_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_j95_0eta290_020jvt_bgn160_pf_ftf_xe50_cell_xe85_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_j95_0eta290_020jvt_bgn160_pf_ftf_xe50_cell_xe85_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_j95_0eta290_020jvt_bgn160_pf_ftf_xe50_cell_xe85_tcpufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_j95_0eta290_020jvt_bgn160_pf_ftf_xe50_cell_xe85_tcpufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_j95_0eta290_020jvt_bgn160_pf_ftf_xe50_cell_xe85_tcpufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_j95_0eta290_020jvt_bgn260_pf_ftf_xe50_cell_xe85_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_j95_0eta290_020jvt_bgn260_pf_ftf_xe50_cell_xe85_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_j95_0eta290_020jvt_bgn260_pf_ftf_xe50_cell_xe85_tcpufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_j95_0eta290_020jvt_bgn260_pf_ftf_xe50_cell_xe85_tcpufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_l1topoPh1debug_L1All:
   eventCount: 0
 HLT_larnoiseburst_L1J40_XE50:
@@ -8134,33 +10898,59 @@ HLT_larpsallem_L1EM7_EMPTY:
 HLT_larpsallem_L1EM7_FIRSTEMPTY:
   eventCount: 0
 HLT_mu10_L1MU8F:
-  eventCount: 0
+  eventCount: 2
   stepCounts:
-    0: 4
+    0: 5
+    1: 3
+    2: 2
+    3: 2
   stepFeatures:
-    0: 4
+    0: 5
+    1: 3
+    2: 2
+    3: 2
 HLT_mu10_PhysicsTLA_L1MU8F:
-  eventCount: 0
+  eventCount: 2
   stepCounts:
-    0: 4
+    0: 5
+    1: 3
+    2: 2
+    3: 2
+    4: 2
+    5: 2
   stepFeatures:
-    0: 4
+    0: 5
+    1: 3
+    2: 2
+    3: 2
+    4: 2
+    5: 2
 HLT_mu10_bJpsimutrk_L1MU8F:
   eventCount: 0
   stepCounts:
-    0: 4
-    1: 1
+    0: 5
+    1: 2
+    2: 2
+    3: 2
   stepFeatures:
-    0: 4
-    1: 1
+    0: 5
+    1: 2
+    2: 2
+    3: 2
+    4: 2
 HLT_mu10_bJpsimutrk_MuonTrkPEB_L1MU8F:
   eventCount: 0
   stepCounts:
-    0: 4
-    1: 1
+    0: 5
+    1: 2
+    2: 2
+    3: 2
   stepFeatures:
-    0: 4
-    1: 1
+    0: 5
+    1: 2
+    2: 2
+    3: 2
+    4: 2
 HLT_mu10_ivarmedium_j70_j50a_j0_DJMASS900j50_L1MJJ-500-NFF:
   eventCount: 0
 HLT_mu10_ivarmedium_j70_j50a_j0_DJMASS900j50_L1jMJJ-500-NFF:
@@ -8180,7 +10970,17 @@ HLT_mu10_j360_0eta290_020jvt_boffperf_pf_ftf_preselj225_dRAB04_L1J100:
 HLT_mu10_j360_0eta290_020jvt_boffperf_pf_ftf_preselj225_dRAB04_L1jJ160:
   eventCount: 0
 HLT_mu10_l2mt_L1MU10BO:
-  eventCount: 0
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
 HLT_mu10_l2mt_L1MU10BOM:
   eventCount: 0
 HLT_mu10_l2mt_mu4_l2mt_bJpsimumu_L1MU10BOM:
@@ -8190,9 +10990,16 @@ HLT_mu10_l2mt_mu4_l2mt_bJpsimumu_L1MU12BOM:
 HLT_mu10_mu6_probe_PhysicsTLA_L1MU8F:
   eventCount: 0
   stepCounts:
-    0: 4
+    0: 5
+    1: 3
+    2: 2
+    3: 2
   stepFeatures:
-    0: 4
+    0: 5
+    1: 3
+    2: 2
+    3: 2
+    4: 2
 HLT_mu10_probe_j20_pf_ftf_DarkJetPEBTLA_L1HT190-J15s5pETA21:
   eventCount: 0
 HLT_mu11_l2io_mu6_l2io_invmDimu_L1LFV-MU8VF:
@@ -8282,39 +11089,51 @@ HLT_mu11_mu6_bUpsimumu_L1LFV-MU8VF:
 HLT_mu11_mu6_bUpsimumu_L1MU8VF_2MU5VF:
   eventCount: 0
 HLT_mu14_L1MU8F:
-  eventCount: 0
+  eventCount: 1
   stepCounts:
-    0: 4
+    0: 5
+    1: 2
+    2: 1
+    3: 1
   stepFeatures:
-    0: 4
+    0: 5
+    1: 2
+    2: 1
+    3: 1
 HLT_mu14_L1MU8VFC:
-  eventCount: 0
-HLT_mu14_idtp_L1MU8F:
-  eventCount: 0
+  eventCount: 1
   stepCounts:
-    0: 2
+    0: 4
     1: 2
+    2: 1
+    3: 1
   stepFeatures:
-    0: 2
+    0: 4
     1: 2
+    2: 1
+    3: 1
+HLT_mu14_idtp_L1MU8F:
+  eventCount: 1
+  stepCounts:
+    0: 3
+    1: 3
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 1
+    3: 1
 HLT_mu14_ivarloose_tau25_mediumRNN_tracktwoMVA_03dRAB_L1MU8F_TAU12IM_3J12:
   eventCount: 0
 HLT_mu14_ivarloose_tau25_mediumRNN_tracktwoMVA_03dRAB_L1MU8F_cTAU20M_3jJ30:
   eventCount: 0
 HLT_mu14_ivarloose_tau35_mediumRNN_tracktwoMVA_03dRAB_L1MU8F_TAU20IM:
   eventCount: 0
-  stepCounts:
-    0: 1
-  stepFeatures:
-    0: 2
-    1: 1
 HLT_mu14_ivarloose_tau35_mediumRNN_tracktwoMVA_03dRAB_L1MU8F_cTAU30M:
   eventCount: 0
-  stepCounts:
-    0: 1
   stepFeatures:
-    0: 2
-    1: 1
+    0: 1
 HLT_mu14_mu14_idperf_50invmAB130_L12MU8F:
   eventCount: 0
 HLT_mu14_mu14_idtp_idZmumu_L12MU8F:
@@ -8323,45 +11142,108 @@ HLT_mu14_tau25_mediumRNN_tracktwoMVA_xe50_cell_03dRAB_L1MU8F_TAU12IM_XE35:
   eventCount: 0
 HLT_mu14_tau25_mediumRNN_tracktwoMVA_xe50_cell_03dRAB_L1MU8F_cTAU20M_jXE70:
   eventCount: 0
-  stepCounts:
-    0: 1
-  stepFeatures:
-    0: 3
-    1: 1
 HLT_mu20_2mu4noL1_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu20_LRT_d0loose_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu20_LRT_d0tight_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu20_LRT_idperf_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+    1: 2
+  stepFeatures:
+    0: 2
+    1: 2
 HLT_mu20_bBmux_BdmuDpX_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu20_bBmux_BdmuDstarX_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu20_bBmux_BpmuD0X_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu20_bBmux_BsmuDsX_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu20_bBmux_LbmuLcX_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu20_bJpsimutrk_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu20_bJpsimutrk_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu20_bJpsimutrk_MuonTrkPEB_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu20_bJpsimutrk_MuonTrkPEB_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu20_ivarloose_tau20_mediumRNN_tracktwoMVA_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu20_ivarmedium_mu4noL1_10invmAB70_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu20_ivarmedium_mu8noL1_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu20_msonly_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu20_msonly_iloosems_mu6noL1_msonly_nscan10_L110DR-MU14FCH-MU5VF:
   eventCount: 0
 HLT_mu20_msonly_iloosems_mu6noL1_msonly_nscan20_L110DR-MU14FCH-MU5VF:
@@ -8414,6 +11296,10 @@ HLT_mu20_msonly_iloosems_mu6noL1_msonly_nscan_L110DR-MU14FCH-MU5VF:
   eventCount: 0
 HLT_mu20_msonly_iloosems_mu6noL1_msonly_nscan_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu20_msonly_iloosems_mu6noL1_msonly_nscan_L1MU14FCH_J40:
   eventCount: 0
 HLT_mu20_msonly_iloosems_mu6noL1_msonly_nscan_L1MU14FCH_XE30:
@@ -8430,700 +11316,1434 @@ HLT_mu20_msonly_j70_j50a_j0_DJMASS900j50dphi260x200deta_L1jMJJ-500-NFF:
   eventCount: 0
 HLT_mu20_mu2noL1_invmJPsiOS_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu20_mu4_bBmux_BdmuDstarX_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 4
 HLT_mu22_2mu4noL1_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu22_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu22_mu10noL1_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu22_mu8noL1_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu23_2mu4noL1_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu23_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu23_LRT_d0loose_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu23_LRT_d0tight_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu23_LRT_idperf_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+    1: 2
+  stepFeatures:
+    0: 2
+    1: 2
 HLT_mu23_bBmux_BdmuDpX_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu23_bBmux_BdmuDstarX_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu23_bBmux_BpmuD0X_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu23_bBmux_BsmuDsX_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu23_bBmux_LbmuLcX_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu23_ivarloose_tau20_mediumRNN_tracktwoMVA_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu23_ivarmedium_mu4noL1_10invmAB70_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu23_ivarmedium_mu8noL1_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu23_msonly_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu23_mu10noL1_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu23_mu2noL1_invmJPsiOS_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu23_mu4_bBmux_BdmuDstarX_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 4
 HLT_mu23_mu8noL1_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_idperf_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+    1: 2
+  stepFeatures:
+    0: 2
+    1: 2
 HLT_mu24_idperf_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+    1: 2
+  stepFeatures:
+    0: 2
+    1: 2
 HLT_mu24_ivarmedium_2j20_0eta290_020jvt_boffperf_pf_ftf_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_2j20_0eta290_020jvt_boffperf_pf_ftf_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_2j20_roiftf_preselj20_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_2j20_roiftf_preselj20_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_j20_pf_ftf_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_j20_pf_ftf_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu10_ivarmedium_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu10_ivarmedium_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu14_idperf_probe_50invmAB130_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu14_idperf_probe_50invmAB130_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu14_idtp_idZmumu_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 4
 HLT_mu24_ivarmedium_mu14_idtp_idZmumu_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 4
 HLT_mu24_ivarmedium_mu14_ivarloose_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu14_ivarloose_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu14_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu14_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu20_ivarloose_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu20_ivarloose_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu20_ivarmedium_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu20_ivarmedium_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu20_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu20_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu22_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu22_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu24_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu24_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu4_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu4_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu6_l2io_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu6_l2io_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu6_l2mt_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu6_l2mt_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu6_msonly_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu6_msonly_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu6_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu6_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu8_msonly_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_mu8_msonly_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau160_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau160_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau160_mediumRNN_tracktwoMVA_probe_L1eTAU140_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau160_mediumRNN_tracktwoMVA_probe_L1eTAU140_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau180_mediumRNN_tracktwoLLP_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau180_mediumRNN_tracktwoLLP_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau180_mediumRNN_tracktwoLLP_probe_L1eTAU140_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau180_mediumRNN_tracktwoLLP_probe_L1eTAU140_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau20_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau20_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau20_mediumRNN_tracktwoMVA_probe_L1eTAU12_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau20_mediumRNN_tracktwoMVA_probe_L1eTAU12_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau25_idperf_tracktwoMVA_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau25_idperf_tracktwoMVA_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau25_idperf_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau25_idperf_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau25_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau25_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau25_mediumRNN_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau25_mediumRNN_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau25_perf_tracktwoMVA_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau25_perf_tracktwoMVA_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau25_perf_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau25_perf_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau35_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau35_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau35_mediumRNN_tracktwoMVA_probe_L1cTAU30M_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau35_mediumRNN_tracktwoMVA_probe_L1cTAU30M_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau40_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau40_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau40_mediumRNN_tracktwoMVA_probe_L1cTAU35M_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau40_mediumRNN_tracktwoMVA_probe_L1cTAU35M_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau60_mediumRNN_tracktwoLLP_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau60_mediumRNN_tracktwoLLP_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau60_mediumRNN_tracktwoLLP_probe_L1eTAU60_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau60_mediumRNN_tracktwoLLP_probe_L1eTAU60_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau60_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau60_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau60_mediumRNN_tracktwoMVA_probe_L1eTAU60_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau60_mediumRNN_tracktwoMVA_probe_L1eTAU60_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau80_mediumRNN_tracktwoLLP_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau80_mediumRNN_tracktwoLLP_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau80_mediumRNN_tracktwoLLP_probe_L1eTAU80_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau80_mediumRNN_tracktwoLLP_probe_L1eTAU80_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau80_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau80_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau80_mediumRNN_tracktwoMVA_probe_L1eTAU80_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_tau80_mediumRNN_tracktwoMVA_probe_L1eTAU80_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_xe0_cell_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_xe0_cell_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_xe0_mhtpufit_em_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_xe0_mhtpufit_em_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_xe0_mhtpufit_pf_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_xe0_mhtpufit_pf_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_xe0_nn_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_xe0_nn_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_xe0_pfopufit_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_xe0_pfopufit_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_xe0_pfsum_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_xe0_pfsum_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_xe0_pfsum_cssk_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_xe0_pfsum_cssk_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_xe0_pfsum_vssk_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_xe0_pfsum_vssk_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_xe0_tcpufit_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_xe0_tcpufit_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_xe0_trkmht_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarmedium_xe0_trkmht_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarperf_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_ivarperf_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_mu6_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 4
 HLT_mu24_mu6_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_mu8noL1_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu24_mu8noL1_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_2j20_0eta290_020jvt_boffperf_pf_ftf_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_2j20_0eta290_020jvt_boffperf_pf_ftf_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_2j20_roiftf_preselj20_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_2j20_roiftf_preselj20_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_j20_pf_ftf_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_j20_pf_ftf_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu10_ivarmedium_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu10_ivarmedium_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu14_idperf_probe_50invmAB130_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu14_idperf_probe_50invmAB130_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu14_idtp_idZmumu_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 4
 HLT_mu26_ivarmedium_mu14_idtp_idZmumu_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 4
 HLT_mu26_ivarmedium_mu14_ivarloose_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu14_ivarloose_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu14_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu14_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu20_ivarloose_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu20_ivarloose_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu20_ivarmedium_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu20_ivarmedium_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu20_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu20_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu22_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu22_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu24_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu24_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu4_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu4_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu6_l2io_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu6_l2io_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu6_l2mt_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu6_l2mt_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu6_msonly_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu6_msonly_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu6_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu6_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu8_msonly_probe_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_mu8_msonly_probe_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau100_mediumRNN_tracktwoLLP_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau100_mediumRNN_tracktwoLLP_probe_L1eTAU80_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau160_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau160_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau160_mediumRNN_tracktwoMVA_probe_L1eTAU140_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau160_mediumRNN_tracktwoMVA_probe_L1eTAU140_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau180_mediumRNN_tracktwoLLP_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau180_mediumRNN_tracktwoLLP_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau180_mediumRNN_tracktwoLLP_probe_L1eTAU140_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau180_mediumRNN_tracktwoLLP_probe_L1eTAU140_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau20_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau20_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau20_mediumRNN_tracktwoMVA_probe_L1TAU12IM_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau20_mediumRNN_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau20_mediumRNN_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau20_mediumRNN_tracktwoMVA_probe_L1eTAU12_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau20_mediumRNN_tracktwoMVA_probe_L1eTAU12_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau25_idperf_tracktwoMVA_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau25_idperf_tracktwoMVA_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau25_idperf_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau25_idperf_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau25_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau25_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau25_mediumRNN_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau25_mediumRNN_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau25_perf_tracktwoMVA_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau25_perf_tracktwoMVA_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau25_perf_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau25_perf_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau30_mediumRNN_tracktwoMVA_probe_L1TAU20IM_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau30_mediumRNN_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau30_mediumRNN_tracktwoMVA_probe_L1cTAU20M_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau30_mediumRNN_tracktwoMVA_probe_L1cTAU30M_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau30_mediumRNN_tracktwoMVA_probe_L1cTAU30M_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau35_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau35_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau35_mediumRNN_tracktwoMVA_probe_L1cTAU30M_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau35_mediumRNN_tracktwoMVA_probe_L1cTAU30M_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau40_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau40_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau40_mediumRNN_tracktwoMVA_probe_L1cTAU35M_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau40_mediumRNN_tracktwoMVA_probe_L1cTAU35M_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau60_mediumRNN_tracktwoLLP_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau60_mediumRNN_tracktwoLLP_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau60_mediumRNN_tracktwoLLP_probe_L1eTAU60_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau60_mediumRNN_tracktwoLLP_probe_L1eTAU60_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau60_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau60_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau60_mediumRNN_tracktwoMVA_probe_L1eTAU60_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau60_mediumRNN_tracktwoMVA_probe_L1eTAU60_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau80_mediumRNN_tracktwoLLP_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau80_mediumRNN_tracktwoLLP_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau80_mediumRNN_tracktwoLLP_probe_L1eTAU80_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau80_mediumRNN_tracktwoLLP_probe_L1eTAU80_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau80_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau80_mediumRNN_tracktwoMVA_probe_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau80_mediumRNN_tracktwoMVA_probe_L1eTAU80_03dRAB_L1MU14FCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarmedium_tau80_mediumRNN_tracktwoMVA_probe_L1eTAU80_03dRAB_L1MU18VFCH:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarperf_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu26_ivarperf_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu28_ivarmedium_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu28_ivarmedium_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu3vtx_L12MU8F:
   eventCount: 0
 HLT_mu40_idperf_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+    1: 2
+  stepFeatures:
+    0: 2
+    1: 2
 HLT_mu40_idperf_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+    1: 2
+  stepFeatures:
+    0: 2
+    1: 2
 HLT_mu4_L1MU3V:
-  eventCount: 4
+  eventCount: 3
   stepCounts:
-    0: 10
-    1: 8
-    2: 5
-    3: 4
+    0: 6
+    1: 4
+    2: 3
+    3: 3
   stepFeatures:
-    0: 10
-    1: 8
-    2: 5
-    3: 4
+    0: 7
+    1: 4
+    2: 3
+    3: 3
 HLT_mu4_bJpsimutrk_MuonTrkPEB_L1MU3V:
   eventCount: 0
   stepCounts:
-    0: 10
-    1: 5
-    2: 5
-    3: 4
+    0: 6
+    1: 3
+    2: 3
+    3: 3
   stepFeatures:
-    0: 10
-    1: 6
-    2: 5
-    3: 4
-    4: 4
+    0: 7
+    1: 3
+    2: 3
+    3: 3
+    4: 3
 HLT_mu4_bJpsimutrk_MuonTrkPEB_L1MU3VF:
   eventCount: 0
   stepCounts:
-    0: 8
-    1: 4
-    2: 4
+    0: 5
+    1: 3
+    2: 3
     3: 3
   stepFeatures:
-    0: 8
-    1: 5
-    2: 4
+    0: 5
+    1: 3
+    2: 3
     3: 3
     4: 3
 HLT_mu4_ivarloose_2mu3noL1_L1BPH-7M14-0DR25-MU5VFMU3VF:
   eventCount: 0
-  stepCounts:
-    0: 1
-    1: 1
-  stepFeatures:
-    0: 1
-    1: 1
 HLT_mu4_ivarloose_mu4_11invmAB60_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
   stepFeatures:
     0: 4
+    1: 2
 HLT_mu4_ivarloose_mu4_11invmAB60_L1DY-BOX-2MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_mu4_ivarloose_mu4_7invmAB9_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
   stepFeatures:
     0: 4
+    1: 2
 HLT_mu4_ivarloose_mu4_7invmAB9_L1DY-BOX-2MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_mu4_ivarloose_mu4_L1BPH-7M14-0DR25-MU5VFMU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_mu4_ivarloose_mu4_b11invmAB60vtx20_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
   stepFeatures:
     0: 4
+    1: 2
 HLT_mu4_ivarloose_mu4_b11invmAB60vtx20_L1DY-BOX-2MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_mu4_ivarloose_mu4_b7invmAB9vtx20_L12MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
   stepFeatures:
     0: 4
+    1: 2
 HLT_mu4_ivarloose_mu4_b7invmAB9vtx20_L1DY-BOX-2MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_mu4_ivarloose_mu4_mu3noL1_L1BPH-7M14-0DR25-MU5VFMU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_mu4_j20_0eta290_020jvt_boffperf_pf_ftf_dRAB03_L1MU3V_J15:
-  eventCount: 0
-  stepCounts:
-    0: 5
-    1: 4
-    2: 3
-    3: 2
-    4: 2
-    5: 2
-  stepFeatures:
-    0: 5
-    1: 4
-    2: 3
-    3: 2
-    4: 2
-    5: 8
-    6: 8
-HLT_mu4_j20_0eta290_020jvt_boffperf_pf_ftf_dRAB03_L1MU3V_jJ40:
-  eventCount: 0
+  eventCount: 1
   stepCounts:
-    0: 6
-    1: 5
-    2: 4
-    3: 3
-    4: 3
-    5: 3
+    0: 2
+    1: 2
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+    6: 1
   stepFeatures:
-    0: 6
-    1: 5
-    2: 4
-    3: 3
-    4: 3
-    5: 10
-    6: 10
-HLT_mu4_j20_0eta290_020jvt_boffperf_pf_ftf_dRAB04_L1MU3V:
-  eventCount: 2
-  stepCounts:
-    0: 10
-    1: 8
-    2: 5
-    3: 4
-    4: 4
-    5: 4
+    0: 2
+    1: 2
+    2: 1
+    3: 1
+    4: 1
+    5: 2
     6: 2
-  stepFeatures:
-    0: 10
-    1: 8
-    2: 5
-    3: 4
-    4: 4
-    5: 12
-    6: 12
-HLT_mu4_j20_0eta290_boffperf_pf_ftf_dRAB03_L1MU3V:
+HLT_mu4_j20_0eta290_020jvt_boffperf_pf_ftf_dRAB03_L1MU3V_jJ40:
   eventCount: 1
   stepCounts:
-    0: 10
-    1: 8
-    2: 5
-    3: 4
-    4: 4
-    5: 4
+    0: 2
+    1: 2
+    2: 1
+    3: 1
+    4: 1
+    5: 1
     6: 1
   stepFeatures:
-    0: 10
-    1: 8
-    2: 5
-    3: 4
-    4: 4
-    5: 17
-    6: 17
-HLT_mu4_j20_0eta290_boffperf_pf_ftf_dRAB04_L1MU3V_J12:
-  eventCount: 1
+    0: 2
+    1: 2
+    2: 1
+    3: 1
+    4: 1
+    5: 2
+    6: 2
+HLT_mu4_j20_0eta290_020jvt_boffperf_pf_ftf_dRAB04_L1MU3V:
+  eventCount: 3
   stepCounts:
     0: 6
-    1: 5
-    2: 4
+    1: 4
+    2: 3
     3: 3
     4: 3
     5: 3
-    6: 1
+    6: 3
   stepFeatures:
-    0: 6
-    1: 5
-    2: 4
+    0: 7
+    1: 4
+    2: 3
     3: 3
     4: 3
-    5: 15
-    6: 15
-HLT_mu4_j20_0eta290_boffperf_pf_ftf_dRAB04_L1MU3V_jJ30:
-  eventCount: 1
+    5: 6
+    6: 6
+HLT_mu4_j20_0eta290_boffperf_pf_ftf_dRAB03_L1MU3V:
+  eventCount: 2
   stepCounts:
     0: 6
-    1: 5
-    2: 4
+    1: 4
+    2: 3
     3: 3
     4: 3
     5: 3
-    6: 1
+    6: 2
   stepFeatures:
-    0: 6
-    1: 5
-    2: 4
+    0: 7
+    1: 4
+    2: 3
     3: 3
     4: 3
-    5: 15
-    6: 15
-HLT_mu4_j35_0eta290_020jvt_boffperf_pf_ftf_dRAB04_L1BTAG-MU3VjJ40:
+    5: 12
+    6: 12
+HLT_mu4_j20_0eta290_boffperf_pf_ftf_dRAB04_L1MU3V_J12:
   eventCount: 1
   stepCounts:
     0: 2
     1: 2
-    2: 2
+    2: 1
     3: 1
     4: 1
     5: 1
@@ -9131,218 +12751,161 @@ HLT_mu4_j35_0eta290_020jvt_boffperf_pf_ftf_dRAB04_L1BTAG-MU3VjJ40:
   stepFeatures:
     0: 2
     1: 2
-    2: 2
+    2: 1
     3: 1
     4: 1
-    5: 3
-    6: 3
-HLT_mu4_j35_0eta290_020jvt_boffperf_pf_ftf_dRAB04_L1MU3V_J15:
-  eventCount: 1
-  stepCounts:
-    0: 5
-    1: 4
-    2: 3
-    3: 2
-    4: 2
-    5: 1
-    6: 1
-  stepFeatures:
-    0: 5
-    1: 4
-    2: 3
-    3: 2
-    4: 2
-    5: 3
-    6: 3
-HLT_mu4_j35_0eta290_020jvt_boffperf_pf_ftf_dRAB04_L1MU3V_jJ40:
+    5: 7
+    6: 7
+HLT_mu4_j20_0eta290_boffperf_pf_ftf_dRAB04_L1MU3V_jJ30:
   eventCount: 1
   stepCounts:
-    0: 6
-    1: 5
-    2: 4
-    3: 3
-    4: 3
+    0: 2
+    1: 2
+    2: 1
+    3: 1
+    4: 1
     5: 1
     6: 1
   stepFeatures:
-    0: 6
-    1: 5
-    2: 4
-    3: 3
-    4: 3
-    5: 3
-    6: 3
-HLT_mu4_j35_0eta290_boffperf_pf_ftf_dRAB03_L1BTAG-MU3VjJ40:
+    0: 2
+    1: 2
+    2: 1
+    3: 1
+    4: 1
+    5: 7
+    6: 7
+HLT_mu4_j35_0eta290_020jvt_boffperf_pf_ftf_dRAB04_L1BTAG-MU3VjJ40:
+  eventCount: 0
+HLT_mu4_j35_0eta290_020jvt_boffperf_pf_ftf_dRAB04_L1MU3V_J15:
   eventCount: 0
   stepCounts:
     0: 2
     1: 2
-    2: 2
+    2: 1
     3: 1
     4: 1
-    5: 1
   stepFeatures:
     0: 2
     1: 2
-    2: 2
+    2: 1
     3: 1
     4: 1
-    5: 3
-    6: 3
-HLT_mu4_j35_0eta290_boffperf_pf_ftf_dRAB04_L1BTAG-MU3VjJ40:
-  eventCount: 1
+HLT_mu4_j35_0eta290_020jvt_boffperf_pf_ftf_dRAB04_L1MU3V_jJ40:
+  eventCount: 0
   stepCounts:
     0: 2
     1: 2
-    2: 2
+    2: 1
     3: 1
     4: 1
-    5: 1
-    6: 1
   stepFeatures:
     0: 2
     1: 2
-    2: 2
+    2: 1
     3: 1
     4: 1
-    5: 3
-    6: 3
+HLT_mu4_j35_0eta290_boffperf_pf_ftf_dRAB03_L1BTAG-MU3VjJ40:
+  eventCount: 0
+HLT_mu4_j35_0eta290_boffperf_pf_ftf_dRAB04_L1BTAG-MU3VjJ40:
+  eventCount: 0
 HLT_mu4_j35_0eta290_boffperf_pf_ftf_dRAB04_L1MU3V_jJ40:
-  eventCount: 1
-  stepCounts:
-    0: 6
-    1: 5
-    2: 4
-    3: 3
-    4: 3
-    5: 1
-    6: 1
-  stepFeatures:
-    0: 6
-    1: 5
-    2: 4
-    3: 3
-    4: 3
-    5: 3
-    6: 3
-HLT_mu4_j45_0eta290_020jvt_boffperf_pf_ftf_dRAB04_L1BTAG-MU3VjJ40:
-  eventCount: 1
+  eventCount: 0
   stepCounts:
     0: 2
     1: 2
-    2: 2
+    2: 1
     3: 1
     4: 1
     5: 1
-    6: 1
   stepFeatures:
     0: 2
     1: 2
-    2: 2
+    2: 1
     3: 1
     4: 1
     5: 2
     6: 2
+HLT_mu4_j45_0eta290_020jvt_boffperf_pf_ftf_dRAB04_L1BTAG-MU3VjJ40:
+  eventCount: 0
 HLT_mu4_j45_0eta290_020jvt_boffperf_pf_ftf_dRAB04_L1MU3V_J15:
-  eventCount: 1
+  eventCount: 0
   stepCounts:
-    0: 5
-    1: 4
-    2: 3
-    3: 2
-    4: 2
-    5: 1
-    6: 1
+    0: 2
+    1: 2
+    2: 1
+    3: 1
+    4: 1
   stepFeatures:
-    0: 5
-    1: 4
-    2: 3
-    3: 2
-    4: 2
-    5: 2
-    6: 2
+    0: 2
+    1: 2
+    2: 1
+    3: 1
+    4: 1
 HLT_mu4_j45_0eta290_020jvt_boffperf_pf_ftf_dRAB04_L1MU3V_jJ40:
-  eventCount: 1
-  stepCounts:
-    0: 6
-    1: 5
-    2: 4
-    3: 3
-    4: 3
-    5: 1
-    6: 1
-  stepFeatures:
-    0: 6
-    1: 5
-    2: 4
-    3: 3
-    4: 3
-    5: 2
-    6: 2
-HLT_mu4_j45_0eta290_boffperf_pf_ftf_dRAB04_L1BTAG-MU3VjJ40:
-  eventCount: 1
+  eventCount: 0
   stepCounts:
     0: 2
     1: 2
-    2: 2
+    2: 1
     3: 1
     4: 1
-    5: 1
-    6: 1
   stepFeatures:
     0: 2
     1: 2
-    2: 2
+    2: 1
     3: 1
     4: 1
-    5: 2
-    6: 2
+HLT_mu4_j45_0eta290_boffperf_pf_ftf_dRAB04_L1BTAG-MU3VjJ40:
+  eventCount: 0
 HLT_mu4_j45_0eta290_boffperf_pf_ftf_dRAB04_L1MU3V_jJ40:
-  eventCount: 1
+  eventCount: 0
   stepCounts:
-    0: 6
-    1: 5
-    2: 4
-    3: 3
-    4: 3
+    0: 2
+    1: 2
+    2: 1
+    3: 1
+    4: 1
+    5: 1
+  stepFeatures:
+    0: 2
+    1: 2
+    2: 1
+    3: 1
+    4: 1
     5: 1
     6: 1
-  stepFeatures:
-    0: 6
-    1: 5
-    2: 4
-    3: 3
-    4: 3
-    5: 2
-    6: 2
 HLT_mu4_j70_j50a_j0_DJMASS1000j50_xe50_tcpufit_L1MJJ-500-NFF:
   eventCount: 0
 HLT_mu4_j70_j50a_j0_DJMASS1000j50_xe50_tcpufit_L1jMJJ-500-NFF:
   eventCount: 0
 HLT_mu4_l2io_L1MU3V:
-  eventCount: 4
+  eventCount: 3
   stepCounts:
-    0: 10
-    1: 5
-    2: 5
-    3: 4
+    0: 6
+    1: 3
+    2: 3
+    3: 3
   stepFeatures:
-    0: 10
-    1: 6
-    2: 5
-    3: 4
+    0: 7
+    1: 3
+    2: 3
+    3: 3
 HLT_mu4_mu4_idperf_1invmAB5_L12MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_mu4_mu4_idtp_idJpsimumu_L12MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_mu50_L1MU14FCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu50_L1MU18VFCH:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_mu60_0eta105_msonly_L1MU14FCH:
   eventCount: 0
 HLT_mu60_0eta105_msonly_L1MU18VFCH:
@@ -9353,140 +12916,102 @@ HLT_mu60_L1MU18VFCH:
   eventCount: 0
 HLT_mu6_2mu4_bDimu2700_L1MU5VF_3MU3V:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_mu6_2mu4_bDimu2700_L1MU5VF_3MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 1
 HLT_mu6_2mu4_bDimu6000_L1MU5VF_3MU3V:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_mu6_2mu4_bDimu6000_L1MU5VF_3MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 1
 HLT_mu6_2mu4_bJpsi_L1MU5VF_3MU3V:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_mu6_2mu4_bJpsi_L1MU5VF_3MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 1
 HLT_mu6_2mu4_bTau_L1MU5VF_3MU3V:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_mu6_2mu4_bTau_L1MU5VF_3MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 1
 HLT_mu6_2mu4_bUpsi_L1MU5VF_3MU3V:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_mu6_2mu4_bUpsi_L1MU5VF_3MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 1
 HLT_mu6_LRT_idperf_L1MU5VF:
   eventCount: 3
   stepCounts:
-    0: 7
-    1: 7
+    0: 5
+    1: 5
     2: 3
     3: 3
   stepFeatures:
-    0: 7
-    1: 7
+    0: 5
+    1: 5
     2: 3
     3: 3
 HLT_mu6_bJpsimutrk_MuonTrkPEB_L1MU5VF:
   eventCount: 0
   stepCounts:
-    0: 7
-    1: 2
-    2: 2
-    3: 2
+    0: 5
+    1: 3
+    2: 3
+    3: 3
   stepFeatures:
-    0: 7
+    0: 5
     1: 3
-    2: 2
-    3: 2
-    4: 2
+    2: 3
+    3: 3
+    4: 3
 HLT_mu6_bJpsimutrk_lowpt_MuonTrkPEB_L1MU5VF:
   eventCount: 0
   stepCounts:
-    0: 7
-    1: 2
-    2: 2
-    3: 2
+    0: 5
+    1: 3
+    2: 3
+    3: 3
   stepFeatures:
-    0: 7
+    0: 5
     1: 3
-    2: 2
-    3: 2
-    4: 2
+    2: 3
+    3: 3
+    4: 3
 HLT_mu6_idperf_L1MU5VF:
   eventCount: 3
   stepCounts:
-    0: 7
-    1: 7
+    0: 5
+    1: 5
     2: 3
     3: 3
   stepFeatures:
-    0: 7
-    1: 7
+    0: 5
+    1: 5
     2: 3
     3: 3
 HLT_mu6_ivarloose_mu6_11invmAB24_L12MU5VF:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_mu6_ivarloose_mu6_11invmAB24_L1DY-BOX-2MU5VF:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_mu6_ivarloose_mu6_24invmAB60_L12MU5VF:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_mu6_ivarloose_mu6_24invmAB60_L1DY-BOX-2MU5VF:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_mu6_ivarloose_mu6_b11invmAB24vtx20_L12MU5VF:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_mu6_ivarloose_mu6_b11invmAB24vtx20_L1DY-BOX-2MU5VF:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_mu6_ivarloose_mu6_b24invmAB60vtx20_L12MU5VF:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_mu6_ivarloose_mu6_b24invmAB60vtx20_L1DY-BOX-2MU5VF:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_mu6_ivarmedium_L1MU5VF:
-  eventCount: 2
+  eventCount: 0
   stepCounts:
-    0: 7
-    1: 5
-    2: 2
-    3: 2
-    4: 2
+    0: 5
+    1: 4
+    2: 3
+    3: 3
   stepFeatures:
-    0: 7
-    1: 5
-    2: 2
-    3: 2
-    4: 2
+    0: 5
+    1: 4
+    2: 3
+    3: 3
 HLT_mu6_j100_0eta290_020jvt_boffperf_pf_ftf_dRAB04_L1BTAG-MU5VFjJ80:
   eventCount: 0
 HLT_mu6_j100_0eta290_020jvt_boffperf_pf_ftf_dRAB04_L1MU5VF_J40:
@@ -9500,75 +13025,63 @@ HLT_mu6_j100_0eta290_boffperf_pf_ftf_dRAB04_L1MU5VF_jJ80:
 HLT_mu6_j45_0eta290_boffperf_pf_ftf_dRAB03_L1BTAG-MU5VFjJ80:
   eventCount: 0
 HLT_mu6_j45_nojcalib_L1J20:
-  eventCount: 0
-  stepCounts:
-    0: 3
-    1: 1
-  stepFeatures:
-    0: 3
-    1: 1
-HLT_mu6_j60_0eta290_020jvt_boffperf_pf_ftf_dRAB04_L1BTAG-MU3VjJ40:
   eventCount: 0
   stepCounts:
     0: 2
-    1: 1
+    1: 2
     2: 1
+    3: 1
   stepFeatures:
     0: 2
-    1: 1
+    1: 2
     2: 1
+    3: 1
+HLT_mu6_j60_0eta290_020jvt_boffperf_pf_ftf_dRAB04_L1BTAG-MU3VjJ40:
+  eventCount: 0
 HLT_mu6_j60_0eta290_020jvt_boffperf_pf_ftf_dRAB04_L1MU3V_J15:
   eventCount: 0
   stepCounts:
-    0: 5
-    1: 3
-    2: 2
+    0: 2
+    1: 2
+    2: 1
     3: 1
     4: 1
   stepFeatures:
-    0: 5
-    1: 3
-    2: 2
+    0: 2
+    1: 2
+    2: 1
     3: 1
     4: 1
 HLT_mu6_j60_0eta290_020jvt_boffperf_pf_ftf_dRAB04_L1MU3V_jJ40:
-  eventCount: 0
-  stepCounts:
-    0: 6
-    1: 4
-    2: 3
-    3: 2
-    4: 2
-  stepFeatures:
-    0: 6
-    1: 4
-    2: 3
-    3: 2
-    4: 2
-HLT_mu6_j60_0eta290_boffperf_pf_ftf_dRAB04_L1BTAG-MU3VjJ40:
   eventCount: 0
   stepCounts:
     0: 2
-    1: 1
+    1: 2
     2: 1
+    3: 1
+    4: 1
   stepFeatures:
     0: 2
-    1: 1
+    1: 2
     2: 1
+    3: 1
+    4: 1
+HLT_mu6_j60_0eta290_boffperf_pf_ftf_dRAB04_L1BTAG-MU3VjJ40:
+  eventCount: 0
 HLT_mu6_j60_0eta290_boffperf_pf_ftf_dRAB04_L1MU3V_jJ40:
   eventCount: 0
   stepCounts:
-    0: 6
-    1: 4
-    2: 3
-    3: 2
-    4: 2
+    0: 2
+    1: 2
+    2: 1
+    3: 1
+    4: 1
   stepFeatures:
-    0: 6
-    1: 4
-    2: 3
-    3: 2
-    4: 2
+    0: 2
+    1: 2
+    2: 1
+    3: 1
+    4: 1
 HLT_mu6_l2io_mu4_l2io_invmDimu_L1BPH-2M9-0DR15-C-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_l2io_mu4_l2io_invmDimu_L1BPH-2M9-0DR15-MU5VFMU3V:
@@ -9576,10 +13089,10 @@ HLT_mu6_l2io_mu4_l2io_invmDimu_L1BPH-2M9-0DR15-MU5VFMU3V:
 HLT_mu6_msonly_L1MU5VF:
   eventCount: 3
   stepCounts:
-    0: 7
+    0: 5
     1: 3
   stepFeatures:
-    0: 7
+    0: 5
     1: 3
 HLT_mu6_msonly_j50_j30a_j0_DJMASS1000j30dphi260x200deta_L1MJJ-500-NFF:
   eventCount: 0
@@ -9593,234 +13106,249 @@ HLT_mu6_msonly_j70_j50a_j0_DJMASS900j50dphi260x200deta_L1jMJJ-500-NFF:
   eventCount: 0
 HLT_mu6_mu4_L1BPH-7M14-MU5VFMU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_mu6_mu4_PhysicsTLA_L1BPH-7M22-MU5VFMU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_mu6_mu4_b7invmAB22vtx20_L1BPH-7M22-MU5VFMU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_mu6_mu4_bBmumu_L1BPH-2M9-0DR15-C-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bBmumu_L1BPH-2M9-0DR15-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bBmumu_L1MU5VF_2MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
   stepFeatures:
-    0: 4
+    0: 3
+    1: 2
 HLT_mu6_mu4_bBmumu_L1MU5VF_2MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_mu6_mu4_bBmumu_Lxy0_L1BPH-2M9-0DR15-C-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bBmumu_Lxy0_L1BPH-2M9-0DR15-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bBmumu_Lxy0_L1MU5VF_2MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
   stepFeatures:
-    0: 4
+    0: 3
+    1: 2
 HLT_mu6_mu4_bBmumu_Lxy0_L1MU5VF_2MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_mu6_mu4_bBmumux_BcmumuD0Xloose_L1BPH-2M9-0DR15-C-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bBmumux_BcmumuD0Xloose_L1BPH-2M9-0DR15-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bBmumux_BcmumuD0Xloose_L1MU5VF_2MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
   stepFeatures:
-    0: 4
+    0: 3
+    1: 2
 HLT_mu6_mu4_bBmumux_BcmumuD0Xloose_L1MU5VF_2MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_mu6_mu4_bBmumux_BcmumuDploose_L1BPH-2M9-0DR15-C-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bBmumux_BcmumuDploose_L1BPH-2M9-0DR15-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bBmumux_BcmumuDploose_L1MU5VF_2MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
   stepFeatures:
-    0: 4
+    0: 3
+    1: 2
 HLT_mu6_mu4_bBmumux_BcmumuDploose_L1MU5VF_2MU3VF:
-  eventCount: 0
-  stepFeatures:
-    0: 4
+  eventCount: 0
 HLT_mu6_mu4_bBmumux_BcmumuDsloose_L1BPH-2M9-0DR15-C-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bBmumux_BcmumuDsloose_L1BPH-2M9-0DR15-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bBmumux_BcmumuDsloose_L1MU5VF_2MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
   stepFeatures:
-    0: 4
+    0: 3
+    1: 2
 HLT_mu6_mu4_bBmumux_BcmumuDsloose_L1MU5VF_2MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_mu6_mu4_bBmumux_BcmumuDstarloose_L1BPH-2M9-0DR15-C-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bBmumux_BcmumuDstarloose_L1BPH-2M9-0DR15-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bBmumux_BcmumuDstarloose_L1MU5VF_2MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
   stepFeatures:
-    0: 4
+    0: 3
+    1: 2
 HLT_mu6_mu4_bBmumux_BcmumuDstarloose_L1MU5VF_2MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_mu6_mu4_bBmumux_BcmumuPi_L1BPH-2M9-0DR15-C-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bBmumux_BcmumuPi_L1BPH-2M9-0DR15-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bBmumux_BcmumuPi_L1MU5VF_2MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
   stepFeatures:
-    0: 4
+    0: 3
+    1: 2
 HLT_mu6_mu4_bBmumux_BcmumuPi_L1MU5VF_2MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_mu6_mu4_bBmumux_BdmumuKst_L1BPH-2M9-0DR15-C-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bBmumux_BdmumuKst_L1BPH-2M9-0DR15-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bBmumux_BdmumuKst_L1MU5VF_2MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
   stepFeatures:
-    0: 4
+    0: 3
+    1: 2
 HLT_mu6_mu4_bBmumux_BdmumuKst_L1MU5VF_2MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_mu6_mu4_bBmumux_BpmumuKp_L1BPH-2M9-0DR15-C-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bBmumux_BpmumuKp_L1BPH-2M9-0DR15-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bBmumux_BpmumuKp_L1MU5VF_2MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
   stepFeatures:
-    0: 4
+    0: 3
+    1: 2
 HLT_mu6_mu4_bBmumux_BpmumuKp_L1MU5VF_2MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_mu6_mu4_bBmumux_BsmumuPhi_L1BPH-2M9-0DR15-C-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bBmumux_BsmumuPhi_L1BPH-2M9-0DR15-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bBmumux_BsmumuPhi_L1MU5VF_2MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
   stepFeatures:
-    0: 4
+    0: 3
+    1: 2
 HLT_mu6_mu4_bBmumux_BsmumuPhi_L1MU5VF_2MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_mu6_mu4_bBmumux_LbPqKm_L1BPH-2M9-0DR15-C-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bBmumux_LbPqKm_L1BPH-2M9-0DR15-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bBmumux_LbPqKm_L1MU5VF_2MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
   stepFeatures:
-    0: 4
+    0: 3
+    1: 2
 HLT_mu6_mu4_bBmumux_LbPqKm_L1MU5VF_2MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_mu6_mu4_bBmux_BdmuDstarX_L1MU5VF_2MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
   stepFeatures:
-    0: 4
+    0: 3
+    1: 2
 HLT_mu6_mu4_bBmux_BdmuDstarX_L1MU5VF_2MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_mu6_mu4_bDimu2700_sigmaLxy3_L1MU5VF_2MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
   stepFeatures:
-    0: 4
+    0: 3
+    1: 2
 HLT_mu6_mu4_bDimu2700_sigmaLxy3_L1MU5VF_2MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_mu6_mu4_bDimu_L1BPH-2M9-0DR15-C-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bDimu_L1BPH-2M9-0DR15-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bDimu_L1MU5VF_2MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
   stepFeatures:
-    0: 4
+    0: 3
+    1: 2
 HLT_mu6_mu4_bDimu_L1MU5VF_2MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_mu6_mu4_bJpsimumu_L1BPH-2M9-0DR15-C-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bJpsimumu_L1BPH-2M9-0DR15-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bJpsimumu_L1MU5VF_2MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
   stepFeatures:
-    0: 4
+    0: 3
+    1: 2
 HLT_mu6_mu4_bJpsimumu_L1MU5VF_2MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_mu6_mu4_bJpsimumu_Lxy0_L1BPH-2M9-0DR15-C-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bJpsimumu_Lxy0_L1BPH-2M9-0DR15-MU5VFMU3V:
   eventCount: 0
 HLT_mu6_mu4_bJpsimumu_Lxy0_L1MU5VF_2MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
   stepFeatures:
-    0: 4
+    0: 3
+    1: 2
 HLT_mu6_mu4_bJpsimumu_Lxy0_L1MU5VF_2MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_mu6_mu4_bJpsimumu_sigmaLxy3_L1MU5VF_2MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
   stepFeatures:
-    0: 4
+    0: 3
+    1: 2
 HLT_mu6_mu4_bJpsimumu_sigmaLxy3_L1MU5VF_2MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_mu6_mu4_bUpsimumu_L1BPH-8M15-0DR22-MU5VFMU3V-BO:
   eventCount: 0
 HLT_mu6_mu4_bUpsimumu_L1MU5VF_2MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
   stepFeatures:
-    0: 4
+    0: 3
+    1: 2
 HLT_mu6_mu4_bUpsimumu_L1MU5VF_2MU3VF:
   eventCount: 0
-  stepFeatures:
-    0: 4
 HLT_mu6_mu6noL1_L1MU5VF:
   eventCount: 0
   stepCounts:
-    0: 7
-    1: 5
-    2: 2
-    3: 2
+    0: 5
+    1: 4
+    2: 3
+    3: 3
   stepFeatures:
-    0: 7
-    1: 5
-    2: 2
-    3: 2
+    0: 5
+    1: 4
+    2: 3
+    3: 3
 HLT_mu6_noL2Comb_mu4_noL2Comb_bJpsimumu_L1MU5VF_2MU3V:
   eventCount: 0
+  stepCounts:
+    0: 1
   stepFeatures:
-    0: 4
+    0: 3
+    1: 3
 HLT_mu6_probe_j20_pf_ftf_DarkJetPEBTLA_L1HT190-J15s5pETA21:
   eventCount: 0
 HLT_mu6_xe30_mht_L1XE30:
@@ -9840,21 +13368,27 @@ HLT_mu80_msonly_3layersEC_L1MU14FCH:
 HLT_mu80_msonly_3layersEC_L1MU18VFCH:
   eventCount: 0
 HLT_mu8_L1MU5VF:
-  eventCount: 0
-  stepCounts:
-    0: 7
-  stepFeatures:
-    0: 7
-HLT_noalg_AFPPEB_L12MU5VF:
   eventCount: 2
   stepCounts:
-    0: 2
+    0: 5
+    1: 4
+    2: 2
+    3: 2
   stepFeatures:
-    0: 2
+    0: 5
+    1: 4
+    2: 2
+    3: 2
+HLT_noalg_AFPPEB_L12MU5VF:
+  eventCount: 0
 HLT_noalg_AFPPEB_L1J100:
   eventCount: 0
 HLT_noalg_AFPPEB_L1MU14FCH:
-  eventCount: 0
+  eventCount: 3
+  stepCounts:
+    0: 3
+  stepFeatures:
+    0: 3
 HLT_noalg_CostMonDS_L1All:
   eventCount: 50
   stepCounts:
@@ -9866,7 +13400,7 @@ HLT_noalg_L110DR-MU14FCH-MU5VF_EMPTY:
 HLT_noalg_L110DR-MU14FCH-MU5VF_UNPAIRED_ISO:
   eventCount: 0
 HLT_noalg_L12MU5VF:
-  eventCount: 2
+  eventCount: 0
 HLT_noalg_L1AFP_A_AND_C_TOF_J50:
   eventCount: 0
 HLT_noalg_L1AFP_A_AND_C_TOF_J75:
@@ -9888,7 +13422,7 @@ HLT_noalg_L1All:
 HLT_noalg_L1BPH-2M9-0DR15-2MU3VF:
   eventCount: 0
 HLT_noalg_L1BPH-8M15-0DR22-2MU5VF:
-  eventCount: 1
+  eventCount: 0
 HLT_noalg_L1CEP-CjJ100:
   eventCount: 0
 HLT_noalg_L1CEP-CjJ90:
@@ -9896,9 +13430,9 @@ HLT_noalg_L1CEP-CjJ90:
 HLT_noalg_L1EM10VH:
   eventCount: 13
 HLT_noalg_L1EM15:
-  eventCount: 9
+  eventCount: 12
 HLT_noalg_L1EM3:
-  eventCount: 37
+  eventCount: 38
 HLT_noalg_L1EM3_EMPTY:
   eventCount: 0
 HLT_noalg_L1EM7_EMPTY:
@@ -9908,47 +13442,47 @@ HLT_noalg_L1J100:
 HLT_noalg_L1J15:
   eventCount: 14
 HLT_noalg_L1J20:
-  eventCount: 11
+  eventCount: 13
 HLT_noalg_L1J25:
   eventCount: 11
 HLT_noalg_L1J30:
-  eventCount: 6
+  eventCount: 11
 HLT_noalg_L1J40:
-  eventCount: 4
+  eventCount: 7
 HLT_noalg_L1J400:
   eventCount: 0
 HLT_noalg_L1J50:
-  eventCount: 4
+  eventCount: 6
 HLT_noalg_L1J75:
-  eventCount: 0
+  eventCount: 2
 HLT_noalg_L1J85:
-  eventCount: 0
+  eventCount: 2
 HLT_noalg_L1LLPDPHI-jXE40-jJ40:
-  eventCount: 0
+  eventCount: 1
 HLT_noalg_L1MU10BO:
-  eventCount: 0
+  eventCount: 2
 HLT_noalg_L1MU10BOM:
   eventCount: 0
 HLT_noalg_L1MU12BOM:
   eventCount: 0
 HLT_noalg_L1MU14FCH:
-  eventCount: 0
+  eventCount: 3
 HLT_noalg_L1MU18VFCH:
-  eventCount: 0
+  eventCount: 3
 HLT_noalg_L1MU3V:
-  eventCount: 12
+  eventCount: 14
 HLT_noalg_L1MU3VF:
-  eventCount: 10
+  eventCount: 11
 HLT_noalg_L1MU4BOM:
   eventCount: 0
 HLT_noalg_L1MU5VF:
-  eventCount: 7
+  eventCount: 8
 HLT_noalg_L1MU8F:
-  eventCount: 4
+  eventCount: 8
 HLT_noalg_L1MU8VF:
-  eventCount: 0
+  eventCount: 5
 HLT_noalg_L1MU8VFC:
-  eventCount: 0
+  eventCount: 5
 HLT_noalg_L1RD0_EMPTY:
   eventCount: 0
 HLT_noalg_L1RD0_FILLED:
@@ -9956,71 +13490,71 @@ HLT_noalg_L1RD0_FILLED:
 HLT_noalg_L1RD1_FILLED:
   eventCount: 50
 HLT_noalg_L1TAU12IM:
-  eventCount: 12
+  eventCount: 13
 HLT_noalg_L1TAU20IM:
-  eventCount: 9
+  eventCount: 10
 HLT_noalg_L1TAU40:
-  eventCount: 3
+  eventCount: 6
 HLT_noalg_L1TAU60:
-  eventCount: 2
+  eventCount: 3
 HLT_noalg_L1TAU8:
   eventCount: 19
 HLT_noalg_L1TAU8_EMPTY:
   eventCount: 0
 HLT_noalg_L1XE30:
-  eventCount: 1
+  eventCount: 6
 HLT_noalg_L1XE300:
   eventCount: 0
 HLT_noalg_L1XE35:
-  eventCount: 1
+  eventCount: 6
 HLT_noalg_L1XE40:
-  eventCount: 1
+  eventCount: 6
 HLT_noalg_L1XE45:
-  eventCount: 1
+  eventCount: 3
 HLT_noalg_L1XE50:
-  eventCount: 0
+  eventCount: 2
 HLT_noalg_L1XE55:
-  eventCount: 0
+  eventCount: 1
 HLT_noalg_L1XE60:
   eventCount: 0
 HLT_noalg_L1cTAU20M:
-  eventCount: 13
+  eventCount: 12
 HLT_noalg_L1cTAU30M:
-  eventCount: 9
+  eventCount: 10
 HLT_noalg_L1cTAU35M:
-  eventCount: 7
+  eventCount: 9
 HLT_noalg_L1eEM12L:
-  eventCount: 7
+  eventCount: 11
 HLT_noalg_L1eEM18L:
-  eventCount: 3
+  eventCount: 8
 HLT_noalg_L1eEM18M:
-  eventCount: 2
+  eventCount: 7
 HLT_noalg_L1eEM24L:
-  eventCount: 3
+  eventCount: 8
 HLT_noalg_L1eEM26:
-  eventCount: 4
+  eventCount: 9
 HLT_noalg_L1eEM26L:
-  eventCount: 2
+  eventCount: 8
 HLT_noalg_L1eEM26M:
-  eventCount: 2
+  eventCount: 7
 HLT_noalg_L1eEM26T:
-  eventCount: 2
+  eventCount: 5
 HLT_noalg_L1eEM5:
-  eventCount: 25
+  eventCount: 28
 HLT_noalg_L1eEM9:
-  eventCount: 17
+  eventCount: 18
 HLT_noalg_L1eTAU12:
-  eventCount: 16
+  eventCount: 17
 HLT_noalg_L1eTAU140:
   eventCount: 0
 HLT_noalg_L1eTAU20:
   eventCount: 13
 HLT_noalg_L1eTAU20M:
-  eventCount: 13
+  eventCount: 12
 HLT_noalg_L1eTAU30:
-  eventCount: 9
+  eventCount: 11
 HLT_noalg_L1eTAU60:
-  eventCount: 3
+  eventCount: 6
 HLT_noalg_L1eTAU80:
   eventCount: 2
 HLT_noalg_L1gJ100p0ETA25:
@@ -10030,11 +13564,11 @@ HLT_noalg_L1gJ20p0ETA25:
 HLT_noalg_L1gJ20p0ETA25_EMPTY:
   eventCount: 0
 HLT_noalg_L1gJ20p25ETA49:
-  eventCount: 5
+  eventCount: 0
 HLT_noalg_L1gJ400p0ETA25:
   eventCount: 0
 HLT_noalg_L1gJ50p0ETA25:
-  eventCount: 4
+  eventCount: 6
 HLT_noalg_L1gLJ100p0ETA25:
   eventCount: 0
 HLT_noalg_L1gLJ140p0ETA25:
@@ -10042,13 +13576,13 @@ HLT_noalg_L1gLJ140p0ETA25:
 HLT_noalg_L1gLJ160p0ETA25:
   eventCount: 0
 HLT_noalg_L1gLJ80p0ETA25:
-  eventCount: 0
+  eventCount: 2
 HLT_noalg_L1gMHT500:
   eventCount: 0
 HLT_noalg_L1gTE200:
   eventCount: 0
 HLT_noalg_L1gXEJWOJ100:
-  eventCount: 0
+  eventCount: 2
 HLT_noalg_L1gXEJWOJ110:
   eventCount: 0
 HLT_noalg_L1gXEJWOJ120:
@@ -10056,81 +13590,81 @@ HLT_noalg_L1gXEJWOJ120:
 HLT_noalg_L1gXEJWOJ500:
   eventCount: 0
 HLT_noalg_L1gXEJWOJ60:
-  eventCount: 3
+  eventCount: 5
 HLT_noalg_L1gXEJWOJ70:
-  eventCount: 3
+  eventCount: 5
 HLT_noalg_L1gXEJWOJ80:
-  eventCount: 1
+  eventCount: 3
 HLT_noalg_L1gXENC100:
-  eventCount: 0
+  eventCount: 2
 HLT_noalg_L1gXENC70:
-  eventCount: 6
+  eventCount: 11
 HLT_noalg_L1jJ125:
-  eventCount: 0
+  eventCount: 2
 HLT_noalg_L1jJ125p30ETA49:
   eventCount: 0
 HLT_noalg_L1jJ160:
   eventCount: 0
 HLT_noalg_L1jJ30:
-  eventCount: 15
+  eventCount: 13
 HLT_noalg_L1jJ40:
-  eventCount: 15
+  eventCount: 13
 HLT_noalg_L1jJ40p30ETA49:
-  eventCount: 6
+  eventCount: 0
 HLT_noalg_L1jJ50:
   eventCount: 13
 HLT_noalg_L1jJ500:
   eventCount: 0
 HLT_noalg_L1jJ50p30ETA49:
-  eventCount: 5
+  eventCount: 0
 HLT_noalg_L1jJ60:
-  eventCount: 5
+  eventCount: 7
 HLT_noalg_L1jJ60p30ETA49:
-  eventCount: 3
+  eventCount: 0
 HLT_noalg_L1jJ90:
-  eventCount: 3
+  eventCount: 5
 HLT_noalg_L1jJ90p30ETA49:
-  eventCount: 1
+  eventCount: 0
 HLT_noalg_L1jLJ120:
   eventCount: 0
 HLT_noalg_L1jLJ140:
   eventCount: 0
 HLT_noalg_L1jLJ80:
-  eventCount: 0
+  eventCount: 2
 HLT_noalg_L1jTAU20:
-  eventCount: 14
+  eventCount: 15
 HLT_noalg_L1jTAU30:
-  eventCount: 10
+  eventCount: 11
 HLT_noalg_L1jTAU30M:
-  eventCount: 10
+  eventCount: 11
 HLT_noalg_L1jTE200:
-  eventCount: 18
+  eventCount: 14
 HLT_noalg_L1jTEC200:
-  eventCount: 1
+  eventCount: 9
 HLT_noalg_L1jTEFWD100:
-  eventCount: 21
+  eventCount: 0
 HLT_noalg_L1jTEFWDA100:
-  eventCount: 4
+  eventCount: 0
 HLT_noalg_L1jTEFWDC100:
-  eventCount: 7
+  eventCount: 0
 HLT_noalg_L1jXE100:
-  eventCount: 2
+  eventCount: 1
 HLT_noalg_L1jXE110:
-  eventCount: 2
+  eventCount: 0
 HLT_noalg_L1jXE120:
   eventCount: 0
 HLT_noalg_L1jXE500:
   eventCount: 0
 HLT_noalg_L1jXE60:
-  eventCount: 7
+  eventCount: 5
 HLT_noalg_L1jXE70:
-  eventCount: 6
+  eventCount: 4
 HLT_noalg_L1jXE80:
   eventCount: 3
 HLT_noalg_L1jXE90:
-  eventCount: 2
+  eventCount: 3
 HLT_noalg_L1jXEC100:
-  eventCount: 1
+  eventCount: 2
 HLT_noalg_L1jXEPerf100:
   eventCount: 0
 HLT_noalg_LArPEBCalib_L1EM10VH:
@@ -10140,17 +13674,17 @@ HLT_noalg_LArPEBCalib_L1EM10VH:
   stepFeatures:
     0: 13
 HLT_noalg_LArPEBCalib_L1EM15:
-  eventCount: 9
+  eventCount: 12
   stepCounts:
-    0: 9
+    0: 12
   stepFeatures:
-    0: 9
+    0: 12
 HLT_noalg_LArPEBCalib_L1EM3:
-  eventCount: 37
+  eventCount: 38
   stepCounts:
-    0: 37
+    0: 38
   stepFeatures:
-    0: 37
+    0: 38
 HLT_noalg_LArPEBNoise_L1EM3_EMPTY:
   eventCount: 0
 HLT_noalg_LArPEBNoise_L1EM7_EMPTY:
@@ -10161,6 +13695,16 @@ HLT_noalg_LArPEBNoise_L1TAU8_EMPTY:
   eventCount: 0
 HLT_tau0_mediumRNN_tracktwoMVA_tau0_mediumRNN_tracktwoMVA_03dRAB30_L1DR-TAU20ITAU12I-J25:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau0_mediumRNN_tracktwoMVA_tau0_mediumRNN_tracktwoMVA_03dRAB_L12cTAU20M_10DR32-eTAU30eTAU20-jJ55:
   eventCount: 0
   stepCounts:
@@ -10169,12 +13713,22 @@ HLT_tau0_mediumRNN_tracktwoMVA_tau0_mediumRNN_tracktwoMVA_03dRAB_L12cTAU20M_10DR
     2: 1
     3: 1
   stepFeatures:
-    0: 4
-    1: 4
-    2: 4
-    3: 4
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau0_mediumRNN_tracktwoMVA_tau0_mediumRNN_tracktwoMVA_03dRAB_L12cTAU20M_4DR28-eTAU30eTAU20-jJ55:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau0_mediumRNN_tracktwoMVA_tau0_mediumRNN_tracktwoMVA_03dRAB_L12cTAU20M_4DR32-eTAU30eTAU20-jJ55:
   eventCount: 0
   stepCounts:
@@ -10183,10 +13737,10 @@ HLT_tau0_mediumRNN_tracktwoMVA_tau0_mediumRNN_tracktwoMVA_03dRAB_L12cTAU20M_4DR3
     2: 1
     3: 1
   stepFeatures:
-    0: 4
-    1: 4
-    2: 4
-    3: 4
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau0_mediumRNN_tracktwoMVA_tau0_mediumRNN_tracktwoMVA_03dRAB_L14jJ30p0ETA24_0DETA24-eTAU30eTAU12:
   eventCount: 0
 HLT_tau0_mediumRNN_tracktwoMVA_tau0_mediumRNN_tracktwoMVA_03dRAB_L14jJ30p0ETA24_0DETA24_10DPHI99-eTAU30eTAU12:
@@ -10199,24 +13753,34 @@ HLT_tau0_mediumRNN_tracktwoMVA_tau0_mediumRNN_tracktwoMVA_03dRAB_L1TAU20IM_2TAU1
   eventCount: 0
 HLT_tau0_mediumRNN_tracktwoMVA_tau0_mediumRNN_tracktwoMVA_03dRAB_L1cTAU30M_2cTAU20M_DR-eTAU30eTAU20-jJ55:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau0_ptonly_L1TAU60:
-  eventCount: 2
+  eventCount: 3
   stepCounts:
-    0: 2
+    0: 3
   stepFeatures:
-    0: 2
+    0: 4
 HLT_tau0_ptonly_L1TAU8:
   eventCount: 19
   stepCounts:
     0: 19
   stepFeatures:
-    0: 33
+    0: 30
 HLT_tau0_ptonly_L1eTAU12:
-  eventCount: 16
+  eventCount: 15
   stepCounts:
-    0: 16
+    0: 15
   stepFeatures:
-    0: 30
+    0: 24
 HLT_tau0_ptonly_L1eTAU80:
   eventCount: 2
   stepCounts:
@@ -10225,12 +13789,28 @@ HLT_tau0_ptonly_L1eTAU80:
     0: 2
 HLT_tau100_mediumRNN_tracktwoLLP_tau80_mediumRNN_tracktwoLLP_03dRAB_L1TAU60_2TAU40:
   eventCount: 0
-  stepFeatures:
+  stepCounts:
     0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 4
+    1: 4
+    2: 4
+    3: 4
 HLT_tau100_mediumRNN_tracktwoLLP_tau80_mediumRNN_tracktwoLLP_03dRAB_L1eTAU80_2eTAU60:
   eventCount: 0
-  stepFeatures:
+  stepCounts:
     0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 HLT_tau160_idperf_trackLRT_L1TAU100:
   eventCount: 0
 HLT_tau160_idperf_trackLRT_L1eTAU140:
@@ -10249,46 +13829,52 @@ HLT_tau160_mediumRNN_tracktwoMVA_L1eTAU140:
   eventCount: 0
 HLT_tau160_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau160_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau160_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau160_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau160_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau160_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau160_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau160_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau160_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau160_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau160_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau160_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau160_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau160_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau160_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau160_perf_tracktwoMVA_L1TAU100:
   eventCount: 0
 HLT_tau160_perf_tracktwoMVA_L1eTAU140:
@@ -10303,46 +13889,52 @@ HLT_tau180_mediumRNN_tracktwoLLP_L1eTAU140:
   eventCount: 0
 HLT_tau180_mediumRNN_tracktwoLLP_probe_xe65_cell_xe100_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau180_mediumRNN_tracktwoLLP_probe_xe65_cell_xe100_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau180_mediumRNN_tracktwoLLP_probe_xe65_cell_xe100_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau180_mediumRNN_tracktwoLLP_probe_xe65_cell_xe100_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau180_mediumRNN_tracktwoLLP_probe_xe65_cell_xe100_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau180_mediumRNN_tracktwoLLP_probe_xe65_cell_xe90_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau180_mediumRNN_tracktwoLLP_probe_xe65_cell_xe90_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau180_mediumRNN_tracktwoLLP_probe_xe65_cell_xe90_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau180_mediumRNN_tracktwoLLP_probe_xe65_cell_xe90_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau180_mediumRNN_tracktwoLLP_probe_xe65_cell_xe90_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau180_mediumRNN_tracktwoLLP_probe_xe75_cell_xe100_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau180_mediumRNN_tracktwoLLP_probe_xe75_cell_xe100_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau180_mediumRNN_tracktwoLLP_probe_xe75_cell_xe100_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau180_mediumRNN_tracktwoLLP_probe_xe75_cell_xe100_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau180_mediumRNN_tracktwoLLP_probe_xe75_cell_xe100_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau180_tightRNN_tracktwoLLP_L1TAU100:
   eventCount: 0
 HLT_tau180_tightRNN_tracktwoLLP_L1eTAU140:
@@ -10360,19 +13952,19 @@ HLT_tau200_tightRNN_tracktwoLLP_L1TAU100:
 HLT_tau200_tightRNN_tracktwoLLP_L1eTAU140:
   eventCount: 0
 HLT_tau20_idperf_tracktwoMVA_L1TAU8:
-  eventCount: 15
+  eventCount: 17
   stepCounts:
-    0: 15
-    1: 15
-    2: 15
-    3: 15
-    4: 15
+    0: 17
+    1: 17
+    2: 17
+    3: 17
+    4: 17
   stepFeatures:
-    0: 26
-    1: 26
-    2: 26
-    3: 26
-    4: 26
+    0: 27
+    1: 27
+    2: 27
+    3: 27
+    4: 27
 HLT_tau20_idperf_tracktwoMVA_L1eTAU12:
   eventCount: 15
   stepCounts:
@@ -10382,133 +13974,213 @@ HLT_tau20_idperf_tracktwoMVA_L1eTAU12:
     3: 15
     4: 15
   stepFeatures:
-    0: 27
-    1: 27
-    2: 27
-    3: 27
-    4: 27
+    0: 22
+    1: 22
+    2: 22
+    3: 22
+    4: 22
 HLT_tau20_mediumRNN_tracktwoMVA_L1RD0_FILLED:
-  eventCount: 4
+  eventCount: 6
   stepCounts:
     0: 15
     1: 15
     2: 15
     3: 15
-    4: 4
+    4: 6
+  stepFeatures:
+    0: 22
+    1: 22
+    2: 22
+    3: 22
+    4: 6
+HLT_tau20_mediumRNN_tracktwoMVA_L1TAU8:
+  eventCount: 8
+  stepCounts:
+    0: 17
+    1: 17
+    2: 17
+    3: 17
+    4: 8
   stepFeatures:
     0: 27
     1: 27
     2: 27
     3: 27
-    4: 4
-HLT_tau20_mediumRNN_tracktwoMVA_L1TAU8:
-  eventCount: 5
-  stepCounts:
-    0: 15
-    1: 15
-    2: 15
-    3: 15
-    4: 5
-  stepFeatures:
-    0: 26
-    1: 26
-    2: 26
-    3: 26
-    4: 5
+    4: 8
 HLT_tau20_mediumRNN_tracktwoMVA_L1eTAU12:
-  eventCount: 4
+  eventCount: 6
   stepCounts:
     0: 15
     1: 15
     2: 15
     3: 15
-    4: 4
+    4: 6
   stepFeatures:
-    0: 27
-    1: 27
-    2: 27
-    3: 27
-    4: 4
+    0: 22
+    1: 22
+    2: 22
+    3: 22
+    4: 6
 ? HLT_tau20_mediumRNN_tracktwoMVA_j65c_020jvt_j40c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn177_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau20_mediumRNN_tracktwoMVA_j65c_020jvt_j40c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau20_mediumRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn170_pf_ftf_presel3c20XX1c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau20_mediumRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn177_pf_ftf_presel3c20XX1c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau20_mediumRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn177_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau20_mediumRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_presel3c20XX1c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau20_mediumRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 HLT_tau20_mediumRNN_tracktwoMVA_probe_j110_pf_ftf_preselj80_03dRAB_L1J30:
   eventCount: 0
   stepCounts:
-    0: 4
+    0: 7
+    1: 4
+    2: 4
+    3: 4
+    4: 4
+    5: 4
   stepFeatures:
-    0: 4
+    0: 7
+    1: 5
+    2: 7
+    3: 7
+    4: 7
+    5: 7
 HLT_tau20_mediumRNN_tracktwoMVA_probe_j110_pf_ftf_preselj80_03dRAB_L1jJ60:
   eventCount: 0
   stepCounts:
-    0: 5
-    1: 1
-    2: 1
-    3: 1
-    4: 1
-    5: 1
+    0: 6
+    1: 4
+    2: 4
+    3: 4
+    4: 4
+    5: 4
   stepFeatures:
-    0: 5
-    1: 1
-    2: 3
-    3: 3
-    4: 3
-    5: 3
+    0: 6
+    1: 5
+    2: 7
+    3: 7
+    4: 7
+    5: 7
 HLT_tau20_mediumRNN_tracktwoMVA_probe_j175_pf_ftf_preselj140_03dRAB_L1J50:
   eventCount: 0
 HLT_tau20_mediumRNN_tracktwoMVA_probe_j175_pf_ftf_preselj140_03dRAB_L1jJ90:
   eventCount: 0
 HLT_tau20_mediumRNN_tracktwoMVA_probe_j25_pf_ftf_03dRAB_L1RD0_FILLED:
-  eventCount: 3
+  eventCount: 2
   stepCounts:
-    0: 16
-    1: 16
+    0: 17
+    1: 15
     2: 15
     3: 15
     4: 15
     5: 15
-    6: 3
+    6: 2
   stepFeatures:
     0: 50
     1: 45
-    2: 27
-    3: 27
-    4: 27
-    5: 27
-    6: 4
+    2: 22
+    3: 22
+    4: 22
+    5: 22
+    6: 6
 HLT_tau20_mediumRNN_tracktwoMVA_probe_j260_pf_ftf_preselj200_03dRAB_L1J75:
   eventCount: 0
 HLT_tau20_mediumRNN_tracktwoMVA_probe_j260_pf_ftf_preselj200_03dRAB_L1jJ125:
   eventCount: 0
 HLT_tau20_mediumRNN_tracktwoMVA_probe_j35_pf_ftf_03dRAB_L1RD0_FILLED:
-  eventCount: 1
+  eventCount: 2
   stepCounts:
-    0: 16
+    0: 17
     1: 13
     2: 13
     3: 13
     4: 13
     5: 13
-    6: 1
+    6: 2
   stepFeatures:
     0: 50
-    1: 28
-    2: 24
-    3: 24
-    4: 24
-    5: 24
-    6: 3
+    1: 25
+    2: 20
+    3: 20
+    4: 20
+    5: 20
+    6: 4
 HLT_tau20_mediumRNN_tracktwoMVA_probe_j360_pf_ftf_preselj225_03dRAB_L1J100:
   eventCount: 0
 HLT_tau20_mediumRNN_tracktwoMVA_probe_j360_pf_ftf_preselj225_03dRAB_L1jJ160:
@@ -10522,79 +14194,85 @@ HLT_tau20_mediumRNN_tracktwoMVA_probe_j440_pf_ftf_preselj225_03dRAB_L1J100:
 HLT_tau20_mediumRNN_tracktwoMVA_probe_j440_pf_ftf_preselj225_03dRAB_L1jJ160:
   eventCount: 0
 HLT_tau20_mediumRNN_tracktwoMVA_probe_j45_pf_ftf_preselj20_03dRAB_L1J15:
-  eventCount: 2
+  eventCount: 3
   stepCounts:
-    0: 13
-    1: 10
-    2: 10
-    3: 10
-    4: 10
-    5: 10
-    6: 2
+    0: 14
+    1: 12
+    2: 12
+    3: 12
+    4: 12
+    5: 12
+    6: 3
   stepFeatures:
     0: 14
-    1: 22
-    2: 20
-    3: 20
-    4: 20
-    5: 20
+    1: 20
+    2: 21
+    3: 21
+    4: 21
+    5: 21
     6: 3
 HLT_tau20_mediumRNN_tracktwoMVA_probe_j45_pf_ftf_preselj20_03dRAB_L1jJ40:
-  eventCount: 1
+  eventCount: 2
   stepCounts:
-    0: 15
+    0: 13
     1: 11
     2: 11
     3: 11
     4: 11
     5: 11
-    6: 1
+    6: 2
   stepFeatures:
-    0: 15
-    1: 23
-    2: 21
-    3: 21
-    4: 21
-    5: 21
+    0: 13
+    1: 19
+    2: 18
+    3: 18
+    4: 18
+    5: 18
     6: 2
 HLT_tau20_mediumRNN_tracktwoMVA_probe_j60_pf_ftf_preselj50_03dRAB_L1J20:
-  eventCount: 1
+  eventCount: 3
   stepCounts:
-    0: 11
-    1: 6
-    2: 6
-    3: 6
-    4: 6
-    5: 6
-    6: 1
-  stepFeatures:
-    0: 11
+    0: 12
     1: 10
-    2: 12
-    3: 12
-    4: 12
-    5: 12
-    6: 1
+    2: 10
+    3: 10
+    4: 10
+    5: 10
+    6: 3
+  stepFeatures:
+    0: 12
+    1: 16
+    2: 18
+    3: 18
+    4: 18
+    5: 18
+    6: 3
 HLT_tau20_mediumRNN_tracktwoMVA_probe_j60_pf_ftf_preselj50_03dRAB_L1jJ50:
-  eventCount: 0
+  eventCount: 2
   stepCounts:
-    0: 11
-    1: 6
-    2: 6
-    3: 6
-    4: 6
-    5: 6
-  stepFeatures:
-    0: 11
+    0: 12
     1: 10
-    2: 13
-    3: 13
-    4: 13
-    5: 13
+    2: 10
+    3: 10
+    4: 10
+    5: 10
+    6: 2
+  stepFeatures:
+    0: 12
+    1: 16
+    2: 17
+    3: 17
+    4: 17
+    5: 17
+    6: 2
 ? HLT_tau20_mediumRNN_tracktwoMVA_probe_j65c_020jvt_j40c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn177_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
 ? HLT_tau20_mediumRNN_tracktwoMVA_probe_j65c_020jvt_j40c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 5
 ? HLT_tau20_mediumRNN_tracktwoMVA_probe_j65c_020jvt_j40c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
 ? HLT_tau20_mediumRNN_tracktwoMVA_probe_j65c_020jvt_j40c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_preselZ116XX3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
@@ -10606,153 +14284,213 @@ HLT_tau20_mediumRNN_tracktwoMVA_probe_j60_pf_ftf_preselj50_03dRAB_L1jJ50:
 ? HLT_tau20_mediumRNN_tracktwoMVA_probe_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
 HLT_tau20_mediumRNN_tracktwoMVA_probe_j85_pf_ftf_preselj50_03dRAB_L1J20:
-  eventCount: 1
+  eventCount: 0
   stepCounts:
-    0: 11
-    1: 4
-    2: 4
-    3: 4
-    4: 4
-    5: 4
-    6: 1
+    0: 12
+    1: 6
+    2: 6
+    3: 6
+    4: 6
+    5: 6
   stepFeatures:
-    0: 11
-    1: 4
-    2: 8
-    3: 8
-    4: 8
-    5: 8
-    6: 1
+    0: 12
+    1: 7
+    2: 10
+    3: 10
+    4: 10
+    5: 10
 HLT_tau20_mediumRNN_tracktwoMVA_probe_j85_pf_ftf_preselj50_03dRAB_L1jJ50:
   eventCount: 0
   stepCounts:
-    0: 11
-    1: 4
-    2: 4
-    3: 4
-    4: 4
-    5: 4
+    0: 12
+    1: 6
+    2: 6
+    3: 6
+    4: 6
+    5: 6
   stepFeatures:
-    0: 11
-    1: 4
-    2: 9
-    3: 9
-    4: 9
-    5: 9
+    0: 12
+    1: 7
+    2: 11
+    3: 11
+    4: 11
+    5: 11
 HLT_tau20_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau20_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau20_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau20_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau20_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau20_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau20_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau20_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau20_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau20_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau20_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau20_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau20_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau20_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau20_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau20_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau20_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau20_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau20_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_02dRAB10_L1cTAU20M_DR-eTAU20eTAU12-jJ40:
   eventCount: 0
-  stepCounts:
-    0: 1
-    1: 1
-    2: 1
-    3: 1
-  stepFeatures:
-    0: 5
-    1: 5
-    2: 5
-    3: 5
 HLT_tau20_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB10_L1cTAU20M_DR-eTAU20eTAU12-jJ40:
   eventCount: 0
-  stepCounts:
-    0: 1
-    1: 1
-    2: 1
-    3: 1
-  stepFeatures:
-    0: 5
-    1: 5
-    2: 5
-    3: 5
 HLT_tau20_perf_tracktwoMVA_L1TAU8:
   eventCount: 14
   stepCounts:
-    0: 15
-    1: 15
-    2: 15
-    3: 15
+    0: 17
+    1: 17
+    2: 17
+    3: 17
     4: 14
   stepFeatures:
-    0: 26
-    1: 26
-    2: 26
-    3: 26
-    4: 21
+    0: 27
+    1: 27
+    2: 27
+    3: 27
+    4: 15
 HLT_tau20_perf_tracktwoMVA_L1eTAU12:
-  eventCount: 14
+  eventCount: 11
   stepCounts:
     0: 15
     1: 15
     2: 15
     3: 15
-    4: 14
+    4: 11
   stepFeatures:
-    0: 27
-    1: 27
-    2: 27
-    3: 27
-    4: 22
+    0: 22
+    1: 22
+    2: 22
+    3: 22
+    4: 13
 ? HLT_tau20_tightRNN_tracktwoMVA_j65c_020jvt_j40c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn177_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau20_tightRNN_tracktwoMVA_j65c_020jvt_j40c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau20_tightRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn170_pf_ftf_presel3c20XX1c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau20_tightRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn177_pf_ftf_presel3c20XX1c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau20_tightRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn177_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau20_tightRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_presel3c20XX1c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau20_tightRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau20_tightRNN_tracktwoMVA_probe_j65c_020jvt_j40c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn177_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
 ? HLT_tau20_tightRNN_tracktwoMVA_probe_j65c_020jvt_j40c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
@@ -10762,25 +14500,25 @@ HLT_tau20_perf_tracktwoMVA_L1eTAU12:
 ? HLT_tau20_tightRNN_tracktwoMVA_probe_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
 HLT_tau25_idperf_trackLRT_L1TAU12IM:
-  eventCount: 10
+  eventCount: 12
   stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 10
+    0: 12
+    1: 12
+    2: 12
+    3: 12
   stepFeatures:
     0: 14
     1: 14
     2: 14
     3: 14
 HLT_tau25_idperf_tracktwoLLP_L1TAU12IM:
-  eventCount: 10
+  eventCount: 12
   stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 10
-    4: 10
+    0: 12
+    1: 12
+    2: 12
+    3: 12
+    4: 12
   stepFeatures:
     0: 14
     1: 14
@@ -10788,13 +14526,13 @@ HLT_tau25_idperf_tracktwoLLP_L1TAU12IM:
     3: 14
     4: 14
 HLT_tau25_idperf_tracktwoMVA_L1TAU12IM:
-  eventCount: 10
+  eventCount: 12
   stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 10
-    4: 10
+    0: 12
+    1: 12
+    2: 12
+    3: 12
+    4: 12
   stepFeatures:
     0: 14
     1: 14
@@ -10802,144 +14540,144 @@ HLT_tau25_idperf_tracktwoMVA_L1TAU12IM:
     3: 14
     4: 14
 HLT_tau25_idperf_tracktwoMVA_L1cTAU20M:
-  eventCount: 10
-  stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 10
-    4: 10
-  stepFeatures:
-    0: 15
-    1: 15
-    2: 15
-    3: 15
-    4: 15
-HLT_tau25_idperf_tracktwoMVA_L1eTAU20:
-  eventCount: 10
+  eventCount: 11
   stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 10
-    4: 10
+    0: 11
+    1: 11
+    2: 11
+    3: 11
+    4: 11
   stepFeatures:
     0: 16
     1: 16
     2: 16
     3: 16
     4: 16
+HLT_tau25_idperf_tracktwoMVA_L1eTAU20:
+  eventCount: 12
+  stepCounts:
+    0: 12
+    1: 12
+    2: 12
+    3: 12
+    4: 12
+  stepFeatures:
+    0: 18
+    1: 18
+    2: 18
+    3: 18
+    4: 18
 HLT_tau25_idperf_tracktwoMVA_L1eTAU20M:
-  eventCount: 10
+  eventCount: 11
   stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 10
-    4: 10
+    0: 11
+    1: 11
+    2: 11
+    3: 11
+    4: 11
   stepFeatures:
-    0: 16
-    1: 16
-    2: 16
-    3: 16
-    4: 16
+    0: 17
+    1: 17
+    2: 17
+    3: 17
+    4: 17
 HLT_tau25_idperf_tracktwoMVA_L1jTAU20:
-  eventCount: 12
+  eventCount: 13
   stepCounts:
-    0: 12
-    1: 12
-    2: 12
-    3: 12
-    4: 12
+    0: 13
+    1: 13
+    2: 13
+    3: 13
+    4: 13
   stepFeatures:
-    0: 19
-    1: 19
-    2: 19
-    3: 19
-    4: 19
+    0: 22
+    1: 22
+    2: 22
+    3: 22
+    4: 22
 HLT_tau25_looseRNN_trackLRT_L1TAU12IM:
-  eventCount: 5
+  eventCount: 8
   stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 5
+    0: 12
+    1: 12
+    2: 12
+    3: 8
   stepFeatures:
     0: 14
     1: 14
     2: 14
-    3: 5
+    3: 9
 HLT_tau25_looseRNN_tracktwoLLP_L1TAU12IM:
-  eventCount: 5
+  eventCount: 7
   stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 10
-    4: 5
+    0: 12
+    1: 12
+    2: 12
+    3: 12
+    4: 7
   stepFeatures:
     0: 14
     1: 14
     2: 14
     3: 14
-    4: 5
+    4: 7
 HLT_tau25_looseRNN_tracktwoMVA_L1TAU12IM:
-  eventCount: 4
+  eventCount: 6
   stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 10
-    4: 4
+    0: 12
+    1: 12
+    2: 12
+    3: 12
+    4: 6
   stepFeatures:
     0: 14
     1: 14
     2: 14
     3: 14
-    4: 4
+    4: 6
 HLT_tau25_mediumRNN_trackLRT_L1TAU12IM:
-  eventCount: 4
+  eventCount: 6
   stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 4
+    0: 12
+    1: 12
+    2: 12
+    3: 6
   stepFeatures:
     0: 14
     1: 14
     2: 14
-    3: 4
+    3: 6
 HLT_tau25_mediumRNN_trackLRT_L1cTAU20M:
-  eventCount: 4
-  stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 4
-  stepFeatures:
-    0: 15
-    1: 15
-    2: 15
-    3: 4
-HLT_tau25_mediumRNN_trackLRT_L1eTAU20:
-  eventCount: 4
+  eventCount: 7
   stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 4
+    0: 11
+    1: 11
+    2: 11
+    3: 7
   stepFeatures:
     0: 16
     1: 16
     2: 16
-    3: 4
+    3: 7
+HLT_tau25_mediumRNN_trackLRT_L1eTAU20:
+  eventCount: 7
+  stepCounts:
+    0: 12
+    1: 12
+    2: 12
+    3: 7
+  stepFeatures:
+    0: 18
+    1: 18
+    2: 18
+    3: 7
 HLT_tau25_mediumRNN_tracktwoLLP_L1TAU12IM:
   eventCount: 5
   stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 10
+    0: 12
+    1: 12
+    2: 12
+    3: 12
     4: 5
   stepFeatures:
     0: 14
@@ -10950,52 +14688,38 @@ HLT_tau25_mediumRNN_tracktwoLLP_L1TAU12IM:
 HLT_tau25_mediumRNN_tracktwoLLP_L1cTAU20M:
   eventCount: 5
   stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 10
+    0: 11
+    1: 11
+    2: 11
+    3: 11
     4: 5
   stepFeatures:
-    0: 15
-    1: 15
-    2: 15
-    3: 15
+    0: 16
+    1: 16
+    2: 16
+    3: 16
     4: 5
 HLT_tau25_mediumRNN_tracktwoMVA_L1TAU12IM:
-  eventCount: 3
+  eventCount: 4
   stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 10
-    4: 3
+    0: 12
+    1: 12
+    2: 12
+    3: 12
+    4: 4
   stepFeatures:
     0: 14
     1: 14
     2: 14
     3: 14
-    4: 3
+    4: 4
 HLT_tau25_mediumRNN_tracktwoMVA_L1cTAU20M:
   eventCount: 3
   stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 10
-    4: 3
-  stepFeatures:
-    0: 15
-    1: 15
-    2: 15
-    3: 15
-    4: 3
-HLT_tau25_mediumRNN_tracktwoMVA_L1eTAU20:
-  eventCount: 3
-  stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 10
+    0: 11
+    1: 11
+    2: 11
+    3: 11
     4: 3
   stepFeatures:
     0: 16
@@ -11003,48 +14727,132 @@ HLT_tau25_mediumRNN_tracktwoMVA_L1eTAU20:
     2: 16
     3: 16
     4: 3
+HLT_tau25_mediumRNN_tracktwoMVA_L1eTAU20:
+  eventCount: 4
+  stepCounts:
+    0: 12
+    1: 12
+    2: 12
+    3: 12
+    4: 4
+  stepFeatures:
+    0: 18
+    1: 18
+    2: 18
+    3: 18
+    4: 4
 HLT_tau25_mediumRNN_tracktwoMVA_L1eTAU20M:
   eventCount: 3
   stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 10
+    0: 11
+    1: 11
+    2: 11
+    3: 11
     4: 3
   stepFeatures:
-    0: 16
-    1: 16
-    2: 16
-    3: 16
+    0: 17
+    1: 17
+    2: 17
+    3: 17
     4: 3
 HLT_tau25_mediumRNN_tracktwoMVA_L1jTAU20:
-  eventCount: 3
+  eventCount: 4
   stepCounts:
-    0: 12
-    1: 12
-    2: 12
-    3: 12
-    4: 3
+    0: 13
+    1: 13
+    2: 13
+    3: 13
+    4: 4
   stepFeatures:
-    0: 19
-    1: 19
-    2: 19
-    3: 19
-    4: 3
+    0: 22
+    1: 22
+    2: 22
+    3: 22
+    4: 4
 ? HLT_tau25_mediumRNN_tracktwoMVA_j65c_020jvt_j40c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn177_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau25_mediumRNN_tracktwoMVA_j65c_020jvt_j40c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau25_mediumRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn170_pf_ftf_presel3c20XX1c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau25_mediumRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn177_pf_ftf_presel3c20XX1c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau25_mediumRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn177_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau25_mediumRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_presel3c20XX1c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau25_mediumRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau25_mediumRNN_tracktwoMVA_probe_L1cTAU12M_j65c_020jvt_j40c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
 ? HLT_tau25_mediumRNN_tracktwoMVA_probe_L1eTAU12_j65c_020jvt_j40c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_presel3c20XX1c20bgtwo85_L1jJ85p0ETA21_3jJ40p0ETA25
@@ -11075,68 +14883,90 @@ HLT_tau25_mediumRNN_tracktwoMVA_L1jTAU20:
 : eventCount: 0
 HLT_tau25_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau25_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau25_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau25_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau25_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau25_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau25_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau25_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau25_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau25_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau25_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau25_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau25_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau25_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau25_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau25_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau25_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau25_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau25_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_02dRAB10_L1cTAU20M_DR-eTAU20eTAU12-jJ40:
   eventCount: 0
+HLT_tau25_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB30_L1DR-TAU20ITAU12I-J25:
+  eventCount: 0
   stepCounts:
     0: 1
     1: 1
     2: 1
     3: 1
   stepFeatures:
-    0: 4
-    1: 4
-    2: 4
-    3: 4
-HLT_tau25_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB30_L1DR-TAU20ITAU12I-J25:
-  eventCount: 0
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau25_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB30_L1cTAU30M_2cTAU20M_DR-eTAU30eTAU20-jJ55:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 ? HLT_tau25_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB_4j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_L1TAU20IM_2TAU12IM_4J12p0ETA25
 : eventCount: 0
 HLT_tau25_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB_L1TAU20IM_2TAU12IM_4J12p0ETA25:
@@ -11149,99 +14979,119 @@ HLT_tau25_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB_j70_j50a_j0_D
   eventCount: 0
 HLT_tau25_mediumRNN_tracktwoMVA_tau25_mediumRNN_tracktwoMVA_03dRAB30_L1DR-TAU20ITAU12I-J25:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau25_mediumRNN_tracktwoMVA_tau25_mediumRNN_tracktwoMVA_03dRAB30_L1cTAU30M_2cTAU20M_DR-eTAU30eTAU20-jJ55:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau25_mediumRNN_tracktwoMVA_tau25_mediumRNN_tracktwoMVA_03dRAB_L1TAU20IM_2TAU12IM_4J12p0ETA25:
   eventCount: 0
 HLT_tau25_perf_tracktwoMVA_L1TAU12IM:
-  eventCount: 9
+  eventCount: 8
   stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 10
-    4: 9
+    0: 12
+    1: 12
+    2: 12
+    3: 12
+    4: 8
   stepFeatures:
     0: 14
     1: 14
     2: 14
     3: 14
-    4: 11
+    4: 9
 HLT_tau25_perf_tracktwoMVA_L1cTAU20M:
-  eventCount: 9
+  eventCount: 8
   stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 10
-    4: 9
+    0: 11
+    1: 11
+    2: 11
+    3: 11
+    4: 8
   stepFeatures:
-    0: 15
-    1: 15
-    2: 15
-    3: 15
-    4: 11
+    0: 16
+    1: 16
+    2: 16
+    3: 16
+    4: 9
 HLT_tau25_perf_tracktwoMVA_L1eTAU20:
   eventCount: 9
   stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 10
+    0: 12
+    1: 12
+    2: 12
+    3: 12
     4: 9
   stepFeatures:
-    0: 16
-    1: 16
-    2: 16
-    3: 16
-    4: 12
+    0: 18
+    1: 18
+    2: 18
+    3: 18
+    4: 10
 HLT_tau25_perf_tracktwoMVA_L1eTAU20M:
+  eventCount: 8
+  stepCounts:
+    0: 11
+    1: 11
+    2: 11
+    3: 11
+    4: 8
+  stepFeatures:
+    0: 17
+    1: 17
+    2: 17
+    3: 17
+    4: 9
+HLT_tau25_perf_tracktwoMVA_L1jTAU20:
   eventCount: 9
   stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 10
+    0: 13
+    1: 13
+    2: 13
+    3: 13
     4: 9
   stepFeatures:
-    0: 16
-    1: 16
-    2: 16
-    3: 16
-    4: 12
-HLT_tau25_perf_tracktwoMVA_L1jTAU20:
-  eventCount: 11
+    0: 22
+    1: 22
+    2: 22
+    3: 22
+    4: 11
+HLT_tau25_tightRNN_trackLRT_L1TAU12IM:
+  eventCount: 6
   stepCounts:
     0: 12
     1: 12
     2: 12
-    3: 12
-    4: 11
-  stepFeatures:
-    0: 19
-    1: 19
-    2: 19
-    3: 19
-    4: 15
-HLT_tau25_tightRNN_trackLRT_L1TAU12IM:
-  eventCount: 3
-  stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 3
+    3: 6
   stepFeatures:
     0: 14
     1: 14
     2: 14
-    3: 3
+    3: 6
 HLT_tau25_tightRNN_tracktwoLLP_L1TAU12IM:
   eventCount: 5
   stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 10
+    0: 12
+    1: 12
+    2: 12
+    3: 12
     4: 5
   stepFeatures:
     0: 14
@@ -11250,33 +15100,103 @@ HLT_tau25_tightRNN_tracktwoLLP_L1TAU12IM:
     3: 14
     4: 5
 HLT_tau25_tightRNN_tracktwoMVA_L1TAU12IM:
-  eventCount: 2
+  eventCount: 3
   stepCounts:
-    0: 10
-    1: 10
-    2: 10
-    3: 10
-    4: 2
+    0: 12
+    1: 12
+    2: 12
+    3: 12
+    4: 3
   stepFeatures:
     0: 14
     1: 14
     2: 14
     3: 14
-    4: 2
+    4: 3
 ? HLT_tau25_tightRNN_tracktwoMVA_j65c_020jvt_j40c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn177_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau25_tightRNN_tracktwoMVA_j65c_020jvt_j40c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau25_tightRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn170_pf_ftf_presel3c20XX1c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau25_tightRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn177_pf_ftf_presel3c20XX1c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau25_tightRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn177_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau25_tightRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_presel3c20XX1c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau25_tightRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau25_tightRNN_tracktwoMVA_probe_j65c_020jvt_j40c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn177_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
 ? HLT_tau25_tightRNN_tracktwoMVA_probe_j65c_020jvt_j40c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
@@ -11286,29 +15206,143 @@ HLT_tau25_tightRNN_tracktwoMVA_L1TAU12IM:
 ? HLT_tau25_tightRNN_tracktwoMVA_probe_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_presel3c20XX1c20bg85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
 HLT_tau30_idperf_tracktwoMVA_tau20_idperf_tracktwoMVA_03dRAB30_L1DR-TAU20ITAU12I-J25:
-  eventCount: 0
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
+    4: 6
 HLT_tau30_idperf_tracktwoMVA_tau20_idperf_tracktwoMVA_03dRAB30_L1cTAU30M_2cTAU20M_DR-eTAU30eTAU20-jJ55:
-  eventCount: 0
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+    4: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
+    4: 6
 HLT_tau30_idperf_tracktwoMVA_tau20_idperf_tracktwoMVA_03dRAB_L1TAU20IM_2TAU12IM_4J12p0ETA25:
   eventCount: 0
 ? HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB30_4j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_L1DR-TAU20ITAU12I-J25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 ? HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB30_4j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_L1cTAU30M_2cTAU20M_DR-eTAU30eTAU20-jJ55
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB30_L1DR-TAU20ITAU12I:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB30_L1DR-TAU20ITAU12I-J25:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB30_L1cTAU30M_2cTAU20M_DR-eTAU30eTAU20:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB30_L1cTAU30M_2cTAU20M_DR-eTAU30eTAU20-jJ55:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB30_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB30_j20c_020jvt_bgn185_pf_ftf_L1DR-TAU20ITAU12I-J25:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 ? HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB30_j20c_020jvt_bgn185_pf_ftf_L1cTAU30M_2cTAU20M_DR-eTAU30eTAU20-jJ55
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB_L12cTAU20M_10DR32-eTAU30eTAU20-jJ55:
   eventCount: 0
   stepCounts:
@@ -11317,12 +15351,22 @@ HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB_L12cTAU20M_10
     2: 1
     3: 1
   stepFeatures:
-    0: 4
-    1: 4
-    2: 4
-    3: 4
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB_L12cTAU20M_4DR28-eTAU30eTAU20-jJ55:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB_L12cTAU20M_4DR32-eTAU30eTAU20-jJ55:
   eventCount: 0
   stepCounts:
@@ -11331,10 +15375,10 @@ HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB_L12cTAU20M_4D
     2: 1
     3: 1
   stepFeatures:
-    0: 4
-    1: 4
-    2: 4
-    3: 4
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB_L14jJ30p0ETA24_0DETA24-eTAU30eTAU12:
   eventCount: 0
 HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB_L14jJ30p0ETA24_0DETA24_10DPHI99-eTAU30eTAU12:
@@ -11346,16 +15390,15 @@ HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB_L14jJ30p0ETA2
 HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB_L1TAU20IM_2TAU12IM:
   eventCount: 0
   stepCounts:
-    0: 5
-    1: 5
-    2: 5
-    3: 5
+    0: 1
+    1: 1
+    2: 1
+    3: 1
   stepFeatures:
-    0: 19
-    1: 19
-    2: 19
-    3: 19
-    4: 1
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB_L1TAU20IM_2TAU12IM_4J12p0ETA25:
   eventCount: 0
 HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB_L1cTAU20M_cTAU12M_4jJ30p0ETA24_0DETA24-eTAU30eTAU12:
@@ -11369,33 +15412,64 @@ HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB_L1cTAU20M_cTA
 HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB_L1cTAU30M_2cTAU20M:
   eventCount: 0
   stepCounts:
-    0: 5
-    1: 5
-    2: 5
-    3: 5
+    0: 4
+    1: 4
+    2: 4
+    3: 4
   stepFeatures:
-    0: 18
-    1: 18
-    2: 18
-    3: 18
+    0: 17
+    1: 17
+    2: 17
+    3: 17
+    4: 2
 HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB_L1cTAU30M_2cTAU20M_4jJ30p0ETA25:
   eventCount: 0
 HLT_tau30_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB_L1jJ85p0ETA21_3jJ40p0ETA25:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau30_mediumRNN_tracktwoMVA_tau25_mediumRNN_tracktwoMVA_03dRAB30_L1DR-TAU20ITAU12I-J25:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau30_mediumRNN_tracktwoMVA_tau25_mediumRNN_tracktwoMVA_03dRAB30_L1cTAU30M_2cTAU20M_DR-eTAU30eTAU20-jJ55:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau30_mediumRNN_tracktwoMVA_tau25_mediumRNN_tracktwoMVA_03dRAB_L1TAU20IM_2TAU12IM_4J12p0ETA25:
   eventCount: 0
 HLT_tau35_idperf_tracktwoMVA_L1TAU20IM:
-  eventCount: 8
+  eventCount: 10
   stepCounts:
-    0: 8
-    1: 8
-    2: 8
-    3: 8
-    4: 8
+    0: 10
+    1: 10
+    2: 10
+    3: 10
+    4: 10
   stepFeatures:
     0: 12
     1: 12
@@ -11403,48 +15477,6 @@ HLT_tau35_idperf_tracktwoMVA_L1TAU20IM:
     3: 12
     4: 12
 HLT_tau35_idperf_tracktwoMVA_L1cTAU30M:
-  eventCount: 8
-  stepCounts:
-    0: 8
-    1: 8
-    2: 8
-    3: 8
-    4: 8
-  stepFeatures:
-    0: 11
-    1: 11
-    2: 11
-    3: 11
-    4: 11
-HLT_tau35_idperf_tracktwoMVA_L1eTAU30:
-  eventCount: 8
-  stepCounts:
-    0: 8
-    1: 8
-    2: 8
-    3: 8
-    4: 8
-  stepFeatures:
-    0: 12
-    1: 12
-    2: 12
-    3: 12
-    4: 12
-HLT_tau35_idperf_tracktwoMVA_L1jTAU30:
-  eventCount: 9
-  stepCounts:
-    0: 9
-    1: 9
-    2: 9
-    3: 9
-    4: 9
-  stepFeatures:
-    0: 14
-    1: 14
-    2: 14
-    3: 14
-    4: 14
-HLT_tau35_idperf_tracktwoMVA_L1jTAU30M:
   eventCount: 9
   stepCounts:
     0: 9
@@ -11458,346 +15490,572 @@ HLT_tau35_idperf_tracktwoMVA_L1jTAU30M:
     2: 13
     3: 13
     4: 13
+HLT_tau35_idperf_tracktwoMVA_L1eTAU30:
+  eventCount: 10
+  stepCounts:
+    0: 10
+    1: 10
+    2: 10
+    3: 10
+    4: 10
+  stepFeatures:
+    0: 15
+    1: 15
+    2: 15
+    3: 15
+    4: 15
+HLT_tau35_idperf_tracktwoMVA_L1jTAU30:
+  eventCount: 10
+  stepCounts:
+    0: 10
+    1: 10
+    2: 10
+    3: 10
+    4: 10
+  stepFeatures:
+    0: 15
+    1: 15
+    2: 15
+    3: 15
+    4: 15
+HLT_tau35_idperf_tracktwoMVA_L1jTAU30M:
+  eventCount: 10
+  stepCounts:
+    0: 10
+    1: 10
+    2: 10
+    3: 10
+    4: 10
+  stepFeatures:
+    0: 15
+    1: 15
+    2: 15
+    3: 15
+    4: 15
 HLT_tau35_looseRNN_tracktwoMVA_L1TAU20IM:
-  eventCount: 3
+  eventCount: 4
   stepCounts:
-    0: 8
-    1: 8
-    2: 8
-    3: 8
-    4: 3
+    0: 10
+    1: 10
+    2: 10
+    3: 10
+    4: 4
   stepFeatures:
     0: 12
     1: 12
     2: 12
     3: 12
-    4: 3
+    4: 4
 HLT_tau35_mediumRNN_tracktwoMVA_L1TAU20IM:
-  eventCount: 2
+  eventCount: 3
   stepCounts:
-    0: 8
-    1: 8
-    2: 8
-    3: 8
-    4: 2
+    0: 10
+    1: 10
+    2: 10
+    3: 10
+    4: 3
   stepFeatures:
     0: 12
     1: 12
     2: 12
     3: 12
-    4: 2
+    4: 3
 HLT_tau35_mediumRNN_tracktwoMVA_L1cTAU30M:
   eventCount: 2
   stepCounts:
-    0: 8
-    1: 8
-    2: 8
-    3: 8
+    0: 9
+    1: 9
+    2: 9
+    3: 9
     4: 2
   stepFeatures:
-    0: 11
-    1: 11
-    2: 11
-    3: 11
+    0: 13
+    1: 13
+    2: 13
+    3: 13
     4: 2
 HLT_tau35_mediumRNN_tracktwoMVA_L1eTAU30:
-  eventCount: 2
+  eventCount: 3
   stepCounts:
-    0: 8
-    1: 8
-    2: 8
-    3: 8
-    4: 2
+    0: 10
+    1: 10
+    2: 10
+    3: 10
+    4: 3
   stepFeatures:
-    0: 12
-    1: 12
-    2: 12
-    3: 12
-    4: 2
+    0: 15
+    1: 15
+    2: 15
+    3: 15
+    4: 3
 HLT_tau35_mediumRNN_tracktwoMVA_L1jTAU30:
-  eventCount: 2
+  eventCount: 3
   stepCounts:
-    0: 9
-    1: 9
-    2: 9
-    3: 9
-    4: 2
+    0: 10
+    1: 10
+    2: 10
+    3: 10
+    4: 3
   stepFeatures:
-    0: 14
-    1: 14
-    2: 14
-    3: 14
-    4: 2
+    0: 15
+    1: 15
+    2: 15
+    3: 15
+    4: 3
 HLT_tau35_mediumRNN_tracktwoMVA_L1jTAU30M:
-  eventCount: 2
+  eventCount: 3
   stepCounts:
-    0: 9
-    1: 9
-    2: 9
-    3: 9
-    4: 2
+    0: 10
+    1: 10
+    2: 10
+    3: 10
+    4: 3
   stepFeatures:
-    0: 13
-    1: 13
-    2: 13
-    3: 13
-    4: 2
+    0: 15
+    1: 15
+    2: 15
+    3: 15
+    4: 3
 ? HLT_tau35_mediumRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn170_pf_ftf_presel3c20XX1c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau35_mediumRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn177_pf_ftf_presel3c20XX1c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau35_mediumRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_presel3c20XX1c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 HLT_tau35_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau35_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau35_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau35_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau35_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau35_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau35_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau35_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau35_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau35_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau35_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau35_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau35_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau35_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau35_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau35_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau35_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau35_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau35_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB30_L1DR-TAU20ITAU12I-J25:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau35_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB30_L1cTAU30M_2cTAU20M_DR-eTAU30eTAU20-jJ55:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau35_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB_L1TAU20IM_2TAU12IM_4J12p0ETA25:
   eventCount: 0
 HLT_tau35_mediumRNN_tracktwoMVA_tau25_mediumRNN_tracktwoMVA_03dRAB30_L1DR-TAU20ITAU12I:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau35_mediumRNN_tracktwoMVA_tau25_mediumRNN_tracktwoMVA_03dRAB30_L1DR-TAU20ITAU12I-J25:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau35_mediumRNN_tracktwoMVA_tau25_mediumRNN_tracktwoMVA_03dRAB30_L1cTAU30M_2cTAU20M_DR-eTAU30MeTAU20M:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau35_mediumRNN_tracktwoMVA_tau25_mediumRNN_tracktwoMVA_03dRAB30_L1cTAU30M_2cTAU20M_DR-eTAU30MeTAU20M-jJ55:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau35_mediumRNN_tracktwoMVA_tau25_mediumRNN_tracktwoMVA_03dRAB30_L1cTAU30M_2cTAU20M_DR-eTAU30eTAU20:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau35_mediumRNN_tracktwoMVA_tau25_mediumRNN_tracktwoMVA_03dRAB30_L1cTAU30M_2cTAU20M_DR-eTAU30eTAU20-jJ55:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau35_mediumRNN_tracktwoMVA_tau25_mediumRNN_tracktwoMVA_03dRAB_L1TAU20IM_2TAU12IM:
   eventCount: 0
   stepCounts:
-    0: 4
-    1: 4
-    2: 4
-    3: 4
+    0: 1
+    1: 1
+    2: 1
+    3: 1
   stepFeatures:
-    0: 18
-    1: 16
-    2: 16
-    3: 16
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau35_mediumRNN_tracktwoMVA_tau25_mediumRNN_tracktwoMVA_03dRAB_L1TAU20IM_2TAU12IM_4J12p0ETA25:
   eventCount: 0
 HLT_tau35_mediumRNN_tracktwoMVA_tau25_mediumRNN_tracktwoMVA_03dRAB_L1cTAU30M_2cTAU20M:
   eventCount: 0
   stepCounts:
-    0: 4
-    1: 4
-    2: 4
-    3: 4
+    0: 3
+    1: 3
+    2: 3
+    3: 3
   stepFeatures:
-    0: 17
-    1: 15
-    2: 15
-    3: 15
+    0: 16
+    1: 14
+    2: 14
+    3: 14
 HLT_tau35_mediumRNN_tracktwoMVA_tau25_mediumRNN_tracktwoMVA_03dRAB_L1cTAU30M_2cTAU20M_4jJ30p0ETA25:
   eventCount: 0
 HLT_tau35_perf_tracktwoMVA_L1TAU20IM:
-  eventCount: 7
+  eventCount: 6
   stepCounts:
-    0: 8
-    1: 8
-    2: 8
-    3: 8
-    4: 7
+    0: 10
+    1: 10
+    2: 10
+    3: 10
+    4: 6
   stepFeatures:
     0: 12
     1: 12
     2: 12
     3: 12
-    4: 9
+    4: 7
 HLT_tau35_perf_tracktwoMVA_L1cTAU30M:
-  eventCount: 7
+  eventCount: 6
   stepCounts:
-    0: 8
-    1: 8
-    2: 8
-    3: 8
-    4: 7
+    0: 9
+    1: 9
+    2: 9
+    3: 9
+    4: 6
   stepFeatures:
-    0: 11
-    1: 11
-    2: 11
-    3: 11
-    4: 8
+    0: 13
+    1: 13
+    2: 13
+    3: 13
+    4: 7
 HLT_tau35_perf_tracktwoMVA_L1eTAU30:
   eventCount: 7
   stepCounts:
-    0: 8
-    1: 8
-    2: 8
-    3: 8
+    0: 10
+    1: 10
+    2: 10
+    3: 10
     4: 7
   stepFeatures:
-    0: 12
-    1: 12
-    2: 12
-    3: 12
-    4: 9
+    0: 15
+    1: 15
+    2: 15
+    3: 15
+    4: 8
 HLT_tau35_perf_tracktwoMVA_L1jTAU30:
-  eventCount: 8
+  eventCount: 7
   stepCounts:
-    0: 9
-    1: 9
-    2: 9
-    3: 9
-    4: 8
+    0: 10
+    1: 10
+    2: 10
+    3: 10
+    4: 7
   stepFeatures:
-    0: 14
-    1: 14
-    2: 14
-    3: 14
-    4: 11
+    0: 15
+    1: 15
+    2: 15
+    3: 15
+    4: 8
 HLT_tau35_perf_tracktwoMVA_L1jTAU30M:
-  eventCount: 8
+  eventCount: 7
   stepCounts:
-    0: 9
-    1: 9
-    2: 9
-    3: 9
-    4: 8
+    0: 10
+    1: 10
+    2: 10
+    3: 10
+    4: 7
   stepFeatures:
-    0: 13
-    1: 13
-    2: 13
-    3: 13
-    4: 10
+    0: 15
+    1: 15
+    2: 15
+    3: 15
+    4: 8
 HLT_tau35_tightRNN_tracktwoMVA_L1TAU20IM:
-  eventCount: 1
+  eventCount: 2
   stepCounts:
-    0: 8
-    1: 8
-    2: 8
-    3: 8
-    4: 1
+    0: 10
+    1: 10
+    2: 10
+    3: 10
+    4: 2
   stepFeatures:
     0: 12
     1: 12
     2: 12
     3: 12
-    4: 1
+    4: 2
 ? HLT_tau35_tightRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn170_pf_ftf_presel3c20XX1c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau35_tightRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn177_pf_ftf_presel3c20XX1c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 ? HLT_tau35_tightRNN_tracktwoMVA_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_SHARED_j20c_020jvt_bgn185_pf_ftf_presel3c20XX1c20b85_L1jJ85p0ETA21_3jJ40p0ETA25
 : eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 HLT_tau40_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau40_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau40_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau40_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau40_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau40_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau40_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau40_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau40_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau40_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau40_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau40_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau40_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau40_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau40_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau40_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau40_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau40_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau40_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB30_L1DR-TAU20ITAU12I-J25:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau40_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB30_L1cTAU30M_2cTAU20M_DR-eTAU30eTAU20-jJ55:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau40_mediumRNN_tracktwoMVA_tau20_mediumRNN_tracktwoMVA_03dRAB_L1TAU20IM_2TAU12IM_4J12p0ETA25:
   eventCount: 0
 HLT_tau40_mediumRNN_tracktwoMVA_tau35_mediumRNN_tracktwoMVA_03dRAB_L1TAU25IM_2TAU20IM:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 2
-    2: 2
-    3: 2
+    0: 1
+    1: 1
+    2: 1
+    3: 1
   stepFeatures:
-    0: 8
-    1: 8
-    2: 8
-    3: 8
+    0: 6
+    1: 6
+    2: 6
+    3: 6
 HLT_tau40_mediumRNN_tracktwoMVA_tau35_mediumRNN_tracktwoMVA_03dRAB_L1cTAU35M_2cTAU30M:
   eventCount: 0
   stepCounts:
@@ -11806,10 +16064,10 @@ HLT_tau40_mediumRNN_tracktwoMVA_tau35_mediumRNN_tracktwoMVA_03dRAB_L1cTAU35M_2cT
     2: 3
     3: 3
   stepFeatures:
-    0: 12
-    1: 12
-    2: 12
-    3: 12
+    0: 14
+    1: 14
+    2: 14
+    3: 14
 HLT_tau40_mediumRNN_tracktwoMVA_tau35_mediumRNN_tracktwoMVA_03dRAB_L1cTAU35M_2cTAU30M_2jJ55_3jJ50:
   eventCount: 0
   stepCounts:
@@ -11818,184 +16076,323 @@ HLT_tau40_mediumRNN_tracktwoMVA_tau35_mediumRNN_tracktwoMVA_03dRAB_L1cTAU35M_2cT
     2: 1
     3: 1
   stepFeatures:
+    0: 6
+    1: 6
+    2: 6
+    3: 6
+HLT_tau40_mediumRNN_tracktwoMVA_tau35_mediumRNN_tracktwoMVA_03dRAB_L1eTAU35M_2eTAU30M:
+  eventCount: 0
+  stepCounts:
     0: 4
     1: 4
     2: 4
     3: 4
-HLT_tau40_mediumRNN_tracktwoMVA_tau35_mediumRNN_tracktwoMVA_03dRAB_L1eTAU35M_2eTAU30M:
-  eventCount: 0
-  stepCounts:
-    0: 3
-    1: 3
-    2: 3
-    3: 3
   stepFeatures:
-    0: 12
-    1: 12
-    2: 12
-    3: 12
+    0: 17
+    1: 17
+    2: 17
+    3: 17
+    4: 2
 HLT_tau50_mediumRNN_tracktwoMVA_xe80_pfopufit_xe50_cell_L1XE50:
   eventCount: 0
+  stepCounts:
+    0: 2
+    1: 2
+    2: 2
+    3: 2
+  stepFeatures:
+    0: 2
+    1: 2
+    2: 2
+    3: 2
 HLT_tau50_mediumRNN_tracktwoMVA_xe80_pfopufit_xe50_cell_L1XE55:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
 HLT_tau50_mediumRNN_tracktwoMVA_xe80_pfopufit_xe50_cell_L1gXEJWOJ100:
   eventCount: 0
+  stepCounts:
+    0: 2
+    1: 2
+    2: 2
+    3: 2
+  stepFeatures:
+    0: 2
+    1: 2
+    2: 2
+    3: 2
 HLT_tau50_mediumRNN_tracktwoMVA_xe80_pfopufit_xe50_cell_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau50_mediumRNN_tracktwoMVA_xe80_pfopufit_xe50_cell_L1jXE100:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
 HLT_tau50_mediumRNN_tracktwoMVA_xe80_pfopufit_xe50_cell_L1jXE110:
   eventCount: 0
 HLT_tau50_mediumRNN_tracktwoMVA_xe80_tcpufit_xe50_cell_L1XE50:
   eventCount: 0
+  stepCounts:
+    0: 2
+    1: 2
+    2: 2
+    3: 2
+  stepFeatures:
+    0: 2
+    1: 2
+    2: 2
+    3: 2
 HLT_tau50_mediumRNN_tracktwoMVA_xe80_tcpufit_xe50_cell_L1XE55:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
 HLT_tau50_mediumRNN_tracktwoMVA_xe80_tcpufit_xe50_cell_L1gXEJWOJ100:
   eventCount: 0
+  stepCounts:
+    0: 2
+    1: 2
+    2: 2
+    3: 2
+  stepFeatures:
+    0: 2
+    1: 2
+    2: 2
+    3: 2
 HLT_tau50_mediumRNN_tracktwoMVA_xe80_tcpufit_xe50_cell_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau50_mediumRNN_tracktwoMVA_xe80_tcpufit_xe50_cell_L1jXE100:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
 HLT_tau50_mediumRNN_tracktwoMVA_xe80_tcpufit_xe50_cell_L1jXE110:
   eventCount: 0
 HLT_tau60_mediumRNN_tracktwoLLP_probe_xe65_cell_xe100_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau60_mediumRNN_tracktwoLLP_probe_xe65_cell_xe100_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau60_mediumRNN_tracktwoLLP_probe_xe65_cell_xe100_pfopufit_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau60_mediumRNN_tracktwoLLP_probe_xe65_cell_xe100_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau60_mediumRNN_tracktwoLLP_probe_xe65_cell_xe100_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau60_mediumRNN_tracktwoLLP_probe_xe65_cell_xe100_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau60_mediumRNN_tracktwoLLP_probe_xe65_cell_xe90_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau60_mediumRNN_tracktwoLLP_probe_xe65_cell_xe90_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau60_mediumRNN_tracktwoLLP_probe_xe65_cell_xe90_pfopufit_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau60_mediumRNN_tracktwoLLP_probe_xe65_cell_xe90_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau60_mediumRNN_tracktwoLLP_probe_xe65_cell_xe90_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau60_mediumRNN_tracktwoLLP_probe_xe65_cell_xe90_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau60_mediumRNN_tracktwoLLP_probe_xe75_cell_xe100_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau60_mediumRNN_tracktwoLLP_probe_xe75_cell_xe100_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau60_mediumRNN_tracktwoLLP_probe_xe75_cell_xe100_pfopufit_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau60_mediumRNN_tracktwoLLP_probe_xe75_cell_xe100_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau60_mediumRNN_tracktwoLLP_probe_xe75_cell_xe100_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau60_mediumRNN_tracktwoLLP_probe_xe75_cell_xe100_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau60_mediumRNN_tracktwoMVA_L1TAU40:
-  eventCount: 0
+  eventCount: 1
   stepCounts:
-    0: 3
-    1: 3
-    2: 3
-    3: 3
+    0: 6
+    1: 6
+    2: 6
+    3: 6
+    4: 1
   stepFeatures:
-    0: 4
-    1: 4
-    2: 4
-    3: 4
+    0: 7
+    1: 7
+    2: 7
+    3: 7
+    4: 1
 HLT_tau60_mediumRNN_tracktwoMVA_L1eTAU60:
-  eventCount: 0
+  eventCount: 1
   stepCounts:
-    0: 3
-    1: 3
-    2: 3
-    3: 3
+    0: 6
+    1: 6
+    2: 6
+    3: 6
+    4: 1
   stepFeatures:
-    0: 4
-    1: 4
-    2: 4
-    3: 4
+    0: 7
+    1: 7
+    2: 7
+    3: 7
+    4: 1
 HLT_tau60_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau60_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau60_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau60_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau60_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau60_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau60_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau60_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau60_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau60_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau60_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau60_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau60_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau60_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau60_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau60_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau60_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau60_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau60_mediumRNN_tracktwoMVA_tau25_mediumRNN_tracktwoMVA_xe50_cell_03dRAB_L1TAU40_2TAU12IM_XE40:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 5
+    1: 5
+    2: 5
+    3: 5
 HLT_tau60_mediumRNN_tracktwoMVA_tau25_mediumRNN_tracktwoMVA_xe50_cell_03dRAB_L1eTAU60_2cTAU20M_jXE80:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 HLT_tau60_mediumRNN_tracktwoMVA_tau25_mediumRNN_tracktwoMVA_xe50_cell_03dRAB_L1eTAU60_2eTAU20M_jXE80:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 3
+    1: 3
+    2: 3
+    3: 3
 HLT_tau80_idperf_trackLRT_L1TAU60:
-  eventCount: 2
+  eventCount: 3
   stepCounts:
-    0: 2
-    1: 2
-    2: 2
-    3: 2
+    0: 3
+    1: 3
+    2: 3
+    3: 3
   stepFeatures:
-    0: 2
-    1: 2
-    2: 2
-    3: 2
+    0: 4
+    1: 4
+    2: 4
+    3: 4
 HLT_tau80_idperf_trackLRT_L1eTAU80:
   eventCount: 2
   stepCounts:
@@ -12009,19 +16406,19 @@ HLT_tau80_idperf_trackLRT_L1eTAU80:
     2: 2
     3: 2
 HLT_tau80_idperf_tracktwoMVA_L1TAU60:
-  eventCount: 2
+  eventCount: 3
   stepCounts:
-    0: 2
-    1: 2
-    2: 2
-    3: 2
-    4: 2
+    0: 3
+    1: 3
+    2: 3
+    3: 3
+    4: 3
   stepFeatures:
-    0: 2
-    1: 2
-    2: 2
-    3: 2
-    4: 2
+    0: 4
+    1: 4
+    2: 4
+    3: 4
+    4: 4
 HLT_tau80_idperf_tracktwoMVA_L1eTAU80:
   eventCount: 2
   stepCounts:
@@ -12037,67 +16434,77 @@ HLT_tau80_idperf_tracktwoMVA_L1eTAU80:
     3: 2
     4: 2
 HLT_tau80_mediumRNN_trackLRT_L1TAU60:
-  eventCount: 0
+  eventCount: 1
   stepCounts:
-    0: 2
-    1: 2
-    2: 2
+    0: 3
+    1: 3
+    2: 3
+    3: 1
   stepFeatures:
-    0: 2
-    1: 2
-    2: 2
+    0: 4
+    1: 4
+    2: 4
+    3: 1
 HLT_tau80_mediumRNN_trackLRT_L1eTAU80:
-  eventCount: 0
+  eventCount: 1
   stepCounts:
     0: 2
     1: 2
     2: 2
+    3: 1
   stepFeatures:
     0: 2
     1: 2
     2: 2
+    3: 1
 HLT_tau80_mediumRNN_tracktwoLLP_probe_xe65_cell_xe100_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau80_mediumRNN_tracktwoLLP_probe_xe65_cell_xe100_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau80_mediumRNN_tracktwoLLP_probe_xe65_cell_xe100_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau80_mediumRNN_tracktwoLLP_probe_xe65_cell_xe100_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau80_mediumRNN_tracktwoLLP_probe_xe65_cell_xe100_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau80_mediumRNN_tracktwoLLP_probe_xe65_cell_xe90_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau80_mediumRNN_tracktwoLLP_probe_xe65_cell_xe90_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau80_mediumRNN_tracktwoLLP_probe_xe65_cell_xe90_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau80_mediumRNN_tracktwoLLP_probe_xe65_cell_xe90_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau80_mediumRNN_tracktwoLLP_probe_xe65_cell_xe90_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau80_mediumRNN_tracktwoLLP_probe_xe75_cell_xe100_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau80_mediumRNN_tracktwoLLP_probe_xe75_cell_xe100_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau80_mediumRNN_tracktwoLLP_probe_xe75_cell_xe100_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau80_mediumRNN_tracktwoLLP_probe_xe75_cell_xe100_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau80_mediumRNN_tracktwoLLP_probe_xe75_cell_xe100_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau80_mediumRNN_tracktwoLLP_tau60_mediumRNN_tracktwoLLP_03dRAB_L1TAU60_2TAU40:
   eventCount: 0
   stepCounts:
@@ -12106,11 +16513,10 @@ HLT_tau80_mediumRNN_tracktwoLLP_tau60_mediumRNN_tracktwoLLP_03dRAB_L1TAU60_2TAU4
     2: 1
     3: 1
   stepFeatures:
-    0: 3
-    1: 3
-    2: 3
-    3: 3
-    4: 1
+    0: 4
+    1: 4
+    2: 4
+    3: 4
 HLT_tau80_mediumRNN_tracktwoLLP_tau60_mediumRNN_tracktwoLLP_03dRAB_L1eTAU80_2eTAU60:
   eventCount: 0
   stepCounts:
@@ -12123,7 +16529,6 @@ HLT_tau80_mediumRNN_tracktwoLLP_tau60_mediumRNN_tracktwoLLP_03dRAB_L1eTAU80_2eTA
     1: 3
     2: 3
     3: 3
-    4: 1
 HLT_tau80_mediumRNN_tracktwoLLP_tau60_tightRNN_tracktwoLLP_03dRAB_L1TAU60_2TAU40:
   eventCount: 0
   stepCounts:
@@ -12132,11 +16537,10 @@ HLT_tau80_mediumRNN_tracktwoLLP_tau60_tightRNN_tracktwoLLP_03dRAB_L1TAU60_2TAU40
     2: 1
     3: 1
   stepFeatures:
-    0: 3
-    1: 3
-    2: 3
-    3: 3
-    4: 1
+    0: 4
+    1: 4
+    2: 4
+    3: 4
 HLT_tau80_mediumRNN_tracktwoLLP_tau60_tightRNN_tracktwoLLP_03dRAB_L1eTAU80_2eTAU60:
   eventCount: 0
   stepCounts:
@@ -12149,19 +16553,18 @@ HLT_tau80_mediumRNN_tracktwoLLP_tau60_tightRNN_tracktwoLLP_03dRAB_L1eTAU80_2eTAU
     1: 3
     2: 3
     3: 3
-    4: 1
 HLT_tau80_mediumRNN_tracktwoMVA_L1TAU60:
   eventCount: 0
   stepCounts:
-    0: 2
-    1: 2
-    2: 2
-    3: 2
+    0: 3
+    1: 3
+    2: 3
+    3: 3
   stepFeatures:
-    0: 2
-    1: 2
-    2: 2
-    3: 2
+    0: 4
+    1: 4
+    2: 4
+    3: 4
 HLT_tau80_mediumRNN_tracktwoMVA_L1eTAU80:
   eventCount: 0
   stepCounts:
@@ -12176,50 +16579,76 @@ HLT_tau80_mediumRNN_tracktwoMVA_L1eTAU80:
     3: 2
 HLT_tau80_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau80_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau80_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau80_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau80_mediumRNN_tracktwoMVA_probe_xe65_cell_xe100_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau80_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau80_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau80_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau80_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau80_mediumRNN_tracktwoMVA_probe_xe65_cell_xe90_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau80_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_tau80_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_tau80_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_tau80_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_tau80_mediumRNN_tracktwoMVA_probe_xe75_cell_xe100_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_tau80_mediumRNN_tracktwoMVA_tau35_mediumRNN_tracktwoMVA_03dRAB30_L1TAU60_DR-TAU20ITAU12I:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 5
+    1: 5
+    2: 5
+    3: 5
 HLT_tau80_mediumRNN_tracktwoMVA_tau35_mediumRNN_tracktwoMVA_03dRAB30_L1eTAU80_2cTAU30M_DR-eTAU30eTAU20:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+    2: 1
+    3: 1
+  stepFeatures:
+    0: 4
+    1: 4
+    2: 4
+    3: 4
 HLT_tau80_mediumRNN_tracktwoMVA_tau60_mediumRNN_tracktwoMVA_03dRAB_L1TAU60_2TAU40:
   eventCount: 0
   stepCounts:
@@ -12228,10 +16657,10 @@ HLT_tau80_mediumRNN_tracktwoMVA_tau60_mediumRNN_tracktwoMVA_03dRAB_L1TAU60_2TAU4
     2: 1
     3: 1
   stepFeatures:
-    0: 3
-    1: 3
-    2: 3
-    3: 3
+    0: 4
+    1: 4
+    2: 4
+    3: 4
 HLT_tau80_mediumRNN_tracktwoMVA_tau60_mediumRNN_tracktwoMVA_03dRAB_L1eTAU80_2eTAU60:
   eventCount: 0
   stepCounts:
@@ -12252,11 +16681,10 @@ HLT_tau80_tightRNN_tracktwoLLP_tau60_tightRNN_tracktwoLLP_03dRAB_L1TAU60_2TAU40:
     2: 1
     3: 1
   stepFeatures:
-    0: 3
-    1: 3
-    2: 3
-    3: 3
-    4: 1
+    0: 4
+    1: 4
+    2: 4
+    3: 4
 HLT_tau80_tightRNN_tracktwoLLP_tau60_tightRNN_tracktwoLLP_03dRAB_L1eTAU80_2eTAU60:
   eventCount: 0
   stepCounts:
@@ -12269,40 +16697,55 @@ HLT_tau80_tightRNN_tracktwoLLP_tau60_tightRNN_tracktwoLLP_03dRAB_L1eTAU80_2eTAU6
     1: 3
     2: 3
     3: 3
-    4: 1
 HLT_xe0_cell_L1XE50:
-  eventCount: 0
+  eventCount: 2
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_xe0_cell_L1XE55:
-  eventCount: 0
+  eventCount: 1
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 1
 HLT_xe0_cell_L1ZeroBias:
   eventCount: 0
 HLT_xe0_cell_L1gXEJWOJ100:
-  eventCount: 0
-HLT_xe0_cell_L1gXEJWOJ110:
-  eventCount: 0
-HLT_xe0_cell_L1jXE100:
   eventCount: 2
   stepCounts:
     0: 2
   stepFeatures:
     0: 2
+HLT_xe0_cell_L1gXEJWOJ110:
+  eventCount: 0
+HLT_xe0_cell_L1jXE100:
+  eventCount: 1
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 1
 HLT_xe0_cell_L1jXE110:
+  eventCount: 0
+HLT_xe0_mhtpufit_em_L1XE50:
   eventCount: 2
   stepCounts:
     0: 2
+    1: 2
   stepFeatures:
     0: 2
-HLT_xe0_mhtpufit_em_L1XE50:
-  eventCount: 0
+    1: 2
 HLT_xe0_mhtpufit_em_L1XE55:
-  eventCount: 0
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 1
 HLT_xe0_mhtpufit_em_L1ZeroBias:
   eventCount: 0
 HLT_xe0_mhtpufit_em_L1gXEJWOJ100:
-  eventCount: 0
-HLT_xe0_mhtpufit_em_L1gXEJWOJ110:
-  eventCount: 0
-HLT_xe0_mhtpufit_em_L1jXE100:
   eventCount: 2
   stepCounts:
     0: 2
@@ -12310,7 +16753,19 @@ HLT_xe0_mhtpufit_em_L1jXE100:
   stepFeatures:
     0: 2
     1: 2
+HLT_xe0_mhtpufit_em_L1gXEJWOJ110:
+  eventCount: 0
+HLT_xe0_mhtpufit_em_L1jXE100:
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 1
 HLT_xe0_mhtpufit_em_L1jXE110:
+  eventCount: 0
+HLT_xe0_mhtpufit_pf_L1XE50:
   eventCount: 2
   stepCounts:
     0: 2
@@ -12318,17 +16773,17 @@ HLT_xe0_mhtpufit_em_L1jXE110:
   stepFeatures:
     0: 2
     1: 2
-HLT_xe0_mhtpufit_pf_L1XE50:
-  eventCount: 0
 HLT_xe0_mhtpufit_pf_L1XE55:
-  eventCount: 0
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 1
 HLT_xe0_mhtpufit_pf_L1ZeroBias:
   eventCount: 0
 HLT_xe0_mhtpufit_pf_L1gXEJWOJ100:
-  eventCount: 0
-HLT_xe0_mhtpufit_pf_L1gXEJWOJ110:
-  eventCount: 0
-HLT_xe0_mhtpufit_pf_L1jXE100:
   eventCount: 2
   stepCounts:
     0: 2
@@ -12336,7 +16791,19 @@ HLT_xe0_mhtpufit_pf_L1jXE100:
   stepFeatures:
     0: 2
     1: 2
+HLT_xe0_mhtpufit_pf_L1gXEJWOJ110:
+  eventCount: 0
+HLT_xe0_mhtpufit_pf_L1jXE100:
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 1
 HLT_xe0_mhtpufit_pf_L1jXE110:
+  eventCount: 0
+HLT_xe0_nn_L1XE50:
   eventCount: 2
   stepCounts:
     0: 2
@@ -12344,17 +16811,17 @@ HLT_xe0_mhtpufit_pf_L1jXE110:
   stepFeatures:
     0: 2
     1: 2
-HLT_xe0_nn_L1XE50:
-  eventCount: 0
 HLT_xe0_nn_L1XE55:
-  eventCount: 0
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 1
 HLT_xe0_nn_L1ZeroBias:
   eventCount: 0
 HLT_xe0_nn_L1gXEJWOJ100:
-  eventCount: 0
-HLT_xe0_nn_L1gXEJWOJ110:
-  eventCount: 0
-HLT_xe0_nn_L1jXE100:
   eventCount: 2
   stepCounts:
     0: 2
@@ -12362,7 +16829,19 @@ HLT_xe0_nn_L1jXE100:
   stepFeatures:
     0: 2
     1: 2
+HLT_xe0_nn_L1gXEJWOJ110:
+  eventCount: 0
+HLT_xe0_nn_L1jXE100:
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 1
 HLT_xe0_nn_L1jXE110:
+  eventCount: 0
+HLT_xe0_pfopufit_L1XE50:
   eventCount: 2
   stepCounts:
     0: 2
@@ -12370,17 +16849,17 @@ HLT_xe0_nn_L1jXE110:
   stepFeatures:
     0: 2
     1: 2
-HLT_xe0_pfopufit_L1XE50:
-  eventCount: 0
 HLT_xe0_pfopufit_L1XE55:
-  eventCount: 0
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 1
 HLT_xe0_pfopufit_L1ZeroBias:
   eventCount: 0
 HLT_xe0_pfopufit_L1gXEJWOJ100:
-  eventCount: 0
-HLT_xe0_pfopufit_L1gXEJWOJ110:
-  eventCount: 0
-HLT_xe0_pfopufit_L1jXE100:
   eventCount: 2
   stepCounts:
     0: 2
@@ -12388,7 +16867,19 @@ HLT_xe0_pfopufit_L1jXE100:
   stepFeatures:
     0: 2
     1: 2
+HLT_xe0_pfopufit_L1gXEJWOJ110:
+  eventCount: 0
+HLT_xe0_pfopufit_L1jXE100:
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 1
 HLT_xe0_pfopufit_L1jXE110:
+  eventCount: 0
+HLT_xe0_pfsum_L1XE50:
   eventCount: 2
   stepCounts:
     0: 2
@@ -12396,17 +16887,17 @@ HLT_xe0_pfopufit_L1jXE110:
   stepFeatures:
     0: 2
     1: 2
-HLT_xe0_pfsum_L1XE50:
-  eventCount: 0
 HLT_xe0_pfsum_L1XE55:
-  eventCount: 0
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 1
 HLT_xe0_pfsum_L1ZeroBias:
   eventCount: 0
 HLT_xe0_pfsum_L1gXEJWOJ100:
-  eventCount: 0
-HLT_xe0_pfsum_L1gXEJWOJ110:
-  eventCount: 0
-HLT_xe0_pfsum_L1jXE100:
   eventCount: 2
   stepCounts:
     0: 2
@@ -12414,7 +16905,19 @@ HLT_xe0_pfsum_L1jXE100:
   stepFeatures:
     0: 2
     1: 2
+HLT_xe0_pfsum_L1gXEJWOJ110:
+  eventCount: 0
+HLT_xe0_pfsum_L1jXE100:
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 1
 HLT_xe0_pfsum_L1jXE110:
+  eventCount: 0
+HLT_xe0_pfsum_cssk_L1XE50:
   eventCount: 2
   stepCounts:
     0: 2
@@ -12422,17 +16925,17 @@ HLT_xe0_pfsum_L1jXE110:
   stepFeatures:
     0: 2
     1: 2
-HLT_xe0_pfsum_cssk_L1XE50:
-  eventCount: 0
 HLT_xe0_pfsum_cssk_L1XE55:
-  eventCount: 0
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 1
 HLT_xe0_pfsum_cssk_L1ZeroBias:
   eventCount: 0
 HLT_xe0_pfsum_cssk_L1gXEJWOJ100:
-  eventCount: 0
-HLT_xe0_pfsum_cssk_L1gXEJWOJ110:
-  eventCount: 0
-HLT_xe0_pfsum_cssk_L1jXE100:
   eventCount: 2
   stepCounts:
     0: 2
@@ -12440,7 +16943,19 @@ HLT_xe0_pfsum_cssk_L1jXE100:
   stepFeatures:
     0: 2
     1: 2
+HLT_xe0_pfsum_cssk_L1gXEJWOJ110:
+  eventCount: 0
+HLT_xe0_pfsum_cssk_L1jXE100:
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 1
 HLT_xe0_pfsum_cssk_L1jXE110:
+  eventCount: 0
+HLT_xe0_pfsum_vssk_L1XE50:
   eventCount: 2
   stepCounts:
     0: 2
@@ -12448,17 +16963,17 @@ HLT_xe0_pfsum_cssk_L1jXE110:
   stepFeatures:
     0: 2
     1: 2
-HLT_xe0_pfsum_vssk_L1XE50:
-  eventCount: 0
 HLT_xe0_pfsum_vssk_L1XE55:
-  eventCount: 0
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 1
 HLT_xe0_pfsum_vssk_L1ZeroBias:
   eventCount: 0
 HLT_xe0_pfsum_vssk_L1gXEJWOJ100:
-  eventCount: 0
-HLT_xe0_pfsum_vssk_L1gXEJWOJ110:
-  eventCount: 0
-HLT_xe0_pfsum_vssk_L1jXE100:
   eventCount: 2
   stepCounts:
     0: 2
@@ -12466,316 +16981,352 @@ HLT_xe0_pfsum_vssk_L1jXE100:
   stepFeatures:
     0: 2
     1: 2
+HLT_xe0_pfsum_vssk_L1gXEJWOJ110:
+  eventCount: 0
+HLT_xe0_pfsum_vssk_L1jXE100:
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 1
 HLT_xe0_pfsum_vssk_L1jXE110:
+  eventCount: 0
+HLT_xe0_tcpufit_L1XE50:
   eventCount: 2
   stepCounts:
     0: 2
-    1: 2
   stepFeatures:
     0: 2
-    1: 2
-HLT_xe0_tcpufit_L1XE50:
-  eventCount: 0
 HLT_xe0_tcpufit_L1XE55:
-  eventCount: 0
+  eventCount: 1
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 1
 HLT_xe0_tcpufit_L1ZeroBias:
   eventCount: 0
 HLT_xe0_tcpufit_L1gXEJWOJ100:
-  eventCount: 0
-HLT_xe0_tcpufit_L1gXEJWOJ110:
-  eventCount: 0
-HLT_xe0_tcpufit_L1jXE100:
   eventCount: 2
   stepCounts:
     0: 2
   stepFeatures:
     0: 2
+HLT_xe0_tcpufit_L1gXEJWOJ110:
+  eventCount: 0
+HLT_xe0_tcpufit_L1jXE100:
+  eventCount: 1
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 1
 HLT_xe0_tcpufit_L1jXE110:
+  eventCount: 0
+HLT_xe0_trkmht_L1XE50:
   eventCount: 2
   stepCounts:
     0: 2
+    1: 2
   stepFeatures:
     0: 2
-HLT_xe0_trkmht_L1XE50:
-  eventCount: 0
+    1: 2
 HLT_xe0_trkmht_L1XE55:
-  eventCount: 0
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 1
 HLT_xe0_trkmht_L1ZeroBias:
   eventCount: 0
 HLT_xe0_trkmht_L1gXEJWOJ100:
+  eventCount: 2
+  stepCounts:
+    0: 2
+    1: 2
+  stepFeatures:
+    0: 2
+    1: 2
+HLT_xe0_trkmht_L1gXEJWOJ110:
+  eventCount: 0
+HLT_xe0_trkmht_L1jXE100:
+  eventCount: 1
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 1
+HLT_xe0_trkmht_L1jXE110:
+  eventCount: 0
+HLT_xe110_mht_L1XE50:
   eventCount: 0
-HLT_xe0_trkmht_L1gXEJWOJ110:
+HLT_xe110_pfsum_L1XE50:
   eventCount: 0
-HLT_xe0_trkmht_L1jXE100:
-  eventCount: 2
   stepCounts:
     0: 2
-    1: 2
   stepFeatures:
     0: 2
-    1: 2
-HLT_xe0_trkmht_L1jXE110:
-  eventCount: 2
+HLT_xe110_pfsum_cssk_L1XE50:
+  eventCount: 0
   stepCounts:
     0: 2
-    1: 2
   stepFeatures:
     0: 2
-    1: 2
-HLT_xe110_mht_L1XE50:
-  eventCount: 0
-HLT_xe110_pfsum_L1XE50:
-  eventCount: 0
-HLT_xe110_pfsum_cssk_L1XE50:
-  eventCount: 0
 HLT_xe110_pfsum_vssk_L1XE50:
   eventCount: 0
+  stepCounts:
+    0: 2
+  stepFeatures:
+    0: 2
 HLT_xe110_tc_em_L1XE50:
   eventCount: 0
 HLT_xe110_tcpufit_L1XE50:
   eventCount: 0
 HLT_xe30_cell_L1XE30:
-  eventCount: 1
+  eventCount: 4
   stepCounts:
-    0: 1
+    0: 4
   stepFeatures:
-    0: 1
+    0: 4
 HLT_xe30_cell_L1gXEJWOJ60:
-  eventCount: 2
-  stepCounts:
-    0: 2
-  stepFeatures:
-    0: 2
-HLT_xe30_cell_L1jXE60:
   eventCount: 3
   stepCounts:
     0: 3
   stepFeatures:
     0: 3
+HLT_xe30_cell_L1jXE60:
+  eventCount: 4
+  stepCounts:
+    0: 4
+  stepFeatures:
+    0: 4
 HLT_xe30_cell_xe30_tcpufit_L1XE30:
-  eventCount: 1
+  eventCount: 3
   stepCounts:
-    0: 1
+    0: 3
   stepFeatures:
-    0: 2
+    0: 8
 HLT_xe30_cell_xe30_tcpufit_L1gXEJWOJ60:
-  eventCount: 2
+  eventCount: 3
   stepCounts:
-    0: 2
+    0: 3
   stepFeatures:
-    0: 4
+    0: 8
 HLT_xe30_cell_xe30_tcpufit_L1jXE60:
   eventCount: 3
   stepCounts:
     0: 3
   stepFeatures:
-    0: 7
+    0: 8
 HLT_xe30_cvfpufit_L1XE30:
-  eventCount: 1
+  eventCount: 5
   stepCounts:
-    0: 1
-    1: 1
+    0: 6
+    1: 5
   stepFeatures:
-    0: 1
-    1: 1
+    0: 6
+    1: 5
 HLT_xe30_cvfpufit_L1gXEJWOJ60:
-  eventCount: 2
+  eventCount: 5
   stepCounts:
-    0: 3
-    1: 2
+    0: 5
+    1: 5
   stepFeatures:
-    0: 3
-    1: 2
+    0: 5
+    1: 5
 HLT_xe30_cvfpufit_L1jXE60:
-  eventCount: 6
+  eventCount: 5
   stepCounts:
-    0: 7
-    1: 6
+    0: 5
+    1: 5
   stepFeatures:
-    0: 7
-    1: 6
+    0: 5
+    1: 5
 HLT_xe30_mht_L1XE30:
-  eventCount: 1
+  eventCount: 6
   stepCounts:
-    0: 1
+    0: 6
   stepFeatures:
-    0: 1
+    0: 6
 HLT_xe30_mht_L1gXEJWOJ60:
-  eventCount: 3
+  eventCount: 5
   stepCounts:
-    0: 3
+    0: 5
   stepFeatures:
-    0: 3
+    0: 5
 HLT_xe30_mht_L1jXE60:
-  eventCount: 6
+  eventCount: 5
   stepCounts:
-    0: 6
+    0: 5
   stepFeatures:
-    0: 6
+    0: 5
 HLT_xe30_mhtpufit_em_L1XE30:
-  eventCount: 1
+  eventCount: 4
   stepCounts:
-    0: 1
-    1: 1
+    0: 6
+    1: 4
   stepFeatures:
-    0: 1
-    1: 1
+    0: 6
+    1: 4
 HLT_xe30_mhtpufit_em_L1gXEJWOJ60:
   eventCount: 3
   stepCounts:
-    0: 3
+    0: 5
     1: 3
   stepFeatures:
-    0: 3
+    0: 5
     1: 3
 HLT_xe30_mhtpufit_em_L1jXE60:
   eventCount: 4
   stepCounts:
-    0: 7
+    0: 5
     1: 4
   stepFeatures:
-    0: 7
+    0: 5
     1: 4
 HLT_xe30_mhtpufit_pf_L1XE30:
-  eventCount: 1
+  eventCount: 3
   stepCounts:
-    0: 1
-    1: 1
+    0: 6
+    1: 3
   stepFeatures:
-    0: 1
-    1: 1
+    0: 6
+    1: 3
 HLT_xe30_mhtpufit_pf_L1gXEJWOJ60:
   eventCount: 3
   stepCounts:
-    0: 3
+    0: 5
     1: 3
   stepFeatures:
-    0: 3
+    0: 5
     1: 3
 HLT_xe30_mhtpufit_pf_L1jXE60:
-  eventCount: 2
+  eventCount: 3
   stepCounts:
-    0: 7
-    1: 2
+    0: 5
+    1: 3
   stepFeatures:
-    0: 7
-    1: 2
+    0: 5
+    1: 3
 HLT_xe30_pfopufit_L1XE30:
-  eventCount: 1
+  eventCount: 3
   stepCounts:
-    0: 1
-    1: 1
+    0: 6
+    1: 3
   stepFeatures:
-    0: 1
-    1: 1
+    0: 6
+    1: 3
 HLT_xe30_pfopufit_L1gXEJWOJ60:
-  eventCount: 2
+  eventCount: 4
   stepCounts:
-    0: 3
-    1: 2
+    0: 5
+    1: 4
   stepFeatures:
-    0: 3
-    1: 2
+    0: 5
+    1: 4
 HLT_xe30_pfopufit_L1jXE60:
-  eventCount: 5
+  eventCount: 3
   stepCounts:
-    0: 7
-    1: 5
+    0: 5
+    1: 3
   stepFeatures:
-    0: 7
-    1: 5
+    0: 5
+    1: 3
 HLT_xe30_pfopufit_sig30_L1XE30:
-  eventCount: 1
+  eventCount: 2
   stepCounts:
-    0: 1
-    1: 1
+    0: 6
+    1: 2
   stepFeatures:
-    0: 1
-    1: 1
+    0: 6
+    1: 2
 HLT_xe30_pfsum_L1XE30:
-  eventCount: 1
+  eventCount: 5
   stepCounts:
-    0: 1
-    1: 1
+    0: 6
+    1: 5
   stepFeatures:
-    0: 1
-    1: 1
+    0: 6
+    1: 5
 HLT_xe30_pfsum_L1gXEJWOJ60:
-  eventCount: 1
+  eventCount: 4
   stepCounts:
-    0: 3
-    1: 1
+    0: 5
+    1: 4
   stepFeatures:
-    0: 3
-    1: 1
+    0: 5
+    1: 4
 HLT_xe30_pfsum_L1jXE60:
-  eventCount: 5
+  eventCount: 4
   stepCounts:
-    0: 7
-    1: 5
+    0: 5
+    1: 4
   stepFeatures:
-    0: 7
-    1: 5
+    0: 5
+    1: 4
 HLT_xe30_pfsum_cssk_L1XE30:
-  eventCount: 1
+  eventCount: 5
   stepCounts:
-    0: 1
-    1: 1
+    0: 6
+    1: 5
   stepFeatures:
-    0: 1
-    1: 1
+    0: 6
+    1: 5
 HLT_xe30_pfsum_cssk_L1gXEJWOJ60:
-  eventCount: 1
+  eventCount: 4
   stepCounts:
-    0: 3
-    1: 1
+    0: 5
+    1: 4
   stepFeatures:
-    0: 3
-    1: 1
+    0: 5
+    1: 4
 HLT_xe30_pfsum_cssk_L1jXE60:
   eventCount: 4
   stepCounts:
-    0: 7
+    0: 5
     1: 4
   stepFeatures:
-    0: 7
+    0: 5
     1: 4
 HLT_xe30_pfsum_vssk_L1XE30:
-  eventCount: 1
-  stepCounts:
-    0: 1
-    1: 1
-  stepFeatures:
-    0: 1
-    1: 1
-HLT_xe30_pfsum_vssk_L1gXEJWOJ60:
-  eventCount: 1
+  eventCount: 3
   stepCounts:
-    0: 3
-    1: 1
-  stepFeatures:
-    0: 3
-    1: 1
-HLT_xe30_pfsum_vssk_L1jXE60:
+    0: 6
+    1: 3
+  stepFeatures:
+    0: 6
+    1: 3
+HLT_xe30_pfsum_vssk_L1gXEJWOJ60:
   eventCount: 3
   stepCounts:
-    0: 7
+    0: 5
     1: 3
   stepFeatures:
-    0: 7
+    0: 5
     1: 3
+HLT_xe30_pfsum_vssk_L1jXE60:
+  eventCount: 2
+  stepCounts:
+    0: 5
+    1: 2
+  stepFeatures:
+    0: 5
+    1: 2
 HLT_xe30_tcpufit_L1XE30:
-  eventCount: 1
+  eventCount: 4
   stepCounts:
-    0: 1
+    0: 4
   stepFeatures:
-    0: 1
+    0: 4
 HLT_xe30_tcpufit_L1gXEJWOJ60:
-  eventCount: 2
+  eventCount: 5
   stepCounts:
-    0: 2
+    0: 5
   stepFeatures:
-    0: 2
+    0: 5
 HLT_xe30_tcpufit_L1jXE60:
   eventCount: 4
   stepCounts:
@@ -12783,47 +17334,59 @@ HLT_xe30_tcpufit_L1jXE60:
   stepFeatures:
     0: 4
 HLT_xe30_tcpufit_sig30_L1XE30:
-  eventCount: 1
+  eventCount: 6
   stepCounts:
-    0: 1
+    0: 6
   stepFeatures:
-    0: 1
+    0: 6
 HLT_xe30_trkmht_L1XE30:
-  eventCount: 1
+  eventCount: 2
   stepCounts:
-    0: 1
-    1: 1
+    0: 6
+    1: 2
   stepFeatures:
-    0: 1
-    1: 1
+    0: 6
+    1: 2
 HLT_xe30_trkmht_L1gXEJWOJ60:
   eventCount: 2
   stepCounts:
-    0: 3
+    0: 5
     1: 2
   stepFeatures:
-    0: 3
+    0: 5
     1: 2
 HLT_xe30_trkmht_L1jXE60:
-  eventCount: 5
+  eventCount: 2
   stepCounts:
-    0: 7
-    1: 5
+    0: 5
+    1: 2
   stepFeatures:
-    0: 7
-    1: 5
+    0: 5
+    1: 2
 HLT_xe50_nn_isotrk120_medium_iaggrmedium_L1gXEJWOJ100:
   eventCount: 0
-HLT_xe50_nn_isotrk120_medium_iaggrmedium_L1jXE100:
-  eventCount: 0
   stepCounts:
     0: 2
     1: 1
   stepFeatures:
     0: 2
     1: 3
+HLT_xe50_nn_isotrk120_medium_iaggrmedium_L1jXE100:
+  eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 2
 HLT_xe50_tcpufit_isotrk120_medium_iaggrmedium_L1gXEJWOJ100:
   eventCount: 0
+  stepCounts:
+    0: 2
+    1: 2
+  stepFeatures:
+    0: 2
+    1: 2
 HLT_xe50_tcpufit_isotrk120_medium_iaggrmedium_L1jXE100:
   eventCount: 0
   stepCounts:
@@ -12834,10 +17397,12 @@ HLT_xe50_tcpufit_isotrk120_medium_iaggrmedium_L1jXE100:
     1: 1
 HLT_xe55_cell_xe105_nn_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe55_cell_xe105_nn_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_xe55_cell_xe70_tcpufit_L1XE50:
   eventCount: 0
 HLT_xe55_cell_xe70_tcpufit_L1XE55:
@@ -12852,140 +17417,188 @@ HLT_xe55_cell_xe70_tcpufit_L1jXE110:
   eventCount: 0
 HLT_xe55_cell_xe70_tcpufit_xe90_pfsum_vssk_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe55_cell_xe70_tcpufit_xe90_pfsum_vssk_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_xe55_cell_xe70_tcpufit_xe90_pfsum_vssk_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe55_cell_xe70_tcpufit_xe90_pfsum_vssk_L1gXEJWOJ110:
   eventCount: 0
 HLT_xe55_cell_xe70_tcpufit_xe90_pfsum_vssk_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_xe55_cell_xe70_tcpufit_xe90_pfsum_vssk_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_xe55_cell_xe70_tcpufit_xe95_pfsum_cssk_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe55_cell_xe70_tcpufit_xe95_pfsum_cssk_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_xe55_cell_xe70_tcpufit_xe95_pfsum_cssk_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe55_cell_xe70_tcpufit_xe95_pfsum_cssk_L1gXEJWOJ110:
   eventCount: 0
 HLT_xe55_cell_xe70_tcpufit_xe95_pfsum_cssk_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_xe55_cell_xe70_tcpufit_xe95_pfsum_cssk_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_xe55_cell_xe90_nn_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe55_cell_xe90_nn_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_xe60_cell_L1XE50:
   eventCount: 0
 HLT_xe60_cell_xe95_pfsum_cssk_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe60_cell_xe95_pfsum_cssk_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_xe60_cell_xe95_pfsum_cssk_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe60_cell_xe95_pfsum_cssk_L1gXEJWOJ110:
   eventCount: 0
 HLT_xe60_cell_xe95_pfsum_cssk_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_xe60_cell_xe95_pfsum_cssk_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_xe60_nn_isotrk120_medium_iaggrmedium_L1gXEJWOJ100:
   eventCount: 0
-HLT_xe60_nn_isotrk120_medium_iaggrmedium_L1jXE100:
-  eventCount: 0
   stepCounts:
     0: 2
-    1: 1
   stepFeatures:
     0: 2
-    1: 3
+    1: 2
+HLT_xe60_nn_isotrk120_medium_iaggrmedium_L1jXE100:
+  eventCount: 0
+  stepCounts:
+    0: 1
+  stepFeatures:
+    0: 1
+    1: 1
 HLT_xe60_tcpufit_isotrk120_medium_iaggrmedium_L1gXEJWOJ100:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 1
 HLT_xe60_tcpufit_isotrk120_medium_iaggrmedium_L1jXE100:
   eventCount: 0
+  stepCounts:
+    0: 1
+    1: 1
+  stepFeatures:
+    0: 1
+    1: 1
 HLT_xe65_cell_xe100_mhtpufit_pf_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe65_cell_xe100_mhtpufit_pf_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_xe65_cell_xe100_mhtpufit_pf_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe65_cell_xe100_mhtpufit_pf_L1gXEJWOJ110:
   eventCount: 0
 HLT_xe65_cell_xe100_mhtpufit_pf_L1gXENC100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe65_cell_xe100_mhtpufit_pf_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_xe65_cell_xe100_mhtpufit_pf_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_xe65_cell_xe100_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe65_cell_xe100_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_xe65_cell_xe100_pfopufit_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe65_cell_xe100_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_xe65_cell_xe100_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_xe65_cell_xe100_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_xe65_cell_xe105_mhtpufit_em_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe65_cell_xe105_mhtpufit_em_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_xe65_cell_xe105_mhtpufit_em_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe65_cell_xe105_mhtpufit_em_L1gXEJWOJ110:
   eventCount: 0
 HLT_xe65_cell_xe105_mhtpufit_em_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_xe65_cell_xe105_mhtpufit_em_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_xe65_cell_xe105_nn_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe65_cell_xe105_nn_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_xe65_cell_xe105_nn_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe65_cell_xe105_nn_L1gXEJWOJ110:
   eventCount: 0
 HLT_xe65_cell_xe105_nn_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_xe65_cell_xe105_nn_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_xe65_cell_xe110_tcpufit_L1XE50:
   eventCount: 0
 HLT_xe65_cell_xe110_tcpufit_L1gXEJWOJ100:
@@ -13004,88 +17617,116 @@ HLT_xe65_cell_xe110_tcpufit_sig30_L1jXE110:
   eventCount: 0
 HLT_xe65_cell_xe90_nn_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe65_cell_xe90_nn_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_xe65_cell_xe90_nn_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe65_cell_xe90_nn_L1gXEJWOJ110:
   eventCount: 0
 HLT_xe65_cell_xe90_nn_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_xe65_cell_xe90_nn_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_xe65_cell_xe90_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe65_cell_xe90_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_xe65_cell_xe90_pfopufit_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe65_cell_xe90_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_xe65_cell_xe90_pfopufit_L1gXENC100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe65_cell_xe90_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_xe65_cell_xe90_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_xe65_cell_xe90_pfopufit_sig30_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe65_cell_xe90_pfopufit_sig30_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_xe65_cell_xe90_pfopufit_sig30_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe65_cell_xe90_pfopufit_sig30_L1gXEJWOJ110:
   eventCount: 0
 HLT_xe65_cell_xe90_pfopufit_sig30_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_xe65_cell_xe95_pfsum_vssk_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe65_cell_xe95_pfsum_vssk_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_xe65_cell_xe95_pfsum_vssk_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe65_cell_xe95_pfsum_vssk_L1gXEJWOJ110:
   eventCount: 0
 HLT_xe65_cell_xe95_pfsum_vssk_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_xe65_cell_xe95_pfsum_vssk_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_xe75_cell_xe100_pfopufit_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe75_cell_xe100_pfopufit_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_xe75_cell_xe100_pfopufit_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe75_cell_xe100_pfopufit_L1gXEJWOJ110:
   eventCount: 0
 HLT_xe75_cell_xe100_pfopufit_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_xe75_cell_xe100_pfopufit_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_xe75_cell_xe65_tcpufit_xe90_trkmht_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 3
 HLT_xe75_cell_xe65_tcpufit_xe90_trkmht_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe75_cell_xe65_tcpufit_xe90_trkmht_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 3
 HLT_xe75_cell_xe65_tcpufit_xe90_trkmht_L1gXEJWOJ110:
   eventCount: 0
 HLT_xe75_cell_xe65_tcpufit_xe90_trkmht_L1jXE100:
@@ -13094,8 +17735,6 @@ HLT_xe75_cell_xe65_tcpufit_xe90_trkmht_L1jXE100:
     0: 2
 HLT_xe75_cell_xe65_tcpufit_xe90_trkmht_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_xe80_cell_xe115_tcpufit_L1XE50:
   eventCount: 0
 HLT_xe80_cell_xe115_tcpufit_L1XE55:
@@ -13170,36 +17809,44 @@ HLT_xe80_tcpufit_distrk20_tight_L1jXE110:
   eventCount: 0
 HLT_xe80_tcpufit_hitdvjet200_medium_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe80_tcpufit_hitdvjet200_medium_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_xe80_tcpufit_hitdvjet200_medium_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe80_tcpufit_hitdvjet200_medium_L1gXEJWOJ110:
   eventCount: 0
 HLT_xe80_tcpufit_hitdvjet200_medium_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_xe80_tcpufit_hitdvjet200_medium_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_xe80_tcpufit_hitdvjet200_tight_L1XE50:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe80_tcpufit_hitdvjet200_tight_L1XE55:
   eventCount: 0
+  stepFeatures:
+    0: 1
 HLT_xe80_tcpufit_hitdvjet200_tight_L1gXEJWOJ100:
   eventCount: 0
+  stepFeatures:
+    0: 2
 HLT_xe80_tcpufit_hitdvjet200_tight_L1gXEJWOJ110:
   eventCount: 0
 HLT_xe80_tcpufit_hitdvjet200_tight_L1jXE100:
   eventCount: 0
   stepFeatures:
-    0: 2
+    0: 1
 HLT_xe80_tcpufit_hitdvjet200_tight_L1jXE110:
   eventCount: 0
-  stepFeatures:
-    0: 2
 HLT_xe80_tcpufit_isotrk100_medium_iaggrmedium_L1XE50:
   eventCount: 0
 HLT_xe80_tcpufit_isotrk100_medium_iaggrmedium_L1XE55:
diff --git a/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1PhysP1_DAODTLAFTAGPEB_grid.py b/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1PhysP1_DAODTLAFTAGPEB_grid.py
index ec4e492663ac74bf12b53586ea6a298474574e85..51dfd99a93a70b830508f84aeb1f590938580eb9 100755
--- a/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1PhysP1_DAODTLAFTAGPEB_grid.py
+++ b/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1PhysP1_DAODTLAFTAGPEB_grid.py
@@ -56,7 +56,7 @@ tlareco.input = ''
 tlareco.explicit_input = True
 tlareco.args = '--inputBSFile=' + find_file('*.physics_FTagPEBTLA*._athenaHLT*.data')  # output of the previous step
 tlareco.args += ' --outputDAOD_TLAFTAGPEBFile=DAOD_TLAFTAGPEB.pool.root'
-tlareco.args += ' --conditionsTag=\'CONDBR2-BLKPA-2022-08\' --geometryVersion=\'ATLAS-R3S-2021-03-00-00\''
+tlareco.args += ' --conditionsTag=\'CONDBR2-BLKPA-2024-03\' --geometryVersion=\'ATLAS-R3S-2021-03-02-00\''
 tlareco.args += ' --preExec="{:s}"'.format(tlarecoPreExec)
 tlareco.args += ' --CA'
 
diff --git a/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1PhysP1_DAODTLA_grid.py b/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1PhysP1_DAODTLA_grid.py
index 211d4702414d98147c9614dbb437ba12aa4edf64..8710c2c320f781b7d55a9e7c3fcbe614c1aa0ae0 100755
--- a/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1PhysP1_DAODTLA_grid.py
+++ b/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1PhysP1_DAODTLA_grid.py
@@ -56,7 +56,7 @@ tlareco.input = ''
 tlareco.explicit_input = True
 tlareco.args = '--inputBSFile=' + find_file('*.physics_TLA*._athenaHLT*.data')  # output of the previous step
 tlareco.args += ' --outputDAOD_TLAFile=DAOD_TLA.pool.root'
-tlareco.args += ' --conditionsTag=\'CONDBR2-BLKPA-2022-08\' --geometryVersion=\'ATLAS-R3S-2021-03-00-00\''
+tlareco.args += ' --conditionsTag=\'CONDBR2-BLKPA-2024-03\' --geometryVersion=\'ATLAS-R3S-2021-03-02-00\''
 tlareco.args += ' --preExec="{:s}"'.format(tlarecoPreExec)
 tlareco.args += ' --CA'
 
diff --git a/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1PhysP1_T0MonTrf_build.py b/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1PhysP1_T0MonTrf_build.py
index b8c6fb8a94e17d1a51d22ae56c3fa756e3336362..dd98ba66f0611965d1508e12a3e033bac9df0b64 100755
--- a/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1PhysP1_T0MonTrf_build.py
+++ b/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1PhysP1_T0MonTrf_build.py
@@ -26,7 +26,7 @@ hlt.args += ' --outputBSFile=RAW.pool.root'
 hlt.args += ' --outputHIST_HLTMONFile=hltmon.root'
 hlt.args += ' --outputDRAW_TRIGCOSTFile=TRIGCOST.pool.root'
 hlt.args += ' --outputNTUP_TRIGCOSTFile=cost.ntup.root'
-hlt.args += ' --runNumber 440499'  # RunNumber is set by Panda, but ignored by Trf to avoid changes from !48070
+hlt.args += ' --runNumber 475321'  # RunNumber is set by Panda, but ignored by Trf to avoid changes from !48070
 
 #====================================================================================================
 # Tier-0 reco step (BS->AOD)
@@ -62,7 +62,7 @@ tzreco.args = '--inputBSFile=RAW.pool.root'  # output of the previous step
 tzreco.args += ' --outputAODFile=AOD.pool.root'
 tzreco.args += ' --outputNTUP_TRIGRATEFile=rate.ntup.root'
 tzreco.args += ' --outputHISTFile=hist.root'
-tzreco.args += ' --conditionsTag=\'CONDBR2-BLKPA-2022-08\' --geometryVersion=\'ATLAS-R3S-2021-03-00-00\''
+tzreco.args += ' --conditionsTag=\'CONDBR2-BLKPA-2024-03\' --geometryVersion=\'ATLAS-R3S-2021-03-02-00\''
 tzreco.args += ' --preExec="{:s}"'.format(tzrecoPreExec)
 tzreco.args += ' --CA'
 
diff --git a/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1PhysP1_T0Mon_build.py b/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1PhysP1_T0Mon_build.py
index 60e47baa3b0e7d931238c2ae2213d4182f3c0bab..7df1e80c5955895d64e742a9f813a84c971e51e1 100755
--- a/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1PhysP1_T0Mon_build.py
+++ b/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1PhysP1_T0Mon_build.py
@@ -67,7 +67,7 @@ tzreco.max_events = 50
 tzreco.args = '--inputBSFile=' + find_file('*.physics_Main*._athenaHLT*.data')  # output of the previous step
 tzreco.args += ' --outputAODFile=AOD.pool.root'
 tzreco.args += ' --outputHISTFile=hist.root'
-tzreco.args += ' --conditionsTag=\'CONDBR2-BLKPA-2022-08\' --geometryVersion=\'ATLAS-R3S-2021-03-00-00\''
+tzreco.args += ' --conditionsTag=\'CONDBR2-BLKPA-2024-03\' --geometryVersion=\'ATLAS-R3S-2021-03-02-00\''
 tzreco.args += ' --preExec="{:s}"'.format(tzrecoPreExec)
 tzreco.args += ' --CA'
 
diff --git a/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1PhysP1_T0Mon_grid.py b/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1PhysP1_T0Mon_grid.py
index 1d542dfa2fd56313f7e2c2a99d7e0b471409960a..a83d2e865d7134f55c3b8b1550b9b33c149e73a4 100755
--- a/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1PhysP1_T0Mon_grid.py
+++ b/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1PhysP1_T0Mon_grid.py
@@ -76,7 +76,7 @@ tzreco.explicit_input = True
 tzreco.args = '--inputBSFile=' + find_file('*.physics_Main*._athenaHLT*.data')  # output of the previous step
 tzreco.args += ' --outputAODFile=AOD.pool.root'
 tzreco.args += ' --outputHISTFile=hist.root'
-tzreco.args += ' --conditionsTag=\'CONDBR2-BLKPA-2022-08\' --geometryVersion=\'ATLAS-R3S-2021-03-00-00\''
+tzreco.args += ' --conditionsTag=\'CONDBR2-BLKPA-2024-03\' --geometryVersion=\'ATLAS-R3S-2021-03-02-00\''
 tzreco.args += ' --preExec="{:s}"'.format(tzrecoPreExec)
 tzreco.args += ' --CA'
 
diff --git a/Trigger/TrigValidation/TrigValTools/share/TrigValInputs.json b/Trigger/TrigValidation/TrigValTools/share/TrigValInputs.json
index 633f4185c9df9abc345123f62ae4ee1965760c3c..b024d0b9458c543233b9adfee19fd6e3405e29ea 100644
--- a/Trigger/TrigValidation/TrigValTools/share/TrigValInputs.json
+++ b/Trigger/TrigValidation/TrigValTools/share/TrigValInputs.json
@@ -3,15 +3,15 @@
         "source": "data",
         "format": "BS",
         "paths": [
-	    "/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/TrigP1Test/data22_13p6TeV.00440499.physics_EnhancedBias.merge.RAW._lb0470._SFO-11._0001.1",
-	    "/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/TrigP1Test/data22_13p6TeV.00440499.physics_EnhancedBias.merge.RAW._lb0470._SFO-12._0001.1"
+	    "/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/TrigP1Test/data24_13p6TeV.00475321.physics_EnhancedBias.merge.RAW._lb0231._SFO-11._0001.1",
+	    "/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/TrigP1Test/data24_13p6TeV.00475321.physics_EnhancedBias.merge.RAW._lb0231._SFO-12._0001.1"
         ]
     },
     "data_Main": {
         "source": "data",
         "format": "BS",
         "paths": [
-            "/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/TrigP1Test/data22_13p6TeV.00440499.physics_Main.daq.RAW._lb0461._SFO-13._0004.data"
+            "/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/TrigP1Test/data24_13p6TeV.00475321.physics_Main.daq.RAW._lb0247._SFO-11._0006.data"
         ]
     },
     "data_run1": {
diff --git a/Trigger/TriggerCommon/TrigEDMConfig/python/TriggerEDMRun3.py b/Trigger/TriggerCommon/TrigEDMConfig/python/TriggerEDMRun3.py
index d1073ccc2d74f47265e20629a181101e75c0bb52..bec343719f33ce4e7a85fe8c29e3508dc09e197e 100644
--- a/Trigger/TriggerCommon/TrigEDMConfig/python/TriggerEDMRun3.py
+++ b/Trigger/TriggerCommon/TrigEDMConfig/python/TriggerEDMRun3.py
@@ -312,14 +312,14 @@ TriggerHLTListRun3 = [
     ('TrigRoiDescriptorCollection#HLT_Roi_IDCalibPEB',           'BS ESD AODFULL',  'ID'),
 
     # Run-2 L1 (temporary)
-    ('xAOD::EmTauRoIContainer#LVL1EmTauRoIs' ,               'ESD AODFULL AODSLIM AODBLSSLIM', 'L1'),
-    ('xAOD::EmTauRoIAuxContainer#LVL1EmTauRoIsAux.' ,        'ESD AODFULL AODSLIM AODBLSSLIM', 'L1'),
-    ('xAOD::JetRoIContainer#LVL1JetRoIs' ,                   'ESD AODFULL AODSLIM AODBLSSLIM', 'L1'),
-    ('xAOD::JetRoIAuxContainer#LVL1JetRoIsAux.' ,            'ESD AODFULL AODSLIM AODBLSSLIM', 'L1'),
-    ('xAOD::JetEtRoI#LVL1JetEtRoI' ,                         'ESD AODFULL AODSLIM AODBLSSLIM', 'L1'),
-    ('xAOD::JetEtRoIAuxInfo#LVL1JetEtRoIAux.' ,              'ESD AODFULL AODSLIM AODBLSSLIM', 'L1'),
-    ('xAOD::EnergySumRoI#LVL1EnergySumRoI' ,                 'ESD AODFULL AODSLIM AODBLSSLIM', 'L1'),
-    ('xAOD::EnergySumRoIAuxInfo#LVL1EnergySumRoIAux.',       'ESD AODFULL AODSLIM AODBLSSLIM', 'L1'),
+    ('xAOD::EmTauRoIContainer#LVL1EmTauRoIs' ,               'ESD AODFULL AODSLIM', 'L1'),
+    ('xAOD::EmTauRoIAuxContainer#LVL1EmTauRoIsAux.' ,        'ESD AODFULL AODSLIM', 'L1'),
+    ('xAOD::JetRoIContainer#LVL1JetRoIs' ,                   'ESD AODFULL AODSLIM', 'L1'),
+    ('xAOD::JetRoIAuxContainer#LVL1JetRoIsAux.' ,            'ESD AODFULL AODSLIM', 'L1'),
+    ('xAOD::JetEtRoI#LVL1JetEtRoI' ,                         'ESD AODFULL AODSLIM', 'L1'),
+    ('xAOD::JetEtRoIAuxInfo#LVL1JetEtRoIAux.' ,              'ESD AODFULL AODSLIM', 'L1'),
+    ('xAOD::EnergySumRoI#LVL1EnergySumRoI' ,                 'ESD AODFULL AODSLIM', 'L1'),
+    ('xAOD::EnergySumRoIAuxInfo#LVL1EnergySumRoIAux.',       'ESD AODFULL AODSLIM', 'L1'),
 
     #Run-3 L1
 
@@ -338,30 +338,30 @@ TriggerHLTListRun3 = [
     ('xAOD::MuonRoIContainer#LVL1MuonRoIsBCp2',                      'BS ESD AODFULL', 'L1'),
     ('xAOD::MuonRoIAuxContainer#LVL1MuonRoIsBCp2Aux.',               'BS ESD AODFULL', 'L1'),
 
-    ('xAOD::eFexEMRoIContainer#L1_eEMRoI',                                          'BS ESD AODFULL PhysicsTLA EgammaPEBTLA', 'L1'),
-    ('xAOD::eFexEMRoIAuxContainer#L1_eEMRoIAux.thresholdPatterns',                  'BS ESD AODFULL PhysicsTLA EgammaPEBTLA', 'L1'),
-    ('xAOD::eFexTauRoIContainer#L1_eTauRoI',                                        'BS ESD AODFULL', 'L1'),
-    ('xAOD::eFexTauRoIAuxContainer#L1_eTauRoIAux.thresholdPatterns',                'BS ESD AODFULL', 'L1'),
-    ('xAOD::eFexTauRoIContainer#L1_cTauRoI',                                        'BS ESD AODFULL', 'L1'),
-    ('xAOD::eFexTauRoIAuxContainer#L1_cTauRoIAux.thresholdPatterns.jTauLink',       'BS ESD AODFULL', 'L1'),
-
-    ('xAOD::jFexTauRoIContainer#L1_jFexTauRoI',                                     'BS ESD AODFULL', 'L1'),
-    ('xAOD::jFexTauRoIAuxContainer#L1_jFexTauRoIAux.thresholdPatterns',             'BS ESD AODFULL', 'L1'),
-    ('xAOD::jFexFwdElRoIContainer#L1_jFexFwdElRoI',                                 'BS ESD AODFULL', 'L1'),
-    ('xAOD::jFexFwdElRoIAuxContainer#L1_jFexFwdElRoIAux.thresholdPatterns',         'BS ESD AODFULL', 'L1'),
-    ('xAOD::jFexSRJetRoIContainer#L1_jFexSRJetRoI',                                 'BS ESD AODFULL', 'L1'),
-    ('xAOD::jFexSRJetRoIAuxContainer#L1_jFexSRJetRoIAux.thresholdPatterns',         'BS ESD AODFULL', 'L1'),
-    ('xAOD::jFexLRJetRoIContainer#L1_jFexLRJetRoI',                                 'BS ESD AODFULL', 'L1'),
-    ('xAOD::jFexLRJetRoIAuxContainer#L1_jFexLRJetRoIAux.thresholdPatterns',         'BS ESD AODFULL', 'L1'),
+    ('xAOD::eFexEMRoIContainer#L1_eEMRoI',                                          'BS ESD AODFULL AODSLIM PhysicsTLA EgammaPEBTLA', 'L1'),
+    ('xAOD::eFexEMRoIAuxContainer#L1_eEMRoIAux.thresholdPatterns',                  'BS ESD AODFULL AODSLIM PhysicsTLA EgammaPEBTLA', 'L1'),
+    ('xAOD::eFexTauRoIContainer#L1_eTauRoI',                                        'BS ESD AODFULL AODSLIM', 'L1'),
+    ('xAOD::eFexTauRoIAuxContainer#L1_eTauRoIAux.thresholdPatterns',                'BS ESD AODFULL AODSLIM', 'L1'),
+    ('xAOD::eFexTauRoIContainer#L1_cTauRoI',                                        'BS ESD AODFULL AODSLIM', 'L1'),
+    ('xAOD::eFexTauRoIAuxContainer#L1_cTauRoIAux.thresholdPatterns.jTauLink',       'BS ESD AODFULL AODSLIM', 'L1'),
+
+    ('xAOD::jFexTauRoIContainer#L1_jFexTauRoI',                                     'BS ESD AODFULL AODSLIM', 'L1'),
+    ('xAOD::jFexTauRoIAuxContainer#L1_jFexTauRoIAux.thresholdPatterns',             'BS ESD AODFULL AODSLIM', 'L1'),
+    ('xAOD::jFexFwdElRoIContainer#L1_jFexFwdElRoI',                                 'BS ESD AODFULL AODSLIM', 'L1'),
+    ('xAOD::jFexFwdElRoIAuxContainer#L1_jFexFwdElRoIAux.thresholdPatterns',         'BS ESD AODFULL AODSLIM', 'L1'),
+    ('xAOD::jFexSRJetRoIContainer#L1_jFexSRJetRoI',                                 'BS ESD AODFULL AODSLIM', 'L1'),
+    ('xAOD::jFexSRJetRoIAuxContainer#L1_jFexSRJetRoIAux.thresholdPatterns',         'BS ESD AODFULL AODSLIM', 'L1'),
+    ('xAOD::jFexLRJetRoIContainer#L1_jFexLRJetRoI',                                 'BS ESD AODFULL AODSLIM', 'L1'),
+    ('xAOD::jFexLRJetRoIAuxContainer#L1_jFexLRJetRoIAux.thresholdPatterns',         'BS ESD AODFULL AODSLIM', 'L1'),
     ('xAOD::jFexMETRoIContainer#L1_jFexMETRoI',                                     'BS ESD AODFULL', 'L1'),
     ('xAOD::jFexMETRoIAuxContainer#L1_jFexMETRoIAux.thresholdPatterns',             'BS ESD AODFULL', 'L1'),
     ('xAOD::jFexSumETRoIContainer#L1_jFexSumETRoI',                                 'BS ESD AODFULL', 'L1'),
     ('xAOD::jFexSumETRoIAuxContainer#L1_jFexSumETRoIAux.thresholdPatterns',         'BS ESD AODFULL', 'L1'),
 
-    ('xAOD::gFexJetRoIContainer#L1_gFexSRJetRoI',                                       'BS ESD AODFULL', 'L1'),
-    ('xAOD::gFexJetRoIAuxContainer#L1_gFexSRJetRoIAux.thresholdPatterns',               'BS ESD AODFULL', 'L1'),
-    ('xAOD::gFexJetRoIContainer#L1_gFexLRJetRoI',                                       'BS ESD AODFULL', 'L1'),
-    ('xAOD::gFexJetRoIAuxContainer#L1_gFexLRJetRoIAux.thresholdPatterns',               'BS ESD AODFULL', 'L1'),
+    ('xAOD::gFexJetRoIContainer#L1_gFexSRJetRoI',                                       'BS ESD AODFULL AODSLIM', 'L1'),
+    ('xAOD::gFexJetRoIAuxContainer#L1_gFexSRJetRoIAux.thresholdPatterns',               'BS ESD AODFULL AODSLIM', 'L1'),
+    ('xAOD::gFexJetRoIContainer#L1_gFexLRJetRoI',                                       'BS ESD AODFULL AODSLIM', 'L1'),
+    ('xAOD::gFexJetRoIAuxContainer#L1_gFexLRJetRoIAux.thresholdPatterns',               'BS ESD AODFULL AODSLIM', 'L1'),
     ('xAOD::gFexJetRoIContainer#L1_gFexRhoRoI',                                         'BS ESD AODFULL', 'L1'),
     ('xAOD::gFexJetRoIAuxContainer#L1_gFexRhoRoIAux.thresholdPatterns',                 'BS ESD AODFULL', 'L1'),
     ('xAOD::gFexGlobalRoIContainer#L1_gScalarEJwoj',                                    'BS ESD AODFULL', 'L1'),
@@ -381,26 +381,26 @@ TriggerHLTListRun3 = [
     ('xAOD::gFexGlobalRoIContainer#L1_gScalarERms',                                     'BS ESD AODFULL', 'L1'),
     ('xAOD::gFexGlobalRoIAuxContainer#L1_gScalarERmsAux.thresholdPatterns',             'BS ESD AODFULL', 'L1'),
 
-    ('xAOD::EnergySumRoI#jXENOISECUTPerf' ,                 'ESD AODFULL AODSLIM AODBLSSLIM', 'L1'),
-    ('xAOD::EnergySumRoIAuxInfo#jXENOISECUTPerfAux.',       'ESD AODFULL AODSLIM AODBLSSLIM', 'L1'),
+    ('xAOD::EnergySumRoI#jXENOISECUTPerf' ,                 'ESD AODFULL', 'L1'),
+    ('xAOD::EnergySumRoIAuxInfo#jXENOISECUTPerfAux.',       'ESD AODFULL', 'L1'),
 
-    ('xAOD::EnergySumRoI#jXERHOPerf' ,                      'ESD AODFULL AODSLIM AODBLSSLIM', 'L1'),
-    ('xAOD::EnergySumRoIAuxInfo#jXERHOPerfAux.' ,           'ESD AODFULL AODSLIM AODBLSSLIM', 'L1'),
+    ('xAOD::EnergySumRoI#jXERHOPerf' ,                      'ESD AODFULL', 'L1'),
+    ('xAOD::EnergySumRoIAuxInfo#jXERHOPerfAux.' ,           'ESD AODFULL', 'L1'),
 
-    ('xAOD::EnergySumRoI#gXENOISECUTPerf' ,                  'ESD AODFULL AODSLIM AODBLSSLIM', 'L1'),
-    ('xAOD::EnergySumRoIAuxInfo#gXENOISECUTPerfAux.' ,       'ESD AODFULL AODSLIM AODBLSSLIM', 'L1'),
+    ('xAOD::EnergySumRoI#gXENOISECUTPerf' ,                  'ESD AODFULL', 'L1'),
+    ('xAOD::EnergySumRoIAuxInfo#gXENOISECUTPerfAux.' ,       'ESD AODFULL', 'L1'),
 
-    ('xAOD::EnergySumRoI#gXERHOPerf' ,                 'ESD AODFULL AODSLIM AODBLSSLIM', 'L1'),
-    ('xAOD::EnergySumRoIAuxInfo#gXERHOPerfAux.',       'ESD AODFULL AODSLIM AODBLSSLIM', 'L1'),
+    ('xAOD::EnergySumRoI#gXERHOPerf' ,                 'ESD AODFULL', 'L1'),
+    ('xAOD::EnergySumRoIAuxInfo#gXERHOPerfAux.',       'ESD AODFULL', 'L1'),
 
-    ('xAOD::EnergySumRoI#gXEJWOJPerf' ,                     'ESD AODFULL AODSLIM AODBLSSLIM', 'L1'),
-    ('xAOD::EnergySumRoIAuxInfo#gXEJWOJPerfAux.',           'ESD AODFULL AODSLIM AODBLSSLIM', 'L1'),
+    ('xAOD::EnergySumRoI#gXEJWOJPerf' ,                     'ESD AODFULL', 'L1'),
+    ('xAOD::EnergySumRoIAuxInfo#gXEJWOJPerfAux.',           'ESD AODFULL', 'L1'),
 
-    ("xAOD::TrigEMClusterContainer#eElesPerf" ,             'ESD AODFULL AODSLIM AODBLSSLIM', 'L1'),
-    ("xAOD::TrigEMClusterAuxContainer#eElesPerfAux." ,      'ESD AODFULL AODSLIM AODBLSSLIM', 'L1'),
+    ("xAOD::TrigEMClusterContainer#eElesPerf" ,             'ESD AODFULL', 'L1'),
+    ("xAOD::TrigEMClusterAuxContainer#eElesPerfAux." ,      'ESD AODFULL', 'L1'),
 
-    ('xAOD::EmTauRoIContainer#eTausPerf',                   'ESD AODFULL AODSLIM AODBLSSLIM', 'L1'),
-    ('xAOD::EmTauRoIAuxContainer#eTausPerfAux.',            'ESD AODFULL AODSLIM AODBLSSLIM', 'L1'),
+    ('xAOD::EmTauRoIContainer#eTausPerf',                   'ESD AODFULL', 'L1'),
+    ('xAOD::EmTauRoIAuxContainer#eTausPerfAux.',            'ESD AODFULL', 'L1'),
 
     ('xAOD::TrigCompositeContainer#L1TopoErrorFlags_Legacy', 'BS ESD AODFULL', 'L1'),
     ('xAOD::TrigCompositeAuxContainer#L1TopoErrorFlags_LegacyAux.'+L1TopoErrorFlagVars, 'BS ESD AODFULL', 'L1'),
diff --git a/Trigger/TriggerCommon/TriggerJobOpts/python/TriggerConfigFlags.py b/Trigger/TriggerCommon/TriggerJobOpts/python/TriggerConfigFlags.py
index 481b138585cc68d3f9d96767827a8fe7779bb758..4402dc20c64aefd02d14b3f6e91ace0e76497ff0 100644
--- a/Trigger/TriggerCommon/TriggerJobOpts/python/TriggerConfigFlags.py
+++ b/Trigger/TriggerCommon/TriggerJobOpts/python/TriggerConfigFlags.py
@@ -22,8 +22,7 @@ def trigGlobalTag(flags):
     """Return global conditions data to be used in the HLT. Return None to indicate that
     no trigger-specific tag is required. Used for IOVDb.GlobalTag in AllConfigFlags.py.
     """
-    return None if flags.Input.isMC else 'CONDBR2-HLTP-2023-01'
-
+    return None if flags.Input.isMC else 'CONDBR2-HLTP-2024-01'
 
 def trigGeoTag(flags):
     """Return geometry tag to be used in the HLT. Returns None to indicate that
@@ -95,14 +94,15 @@ def createTriggerFlags(doTriggerRecoFlags):
     flags.addFlag('Trigger.L1MuonSim.CondDBOffline', 'OFLCOND-MC16-SDR-RUN2-04',
                   help='offline CondDB tag for RPC/TGC coincidence window in rerunLVL1 on data')
 
-    flags.addFlag('Trigger.L1MuonSim.RPCNBX', 8,
+    flags.addFlag('Trigger.L1MuonSim.RPCNBX', lambda prevFlags:
+                  8 if prevFlags.Input.isMC else 4,
                   help='Number of bunch crossings in RPC readout')
 
-    flags.addFlag('Trigger.L1MuonSim.RPCNBCZ', 3,
+    flags.addFlag('Trigger.L1MuonSim.RPCNBCZ', lambda prevFlags:
+                  3 if prevFlags.Input.isMC else 1,
                   help='Nominal BC for RPC readout')
 
 
-
     # Detector flags
     flags.addFlag('Trigger.doID', True,
                   help='enable Inner Detector')
diff --git a/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/CalibCosmicMon/EnhancedBiasChainConfiguration.py b/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/CalibCosmicMon/EnhancedBiasChainConfiguration.py
index df286fed91821b4265f5b9298a6c02137ec7cf7d..65c8db781a5ce94443783261088378bd52eebeb5 100644
--- a/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/CalibCosmicMon/EnhancedBiasChainConfiguration.py
+++ b/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/CalibCosmicMon/EnhancedBiasChainConfiguration.py
@@ -27,11 +27,13 @@ l1seeds = { 'low'  : \
                [
                 'L1_2eEM18',\
                 'L1_2MU3V',\
+                'L1_MU5VF_3MU3V',\
                 'L1_BPH-0DR3-eEM9jJ40_2MU3V',\
                 'L1_BPH-0DR3-eEM9jJ40_MU5VF',\
                 'L1_BPH-0M9-eEM9-eEM7_MU5VF',\
                 'L1_BPH-2M9-2DR15-2MU5VF',\
                 'L1_BPH-2M9-0DR15-C-MU5VFMU3V',\
+                'L1_BPH-7M11-25DR99-2MU3VF',\
                 'L1_BPH-8M15-0DR22-2MU5VF',\
                 'L1_BPH-8M15-0DR22-MU5VFMU3V-BO',\
                 'L1_BTAG-MU3VjJ40',\
diff --git a/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Electron/TrigElectronFactoriesCfg.py b/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Electron/TrigElectronFactoriesCfg.py
index b748dc9cf849dfb36f290387cb590064b06b749a..b034126cc5774b0e470eb521726e85178f397774 100644
--- a/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Electron/TrigElectronFactoriesCfg.py
+++ b/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Electron/TrigElectronFactoriesCfg.py
@@ -126,7 +126,8 @@ def TrigElectronIsoBuilderCfg(flags, tag, TrackParticleLocation, electronCollect
                                         TrackIsolationTool    = acc.popToolsAndMerge(TrigTrackIsolationToolCfg(flags,tag,TrackParticleLocation)),
                                         ElIsoTypes            = [[isoPar.ptcone30,isoPar.ptcone20]],
                                         ElCorTypes            = [[isoPar.coreTrackPtr]],
-                                        ElCorTypesExtra       = [[]])
+                                        ElCorTypesExtra       = [[]],
+                                        IsTrigger = True)
         acc.addEventAlgo(builder)
         return acc
 
diff --git a/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Menu/Dev_HI_run3_v1.py b/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Menu/Dev_HI_run3_v1.py
index dca8271db97f425cac55e3d7062c7e9c09e887db..52e9a467c925e87bb42b83ec62616f73920bb854 100644
--- a/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Menu/Dev_HI_run3_v1.py
+++ b/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Menu/Dev_HI_run3_v1.py
@@ -19,7 +19,7 @@ from .Physics_pp_run3_v1 import (
     #SingleElectronGroup,
     #MultiElectronGroup,
     PrimaryLegGroup,
-    #PrimaryPhIGroup,
+    PrimaryPhIGroup,
     #PrimaryL1MuGroup,
     SupportGroup,
     SupportLegGroup,
@@ -72,6 +72,12 @@ def getDevHISignatures():
         #test chains w/o ZDC
         ChainProp(name='HLT_mb_sptrk_hi_FgapC5_L1VjTE200', l1SeedThresholds=['FSNOSEED']*2, stream=[UPCStream], groups=MinBiasGroup+SupportPhIGroup+['PS:NoHLTRepro']),
         ChainProp(name='HLT_mb_sptrk_hi_FgapA5_L1VjTE200', l1SeedThresholds=['FSNOSEED']*2, stream=[UPCStream], groups=MinBiasGroup+SupportPhIGroup+['PS:NoHLTRepro']),
+
+        #test chains with eTAU1 and jTAU1
+        ChainProp(name='HLT_mb_sp_vpix30_hi_FgapAC5_L1eTAU1', l1SeedThresholds=['FSNOSEED']*2,stream=[UPCStream],groups=MinBiasGroup+PrimaryPhIGroup),
+        ChainProp(name='HLT_mb_sp_vpix30_hi_FgapAC5_L1jTAU1', l1SeedThresholds=['FSNOSEED']*2,stream=[UPCStream],groups=MinBiasGroup+PrimaryPhIGroup),
+        ChainProp(name='HLT_mb_excl_1trk5_pt1_hi_FgapAC5_L1eTAU1', l1SeedThresholds=['FSNOSEED']*2,stream=[UPCStream],groups=MinBiasGroup+PrimaryPhIGroup),
+        ChainProp(name='HLT_mb_excl_1trk5_pt1_hi_FgapAC5_L1jTAU1', l1SeedThresholds=['FSNOSEED']*2,stream=[UPCStream],groups=MinBiasGroup+PrimaryPhIGroup),
    
     ]
 
@@ -127,6 +133,8 @@ def getDevHISignatures():
         ChainProp(name='HLT_noalg_L1MBTS_1_VTE5',    l1SeedThresholds=['FSNOSEED'], stream=[UPCStream], groups=['PS:NoBulkMCProd']+MinBiasGroup+SupportLegGroup),
         ChainProp(name='HLT_noalg_mb_L1MBTS_1_VTE5', l1SeedThresholds=['FSNOSEED'], stream=[UPCStream], groups=['PS:NoBulkMCProd']+MinBiasGroup+SupportLegGroup),
 
+        ChainProp(name='HLT_noalg_L1eTAU1',           l1SeedThresholds=['FSNOSEED'], stream=[UPCStream], groups=['PS:NoBulkMCProd']+MinBiasGroup+SupportPhIGroup),
+        ChainProp(name='HLT_noalg_L1jTAU1',           l1SeedThresholds=['FSNOSEED'], stream=[UPCStream], groups=['PS:NoBulkMCProd']+MinBiasGroup+SupportPhIGroup),
     ]
 
 
diff --git a/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Menu/L1Seeds.py b/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Menu/L1Seeds.py
index 15f271333237bc8eb0783884b94167981288047d..88f4f6a9f4099321a9f6a8ec0f4fe3182ff03184 100644
--- a/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Menu/L1Seeds.py
+++ b/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Menu/L1Seeds.py
@@ -112,19 +112,16 @@ def getEBnoL1PSSeed(l1items, l1seedname):
     l1EBitems = {
         'PhysicsHigh':
         [
-            'L1_MU5VF_3MU3V',
             'L1_eEM18L_MU8F','L1_eEM26M', 'L1_eEM26T', 'L1_eEM28M','L1_2eEM10L_MU8F', 'L1_2eEM18M',
             'L1_eEM24L_3eEM12L',
-            'L1_eEM18M_2eTAU20M_jJ55_3jJ30','L1_eEM18M_2eTAU20M_jXE70','L1_eEM18M_2eTAU20M',
-            'L1_MU8F_eTAU20M_jJ55_2jJ30','L1_MU8F_eTAU20M',
-            'L1_4J15', 'L1_jJ160', 'L1_XE50', 'L1_2jJ40_jXE110',
-            'L1_eTAU80', 'L1_eTAU140', 'L1_eTAU30M_2eTAU20M_jJ55_2jJ50_3jJ30','L1_eTAU30M_2eTAU20M_jXE70','L1_eTAU30M_2jJ50_jXE90',
-            'L1_MU14FCH', 'L1_MU18VFCH', 'L1_MU8F_3jJ50', 'L1_MU8F_2jJ50', 'L1_MU10BOM',
-            'L1_J40p0ETA25_2J15p31ETA49', 'L1_J75p31ETA49', 'L1_5jJ40p0ETA25',
+            'L1_4jJ40', 'L1_jJ160', 'L1_XE50', 'L1_2jJ40_jXE110',
+            'L1_eTAU140',
+            'L1_MU8F_cTAU30M', 'L1_MU14FCH', 'L1_MU18VFCH', 'L1_MU10BOM',
+            'L1_5jJ40p0ETA25',
             'L1_3MU5VF','L1_MU8F_2jJ40_jJ50',
-            'L1_jJ80p0ETA25_2jJ55_jJ50p30ETA49',
+            'L1_jJ55p0ETA23_2jJ40p30ETA49', 'L1_jJ125p30ETA49', 'L1_jJ80p0ETA25_2jJ55_jJ50p30ETA49',
             'L1_2MU5VF_3MU3V','L1_MU8VF_2MU5VF',
-            'L1_jMJJ-500-NFF', 'L1_jJ85p0ETA21_3jJ40p0ETA25', 'L1_SC111-CjJ40', 'L1_BPH-7M11-25DR99-2MU3VF',
+            'L1_jMJJ-500-NFF', 'L1_jJ85p0ETA21_3jJ40p0ETA25', 'L1_SC111-CjJ40',
             'L1_HT190-jJ40s5pETA21', 'L1_TAU20IM_2TAU12IM_4J12p0ETA25', 
             'L1_cTAU30M_2cTAU20M_DR-eTAU30eTAU20-jJ55',
         ],
@@ -173,7 +170,7 @@ def getL1LowLumi():
         'L1_MU8F_eTAU20M_jJ55_2jJ30',
         'L1_MU8F_eTAU20M',
         'L1_MU8F_cTAU20M',
-        'L1_J75', 'L1_4J15',
+        'L1_J75', #'L1_4J15',
         'L1_XE50', 'L1_3J25p0ETA23',
         'L1_3J40', 'L1_2jJ40_jXE110',
         'L1_MU5VF_jJ80', 'L1_J75p31ETA49'
@@ -249,7 +246,7 @@ def getL1BKeePrimaryLegacy():
         'L1_J40p0ETA25_2J25_J20p31ETA49',
         'L1_J25p0ETA23_2J15p31ETA49',
         'L1_J100',
-        'L1_4J15', 
+        #'L1_4J15', 
         'L1_3J35p0ETA23',
         'L1_3J15p0ETA25_XE40',
         'L1_2eEM24L',
diff --git a/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Menu/MC_pp_run3_v1.py b/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Menu/MC_pp_run3_v1.py
index fe07b58768ec120ec68eb2d4273a86e268f91f25..0b08c8ab5461aea7b43a8ff15c1b56b03bad35f3 100644
--- a/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Menu/MC_pp_run3_v1.py
+++ b/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Menu/MC_pp_run3_v1.py
@@ -264,7 +264,34 @@ def getMCSignatures():
         ChainProp(name='HLT_j0_DJMASS900j50dphi260x200deta_calratiovar150_roiftf_preselj20emf24_L1jMJJ-500-NFF',l1SeedThresholds=['FSNOSEED'],stream=['Main'],groups=PrimaryPhIGroup+MultiJetGroup+Topo3Group),
         ChainProp(name='HLT_j30_CLEANllp_momemfrac012_calratiovar186_roiftf_preselj20emf12_L1jJ160', l1SeedThresholds=['FSNOSEED'], groups=SingleJetGroup+PrimaryPhIGroup),
 
-        
+        #ATR-29330
+        ChainProp(name='HLT_5j65c_pf_ftf_presel5c50_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + PrimaryLegGroup), 
+        ChainProp(name='HLT_5j80_pf_ftf_presel5j50_L14J15', l1SeedThresholds=['FSNOSEED'], stream=[PhysicsStream,'express'], groups=MultiJetGroup + PrimaryLegGroup, monGroups=['jetMon:t0']),
+        ChainProp(name='HLT_5j80_pf_ftf_presel5j55_L14J15', l1SeedThresholds=['FSNOSEED'], stream=[PhysicsStream,'express'], groups=MultiJetGroup + PrimaryLegGroup),
+        ChainProp(name='HLT_5j65c_pf_ftf_presel5c55_L14J15', l1SeedThresholds=['FSNOSEED'], stream=[PhysicsStream,'express'], groups=MultiJetGroup + PrimaryLegGroup, monGroups=['jetMon:t0']),
+        ChainProp(name='HLT_6j55c_pf_ftf_presel6j40_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + PrimaryLegGroup),
+        ChainProp(name='HLT_6j65_pf_ftf_presel6j40_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + PrimaryLegGroup), 
+        ChainProp(name='HLT_6j65_pf_ftf_presel6j45_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + PrimaryLegGroup), 
+        ChainProp(name='HLT_6j55c_pf_ftf_presel6c45_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + PrimaryLegGroup),
+        ChainProp(name='HLT_7j45_pf_ftf_presel7j30_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + PrimaryLegGroup),
+        ChainProp(name='HLT_10j35_pf_ftf_presel7j30_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + PrimaryLegGroup),
+
+        ChainProp(name='HLT_5j70c_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + SupportLegGroup),
+        ChainProp(name='HLT_5j85_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + SupportLegGroup),
+        ChainProp(name='HLT_6j55c_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + SupportLegGroup),
+        ChainProp(name='HLT_6j70_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + SupportLegGroup),
+        ChainProp(name='HLT_7j45_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + SupportLegGroup),
+        ChainProp(name='HLT_10j40_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + SupportLegGroup),
+
+        ChainProp(name='HLT_5j70c_ftf_presel5j50_L14J15', l1SeedThresholds=['FSNOSEED'],     groups=MultiJetGroup+SupportLegGroup+['RATE:CPS_4J15']),
+        ChainProp(name='HLT_5j85_ftf_presel5j50_L14J15', l1SeedThresholds=['FSNOSEED'],             groups=MultiJetGroup+SupportLegGroup+['RATE:CPS_4J15']),
+        ChainProp(name='HLT_6j55c_ftf_presel6j40_L14J15', l1SeedThresholds=['FSNOSEED'],     groups=MultiJetGroup+SupportLegGroup+['RATE:CPS_4J15']),
+        ChainProp(name='HLT_6j70_ftf_presel6j40_L14J15', l1SeedThresholds=['FSNOSEED'],             groups=MultiJetGroup+SupportLegGroup+['RATE:CPS_4J15']),
+        ChainProp(name='HLT_7j45_ftf_presel7j30_L14J15', l1SeedThresholds=['FSNOSEED'],             groups=MultiJetGroup+SupportLegGroup+['RATE:CPS_4J15']),
+        ChainProp(name='HLT_10j40_ftf_presel7j30_L14J15', l1SeedThresholds=['FSNOSEED'],            groups=MultiJetGroup+SupportLegGroup+['RATE:CPS_4J15']),
+        ChainProp(name='HLT_6j35c_pf_ftf_presel6c25_L14J15', l1SeedThresholds=['FSNOSEED'], stream=[PhysicsStream,'express'], groups=MultiJetGroup+SupportLegGroup+['RATE:CPS_4J15'], monGroups=['jetMon:t0']),
+        ChainProp(name='HLT_6j35c_020jvt_pf_ftf_presel6c25_L14J15', l1SeedThresholds=['FSNOSEED'], stream=[PhysicsStream,'express'], groups=PrimaryLegGroup+MultiJetGroup, monGroups=['jetMon:t0']),
+        ChainProp(name='HLT_6j45c_020jvt_pf_ftf_presel6c25_L14J15', l1SeedThresholds=['FSNOSEED'], stream=[PhysicsStream], groups=PrimaryLegGroup+MultiJetGroup),        
     ]
 
     chains['Bjet'] = [
@@ -543,6 +570,12 @@ def getMCSignatures():
         # VBF chains
         ChainProp(name='HLT_j65a_j45a_2j35a_SHARED_2j35_0eta290_020jvt_bgn170_j0_DJMASS1000j50_pf_ftf_presela60XXa40XX2a25_L1MJJ-500-NFF', l1SeedThresholds=['FSNOSEED']*5,stream=['VBFDelayed'], groups=PrimaryLegGroup+MultiBjetGroup+LegacyTopoGroup),
 
+        #ATR-29330
+        ChainProp(name='HLT_5j35c_020jvt_j25c_020jvt_SHARED_j25c_020jvt_bgn160_pf_ftf_presel5c25XXc25b85_L14J15', l1SeedThresholds=['FSNOSEED']*3, stream=['VBFDelayed'], groups=PrimaryLegGroup+MultiBjetGroup),
+        ChainProp(name='HLT_5j45c_020jvt_j25c_020jvt_SHARED_j25c_020jvt_bgn160_pf_ftf_presel5c25XXc25b85_L14J15', l1SeedThresholds=['FSNOSEED']*3, stream=['VBFDelayed'], groups=PrimaryLegGroup+MultiBjetGroup),
+        ChainProp(name='HLT_5j35c_020jvt_j25c_020jvt_SHARED_j25c_020jvt_boffperf_pf_ftf_presel6c25_L14J15', l1SeedThresholds=['FSNOSEED']*3, stream=['VBFDelayed'], groups=SupportLegGroup+MultiBjetGroup+['RATE:CPS_4J15']),
+
+
     ]
 
     chains['Egamma'] = [
@@ -734,8 +767,7 @@ def getMCSignatures():
         ChainProp(name='HLT_larpsallem_L1EM7_FIRSTEMPTY', l1SeedThresholds=['EM7'], stream=['LArNoiseBurst'], groups=['RATE:Calibration','BW:Detector']+SupportLegGroup),
         ChainProp(name='HLT_larpsallem_L1EM7_EMPTY', l1SeedThresholds=['EM7'], stream=['CosmicCalo'],groups=['RATE:Cosmic_Calo','RATE:Calibration','BW:Jet']+SupportLegGroup),
         ChainProp(name='HLT_larnoiseburst_L1J40_XE50', l1SeedThresholds=['FSNOSEED'], stream=['LArNoiseBurst'], groups=['RATE:Calibration','BW:Detector']+SupportLegGroup), # ATR-28761 moved
-        ChainProp(name='HLT_larnoiseburst_L1J40_XE60', l1SeedThresholds=['FSNOSEED'], stream=['LArNoiseBurst'], groups=['RATE:Calibration','BW:Detector']+SupportLegGroup), # ATR-28761 moved
-
+        ChainProp(name='HLT_larnoiseburst_L1J40_XE60', l1SeedThresholds=['FSNOSEED'], stream=['LArNoiseBurst'], groups=['RATE:Calibration','BW:Detector']+SupportLegGroup), # ATR-28761 moveds
     ]
 
     chains['Bphysics'] = [
diff --git a/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Menu/P1_run3_v1.py b/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Menu/P1_run3_v1.py
index 907ec5aaf9993fbdd99a93df32c233a859eb286a..094441d4aee163b4f369e8f070f37a8de7b018e1 100644
--- a/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Menu/P1_run3_v1.py
+++ b/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Menu/P1_run3_v1.py
@@ -358,8 +358,6 @@ def addHighMuP1Signatures(chains):
         #IDcalib for lower lumi
         ChainProp(name='HLT_idcalib_trk4_IDCalibPEB_L1jJ60', stream=['IDCalib'], groups=SupportPhIGroup+['RATE:Calibration','BW:Detector'], l1SeedThresholds=['FSNOSEED']),
 
-        ChainProp(name='HLT_idcalib_trk9_IDCalibPEB_L14J15', stream=['IDCalib'], groups=SupportLegGroup+['RATE:Calibration','BW:Detector'],  l1SeedThresholds=['FSNOSEED']),
-        ChainProp(name='HLT_idcalib_trk4_IDCalibPEB_L14J15', stream=['IDCalib'], groups=SupportLegGroup+['RATE:Calibration','BW:Detector'], l1SeedThresholds=['FSNOSEED']), 
         #
         ChainProp(name='HLT_idcalib_trk9_IDCalibPEB_L1jJ160',  stream=['IDCalib'], groups=SupportPhIGroup+['RATE:Calibration','BW:Detector'], l1SeedThresholds=['FSNOSEED']), 
         ChainProp(name='HLT_idcalib_trk9_IDCalibPEB_L1jXE100', stream=['IDCalib'], groups=SupportPhIGroup+['RATE:Calibration','BW:Detector'], l1SeedThresholds=['FSNOSEED']),
@@ -422,8 +420,8 @@ def addHighMuP1Signatures(chains):
 
         # ATR-23061, ATR-26394
         # Beamspot chains using FS tracking -- no PEB, fill BeamSpot histograms then reject all events
-        ChainProp(name='HLT_j0_pf_ftf_preselj20_beamspotVtx_L1J15' , l1SeedThresholds=['FSNOSEED'], stream=['DISCARD'], groups=['RATE:DISCARD',  'BW:DISCARD', 'RATE:CPS_J15']+SupportLegGroup),
-        ChainProp(name='HLT_j0_pf_ftf_presel6c25_beamspotVtx_L14J15', l1SeedThresholds=['FSNOSEED'], stream=['DISCARD'], groups=['RATE:DISCARD',  'BW:DISCARD', 'RATE:CPS_4J15']+SupportLegGroup),
+        #ChainProp(name='HLT_j0_pf_ftf_preselj20_beamspotVtx_L1J15' , l1SeedThresholds=['FSNOSEED'], stream=['DISCARD'], groups=['RATE:DISCARD',  'BW:DISCARD', 'RATE:CPS_J15']+SupportLegGroup),
+        #ChainProp(name='HLT_j0_pf_ftf_presel6c25_beamspotVtx_L14J15', l1SeedThresholds=['FSNOSEED'], stream=['DISCARD'], groups=['RATE:DISCARD',  'BW:DISCARD', 'RATE:CPS_4J15']+SupportLegGroup),
         # ChainProp(name='HLT_j0_pf_ftf_presel2c20b85_beamspotVtx_L1J45p0ETA21_3J15p0ETA25', l1SeedThresholds=['FSNOSEED'], stream=['DISCARD'], groups=['RATE:DISCARD',  'BW:BeamSpot', 'RATE:CPS_J45p0ETA21_3J15p0ETA25']+SupportLegGroup),
         #
         ChainProp(name='HLT_j0_pf_ftf_preselj20_beamspotVtx_L1jJ40' , l1SeedThresholds=['FSNOSEED'], stream=['DISCARD'], groups=['RATE:DISCARD',  'BW:DISCARD', 'RATE:CPS_jJ40']+SupportPhIGroup),
@@ -436,7 +434,6 @@ def addHighMuP1Signatures(chains):
         # ATR-23061, ATR-26394
         # BeamspotPEB chains -- only run preselection without tracking, write PEB data
         ChainProp(name='HLT_j0_pf_ftf_preselj20_BeamSpotPEB_L1J15' , l1SeedThresholds=['FSNOSEED'], stream=['BeamSpot'], groups=['RATE:BeamSpot', 'BW:BeamSpot', 'RATE:CPS_J15']+SupportLegGroup),
-        ChainProp(name='HLT_j0_pf_ftf_presel6c25_BeamSpotPEB_L14J15', l1SeedThresholds=['FSNOSEED'], stream=['BeamSpot'], groups=['RATE:BeamSpot',  'BW:BeamSpot', 'RATE:CPS_4J15']+SupportLegGroup),
         # ChainProp(name='HLT_j0_pf_ftf_presel2c20b85_BeamSpotPEB_L1J45p0ETA21_3J15p0ETA25', l1SeedThresholds=['FSNOSEED'], stream=['BeamSpot'], groups=['RATE:BeamSpot',  'BW:BeamSpot', 'RATE:CPS_J45p0ETA21_3J15p0ETA25']+SupportLegGroup),
         #
         ChainProp(name='HLT_j0_pf_ftf_preselj20_BeamSpotPEB_L1jJ40' , l1SeedThresholds=['FSNOSEED'], stream=['BeamSpot'], groups=['RATE:BeamSpot',  'BW:BeamSpot', 'RATE:CPS_jJ40']+SupportPhIGroup),
diff --git a/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Menu/Physics_pp_run3_v1.py b/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Menu/Physics_pp_run3_v1.py
index f9a66c546a4e4a3850239e55556015622d437e3e..a79cf888d258967a31b13a8c881ee51a9abf1054 100644
--- a/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Menu/Physics_pp_run3_v1.py
+++ b/Trigger/TriggerCommon/TriggerMenuMT/python/HLT/Menu/Physics_pp_run3_v1.py
@@ -1167,48 +1167,24 @@ def setupMenu(menu_name):
         ChainProp(name='HLT_2j235c_j115c_pf_ftf_presel2j180XXj80_L1J100', l1SeedThresholds=['FSNOSEED']*2, groups=MultiJetGroup + PrimaryLegGroup),
         ChainProp(name='HLT_3j190_pf_ftf_presel3j150_L1J100', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + PrimaryLegGroup), 
         ChainProp(name='HLT_4j110_pf_ftf_presel4j85_L13J50', l1SeedThresholds=['FSNOSEED'], stream=[PhysicsStream,'express'], groups=MultiJetGroup + PrimaryLegGroup, monGroups=['jetMon:t0']), 
-        ChainProp(name='HLT_5j65c_pf_ftf_presel5c50_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + PrimaryLegGroup), 
         ChainProp(name='HLT_5j65c_pf_ftf_presel5c50_L14jJ40', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + PrimaryPhIGroup),
-        ChainProp(name='HLT_5j80_pf_ftf_presel5j50_L14J15', l1SeedThresholds=['FSNOSEED'], stream=[PhysicsStream,'express'], groups=MultiJetGroup + PrimaryLegGroup, monGroups=['jetMon:t0']),
         # ATR-25512
-        ChainProp(name='HLT_5j80_pf_ftf_presel5j55_L14J15', l1SeedThresholds=['FSNOSEED'], stream=[PhysicsStream,'express'], groups=MultiJetGroup + PrimaryLegGroup),
-        ChainProp(name='HLT_5j65c_pf_ftf_presel5c55_L14J15', l1SeedThresholds=['FSNOSEED'], stream=[PhysicsStream,'express'], groups=MultiJetGroup + PrimaryLegGroup, monGroups=['jetMon:t0']),
         ChainProp(name='HLT_5j65c_pf_ftf_presel5c55_L14jJ40', l1SeedThresholds=['FSNOSEED'], stream=[PhysicsStream,'express'], groups=MultiJetGroup + PrimaryPhIGroup, monGroups=['jetMon:t0']), 
 
-        ChainProp(name='HLT_6j55c_pf_ftf_presel6j40_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + PrimaryLegGroup),
-        ChainProp(name='HLT_6j65_pf_ftf_presel6j40_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + PrimaryLegGroup), 
-        # ATR-25512
-        ChainProp(name='HLT_6j65_pf_ftf_presel6j45_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + PrimaryLegGroup), 
-        ChainProp(name='HLT_6j55c_pf_ftf_presel6c45_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + PrimaryLegGroup),
-
-        ChainProp(name='HLT_7j45_pf_ftf_presel7j30_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + PrimaryLegGroup),
-        ChainProp(name='HLT_10j35_pf_ftf_presel7j30_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + PrimaryLegGroup),
-        
         ## EMTopo backups, should increase thresholds for these and following
         ChainProp(name='HLT_3j200_L1J100', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + SupportLegGroup, monGroups=['jetMon:t0']),
         ChainProp(name='HLT_4j120_L13J50', l1SeedThresholds=['FSNOSEED'], stream=[PhysicsStream,'express'], groups=MultiJetGroup + SupportLegGroup, monGroups=['jetMon:t0']),
-        ChainProp(name='HLT_5j70c_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + SupportLegGroup),
-        ChainProp(name='HLT_5j85_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + SupportLegGroup),
-        ChainProp(name='HLT_6j55c_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + SupportLegGroup),
-        ChainProp(name='HLT_6j70_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + SupportLegGroup),
-        ChainProp(name='HLT_7j45_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + SupportLegGroup),
-        ChainProp(name='HLT_10j40_L14J15', l1SeedThresholds=['FSNOSEED'], groups=MultiJetGroup + SupportLegGroup),
+        
         ## FTF+EMTopo
         ChainProp(name='HLT_2j250c_j120c_ftf_presel2j180XXj80_L1J100', l1SeedThresholds=['FSNOSEED']*2, groups=MultiJetGroup+SupportLegGroup+['RATE:CPS_J100']),
         ChainProp(name='HLT_3j200_ftf_presel3j150_L1J100', l1SeedThresholds=['FSNOSEED'],           groups=MultiJetGroup+SupportLegGroup+['RATE:CPS_J100']),
         ChainProp(name='HLT_4j115_ftf_presel4j85_L13J50', l1SeedThresholds=['FSNOSEED'],            groups=MultiJetGroup+SupportLegGroup),
         ChainProp(name='HLT_4j115_ftf_presel4j85_L13jJ90', l1SeedThresholds=['FSNOSEED'],            groups=MultiJetGroup+SupportPhIGroup),
-        ChainProp(name='HLT_5j70c_ftf_presel5j50_L14J15', l1SeedThresholds=['FSNOSEED'],     groups=MultiJetGroup+SupportLegGroup+['RATE:CPS_4J15']),
         ChainProp(name='HLT_5j70c_ftf_presel5j50_L14jJ40', l1SeedThresholds=['FSNOSEED'],     groups=MultiJetGroup+SupportPhIGroup+['RATE:CPS_4jJ40']),
-        ChainProp(name='HLT_5j85_ftf_presel5j50_L14J15', l1SeedThresholds=['FSNOSEED'],             groups=MultiJetGroup+SupportLegGroup+['RATE:CPS_4J15']),
         ChainProp(name='HLT_5j85_ftf_presel5j50_L14jJ40', l1SeedThresholds=['FSNOSEED'],             groups=MultiJetGroup+SupportPhIGroup+['RATE:CPS_4jJ40']),
-        ChainProp(name='HLT_6j55c_ftf_presel6j40_L14J15', l1SeedThresholds=['FSNOSEED'],     groups=MultiJetGroup+SupportLegGroup+['RATE:CPS_4J15']),
         ChainProp(name='HLT_6j55c_ftf_presel6j40_L14jJ40', l1SeedThresholds=['FSNOSEED'],     groups=MultiJetGroup+SupportPhIGroup+['RATE:CPS_4jJ40']),
-        ChainProp(name='HLT_6j70_ftf_presel6j40_L14J15', l1SeedThresholds=['FSNOSEED'],             groups=MultiJetGroup+SupportLegGroup+['RATE:CPS_4J15']),
         ChainProp(name='HLT_6j70_ftf_presel6j40_L14jJ40', l1SeedThresholds=['FSNOSEED'],             groups=MultiJetGroup+SupportPhIGroup+['RATE:CPS_4jJ40']),
-        ChainProp(name='HLT_7j45_ftf_presel7j30_L14J15', l1SeedThresholds=['FSNOSEED'],             groups=MultiJetGroup+SupportLegGroup+['RATE:CPS_4J15']),
         ChainProp(name='HLT_7j45_ftf_presel7j30_L14jJ40', l1SeedThresholds=['FSNOSEED'],             groups=MultiJetGroup+SupportPhIGroup+['RATE:CPS_4jJ40']),
-        ChainProp(name='HLT_10j40_ftf_presel7j30_L14J15', l1SeedThresholds=['FSNOSEED'],            groups=MultiJetGroup+SupportLegGroup+['RATE:CPS_4J15']),
         ChainProp(name='HLT_10j40_ftf_presel7j30_L14jJ40', l1SeedThresholds=['FSNOSEED'],            groups=MultiJetGroup+SupportPhIGroup+['RATE:CPS_4jJ40']),
         ## Phase-I FTF+EMTopo
         ChainProp(name='HLT_2j250c_j120c_ftf_presel2j180XXj80_L1jJ160', l1SeedThresholds=['FSNOSEED']*2, groups=MultiJetGroup+SupportPhIGroup+['RATE:CPS_jJ160']),
@@ -1217,7 +1193,6 @@ def setupMenu(menu_name):
         ### no presel
         ChainProp(name='HLT_3j190_pf_ftf_L1J100', l1SeedThresholds=['FSNOSEED'], stream=[PhysicsStream], groups=MultiJetGroup+SupportLegGroup+['RATE:CPS_J100'], monGroups=['jetMon:t0']), 
         ### no jvt
-        ChainProp(name='HLT_6j35c_pf_ftf_presel6c25_L14J15', l1SeedThresholds=['FSNOSEED'], stream=[PhysicsStream,'express'], groups=MultiJetGroup+SupportLegGroup+['RATE:CPS_4J15'], monGroups=['jetMon:t0']),
         ChainProp(name='HLT_6j35c_pf_ftf_presel6c25_L14jJ40', l1SeedThresholds=['FSNOSEED'], stream=[PhysicsStream,'express'], groups=MultiJetGroup+SupportPhIGroup+['RATE:CPS_4jJ40'], monGroups=['jetMon:t0']),
         ### Phase-I no presel
         ChainProp(name='HLT_3j190_pf_ftf_L1jJ160', l1SeedThresholds=['FSNOSEED'], stream=[PhysicsStream], groups=MultiJetGroup+SupportPhIGroup+['RATE:CPS_jJ160'], monGroups=['jetMon:t0']),
@@ -1267,8 +1242,6 @@ def setupMenu(menu_name):
         ChainProp(name='HLT_j0_HT940_pf_ftf_preselj200_L1J100', l1SeedThresholds=['FSNOSEED'], groups=PrimaryLegGroup+SingleJetGroup),
 
         # Multijet delayed stream
-        ChainProp(name='HLT_6j35c_020jvt_pf_ftf_presel6c25_L14J15', l1SeedThresholds=['FSNOSEED'], stream=[PhysicsStream,'express'], groups=PrimaryLegGroup+MultiJetGroup, monGroups=['jetMon:t0']),
-        ChainProp(name='HLT_6j45c_020jvt_pf_ftf_presel6c25_L14J15', l1SeedThresholds=['FSNOSEED'], stream=[PhysicsStream], groups=PrimaryLegGroup+MultiJetGroup),
 
         ChainProp(name='HLT_6j20_pf_ftf_presel6c25_PhysicsTLA_L14jJ40', l1SeedThresholds=['FSNOSEED'], stream=['TLA'], groups=PrimaryPhIGroup+MultiJetGroup, monGroups=['tlaMon:shifter']),
 
@@ -1519,10 +1492,8 @@ def setupMenu(menu_name):
         ChainProp(name='HLT_j75c_020jvt_j50c_020jvt_j25c_020jvt_j20c_020jvt_boffperf_pf_ftf_presel2c20XX2c20b85_L1jJ85p0ETA21_3jJ40p0ETA25', l1SeedThresholds=['FSNOSEED']*4, stream=[PhysicsStream],  monGroups=['idMon:t0'], groups=SupportPhIGroup+MultiBjetGroup),
 
         # Delayed multijet+b
-        ChainProp(name='HLT_5j35c_020jvt_j25c_020jvt_SHARED_j25c_020jvt_bgn160_pf_ftf_presel5c25XXc25b85_L14J15', l1SeedThresholds=['FSNOSEED']*3, stream=['VBFDelayed'], groups=PrimaryLegGroup+MultiBjetGroup),
-        ChainProp(name='HLT_5j45c_020jvt_j25c_020jvt_SHARED_j25c_020jvt_bgn160_pf_ftf_presel5c25XXc25b85_L14J15', l1SeedThresholds=['FSNOSEED']*3, stream=['VBFDelayed'], groups=PrimaryLegGroup+MultiBjetGroup),
+
         # Support chain
-        ChainProp(name='HLT_5j35c_020jvt_j25c_020jvt_SHARED_j25c_020jvt_boffperf_pf_ftf_presel6c25_L14J15', l1SeedThresholds=['FSNOSEED']*3, stream=['VBFDelayed'], groups=SupportLegGroup+MultiBjetGroup+['RATE:CPS_4J15']),
         ChainProp(name='HLT_5j35c_020jvt_j25c_020jvt_SHARED_j25c_020jvt_boffperf_pf_ftf_presel6c25_L14jJ40', l1SeedThresholds=['FSNOSEED']*3, stream=['VBFDelayed'], groups=SupportPhIGroup+MultiBjetGroup),
 
         # Low-threshold support
diff --git a/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Config/ItemDef.py b/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Config/ItemDef.py
index 514e63a9bdd483234d313205b4ec59b06488e2a0..6d64b44e5b562a5cf7908d39355842be336108de 100644
--- a/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Config/ItemDef.py
+++ b/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Config/ItemDef.py
@@ -477,10 +477,12 @@ class ItemDef:
         MenuItem('L1_TAU40_UNPAIRED_ISO'   ).setLogic( d.HA40  & unpaired_isocond ).setTriggerType( TT.calo )
 
         #Phase-I
+        MenuItem('L1_eTAU1'  ).setLogic( d.eTAU1   & physcond).setTriggerType( TT.calo )
         MenuItem('L1_eTAU12'  ).setLogic( d.eTAU12   & physcond).setTriggerType( TT.calo )
         MenuItem('L1_eTAU20'  ).setLogic( d.eTAU20   & physcond).setTriggerType( TT.calo )
         MenuItem('L1_eTAU20L' ).setLogic( d.eTAU20L  & physcond).setTriggerType( TT.calo )
         MenuItem('L1_eTAU20M' ).setLogic( d.eTAU20M  & physcond).setTriggerType( TT.calo )
+        MenuItem('L1_jTAU1'  ).setLogic( d.jTAU1   & physcond).setTriggerType( TT.calo )
         MenuItem('L1_jTAU20'  ).setLogic( d.jTAU20   & physcond).setTriggerType( TT.calo )
         MenuItem('L1_jTAU30'  ).setLogic( d.jTAU30   & physcond).setTriggerType( TT.calo )
         MenuItem('L1_jTAU30M' ).setLogic( d.jTAU30M  & physcond).setTriggerType( TT.calo )
diff --git a/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Config/L1CaloThresholdMapping.py b/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Config/L1CaloThresholdMapping.py
index d1632041a40f28a4f125afed489d466327583a53..19c919e06d60303da9f2895fcf1356742f27384b 100644
--- a/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Config/L1CaloThresholdMapping.py
+++ b/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Config/L1CaloThresholdMapping.py
@@ -30,6 +30,8 @@ threshold_mapping = {
         20:15,
     },
     'eTAU': {
+        # in pp menu (doHeavyIonTobThresholds=False) ptMinToTopo value is assigined to eTAU1
+        1:1.4,
         12:8,
         20:12,
         30:20,
@@ -40,6 +42,8 @@ threshold_mapping = {
         140:100,
     },
     'jTAU': {
+        # in pp menu (doHeavyIonTobThresholds=False) ptMinToTopo value is assigined to jTAU1
+        1:1.4,
         20:12,
         30:20,
     },
diff --git a/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Config/ThresholdDef.py b/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Config/ThresholdDef.py
index 0888e88d1aa27f974a8369740d0f69b8f144a568..a9724c853d40c69b5502ac1b921a541fca0aaf5d 100644
--- a/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Config/ThresholdDef.py
+++ b/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Config/ThresholdDef.py
@@ -166,9 +166,12 @@ class ThresholdDef:
             jEMThreshold('jEMSPARE%i' % thrV, 'jEM').addThrValue(thrVal_SPARE)
 
         # eTAU
-        eTAU_cuts = [12, 20, 30, 35, 60, 80, 140]
+        eTAU_cuts = [1, 12, 20, 30, 35, 60, 80, 140]
+        # get ptMinToTopo value (different for pp and HI), then adjust threshold for lowest pT items based on this value
+        ttconfig = tc.l1menu.thresholds.typeWideThresholdConfig('eTAU')
+        ptMin = ttconfig["ptMinToTopo"]
         for thrV in eTAU_cuts:
-            eTauThreshold('eTAU%i' % thrV, 'eTAU').setEt(get_threshold_cut('eTAU', thrV))
+            eTauThreshold('eTAU%i' % thrV, 'eTAU').setEt(max(get_threshold_cut('eTAU', thrV), ptMin))
 
         eTAU_cuts = [20]
         for thrV in eTAU_cuts:
@@ -187,7 +190,7 @@ class ThresholdDef:
         for thrV in eTAU_cuts:
             eTauThreshold('eTAU%iHL' % thrV, 'eTAU').setEt(get_threshold_cut('eTAU', thrV)).setIsolation( rHad = "Loose" )
         # eTAU SPARES
-        for thrV in range(1,11):
+        for thrV in range(1,10):
             eTauThreshold('eTAUSPARE%i' % thrV, 'eTAU').setEt(thrVal_SPARE)
 
         # cTAU
@@ -200,16 +203,17 @@ class ThresholdDef:
             cTauThreshold('cTAUSPARE%i' % thrV, 'cTAU').setEt(thrVal_SPARE)
 
         # jTAU
-        jTAU_cuts = [20, 30]
+        jTAU_cuts = [1, 20, 30]
+        # get ptMinToTopo1 value (different for pp and HI), then adjust threshold for lowest pT items based on this value
+        ttconfig = tc.l1menu.thresholds.typeWideThresholdConfig('jTAU')
+        ptMin = ttconfig["ptMinToTopo1"]
         for thrV in jTAU_cuts:
-            jTauThreshold('jTAU%i' % thrV, 'jTAU').setEt(get_threshold_cut('jTAU', thrV))
+            jTauThreshold('jTAU%i' % thrV, 'jTAU').setEt(max(get_threshold_cut('jTAU', thrV), ptMin))
         jTAU_cuts = [30]
         for thrV in jTAU_cuts:
             jTauThreshold('jTAU%iM' % thrV, 'jTAU').setEt(get_threshold_cut('jTAU', thrV)).setIsolation( isolation = "Medium" )
 
         # jTAU SPARES
-        for thrV in range(1,2):
-            jTauThreshold('jTAUSPARE%i' % thrV, 'jTAU').setEt(thrVal_SPARE)
 
         # jJET (default eta range)
         # For correspondence to Run 2, see https://twiki.cern.ch/twiki/bin/viewauth/Atlas/TriggerNamingRun3#New_naming_for_Calo_items
diff --git a/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Config/TopoAlgoDefMultiplicity.py b/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Config/TopoAlgoDefMultiplicity.py
index c87e774334ea8cd7f00e02b8c6b2e737e10a1ace..e442cc1f008075bd06e5a8cf6ac6cd5d467684ce 100644
--- a/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Config/TopoAlgoDefMultiplicity.py
+++ b/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Config/TopoAlgoDefMultiplicity.py
@@ -62,10 +62,9 @@ class TopoAlgoDefMultiplicity(object):
             tm.registerTopoAlgo(alg)
                 
         etauThresholds_3bits = [ 
-            'eTAU12', 'eTAU20',    
+            'eTAU1', 'eTAU12', 'eTAU20',
 
             # spares
-            'eTAUSPARE1', 
         ]
         jtauThresholds_3bits = [ 
             'jTAU20'
@@ -83,10 +82,9 @@ class TopoAlgoDefMultiplicity(object):
             'eTAU40HT', 'eTAU60HM','eTAU60HL', 'eTAU80HL', #'eTAUSPARE6', 'eTAUSPARE7',
         ]
         jtauThresholds_2bits = [ 
-            'jTAU30', 'jTAU30M',
+            'jTAU1', 'jTAU30', 'jTAU30M',
 
             #spares
-            'jTAUSPARE1',
         ]
         ctauThresholds_2bits = [ 
             'cTAU30M', 'cTAU35M',  
diff --git a/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Config/TypeWideThresholdConfig.py b/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Config/TypeWideThresholdConfig.py
index 0428b20920c561bfead43ca43fe952cc55ccdbb3..c5f06044fd9d7fda3ae82bf5b20a502e932d86f9 100644
--- a/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Config/TypeWideThresholdConfig.py
+++ b/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Config/TypeWideThresholdConfig.py
@@ -110,11 +110,11 @@ def getTypeWideThresholdConfig(ttype, do_HI_tob_thresholds=False, do_eFex_BDT_Ta
     if ttype == ThrType.jEM:
         return getConfig_jEM()
     if ttype == ThrType.eTAU:
-        return getConfig_eTAU(do_eFex_BDT_Tau)
+        return getConfig_eTAU(do_eFex_BDT_Tau, do_HI_tob_thresholds)
     if ttype == ThrType.cTAU:
         return getConfig_cTAU(do_eFex_BDT_Tau)
     if ttype == ThrType.jTAU:
-        return getConfig_jTAU()
+        return getConfig_jTAU(do_HI_tob_thresholds)
     if ttype == ThrType.jJ:
         return getConfig_jJ()
     if ttype == ThrType.jLJ:
@@ -381,7 +381,7 @@ class L1Config_eTAU:
     bitshift_rHad = 3
 
 
-    def __call__(self, do_eFex_BDT_Tau=True) -> odict:
+    def __call__(self, do_eFex_BDT_Tau=True, do_HI_tob_thresholds=False) -> odict:
         # Load either RCore or BDT cut thresholds
         rCore_fw_loose = self.BDT_fw_loose if do_eFex_BDT_Tau else self.rCore_fw_loose
         rCore_fw_medium = self.BDT_fw_medium if do_eFex_BDT_Tau else self.rCore_fw_medium
@@ -404,7 +404,7 @@ class L1Config_eTAU:
                    ("rHad", eFEXfwToFloatConversion(self.rHad_fw_tight, self.bitshift_rHad)), ("rHad_fw", self.rHad_fw_tight), 
                  ]),
         ]
-        confObj["ptMinToTopo"] = 5 # PLACEHOLDER
+        confObj["ptMinToTopo"] = 1 if do_HI_tob_thresholds else 5 # PLACEHOLDER
         confObj["resolutionMeV"] = 100
         confObj["minIsoEt"] = 13.0 # Minimum Et for the BDT cut, in units of GeV (internally with 16-bit resolution, in units of 100 MeV)
         confObj["maxEt"] = 50 # Maximum Et for the RCore/BDT/RHad cuts, in units of GeV
@@ -534,7 +534,7 @@ getConfig_cTAU = L1Config_cTAU()
 
 
 @dataclass
-class L1Config_jTAU():
+class L1Config_jTAU:
     # jTAU isolation cut:
     # 10 bits (0 - 1023)
     # jTAU.EtIso / jTAU.Et < isolation_fw/1024 -> pass
@@ -544,7 +544,7 @@ class L1Config_jTAU():
     isolation_fw_tight: int = 307
 
 
-    def __call__(self) -> odict:
+    def __call__(self,do_HI_tob_thresholds=False) -> odict:
         confObj = odict()
         confObj["workingPoints"] = odict()
         confObj["workingPoints"]["Loose"] = [
@@ -559,12 +559,12 @@ class L1Config_jTAU():
             odict([("isolation", cTAUfwToFlowConversion(self.isolation_fw_tight)), ("isolation_fw", self.isolation_fw_tight), 
                   ]),
         ]
-        confObj["ptMinToTopo1"] = 5 # PLACEHOLDER
-        confObj["ptMinToTopo2"] = 5 # PLACEHOLDER
-        confObj["ptMinToTopo3"] = 5 # PLACEHOLDER
-        confObj["ptMinxTOB1"] = 5 # PLACEHOLDER
-        confObj["ptMinxTOB2"] = 5 # PLACEHOLDER
-        confObj["ptMinxTOB3"] = 5 # PLACEHOLDER
+        confObj["ptMinToTopo1"] = 1 if do_HI_tob_thresholds else 5 # PLACEHOLDER
+        confObj["ptMinToTopo2"] = 1 if do_HI_tob_thresholds else 5 # PLACEHOLDER
+        confObj["ptMinToTopo3"] = 1 if do_HI_tob_thresholds else 5 # PLACEHOLDER
+        confObj["ptMinxTOB1"] = 1 if do_HI_tob_thresholds else 5 # PLACEHOLDER
+        confObj["ptMinxTOB2"] = 1 if do_HI_tob_thresholds else 5 # PLACEHOLDER
+        confObj["ptMinxTOB3"] = 1 if do_HI_tob_thresholds else 5 # PLACEHOLDER
         confObj["resolutionMeV"] = 200
         confObj["maxEt"] = 50 # PLACEHOLDER
 
diff --git a/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Menu/Menu_MC_pp_run3_v1.py b/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Menu/Menu_MC_pp_run3_v1.py
index d7d41f64aa69f0e8a4e5c77cd29e264a05943262..d20f5319a6bf17460574f0d41dc8a26d2be89ac8 100644
--- a/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Menu/Menu_MC_pp_run3_v1.py
+++ b/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Menu/Menu_MC_pp_run3_v1.py
@@ -166,6 +166,9 @@ def defineMenu():
         #'L1_BPH-0DR3-EM7J15',
         'L1_LAR-ZEE',
 
+        #ATR-29330
+        'L1_4J15',
+
     ]
 
     # To replace thresholds in the physics menu
diff --git a/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Menu/Menu_Physics_HI_run3_v1.py b/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Menu/Menu_Physics_HI_run3_v1.py
index efd17602e64c74a4389f7e0262c0fd6ae7374d54..f131cf84932aebc60373e9a9ef60944450bc9c99 100644
--- a/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Menu/Menu_Physics_HI_run3_v1.py
+++ b/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Menu/Menu_Physics_HI_run3_v1.py
@@ -143,6 +143,8 @@ def defineMenu():
         'L1_2eEM1_VjTE200_EMPTY','L1_2eEM1_VjTE200_UNPAIRED_ISO','L1_2eEM1_VjTE200_UNPAIRED_NONISO',
         'L1_eEM1_TE4_VTE200', 'L1_eEM2_TE4_VTE200', 'L1_eEM1_TE4_VTE200_EMPTY',
         'L1_eEM1_VTE200', 'L1_2eEM1_VTE200', 'L1_2eEM2_VTE200', 'L1_eEM9_VTE200',
+
+        'L1_eTAU1', 'L1_jTAU1',
         
         #UPC - calo, MBTS, calo  
         'L1_ZDC_XOR_VTE200', 'L1_VZDC_A_VZDC_C_TE5_VTE200', 'L1_VZDC_A_VZDC_C_TE10_VTE200',
diff --git a/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Menu/Menu_Physics_pp_run3_v1.py b/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Menu/Menu_Physics_pp_run3_v1.py
index c95341e597b7f358b0e6be1c8a51f267ac98e339..4f0055ba8e0b465171d575d6ecbcc97482fe44c0 100644
--- a/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Menu/Menu_Physics_pp_run3_v1.py
+++ b/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Menu/Menu_Physics_pp_run3_v1.py
@@ -178,7 +178,7 @@ def defineMenu():
         # multi jet
         'L1_J50_2J40p0ETA25_3J15p0ETA25',
         
-        'L1_3J50', 'L1_4J15', 
+        'L1_3J50', #'L1_4J15', 
 
 
         # multi jet forward
diff --git a/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Menu/Menu_Physics_pp_run3_v1_inputs.py b/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Menu/Menu_Physics_pp_run3_v1_inputs.py
index bd1138f027d3e7df1d0c1bb4c6b010c78031d9c7..fd399217a7158e63d1c44e0ed3844b5c603af7d4 100644
--- a/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Menu/Menu_Physics_pp_run3_v1_inputs.py
+++ b/Trigger/TriggerCommon/TriggerMenuMT/python/L1/Menu/Menu_Physics_pp_run3_v1_inputs.py
@@ -118,7 +118,7 @@ def defineInputsMenu():
         "legacy" : False,
         "thresholds" : [ # Topo1A: eFex EM, eFex TAU, gJ, gLJ
             # eTAU thresholds for commissioning
-            ('eTAU12',3), ('eTAU20',3), ('eTAUSPARE1',3), 
+            ('eTAU12',3), ('eTAU20',3), ('eTAU1',3),
 
             (None,3),
 
@@ -199,7 +199,7 @@ def defineInputsMenu():
 
             'jTAU30', 'jTAU30M',
             # jTAU thresholds for production
-            'jTAUSPARE1',
+            'jTAU1',
 
             None,