From 21ea67e484e32d0460e5fa635062063f9fa401a4 Mon Sep 17 00:00:00 2001 From: Alexander Leon Gilman Date: Tue, 12 Oct 2021 17:48:27 +0200 Subject: [PATCH 01/22] Uncomment lifetime test --- Hlt/Hlt2Conf/tests/options/thor/loki_comparison.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Hlt/Hlt2Conf/tests/options/thor/loki_comparison.py b/Hlt/Hlt2Conf/tests/options/thor/loki_comparison.py index 214f0be5779..87fe6a77320 100644 --- a/Hlt/Hlt2Conf/tests/options/thor/loki_comparison.py +++ b/Hlt/Hlt2Conf/tests/options/thor/loki_comparison.py @@ -27,7 +27,7 @@ import math import Functors as F import Functors.math as fmath -from GaudiKernel.SystemOfUnits import GeV, MeV, mm, mrad +from GaudiKernel.SystemOfUnits import GeV, MeV, mm, mrad, ps from Hlt2Conf.algorithms import ( ParticleCombinerWithPVs as ParticleCombinerLoKi, ParticleFilterWithPVs as ParticleFilterLoKi, @@ -219,7 +219,7 @@ def make_lines(): "BPVFDCHI2": (F.BPVFDCHI2(pvs_v2) > 64, "BPVVDCHI2() > 64"), "BPVIPCHI2": (F.BPVIPCHI2(pvs_v2) < 16, "BPVIPCHI2() < 16"), # The ThOr implementation has known problems; see Rec#204 - # "BPVLTIME": (F.BPVLTIME(pvs_v2) > 1 * ps, "BPVLTIME() > 1 * ps"), + "BPVLTIME": (F.BPVLTIME(pvs_v2) > 1 * ps, "BPVLTIME() > 1 * ps"), "ETA": (F.ETA > 3.45, "ETA > 3.45"), "MASS": (F.MASS > 3 * GeV, "M > 3 * GeV"), } -- GitLab From 59fab176d63d377543c356eede440f8c86bdf262 Mon Sep 17 00:00:00 2001 From: Alexander Leon Gilman Date: Tue, 9 Nov 2021 11:35:24 +0100 Subject: [PATCH 02/22] Add BPVLTIME cut to generic Bs lines --- .../lines/generic_lines_thor/builders/bs_builders.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py index 1a9bfe7fdbe..8bf32025e85 100644 --- a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py +++ b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py @@ -11,10 +11,10 @@ import Functors as F from Functors.math import in_range -from GaudiKernel.SystemOfUnits import GeV, MeV +from GaudiKernel.SystemOfUnits import GeV, MeV, picoseconds from Hlt2Conf.algorithms_thor import ParticleFilter, ParticleCombiner, require_all from Hlt2Conf.standard_particles import make_long_kaons, make_long_muons, make_long_electrons_with_brem - +from RecoConf.reconstruction_objects import make_pvs_v2 as make_pvs def make_mass_constrained_jpsi2mumu(name='MassConstrJpsi2MuMuMaker', pid_mu=0, @@ -93,12 +93,13 @@ def make_bs2jpsiphi(name="Bs2JPsiPhiCombiner", am_max=5600 * MeV, am_min_vtx=5100 * MeV, am_max_vtx=5600 * MeV, - vtx_chi2pdof=20): + vtx_chi2pdof=20, + bpvltime_min= 0.2 * picoseconds): phi = make_phi() jpsi = jpsi_maker() combination_code = require_all(in_range(am_min, F.MASS, am_max)) vertex_code = require_all( - in_range(am_min_vtx, F.MASS, am_max_vtx), F.CHI2DOF < vtx_chi2pdof) + in_range(am_min_vtx, F.MASS, am_max_vtx), F.CHI2DOF < vtx_chi2pdof, F.BPVLTIME(pvs) > bpvltime_min) return ParticleCombiner( name=name, Inputs=[jpsi, phi], -- GitLab From 9eef0523bcf3a7f5c99d9c4af311e3f7b5b8b841 Mon Sep 17 00:00:00 2001 From: Alexander Leon Gilman Date: Tue, 9 Nov 2021 11:38:39 +0100 Subject: [PATCH 03/22] exclude ThOr/LoKi BPVLTIME from comparison --- Hlt/Hlt2Conf/tests/options/thor/loki_comparison_check.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Hlt/Hlt2Conf/tests/options/thor/loki_comparison_check.py b/Hlt/Hlt2Conf/tests/options/thor/loki_comparison_check.py index 6db1a8c43ac..252b0566b89 100644 --- a/Hlt/Hlt2Conf/tests/options/thor/loki_comparison_check.py +++ b/Hlt/Hlt2Conf/tests/options/thor/loki_comparison_check.py @@ -97,6 +97,8 @@ for functor_name in sorted(combiner_counters): print("Checking vertex counters") for functor_name in sorted(vertex_counters): + if functor_name== "BPVLTIME": #known differences in lifetime functor, return to testing later + continue # Strip off the efficiency percentage as they are formatted differently # between the two algorithms loki_eff = vertex_counters[functor_name]["LoKi"]["#pass mother cut"][:-1] -- GitLab From acdd9e5c3f72ce7d7d574eb73b400ca39ea546aa Mon Sep 17 00:00:00 2001 From: Alexander Leon Gilman Date: Tue, 9 Nov 2021 13:43:42 +0100 Subject: [PATCH 04/22] Add known BPVLTIME warnings to exclusions --- .../lines/generic_lines_thor/builders/bs_builders.py | 5 +++-- Hlt/Moore/python/Moore/qmtest/exclusions.py | 4 ++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py index 8bf32025e85..f2eaa258224 100644 --- a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py +++ b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py @@ -11,7 +11,7 @@ import Functors as F from Functors.math import in_range -from GaudiKernel.SystemOfUnits import GeV, MeV, picoseconds +from GaudiKernel.SystemOfUnits import GeV, MeV, ps from Hlt2Conf.algorithms_thor import ParticleFilter, ParticleCombiner, require_all from Hlt2Conf.standard_particles import make_long_kaons, make_long_muons, make_long_electrons_with_brem from RecoConf.reconstruction_objects import make_pvs_v2 as make_pvs @@ -94,10 +94,11 @@ def make_bs2jpsiphi(name="Bs2JPsiPhiCombiner", am_min_vtx=5100 * MeV, am_max_vtx=5600 * MeV, vtx_chi2pdof=20, - bpvltime_min= 0.2 * picoseconds): + bpvltime_min= 0.2 * ps): phi = make_phi() jpsi = jpsi_maker() combination_code = require_all(in_range(am_min, F.MASS, am_max)) + pvs=make_pvs() vertex_code = require_all( in_range(am_min_vtx, F.MASS, am_max_vtx), F.CHI2DOF < vtx_chi2pdof, F.BPVLTIME(pvs) > bpvltime_min) return ParticleCombiner( diff --git a/Hlt/Moore/python/Moore/qmtest/exclusions.py b/Hlt/Moore/python/Moore/qmtest/exclusions.py index 800ab99bd22..7c638928a17 100644 --- a/Hlt/Moore/python/Moore/qmtest/exclusions.py +++ b/Hlt/Moore/python/Moore/qmtest/exclusions.py @@ -40,6 +40,10 @@ remove_known_warnings = LineSkipper(regexps=[ # expected WARNINGs from MuonUTTracking when extrapolation is failed r"ToolSvc.LoKi::VertexFitter +WARNING LoKi::VertexFitter:: Error from Kalman-step, skip *", r"MuonUTTracking +WARNING Could not propagate state to VELO!", + r"ToolSvc.LoKi::VertexFitter +WARNING LoKi::VertexFitter:: Error from Kalman-step, skip *", + r"MuonUTTracking +WARNING Could not propagate state to VELO!", + # expected WARNINGs from ThorBPVLTIME + r"ThOrCompareBPVLTIMEVertex +WARNING Lifetime fit did not converge. Aborting.", ]) preprocessor = remove_known_warnings + LineSkipper(regexps=[ -- GitLab From 64513755631cba8660c970a3b634ceada1125c72 Mon Sep 17 00:00:00 2001 From: Gitlab CI Date: Tue, 9 Nov 2021 12:44:11 +0000 Subject: [PATCH 05/22] Fixed formatting patch generated by https://gitlab.cern.ch/lhcb/Moore/-/jobs/17465781 --- .../lines/generic_lines_thor/builders/bs_builders.py | 8 +++++--- Hlt/Hlt2Conf/tests/options/thor/loki_comparison_check.py | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py index f2eaa258224..25256789f44 100644 --- a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py +++ b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py @@ -16,6 +16,7 @@ from Hlt2Conf.algorithms_thor import ParticleFilter, ParticleCombiner, require_a from Hlt2Conf.standard_particles import make_long_kaons, make_long_muons, make_long_electrons_with_brem from RecoConf.reconstruction_objects import make_pvs_v2 as make_pvs + def make_mass_constrained_jpsi2mumu(name='MassConstrJpsi2MuMuMaker', pid_mu=0, pt_mu=0.5 * GeV, @@ -94,13 +95,14 @@ def make_bs2jpsiphi(name="Bs2JPsiPhiCombiner", am_min_vtx=5100 * MeV, am_max_vtx=5600 * MeV, vtx_chi2pdof=20, - bpvltime_min= 0.2 * ps): + bpvltime_min=0.2 * ps): phi = make_phi() jpsi = jpsi_maker() combination_code = require_all(in_range(am_min, F.MASS, am_max)) - pvs=make_pvs() + pvs = make_pvs() vertex_code = require_all( - in_range(am_min_vtx, F.MASS, am_max_vtx), F.CHI2DOF < vtx_chi2pdof, F.BPVLTIME(pvs) > bpvltime_min) + in_range(am_min_vtx, F.MASS, am_max_vtx), F.CHI2DOF < vtx_chi2pdof, + F.BPVLTIME(pvs) > bpvltime_min) return ParticleCombiner( name=name, Inputs=[jpsi, phi], diff --git a/Hlt/Hlt2Conf/tests/options/thor/loki_comparison_check.py b/Hlt/Hlt2Conf/tests/options/thor/loki_comparison_check.py index 252b0566b89..daeef69306e 100644 --- a/Hlt/Hlt2Conf/tests/options/thor/loki_comparison_check.py +++ b/Hlt/Hlt2Conf/tests/options/thor/loki_comparison_check.py @@ -97,7 +97,7 @@ for functor_name in sorted(combiner_counters): print("Checking vertex counters") for functor_name in sorted(vertex_counters): - if functor_name== "BPVLTIME": #known differences in lifetime functor, return to testing later + if functor_name == "BPVLTIME": #known differences in lifetime functor, return to testing later continue # Strip off the efficiency percentage as they are formatted differently # between the two algorithms -- GitLab From 1ae29a6c711ea5e22bb9be0791459b31258e7633 Mon Sep 17 00:00:00 2001 From: Alexander Leon Gilman Date: Tue, 9 Nov 2021 14:16:12 +0100 Subject: [PATCH 06/22] Cleanup --- Hlt/Moore/python/Moore/qmtest/exclusions.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Hlt/Moore/python/Moore/qmtest/exclusions.py b/Hlt/Moore/python/Moore/qmtest/exclusions.py index 7c638928a17..9335ffb297e 100644 --- a/Hlt/Moore/python/Moore/qmtest/exclusions.py +++ b/Hlt/Moore/python/Moore/qmtest/exclusions.py @@ -40,8 +40,6 @@ remove_known_warnings = LineSkipper(regexps=[ # expected WARNINGs from MuonUTTracking when extrapolation is failed r"ToolSvc.LoKi::VertexFitter +WARNING LoKi::VertexFitter:: Error from Kalman-step, skip *", r"MuonUTTracking +WARNING Could not propagate state to VELO!", - r"ToolSvc.LoKi::VertexFitter +WARNING LoKi::VertexFitter:: Error from Kalman-step, skip *", - r"MuonUTTracking +WARNING Could not propagate state to VELO!", # expected WARNINGs from ThorBPVLTIME r"ThOrCompareBPVLTIMEVertex +WARNING Lifetime fit did not converge. Aborting.", ]) -- GitLab From 469307552cb8cacce76afc57db61bea29da367c1 Mon Sep 17 00:00:00 2001 From: Alexander Leon Gilman Date: Tue, 9 Nov 2021 21:17:32 +0100 Subject: [PATCH 07/22] Revert generic_lines bs_builder --- .../lines/generic_lines_thor/builders/bs_builders.py | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py index 25256789f44..1a9bfe7fdbe 100644 --- a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py +++ b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py @@ -11,10 +11,9 @@ import Functors as F from Functors.math import in_range -from GaudiKernel.SystemOfUnits import GeV, MeV, ps +from GaudiKernel.SystemOfUnits import GeV, MeV from Hlt2Conf.algorithms_thor import ParticleFilter, ParticleCombiner, require_all from Hlt2Conf.standard_particles import make_long_kaons, make_long_muons, make_long_electrons_with_brem -from RecoConf.reconstruction_objects import make_pvs_v2 as make_pvs def make_mass_constrained_jpsi2mumu(name='MassConstrJpsi2MuMuMaker', @@ -94,15 +93,12 @@ def make_bs2jpsiphi(name="Bs2JPsiPhiCombiner", am_max=5600 * MeV, am_min_vtx=5100 * MeV, am_max_vtx=5600 * MeV, - vtx_chi2pdof=20, - bpvltime_min=0.2 * ps): + vtx_chi2pdof=20): phi = make_phi() jpsi = jpsi_maker() combination_code = require_all(in_range(am_min, F.MASS, am_max)) - pvs = make_pvs() vertex_code = require_all( - in_range(am_min_vtx, F.MASS, am_max_vtx), F.CHI2DOF < vtx_chi2pdof, - F.BPVLTIME(pvs) > bpvltime_min) + in_range(am_min_vtx, F.MASS, am_max_vtx), F.CHI2DOF < vtx_chi2pdof) return ParticleCombiner( name=name, Inputs=[jpsi, phi], -- GitLab From 0bdc03c3cb5f41068eee5234a935e26585d5ff39 Mon Sep 17 00:00:00 2001 From: Alexander Leon Gilman Date: Wed, 10 Nov 2021 11:20:34 +0100 Subject: [PATCH 08/22] Loosen lifetime cut in generic Bs builder/ update reference files for tests --- .../builders/bs_builders.py | 2 +- .../refs/hlt2_reco_plus_thor_selections.ref | 452 ++++++++--------- ...eco_plus_thor_selections.ref.x86_64_v3-opt | 161 ++++--- ...hlt2_reco_plus_thor_selections_fastest.ref | 456 +++++++++--------- ..._thor_selections_fastest.ref.x86_64_v3-opt | 152 +++--- 5 files changed, 613 insertions(+), 610 deletions(-) diff --git a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py index 25256789f44..4ef7115a3c5 100644 --- a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py +++ b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py @@ -95,7 +95,7 @@ def make_bs2jpsiphi(name="Bs2JPsiPhiCombiner", am_min_vtx=5100 * MeV, am_max_vtx=5600 * MeV, vtx_chi2pdof=20, - bpvltime_min=0.2 * ps): + bpvltime_min=0.02 * ps): phi = make_phi() jpsi = jpsi_maker() combination_code = require_all(in_range(am_min, F.MASS, am_max)) diff --git a/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections.ref b/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections.ref index d85792f2f41..9053191f519 100644 --- a/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections.ref +++ b/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections.ref @@ -4,13 +4,13 @@ TransportSvc SUCCESS GEOMETRY ERRORS: 'Recover' map has TransportSvc SUCCESS GEOMETRY ERRORS: 'Codes' map has the size 0 TransportSvc INFO Reset the static pointer to DetDesc::IGeometyrErrorSvc ToolSvc INFO Removing all tools created by ToolSvc -Phi2KKMaker.LoKi::DistanceCalcul... SUCCESS #WARNINGS = 51 Message = 'There is no convergency-III' +Phi2KKMaker.LoKi::DistanceCalcul... SUCCESS #WARNINGS = 47 Message = 'There is no convergency-III' Phi2KKMaker.LoKi::DistanceCalcul... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 -PromptHyperonHHHCombiner.LoKi::D... SUCCESS #WARNINGS = 25 Message = 'There is no convergency-III' +PromptHyperonHHHCombiner.LoKi::D... SUCCESS #WARNINGS = 34 Message = 'There is no convergency-III' PromptHyperonHHHCombiner.LoKi::D... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 TrackBestTrackCreator.TrackMaste... SUCCESS #WARNINGS = 2 Message = 'Error in compute residual: non positive variance.' TrackBestTrackCreator.TrackMaste... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 -ddLambda0Combiner.LoKi::Distance... SUCCESS #WARNINGS = 8 Message = 'There is no convergency-III' +ddLambda0Combiner.LoKi::Distance... SUCCESS #WARNINGS = 6 Message = 'There is no convergency-III' ddLambda0Combiner.LoKi::Distance... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 llLambda0Combiner.LoKi::Distance... SUCCESS #WARNINGS = 2 Message = 'There is no convergency-III' llLambda0Combiner.LoKi::Distance... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 @@ -20,34 +20,34 @@ ApplicationMgr INFO Application Manager Finalized succes ApplicationMgr INFO Application Manager Terminated successfully BremChi22IDFuture INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 14568 | 145.68 | 87.819 | 0.0000 | 412.00 | - | "#total tracks" | 100 | 28039 | 280.39 | 170.15 | 0.0000 | 1035.0 | + | "#links in table" | 100 | 14570 | 145.70 | 87.735 | 0.0000 | 410.00 | + | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | BremMatchAlgFuture INFO Number of counters : 5 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#above threshold" | 100 | 882056 | 8820.6 | 8539.3 | 0.0000 | 36928.0 | - | "#chi2" | 359869 |1.685473e+09 | 4683.6 | 2882.4 | 0.0011018 | 9999.9 | - | "#good tracks" | 100 | 9517 | 95.170 | 58.558 | 0.0000 | 252.00 | - | "#links in table" | 100 | 359869 | 3598.7 | 3066.6 | 0.0000 | 12106.0 | + | "#above threshold" | 100 | 881983 | 8819.8 | 8540.9 | 0.0000 | 36843.0 | + | "#chi2" | 359460 |1.683558e+09 | 4683.6 | 2882.6 | 0.0011016 | 9999.9 | + | "#good tracks" | 100 | 9515 | 95.150 | 58.550 | 0.0000 | 251.00 | + | "#links in table" | 100 | 359460 | 3594.6 | 3063.0 | 0.0000 | 12049.0 | | "#total calos" | 100 | 10298 | 102.98 | 48.402 | 0.0000 | 210.00 | BremPIDeAlgFuture INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Table Size" | 100 | 14568 | 145.68 | 87.819 | 0.0000 | 412.00 | + | "Table Size" | 100 | 14570 | 145.70 | 87.735 | 0.0000 | 410.00 | Bs2JPsiPhi_JPsi2MuMu_Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 14 |( 14.00000 +- 3.469870)% | - |*"# passed CombinationCut" | 786 | 154 |( 19.59288 +- 1.415745)% | - |*"# passed CompositeCut" | 154 | 49 |( 31.81818 +- 3.753286)% | - |*"# passed vertex fit" | 154 | 154 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 139 | 1.3900 | - | "Input2 size" | 100 | 277 | 2.7700 | + |*"# passed" | 100 | 5 |( 5.000000 +- 2.179449)% | + |*"# passed CombinationCut" | 750 | 152 |( 20.26667 +- 1.467846)% | + |*"# passed CompositeCut" | 152 | 12 |( 7.894737 +- 2.187204)% | + |*"# passed vertex fit" | 152 | 152 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 137 | 1.3700 | + | "Input2 size" | 100 | 270 | 2.7000 | Bs2JPsiPhi_JPsi2ee_Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 16 |( 16.00000 +- 3.666061)% | - |*"# passed CombinationCut" | 1452 | 308 |( 21.21212 +- 1.072849)% | - |*"# passed CompositeCut" | 308 | 98 |( 31.81818 +- 2.653974)% | - |*"# passed vertex fit" | 308 | 308 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 221 | 2.2100 | - | "Input2 size" | 100 | 277 | 2.7700 | + |*"# passed" | 100 | 9 |( 9.000000 +- 2.861818)% | + |*"# passed CombinationCut" | 1399 | 293 |( 20.94353 +- 1.087890)% | + |*"# passed CompositeCut" | 293 | 36 |( 12.28669 +- 1.917858)% | + |*"# passed vertex fit" | 293 | 293 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 219 | 2.1900 | + | "Input2 size" | 100 | 270 | 2.7000 | CaloFutureClusterCovarianceAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# clusters" | 15868 | @@ -57,8 +57,8 @@ CaloFutureClusterCovarianceAlg.E... INFO Number of counters : 1 CaloFutureClusterCovarianceAlg.E... INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Corrected Clusters: # cells " | 1174 | 5999 | 5.1099 | 1.7745 | 2.0000 | 14.000 | - | "Corrected Clusters: ET" | 1174 | 317801.1 | 270.70 | 284.59 | 35.600 | 4632.2 | - | "Corrected Clusters: size ratio" | 1174 | 444.1727 | 0.37834 | 0.29125 | -9.1809e-17 | 2.8281 | + | "Corrected Clusters: ET" | 1174 | 317801.2 | 270.70 | 284.59 | 35.600 | 4632.2 | + | "Corrected Clusters: size ratio" | 1174 | 444.1727 | 0.37834 | 0.29125 | -3.6723e-16 | 2.8281 | CaloFutureMergedPi0 INFO Number of counters : 12 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"Cluster without 2nd seed found" | 379 | 0 |( 0.000000 +- 0.000000)% | @@ -67,9 +67,9 @@ CaloFutureMergedPi0 INFO Number of counters : 12 |*"Fails to set spread" | 100 | 0 |( 0.000000 +- 0.000000)% | |*"Fails to tag(E) cluster (1)" | 379 | 0 |( 0.000000 +- 0.000000)% | |*"Fails to tag(E) cluster (2)" | 379 | 0 |( 0.000000 +- 0.000000)% | - | "Photon Delta(E)" | 758 | -44374.11 | -58.541 | 363.70 | -2602.7 | 3251.7 | - | "Photon Delta(X)" | 758 | -648.125 | -0.85505 | 13.562 | -46.608 | 22.319 | - | "Photon Delta(Y)" | 758 | -123.3137 | -0.16268 | 13.410 | -28.241 | 22.325 | + | "Photon Delta(E)" | 758 | -44373.71 | -58.541 | 363.70 | -2602.7 | 3251.7 | + | "Photon Delta(X)" | 758 | -648.1165 | -0.85503 | 13.562 | -46.608 | 22.319 | + | "Photon Delta(Y)" | 758 | -123.2589 | -0.16261 | 13.410 | -28.241 | 22.325 | | "Photon Delta(Z)" | 758 | 58628.89 | 77.347 | 11.362 | 7.5021 | 112.81 | | "clusters => mergedPi0s" | 100 | 379 | 3.7900 | | "clusters => splitClusters" | 100 | 758 | 7.5800 | @@ -77,7 +77,7 @@ CaloFutureMergedPi0.CaloFutureEC... INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | " Inner" | 178 | 177.1093 | 0.99500 | 0.022641 | 0.96563 | 1.0765 | | " Middle" | 120 | 120.4961 | 1.0041 | 0.026115 | 0.97704 | 1.1148 | - | " Outer" | 460 | 458.9484 | 0.99771 | 0.017830 | 0.97404 | 1.0990 | + | " Outer" | 460 | 458.9485 | 0.99771 | 0.017831 | 0.97404 | 1.0990 | | "Pileup offset" | 758 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | | "Pileup scale" | 100 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | | "Pileup subtracted ratio" | 758 | 758 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | @@ -88,7 +88,7 @@ CaloFutureMergedPi0.EcalSpread INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Corrected Clusters: # cells " | 94 | 594 | 6.3191 | 1.7577 | 4.0000 | 9.0000 | | "Corrected Clusters: ET" | 94 | 103801.8 | 1104.3 | 1178.3 | 34.600 | 9841.2 | - | "Corrected Clusters: size ratio" | 94 | 32.5392 | 0.34616 | 0.27227 | 0.066570 | 1.8140 | + | "Corrected Clusters: size ratio" | 94 | 32.53922 | 0.34616 | 0.27227 | 0.066570 | 1.8140 | CaloFutureShowerOverlap INFO Number of counters : 5 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Delta(E)" | 19041 | -595002.2 | -31.248 | 906.20 | -16337.0 | 12389.0 | @@ -98,29 +98,29 @@ CaloFutureShowerOverlap INFO Number of counters : 5 | "negative E clusters (removed)" | 100 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | ClassifyPhotonElectronAlg INFO Number of counters : 12 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Electron Delta(E)" | 8590 | 1753160 | 204.09 | 206.66 | -2371.5 | 3317.9 | - | "Electron Delta(X)" | 8590 | -3379.965 | -0.39348 | 11.663 | -22.782 | 22.327 | - | "Electron Delta(Y)" | 8590 | -2663.935 | -0.31012 | 11.638 | -22.782 | 22.326 | - | "Electron Delta(Z)" | 8590 | 565542.8 | 65.837 | 12.656 | 24.066 | 126.86 | - | "Electron corrected energy" | 8590 |5.664199e+07 | 6593.9 | 7415.2 | 397.53 | 1.1680e+05 | + | "Electron Delta(E)" | 8589 | 1753095 | 204.11 | 206.67 | -2371.5 | 3317.9 | + | "Electron Delta(X)" | 8589 | -3385.905 | -0.39421 | 11.664 | -22.782 | 22.327 | + | "Electron Delta(Y)" | 8589 | -2657.266 | -0.30938 | 11.638 | -22.782 | 22.326 | + | "Electron Delta(Z)" | 8589 | 565485.1 | 65.838 | 12.656 | 24.066 | 126.86 | + | "Electron corrected energy" | 8589 |5.664116e+07 | 6594.6 | 7415.4 | 397.53 | 1.1680e+05 | | "Photon Delta(E)" | 10298 | 739264.2 | 71.787 | 140.88 | -2545.4 | 3183.9 | | "Photon Delta(X)" | 10298 | -1214.282 | -0.11791 | 12.248 | -22.782 | 22.327 | - | "Photon Delta(Y)" | 10298 | -831.3897 | -0.080733 | 12.270 | -22.782 | 22.326 | + | "Photon Delta(Y)" | 10298 | -831.3886 | -0.080733 | 12.270 | -22.782 | 22.326 | | "Photon Delta(Z)" | 10298 | 601955.6 | 58.454 | 11.748 | 24.107 | 113.40 | | "Photon corrected energy" | 10298 |4.030144e+07 | 3913.5 | 5746.2 | 253.12 | 1.0415e+05 | - | "electronHypos" | 100 | 8590 | 85.900 | 54.785 | 0.0000 | 289.00 | + | "electronHypos" | 100 | 8589 | 85.890 | 54.779 | 0.0000 | 289.00 | | "photonHypos" | 100 | 10298 | 102.98 | 48.402 | 0.0000 | 210.00 | ClassifyPhotonElectronAlg.CaloFu... INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | " Inner" | 5716 | 5684.807 | 0.99454 | 0.019141 | 0.96447 | 1.1151 | | " Middle" | 5081 | 5109.044 | 1.0055 | 0.018705 | 0.97671 | 1.1114 | - | " Outer" | 8091 | 8075.699 | 0.99811 | 0.015084 | 0.97356 | 1.0515 | - | "Pileup offset" | 18888 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | + | " Outer" | 8090 | 8074.685 | 0.99811 | 0.015083 | 0.97356 | 1.0515 | + | "Pileup offset" | 18887 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | | "Pileup scale" | 200 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | - | "Pileup subtracted ratio" | 18888 | 18888 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Pileup subtracted ratio" | 18887 | 18887 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | CopyParticlesWithPVRelations.Gen... INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "IP->(DI)GAMMA" | 235 | + | "IP->(DI)GAMMA" | 234 | DeterministicPrescaler INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"#accept" | 100 | 100 |( 100.0000 +- 0.000000)% | @@ -138,70 +138,70 @@ DeterministicPrescaler#4 INFO Number of counters : 1 |*"#accept" | 100 | 100 |( 100.0000 +- 0.000000)% | DownstreamPionsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 1188 | 608 |( 51.17845 +- 1.450244)% | + |*"Cut selection efficiency" | 1188 | 598 |( 50.33670 +- 1.450614)% | DownstreamProtonsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 1188 | 581 |( 48.90572 +- 1.450300)% | + |*"Cut selection efficiency" | 1188 | 587 |( 49.41077 +- 1.450546)% | FilteredPIDElectrons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6491 | 1444 |( 22.24619 +- 0.5162176)% | + |*"Cut selection efficiency" | 6493 | 1436 |( 22.11613 +- 0.5150574)% | FilteredPIDMuons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6491 | 847 |( 13.04884 +- 0.4180881)% | + |*"Cut selection efficiency" | 6493 | 839 |( 12.92161 +- 0.4162850)% | FilteredPIDkaons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6491 | 2412 |( 37.15914 +- 0.5997884)% | + |*"Cut selection efficiency" | 6493 | 2409 |( 37.10149 +- 0.5995055)% | FunctionalChargedProtoParticleMaker INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "CreatedProtos" | 8664 | + | "CreatedProtos" | 8667 | FunctionalParticleMaker#1 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed ProtoParticle filter" | 1367 | 1188 |( 86.90563 +- 0.9123930)% | - |*"# passed Track filter" | 8664 | 1367 |( 15.77793 +- 0.3916325)% | - | "Nb created anti-particles" | 100 | 593 | 5.9300 | 4.8213 | 0.0000 | 22.000 | - | "Nb created particles" | 100 | 595 | 5.9500 | 4.6827 | 0.0000 | 21.000 | + |*"# passed Track filter" | 8667 | 1367 |( 15.77247 +- 0.3915097)% | + | "Nb created anti-particles" | 100 | 594 | 5.9400 | 4.8204 | 0.0000 | 22.000 | + | "Nb created particles" | 100 | 594 | 5.9400 | 4.6772 | 0.0000 | 21.000 | FunctionalParticleMaker#2 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed ProtoParticle filter" | 1367 | 1188 |( 86.90563 +- 0.9123930)% | - |*"# passed Track filter" | 8664 | 1367 |( 15.77793 +- 0.3916325)% | - | "Nb created anti-particles" | 100 | 593 | 5.9300 | 4.8213 | 0.0000 | 22.000 | - | "Nb created particles" | 100 | 595 | 5.9500 | 4.6827 | 0.0000 | 21.000 | + |*"# passed Track filter" | 8667 | 1367 |( 15.77247 +- 0.3915097)% | + | "Nb created anti-particles" | 100 | 594 | 5.9400 | 4.8204 | 0.0000 | 22.000 | + | "Nb created particles" | 100 | 594 | 5.9400 | 4.6772 | 0.0000 | 21.000 | FunctionalParticleMaker#3 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6491 | 6182 |( 95.23956 +- 0.2642873)% | - |*"# passed Track filter" | 8664 | 6491 |( 74.91921 +- 0.4657019)% | - | "Nb created anti-particles" | 100 | 3084 | 30.840 | 19.325 | 0.0000 | 90.000 | - | "Nb created particles" | 100 | 3098 | 30.980 | 19.359 | 0.0000 | 84.000 | + |*"# passed ProtoParticle filter" | 6493 | 6182 |( 95.21023 +- 0.2650187)% | + |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | + | "Nb created anti-particles" | 100 | 3083 | 30.830 | 19.299 | 0.0000 | 89.000 | + | "Nb created particles" | 100 | 3099 | 30.990 | 19.358 | 0.0000 | 84.000 | FunctionalParticleMaker#4 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6491 | 6182 |( 95.23956 +- 0.2642873)% | - |*"# passed Track filter" | 8664 | 6491 |( 74.91921 +- 0.4657019)% | - | "Nb created anti-particles" | 100 | 3084 | 30.840 | 19.325 | 0.0000 | 90.000 | - | "Nb created particles" | 100 | 3098 | 30.980 | 19.359 | 0.0000 | 84.000 | + |*"# passed ProtoParticle filter" | 6493 | 6182 |( 95.21023 +- 0.2650187)% | + |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | + | "Nb created anti-particles" | 100 | 3083 | 30.830 | 19.299 | 0.0000 | 89.000 | + | "Nb created particles" | 100 | 3099 | 30.990 | 19.358 | 0.0000 | 84.000 | FunctionalParticleMaker#5 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6491 | 6182 |( 95.23956 +- 0.2642873)% | - |*"# passed Track filter" | 8664 | 6491 |( 74.91921 +- 0.4657019)% | - | "Nb created anti-particles" | 100 | 3084 | 30.840 | 19.325 | 0.0000 | 90.000 | - | "Nb created particles" | 100 | 3098 | 30.980 | 19.359 | 0.0000 | 84.000 | + |*"# passed ProtoParticle filter" | 6493 | 6182 |( 95.21023 +- 0.2650187)% | + |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | + | "Nb created anti-particles" | 100 | 3083 | 30.830 | 19.299 | 0.0000 | 89.000 | + | "Nb created particles" | 100 | 3099 | 30.990 | 19.358 | 0.0000 | 84.000 | FunctionalParticleMaker#6 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6491 | 6491 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 8664 | 6491 |( 74.91921 +- 0.4657019)% | - | "Nb created anti-particles" | 100 | 3236 | 32.360 | 20.423 | 0.0000 | 94.000 | - | "Nb created particles" | 100 | 3255 | 32.550 | 20.363 | 0.0000 | 87.000 | + |*"# passed ProtoParticle filter" | 6493 | 6493 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | + | "Nb created anti-particles" | 100 | 3236 | 32.360 | 20.402 | 0.0000 | 93.000 | + | "Nb created particles" | 100 | 3257 | 32.570 | 20.373 | 0.0000 | 87.000 | FunctionalParticleMaker#7 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6491 | 6491 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 8664 | 6491 |( 74.91921 +- 0.4657019)% | - | "Nb created anti-particles" | 100 | 3236 | 32.360 | 20.423 | 0.0000 | 94.000 | - | "Nb created particles" | 100 | 3255 | 32.550 | 20.363 | 0.0000 | 87.000 | + |*"# passed ProtoParticle filter" | 6493 | 6493 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | + | "Nb created anti-particles" | 100 | 3236 | 32.360 | 20.402 | 0.0000 | 93.000 | + | "Nb created particles" | 100 | 3257 | 32.570 | 20.373 | 0.0000 | 87.000 | FunctionalParticleMaker#8 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6491 | 6491 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 8664 | 6491 |( 74.91921 +- 0.4657019)% | - | "Nb created anti-particles" | 100 | 3236 | 32.360 | 20.423 | 0.0000 | 94.000 | - | "Nb created particles" | 100 | 3255 | 32.550 | 20.363 | 0.0000 | 87.000 | + |*"# passed ProtoParticle filter" | 6493 | 6493 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | + | "Nb created anti-particles" | 100 | 3236 | 32.360 | 20.402 | 0.0000 | 93.000 | + | "Nb created particles" | 100 | 3257 | 32.570 | 20.373 | 0.0000 | 87.000 | FutureCellularAutomatonAlg INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# clusterization passes" | 100 | 343 | 3.4300 | 0.79063 | 0.0000 | 6.0000 | @@ -210,42 +210,42 @@ FutureCellularAutomatonAlg INFO Number of counters : 4 | "Cluster size" | 15868 | 193378 | 12.187 | 3.5625 | 4.0000 | 37.000 | FutureClusChi22ID INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 11236 | 112.36 | 78.671 | 0.0000 | 577.00 | - | "#total tracks" | 100 | 28039 | 280.39 | 170.15 | 0.0000 | 1035.0 | + | "#links in table" | 100 | 11236 | 112.36 | 78.674 | 0.0000 | 577.00 | + | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | FutureEcalChi22ID INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 11236 | 112.36 | 78.671 | 0.0000 | 577.00 | - | "#total tracks" | 100 | 28039 | 280.39 | 170.15 | 0.0000 | 1035.0 | + | "#links in table" | 100 | 11236 | 112.36 | 78.674 | 0.0000 | 577.00 | + | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | FutureEcalPIDeAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Table Size" | 100 | 11236 | 112.36 | 78.671 | 0.0000 | 577.00 | + | "Table Size" | 100 | 11236 | 112.36 | 78.674 | 0.0000 | 577.00 | FutureEcalPIDmuAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Table Size" | 100 | 9392 | 93.920 | 67.108 | 0.0000 | 508.00 | + | "Table Size" | 100 | 9390 | 93.900 | 67.117 | 0.0000 | 508.00 | FutureEcalZSup INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"No bank found" | 100 | 0 |( 0.000000 +- 0.000000)% | FutureElectronMatchAlg INFO Number of counters : 5 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#above threshold" | 100 | 1033643 | 10336.0 | 15489.0 | 0.0000 | 1.2965e+05 | - | "#chi2" | 122307 |5.401053e+08 | 4416.0 | 2938.6 | 0.024819 | 9999.9 | - | "#good tracks" | 100 | 9392 | 93.920 | 67.108 | 0.0000 | 508.00 | - | "#links in table" | 100 | 122307 | 1223.1 | 1913.6 | 0.0000 | 17162.0 | - | "#total calos" | 100 | 8590 | 85.900 | 54.785 | 0.0000 | 289.00 | + | "#above threshold" | 100 | 1033460 | 10335.0 | 15491.0 | 0.0000 | 1.2964e+05 | + | "#chi2" | 122255 |5.397869e+08 | 4415.3 | 2938.4 | 0.024819 | 9999.9 | + | "#good tracks" | 100 | 9390 | 93.900 | 67.117 | 0.0000 | 508.00 | + | "#links in table" | 100 | 122255 | 1222.5 | 1914.5 | 0.0000 | 17173.0 | + | "#total calos" | 100 | 8589 | 85.890 | 54.779 | 0.0000 | 289.00 | FutureHcalPIDeAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Table Size" | 100 | 8826 | 88.260 | 63.640 | 0.0000 | 490.00 | + | "Table Size" | 100 | 8823 | 88.230 | 63.651 | 0.0000 | 490.00 | FutureHcalPIDmuAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Table Size" | 100 | 8826 | 88.260 | 63.640 | 0.0000 | 490.00 | + | "Table Size" | 100 | 8823 | 88.230 | 63.651 | 0.0000 | 490.00 | FutureHcalZSup INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"No bank found" | 100 | 0 |( 0.000000 +- 0.000000)% | FutureInBremFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 15935 | 159.35 | 96.696 | 0.0000 | 444.00 | - | "#total tracks" | 100 | 28039 | 280.39 | 170.15 | 0.0000 | 1035.0 | - | "#tracks in acceptance" | 100 | 10496 | 104.96 | 65.092 | 0.0000 | 274.00 | + | "#links in table" | 100 | 15937 | 159.37 | 96.598 | 0.0000 | 442.00 | + | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | + | "#tracks in acceptance" | 100 | 10493 | 104.93 | 65.073 | 0.0000 | 273.00 | FutureNeutralProtoPAlg INFO Number of counters : 30 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "CaloClusterCode for Photon" | 10298 | 113826 | 11.053 | 89.089 | -98.000 | 98.000 | @@ -262,10 +262,10 @@ FutureNeutralProtoPAlg INFO Number of counters : 30 | "CaloNeutralHcal2Ecal for Pi0Merged" | 379 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | | "CaloNeutralID for Photon" | 10298 |3.928134e+08 | 38145.0 | 3554.9 | 33152.0 | 44151.0 | | "CaloNeutralID for Pi0Merged" | 379 |1.417681e+07 | 37406.0 | 3420.6 | 33294.0 | 43862.0 | - | "CaloTrMatch for Photon" | 9794 | 1406741 | 143.63 | 192.58 | 4.0040 | 999.38 | - | "CaloTrMatch for Pi0Merged" | 376 | 8833.642 | 23.494 | 88.821 | 0.00024249 | 940.45 | + | "CaloTrMatch for Photon" | 9794 | 1406768 | 143.64 | 192.58 | 4.0040 | 999.38 | + | "CaloTrMatch for Pi0Merged" | 376 | 8833.667 | 23.494 | 88.821 | 0.00024249 | 940.45 | | "ClusterAsX for Photon" | 10295 | 27.04689 | 0.0026272 | 0.20124 | -0.67370 | 0.71369 | - | "ClusterAsY for Photon" | 10288 | 58.6078 | 0.0056967 | 0.19826 | -0.72460 | 0.71418 | + | "ClusterAsY for Photon" | 10291 | 58.6078 | 0.0056951 | 0.19823 | -0.72460 | 0.71418 | | "IsNotH for Photon" | 10298 | 3963.82 | 0.38491 | 0.35057 | -1.0000 | 0.99502 | | "IsNotH for Pi0Merged" | 379 | 103.4619 | 0.27299 | 0.31789 | 0.00025262 | 0.99454 | | "IsPhoton for Photon" | 10298 | 10281.48 | 0.99840 | 0.035443 | 7.1631e-05 | 1.0000 | @@ -283,37 +283,37 @@ FutureNeutralProtoPAlg.CaloFutur... INFO Number of counters : 1 | "no cluster" | 758 | 758 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | FuturePhotonMatchAlg INFO Number of counters : 5 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#above threshold" | 100 | 1501963 | 15020.0 | 17347.0 | 0.0000 | 1.3390e+05 | - | "#chi2" | 462709 |2.132052e+08 | 460.78 | 290.99 | 0.00024249 | 1000.0 | - | "#good tracks" | 100 | 9392 | 93.920 | 67.108 | 0.0000 | 508.00 | - | "#links in table" | 100 | 462709 | 4627.1 | 6387.2 | 0.0000 | 52026.0 | + | "#above threshold" | 100 | 1501812 | 15018.0 | 17356.0 | 0.0000 | 1.3396e+05 | + | "#chi2" | 462634 |2.131802e+08 | 460.80 | 291.00 | 0.00024249 | 1000.0 | + | "#good tracks" | 100 | 9390 | 93.900 | 67.117 | 0.0000 | 508.00 | + | "#links in table" | 100 | 462634 | 4626.3 | 6383.8 | 0.0000 | 51964.0 | | "#total calos" | 100 | 15868 | 158.68 | 79.052 | 0.0000 | 366.00 | FutureTrack2EcalEAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 9392 | 93.920 | 67.108 | 0.0000 | 508.00 | - | "#total energy" | 9392 | 27412.54 | 2.9187 | 3.7729 | -0.093026 | 66.674 | - | "#total tracks" | 100 | 28039 | 280.39 | 170.15 | 0.0000 | 1035.0 | + | "#links in table" | 100 | 9390 | 93.900 | 67.117 | 0.0000 | 508.00 | + | "#total energy" | 9390 | 27391.21 | 2.9171 | 3.7713 | -0.093026 | 66.674 | + | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | FutureTrack2HcalEAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 8826 | 88.260 | 63.640 | 0.0000 | 490.00 | - | "#total energy" | 8826 | 50440.03 | 5.7149 | 10.558 | 0.0000 | 202.25 | - | "#total tracks" | 100 | 28039 | 280.39 | 170.15 | 0.0000 | 1035.0 | + | "#links in table" | 100 | 8823 | 88.230 | 63.651 | 0.0000 | 490.00 | + | "#total energy" | 8823 | 50485.09 | 5.7220 | 10.566 | 0.0000 | 202.25 | + | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | Hlt2PhotonFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"Cut selection efficiency" | 7967 | 38 |(0.4769675 +- 0.07718960)% | HltPackedDataWriter INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Size of serialized data" | 37 | 732858 | 19807.0 | 21832.0 | 1336.0 | 70120.0 | + | "Size of serialized data" | 32 | 410066 | 12815.0 | 15784.0 | 1220.0 | 53572.0 | InEcalFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 11236 | 112.36 | 78.671 | 0.0000 | 577.00 | - | "#total tracks" | 100 | 28039 | 280.39 | 170.15 | 0.0000 | 1035.0 | - | "#tracks in acceptance" | 100 | 9392 | 93.920 | 67.108 | 0.0000 | 508.00 | + | "#links in table" | 100 | 11236 | 112.36 | 78.674 | 0.0000 | 577.00 | + | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | + | "#tracks in acceptance" | 100 | 9390 | 93.900 | 67.117 | 0.0000 | 508.00 | InHcalFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 11236 | 112.36 | 78.671 | 0.0000 | 577.00 | - | "#total tracks" | 100 | 28039 | 280.39 | 170.15 | 0.0000 | 1035.0 | - | "#tracks in acceptance" | 100 | 8826 | 88.260 | 63.640 | 0.0000 | 490.00 | + | "#links in table" | 100 | 11236 | 112.36 | 78.674 | 0.0000 | 577.00 | + | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | + | "#tracks in acceptance" | 100 | 8823 | 88.230 | 63.651 | 0.0000 | 490.00 | LHCb__MDF__IOAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#banks in raw event" | 100 | 102500 | 1025.0 | 0.0000 | 1025.0 | 1025.0 | @@ -329,74 +329,74 @@ LHCb__Phys__ParticleMakers__Phot... INFO Number of counters : 3 | "Selected photons" | 100 | 7022 | 70.220 | 28.408 | 0.0000 | 127.00 | LongKaonsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6182 | 773 |( 12.50404 +- 0.4206828)% | + |*"Cut selection efficiency" | 6182 | 761 |( 12.30993 +- 0.4178674)% | LongPionsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6182 | 733 |( 11.85700 +- 0.4111657)% | + |*"Cut selection efficiency" | 6182 | 734 |( 11.87318 +- 0.4114083)% | LongPionsFilter#1 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"Cut selection efficiency" | 6182 | 485 |( 7.845357 +- 0.3419798)% | LongPionsFilter#2 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6182 | 525 |( 8.492397 +- 0.3545514)% | + |*"Cut selection efficiency" | 6182 | 528 |( 8.540925 +- 0.3554687)% | LongPionsFilter#3 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6182 | 948 |( 15.33484 +- 0.4582764)% | + |*"Cut selection efficiency" | 6182 | 950 |( 15.36720 +- 0.4586719)% | LongProtonsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6182 | 458 |( 7.408606 +- 0.3331111)% | + |*"Cut selection efficiency" | 6182 | 450 |( 7.279198 +- 0.3304196)% | MassConstrJpsi2MuMuMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 42 |( 42.00000 +- 4.935585)% | - |*"# passed CombinationCut" | 39203 | 143 |(0.3647680 +- 0.03044775)% | - |*"# passed CompositeCut" | 143 | 139 |( 97.20280 +- 1.378902)% | - |*"# passed vertex fit" | 143 | 143 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6491 | 64.910 | - | "Input2 size" | 100 | 847 | 8.4700 | + |*"# passed" | 100 | 41 |( 41.00000 +- 4.918333)% | + |*"# passed CombinationCut" | 38658 | 141 |(0.3647369 +- 0.03066032)% | + |*"# passed CompositeCut" | 141 | 137 |( 97.16312 +- 1.398175)% | + |*"# passed vertex fit" | 141 | 141 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 6493 | 64.930 | + | "Input2 size" | 100 | 839 | 8.3900 | MassConstrJpsi2eeMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 57 |( 57.00000 +- 4.950758)% | - |*"# passed CombinationCut" | 66814 | 228 |(0.3412458 +- 0.02256097)% | - |*"# passed CompositeCut" | 228 | 221 |( 96.92982 +- 1.142465)% | - |*"# passed vertex fit" | 228 | 228 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6491 | 64.910 | - | "Input2 size" | 100 | 1444 | 14.440 | + |*"# passed" | 100 | 58 |( 58.00000 +- 4.935585)% | + |*"# passed CombinationCut" | 66268 | 226 |(0.3410394 +- 0.02264689)% | + |*"# passed CompositeCut" | 226 | 219 |( 96.90265 +- 1.152414)% | + |*"# passed vertex fit" | 226 | 226 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 6493 | 64.930 | + | "Input2 size" | 100 | 1436 | 14.360 | ParticleWithBremMaker INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of particles corrected with brem" | 6491 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | + | "Nb of particles corrected with brem" | 6493 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | ParticleWithBremMaker.Functional... INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Delta(E)" | 710 | 7207696 | 10152.0 | 12058.0 | 423.00 | 88750.0 | - | "Nb photons added to single electrons" | 6491 | 742 | 0.11431 | 0.33332 | 0.0000 | 2.0000 | + | "Delta(E)" | 707 | 7179529 | 10155.0 | 12079.0 | 423.00 | 88750.0 | + | "Nb photons added to single electrons" | 6493 | 739 | 0.11381 | 0.33274 | 0.0000 | 2.0000 | Phi2KKMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 62 |( 62.00000 +- 4.853864)% | - |*"# passed CombinationCut" | 111740 | 6257 |( 5.599606 +- 0.06877986)% | - |*"# passed CompositeCut" | 6257 | 277 |( 4.427042 +- 0.2600407)% | - |*"# passed vertex fit" | 6257 | 6257 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6491 | 64.910 | - | "Input2 size" | 100 | 2412 | 24.120 | + |*"# passed CombinationCut" | 111511 | 6260 |( 5.613796 +- 0.06893245)% | + |*"# passed CompositeCut" | 6260 | 270 |( 4.313099 +- 0.2567638)% | + |*"# passed vertex fit" | 6260 | 6260 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 6493 | 64.930 | + | "Input2 size" | 100 | 2409 | 24.090 | PrForwardTrackingVelo INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Accepted input tracks" | 99 | 13846 | 139.86 | - | "Created long tracks" | 99 | 6519 | 65.848 | - | "Input tracks" | 99 | 14279 | 144.23 | + | "Accepted input tracks" | 99 | 13857 | 139.97 | + | "Created long tracks" | 99 | 6528 | 65.939 | + | "Input tracks" | 99 | 14312 | 144.57 | PrForwardTrackingVelo.PrAddUTHit... INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#UT hits added" | 5725 | 22851 | 3.9914 | - | "#tracks with hits added" | 5725 | + | "#UT hits added" | 5734 | 22885 | 3.9911 | + | "#tracks with hits added" | 5734 | PrLongLivedTracking INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#Downstream tracks made" | 100 | 7174 | 71.740 | + | "#Downstream tracks made" | 100 | 7173 | 71.730 | PrMatchNN INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#MatchingChi2" | 19349 | 107520.5 | 5.5569 | - | "#MatchingTracks" | 99 | 6666 | 67.333 | - | "TracksMLP" | 19349 | 6563.198 | 0.33920 | + | "#MatchingChi2" | 19381 | 107686.7 | 5.5563 | + | "#MatchingTracks" | 99 | 6681 | 67.485 | + | "TracksMLP" | 19381 | 6573.57 | 0.33918 | PrMatchNN.PrAddUTHitsTool INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#UT hits added" | 5810 | 23199 | 3.9929 | - | "#tracks with hits added" | 5810 | + | "#UT hits added" | 5823 | 23249 | 3.9926 | + | "#tracks with hits added" | 5823 | PrStorePrUTHits INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#banks" | 100 | 18000 | 180.00 | @@ -405,131 +405,131 @@ PrStoreUTHit INFO Number of counters : 1 | "#banks" | 100 | 18000 | 180.00 | PrVeloUT INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#seeds" | 100 | 14279 | 142.79 | - | "#tracks" | 100 | 3784 | 37.840 | + | "#seeds" | 100 | 14312 | 143.12 | + | "#tracks" | 100 | 3793 | 37.930 | PromptHyperonHHCombiner INFO Number of counters : 8 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 2 |( 2.000000 +- 1.400000)% | - |*"# passed Combination12Cut" | 406 | 134 |( 33.00493 +- 2.333715)% | - |*"# passed CombinationCut" | 876 | 82 |( 9.360731 +- 0.9841494)% | - |*"# passed CompositeCut" | 82 | 3 |( 3.658537 +- 2.073258)% | - |*"# passed vertex fit" | 82 | 82 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 72 | 0.72000 | - | "Input2 size" | 100 | 733 | 7.3300 | - | "Input3 size" | 100 | 733 | 7.3300 | + |*"# passed" | 100 | 3 |( 3.000000 +- 1.705872)% | + |*"# passed Combination12Cut" | 414 | 126 |( 30.43478 +- 2.261419)% | + |*"# passed CombinationCut" | 804 | 64 |( 7.960199 +- 0.9546008)% | + |*"# passed CompositeCut" | 64 | 4 |( 6.250000 +- 3.025768)% | + |*"# passed vertex fit" | 64 | 64 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 73 | 0.73000 | + | "Input2 size" | 100 | 734 | 7.3400 | + | "Input3 size" | 100 | 734 | 7.3400 | PromptHyperonHHHCombiner INFO Number of counters : 10 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 3 |( 3.000000 +- 1.705872)% | - |*"# passed Combination123Cut" | 6043 | 2705 |( 44.76254 +- 0.6396581)% | - |*"# passed Combination12Cut" | 1228 | 530 |( 43.15961 +- 1.413410)% | - |*"# passed CombinationCut" | 16642 | 763 |( 4.584785 +- 0.1621308)% | - |*"# passed CompositeCut" | 763 | 20 |( 2.621232 +- 0.5783924)% | - |*"# passed vertex fit" | 763 | 763 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 128 | 1.2800 | - | "Input2 size" | 100 | 773 | 7.7300 | - | "Input3 size" | 100 | 948 | 9.4800 | - | "Input4 size" | 100 | 948 | 9.4800 | + |*"# passed Combination123Cut" | 5935 | 2734 |( 46.06571 +- 0.6470100)% | + |*"# passed Combination12Cut" | 1235 | 557 |( 45.10121 +- 1.415931)% | + |*"# passed CombinationCut" | 15543 | 742 |( 4.773853 +- 0.1710193)% | + |*"# passed CompositeCut" | 742 | 21 |( 2.830189 +- 0.6087955)% | + |*"# passed vertex fit" | 742 | 742 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 123 | 1.2300 | + | "Input2 size" | 100 | 761 | 7.6100 | + | "Input3 size" | 100 | 950 | 9.5000 | + | "Input4 size" | 100 | 950 | 9.5000 | SciFiTrackForwarding INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "2nd Loop" | 1785 | - | "Created long tracks" | 100 | 2334 | 23.340 | + | "2nd Loop" | 1789 | + | "Created long tracks" | 100 | 2338 | 23.380 | ToolSvc.PPFactoryHybridFactory INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | ToolSvc.TrackFunctorFactory INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | TrackBeamLineVertexFinderSoA INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb PVs" | 100 | 473 | 4.7300 | + | "Nb PVs" | 100 | 472 | 4.7200 | TrackBestTrackCreator INFO Number of counters : 33 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 30910 | 0 |( 0.000000 +- 0.000000)% | - |*"Downstream.badChisq" | 2304 | 1069 |( 46.39757 +- 1.038960)% | - | "Downstream.chisqProbSum" | 2304 | 392.1794 | 0.17022 | - |*"Downstream.flipCharge" | 2304 | 0 |( 0.000000 +- 0.000000)% | - | "Downstream.ghostProbability" | 2304 | 1075.4 | 0.46675 | - | "Downstream.numOutliers" | 2304 | 2479 | 1.0760 | - |*"FitFailed" | 30910 | 2 |(0.006470398 +- 0.004575114)% | + |*"BadInput" | 30925 | 0 |( 0.000000 +- 0.000000)% | + |*"Downstream.badChisq" | 2302 | 1067 |( 46.35100 +- 1.039340)% | + | "Downstream.chisqProbSum" | 2302 | 392.0154 | 0.17029 | + |*"Downstream.flipCharge" | 2302 | 0 |( 0.000000 +- 0.000000)% | + | "Downstream.ghostProbability" | 2302 | 1074.545 | 0.46679 | + | "Downstream.numOutliers" | 2302 | 2475 | 1.0752 | + |*"FitFailed" | 30925 | 2 |(0.006467259 +- 0.004572895)% | | "Long.FitFailed" | 2 | 2 | 1.0000 | - |*"Long.badChisq" | 8250 | 2781 |( 33.70909 +- 0.5204434)% | - | "Long.chisqProbSum" | 8250 | 2053.942 | 0.24896 | - |*"Long.flipCharge" | 8250 | 1 |(0.01212121 +- 0.01212048)% | - | "Long.ghostProbability" | 8250 | 1470.269 | 0.17821 | - | "Long.numOutliers" | 8250 | 9129 | 1.1065 | - |*"Ttrack.badChisq" | 3378 | 96 |( 2.841918 +- 0.2859008)% | - | "Ttrack.chisqProbSum" | 3378 | 1287.864 | 0.38125 | - |*"Ttrack.flipCharge" | 3378 | 118 |( 3.493191 +- 0.3159078)% | - | "Ttrack.ghostProbability" | 3378 | 305.7523 | 0.090513 | - | "Ttrack.numOutliers" | 3378 | 1372 | 0.40616 | - |*"Upstream.badChisq" | 976 | 221 |( 22.64344 +- 1.339661)% | - | "Upstream.chisqProbSum" | 976 | 318.0681 | 0.32589 | - |*"Upstream.flipCharge" | 979 | 22 |( 2.247191 +- 0.4736890)% | - | "Upstream.ghostProbability" | 979 | 232.3035 | 0.23729 | - | "Upstream.numOutliers" | 979 | 841 | 0.85904 | - |*"Velo.badChisq" | 6976 | 1560 |( 22.36239 +- 0.4988752)% | - | "Velo.chisqProbSum" | 6976 | 2202.881 | 0.31578 | - |*"Velo.flipCharge" | 7271 | 0 |( 0.000000 +- 0.000000)% | - | "Velo.ghostProbability" | 7271 | 1700.283 | 0.23384 | - | "Velo.numOutliers" | 7271 | 9688 | 1.3324 | - |*"VeloBackward.badChisq" | 8547 | 377 |( 4.410904 +- 0.2221064)% | - | "VeloBackward.chisqProbSum" | 8547 | 3957.79 | 0.46306 | - |*"VeloBackward.flipCharge" | 8726 | 0 |( 0.000000 +- 0.000000)% | - | "VeloBackward.ghostProbability" | 8726 | 985.7012 | 0.11296 | - | "VeloBackward.numOutliers" | 8726 | 4364 | 0.50011 | + |*"Long.badChisq" | 8255 | 2783 |( 33.71290 +- 0.5203002)% | + | "Long.chisqProbSum" | 8255 | 2055.67 | 0.24902 | + |*"Long.flipCharge" | 8255 | 1 |(0.01211387 +- 0.01211314)% | + | "Long.ghostProbability" | 8255 | 1473.899 | 0.17855 | + | "Long.numOutliers" | 8255 | 9149 | 1.1083 | + |*"Ttrack.badChisq" | 3376 | 96 |( 2.843602 +- 0.2860677)% | + | "Ttrack.chisqProbSum" | 3376 | 1287.203 | 0.38128 | + |*"Ttrack.flipCharge" | 3376 | 118 |( 3.495261 +- 0.3160916)% | + | "Ttrack.ghostProbability" | 3376 | 306.6537 | 0.090833 | + | "Ttrack.numOutliers" | 3376 | 1370 | 0.40581 | + |*"Upstream.badChisq" | 979 | 220 |( 22.47191 +- 1.334007)% | + | "Upstream.chisqProbSum" | 979 | 318.9529 | 0.32579 | + |*"Upstream.flipCharge" | 982 | 22 |( 2.240326 +- 0.4722584)% | + | "Upstream.ghostProbability" | 982 | 235.0278 | 0.23934 | + | "Upstream.numOutliers" | 982 | 857 | 0.87271 | + |*"Velo.badChisq" | 6973 | 1567 |( 22.47239 +- 0.4998538)% | + | "Velo.chisqProbSum" | 6973 | 2195.331 | 0.31483 | + |*"Velo.flipCharge" | 7270 | 0 |( 0.000000 +- 0.000000)% | + | "Velo.ghostProbability" | 7270 | 1698.515 | 0.23363 | + | "Velo.numOutliers" | 7270 | 9706 | 1.3351 | + |*"VeloBackward.badChisq" | 8552 | 379 |( 4.431712 +- 0.2225404)% | + | "VeloBackward.chisqProbSum" | 8552 | 3964.336 | 0.46356 | + |*"VeloBackward.flipCharge" | 8738 | 0 |( 0.000000 +- 0.000000)% | + | "VeloBackward.ghostProbability" | 8738 | 998.9804 | 0.11433 | + | "VeloBackward.numOutliers" | 8738 | 4408 | 0.50446 | VPClus INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb of Produced Clusters" | 100 | 179234 | 1792.3 | VeloClusterTrackingSIMD INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb of Produced Clusters" | 100 | 179234 | 1792.3 | - | "Nb of Produced Tracks" | 100 | 23012 | 230.12 | + | "Nb of Produced Tracks" | 100 | 23069 | 230.69 | VeloKalman INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of Produced Tracks" | 100 | 2334 | 23.340 | + | "Nb of Produced Tracks" | 100 | 2338 | 23.380 | ddLambda0Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 33 |( 33.00000 +- 4.702127)% | - |*"# passed CombinationCut" | 2675 | 567 |( 21.19626 +- 0.7902075)% | - |*"# passed CompositeCut" | 567 | 72 |( 12.69841 +- 1.398280)% | - |*"# passed vertex fit" | 567 | 567 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 581 | 5.8100 | - | "Input2 size" | 100 | 608 | 6.0800 | + |*"# passed" | 100 | 34 |( 34.00000 +- 4.737088)% | + |*"# passed CombinationCut" | 2658 | 566 |( 21.29421 +- 0.7940660)% | + |*"# passed CompositeCut" | 566 | 73 |( 12.89753 +- 1.408835)% | + |*"# passed vertex fit" | 566 | 566 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 587 | 5.8700 | + | "Input2 size" | 100 | 598 | 5.9800 | fromPrDownstreamTracksV1Tracks INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of converted Tracks" | 100 | 7174 | 71.740 | + | "Nb of converted Tracks" | 100 | 7173 | 71.730 | fromPrFittedForwardTracksV1Tracks INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of converted Tracks" | 100 | 2334 | 23.340 | + | "Nb of converted Tracks" | 100 | 2338 | 23.380 | fromPrForwardTracksFromVeloUTV1T... INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of converted Tracks" | 100 | 2334 | 23.340 | + | "Nb of converted Tracks" | 100 | 2338 | 23.380 | fromPrForwardTracksV1Tracks INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of converted Tracks" | 100 | 6519 | 65.190 | + | "Nb of converted Tracks" | 100 | 6528 | 65.280 | fromPrMatchTracksV1Tracks INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of converted Tracks" | 100 | 6666 | 66.660 | + | "Nb of converted Tracks" | 100 | 6681 | 66.810 | fromPrSeedingTracksV1Tracks INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb of converted Tracks" | 100 | 10300 | 103.00 | fromPrUpstreamTracksV1Tracks INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of converted Tracks" | 100 | 3784 | 37.840 | + | "Nb of converted Tracks" | 100 | 3793 | 37.930 | fromPrVeloTracksV1TracksMerger INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of converted Tracks" | 100 | 23012 | 230.12 | + | "Nb of converted Tracks" | 100 | 23069 | 230.69 | llLambda0Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 49 |( 49.00000 +- 4.999000)% | - |*"# passed CombinationCut" | 1803 | 415 |( 23.01719 +- 0.9913458)% | - |*"# passed CompositeCut" | 415 | 197 |( 47.46988 +- 2.451259)% | + |*"# passed CombinationCut" | 1737 | 415 |( 23.89177 +- 1.023152)% | + |*"# passed CompositeCut" | 415 | 193 |( 46.50602 +- 2.448404)% | |*"# passed vertex fit" | 415 | 415 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 458 | 4.5800 | + | "Input1 size" | 100 | 450 | 4.5000 | | "Input2 size" | 100 | 485 | 4.8500 | xiCombiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 22 |( 22.00000 +- 4.142463)% | - |*"# passed CombinationCut" | 1173 | 147 |( 12.53197 +- 0.9666858)% | - |*"# passed CompositeCut" | 147 | 128 |( 87.07483 +- 2.766978)% | - |*"# passed vertex fit" | 147 | 147 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 197 | 1.9700 | - | "Input2 size" | 100 | 525 | 5.2500 | + |*"# passed" | 100 | 21 |( 21.00000 +- 4.073082)% | + |*"# passed CombinationCut" | 1132 | 143 |( 12.63251 +- 0.9874077)% | + |*"# passed CompositeCut" | 143 | 123 |( 86.01399 +- 2.900437)% | + |*"# passed vertex fit" | 143 | 143 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 193 | 1.9300 | + | "Input2 size" | 100 | 528 | 5.2800 | diff --git a/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections.ref.x86_64_v3-opt b/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections.ref.x86_64_v3-opt index d91c258ddcf..9053191f519 100644 --- a/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections.ref.x86_64_v3-opt +++ b/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections.ref.x86_64_v3-opt @@ -8,6 +8,8 @@ Phi2KKMaker.LoKi::DistanceCalcul... SUCCESS #WARNINGS = 47 Message = 'T Phi2KKMaker.LoKi::DistanceCalcul... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 PromptHyperonHHHCombiner.LoKi::D... SUCCESS #WARNINGS = 34 Message = 'There is no convergency-III' PromptHyperonHHHCombiner.LoKi::D... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 +TrackBestTrackCreator.TrackMaste... SUCCESS #WARNINGS = 2 Message = 'Error in compute residual: non positive variance.' +TrackBestTrackCreator.TrackMaste... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 ddLambda0Combiner.LoKi::Distance... SUCCESS #WARNINGS = 6 Message = 'There is no convergency-III' ddLambda0Combiner.LoKi::Distance... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 llLambda0Combiner.LoKi::Distance... SUCCESS #WARNINGS = 2 Message = 'There is no convergency-III' @@ -19,11 +21,11 @@ ApplicationMgr INFO Application Manager Terminated succe BremChi22IDFuture INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 14570 | 145.70 | 87.735 | 0.0000 | 410.00 | - | "#total tracks" | 100 | 28050 | 280.50 | 170.29 | 0.0000 | 1035.0 | + | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | BremMatchAlgFuture INFO Number of counters : 5 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#above threshold" | 100 | 881983 | 8819.8 | 8540.9 | 0.0000 | 36843.0 | - | "#chi2" | 359460 |1.683559e+09 | 4683.6 | 2882.6 | 0.0011016 | 9999.9 | + | "#chi2" | 359460 |1.683558e+09 | 4683.6 | 2882.6 | 0.0011016 | 9999.9 | | "#good tracks" | 100 | 9515 | 95.150 | 58.550 | 0.0000 | 251.00 | | "#links in table" | 100 | 359460 | 3594.6 | 3063.0 | 0.0000 | 12049.0 | | "#total calos" | 100 | 10298 | 102.98 | 48.402 | 0.0000 | 210.00 | @@ -32,17 +34,17 @@ BremPIDeAlgFuture INFO Number of counters : 1 | "Table Size" | 100 | 14570 | 145.70 | 87.735 | 0.0000 | 410.00 | Bs2JPsiPhi_JPsi2MuMu_Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 14 |( 14.00000 +- 3.469870)% | + |*"# passed" | 100 | 5 |( 5.000000 +- 2.179449)% | |*"# passed CombinationCut" | 750 | 152 |( 20.26667 +- 1.467846)% | - |*"# passed CompositeCut" | 152 | 52 |( 34.21053 +- 3.848011)% | + |*"# passed CompositeCut" | 152 | 12 |( 7.894737 +- 2.187204)% | |*"# passed vertex fit" | 152 | 152 |( 100.0000 +- 0.000000)% | | "Input1 size" | 100 | 137 | 1.3700 | | "Input2 size" | 100 | 270 | 2.7000 | Bs2JPsiPhi_JPsi2ee_Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 16 |( 16.00000 +- 3.666061)% | + |*"# passed" | 100 | 9 |( 9.000000 +- 2.861818)% | |*"# passed CombinationCut" | 1399 | 293 |( 20.94353 +- 1.087890)% | - |*"# passed CompositeCut" | 293 | 97 |( 33.10580 +- 2.749239)% | + |*"# passed CompositeCut" | 293 | 36 |( 12.28669 +- 1.917858)% | |*"# passed vertex fit" | 293 | 293 |( 100.0000 +- 0.000000)% | | "Input1 size" | 100 | 219 | 2.1900 | | "Input2 size" | 100 | 270 | 2.7000 | @@ -56,7 +58,7 @@ CaloFutureClusterCovarianceAlg.E... INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Corrected Clusters: # cells " | 1174 | 5999 | 5.1099 | 1.7745 | 2.0000 | 14.000 | | "Corrected Clusters: ET" | 1174 | 317801.2 | 270.70 | 284.59 | 35.600 | 4632.2 | - | "Corrected Clusters: size ratio" | 1174 | 444.1726 | 0.37834 | 0.29125 | -3.6723e-16 | 2.8281 | + | "Corrected Clusters: size ratio" | 1174 | 444.1727 | 0.37834 | 0.29125 | -3.6723e-16 | 2.8281 | CaloFutureMergedPi0 INFO Number of counters : 12 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"Cluster without 2nd seed found" | 379 | 0 |( 0.000000 +- 0.000000)% | @@ -86,7 +88,7 @@ CaloFutureMergedPi0.EcalSpread INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Corrected Clusters: # cells " | 94 | 594 | 6.3191 | 1.7577 | 4.0000 | 9.0000 | | "Corrected Clusters: ET" | 94 | 103801.8 | 1104.3 | 1178.3 | 34.600 | 9841.2 | - | "Corrected Clusters: size ratio" | 94 | 32.53921 | 0.34616 | 0.27227 | 0.066570 | 1.8140 | + | "Corrected Clusters: size ratio" | 94 | 32.53922 | 0.34616 | 0.27227 | 0.066570 | 1.8140 | CaloFutureShowerOverlap INFO Number of counters : 5 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Delta(E)" | 19041 | -595002.2 | -31.248 | 906.20 | -16337.0 | 12389.0 | @@ -142,63 +144,63 @@ DownstreamProtonsFilter INFO Number of counters : 1 |*"Cut selection efficiency" | 1188 | 587 |( 49.41077 +- 1.450546)% | FilteredPIDElectrons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6494 | 1437 |( 22.12812 +- 0.5151177)% | + |*"Cut selection efficiency" | 6493 | 1436 |( 22.11613 +- 0.5150574)% | FilteredPIDMuons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6494 | 839 |( 12.91962 +- 0.4162257)% | + |*"Cut selection efficiency" | 6493 | 839 |( 12.92161 +- 0.4162850)% | FilteredPIDkaons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6494 | 2409 |( 37.09578 +- 0.5994404)% | + |*"Cut selection efficiency" | 6493 | 2409 |( 37.10149 +- 0.5995055)% | FunctionalChargedProtoParticleMaker INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "CreatedProtos" | 8668 | + | "CreatedProtos" | 8667 | FunctionalParticleMaker#1 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed ProtoParticle filter" | 1367 | 1188 |( 86.90563 +- 0.9123930)% | - |*"# passed Track filter" | 8668 | 1367 |( 15.77065 +- 0.3914687)% | + |*"# passed Track filter" | 8667 | 1367 |( 15.77247 +- 0.3915097)% | | "Nb created anti-particles" | 100 | 594 | 5.9400 | 4.8204 | 0.0000 | 22.000 | | "Nb created particles" | 100 | 594 | 5.9400 | 4.6772 | 0.0000 | 21.000 | FunctionalParticleMaker#2 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed ProtoParticle filter" | 1367 | 1188 |( 86.90563 +- 0.9123930)% | - |*"# passed Track filter" | 8668 | 1367 |( 15.77065 +- 0.3914687)% | + |*"# passed Track filter" | 8667 | 1367 |( 15.77247 +- 0.3915097)% | | "Nb created anti-particles" | 100 | 594 | 5.9400 | 4.8204 | 0.0000 | 22.000 | | "Nb created particles" | 100 | 594 | 5.9400 | 4.6772 | 0.0000 | 21.000 | FunctionalParticleMaker#3 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6494 | 6182 |( 95.19557 +- 0.2653832)% | - |*"# passed Track filter" | 8668 | 6494 |( 74.91924 +- 0.4655942)% | + |*"# passed ProtoParticle filter" | 6493 | 6182 |( 95.21023 +- 0.2650187)% | + |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | | "Nb created anti-particles" | 100 | 3083 | 30.830 | 19.299 | 0.0000 | 89.000 | | "Nb created particles" | 100 | 3099 | 30.990 | 19.358 | 0.0000 | 84.000 | FunctionalParticleMaker#4 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6494 | 6182 |( 95.19557 +- 0.2653832)% | - |*"# passed Track filter" | 8668 | 6494 |( 74.91924 +- 0.4655942)% | + |*"# passed ProtoParticle filter" | 6493 | 6182 |( 95.21023 +- 0.2650187)% | + |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | | "Nb created anti-particles" | 100 | 3083 | 30.830 | 19.299 | 0.0000 | 89.000 | | "Nb created particles" | 100 | 3099 | 30.990 | 19.358 | 0.0000 | 84.000 | FunctionalParticleMaker#5 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6494 | 6182 |( 95.19557 +- 0.2653832)% | - |*"# passed Track filter" | 8668 | 6494 |( 74.91924 +- 0.4655942)% | + |*"# passed ProtoParticle filter" | 6493 | 6182 |( 95.21023 +- 0.2650187)% | + |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | | "Nb created anti-particles" | 100 | 3083 | 30.830 | 19.299 | 0.0000 | 89.000 | | "Nb created particles" | 100 | 3099 | 30.990 | 19.358 | 0.0000 | 84.000 | FunctionalParticleMaker#6 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6494 | 6494 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 8668 | 6494 |( 74.91924 +- 0.4655942)% | - | "Nb created anti-particles" | 100 | 3237 | 32.370 | 20.432 | 0.0000 | 94.000 | + |*"# passed ProtoParticle filter" | 6493 | 6493 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | + | "Nb created anti-particles" | 100 | 3236 | 32.360 | 20.402 | 0.0000 | 93.000 | | "Nb created particles" | 100 | 3257 | 32.570 | 20.373 | 0.0000 | 87.000 | FunctionalParticleMaker#7 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6494 | 6494 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 8668 | 6494 |( 74.91924 +- 0.4655942)% | - | "Nb created anti-particles" | 100 | 3237 | 32.370 | 20.432 | 0.0000 | 94.000 | + |*"# passed ProtoParticle filter" | 6493 | 6493 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | + | "Nb created anti-particles" | 100 | 3236 | 32.360 | 20.402 | 0.0000 | 93.000 | | "Nb created particles" | 100 | 3257 | 32.570 | 20.373 | 0.0000 | 87.000 | FunctionalParticleMaker#8 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6494 | 6494 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 8668 | 6494 |( 74.91924 +- 0.4655942)% | - | "Nb created anti-particles" | 100 | 3237 | 32.370 | 20.432 | 0.0000 | 94.000 | + |*"# passed ProtoParticle filter" | 6493 | 6493 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | + | "Nb created anti-particles" | 100 | 3236 | 32.360 | 20.402 | 0.0000 | 93.000 | | "Nb created particles" | 100 | 3257 | 32.570 | 20.373 | 0.0000 | 87.000 | FutureCellularAutomatonAlg INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | @@ -209,11 +211,11 @@ FutureCellularAutomatonAlg INFO Number of counters : 4 FutureClusChi22ID INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 11236 | 112.36 | 78.674 | 0.0000 | 577.00 | - | "#total tracks" | 100 | 28050 | 280.50 | 170.29 | 0.0000 | 1035.0 | + | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | FutureEcalChi22ID INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 11236 | 112.36 | 78.674 | 0.0000 | 577.00 | - | "#total tracks" | 100 | 28050 | 280.50 | 170.29 | 0.0000 | 1035.0 | + | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | FutureEcalPIDeAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Table Size" | 100 | 11236 | 112.36 | 78.674 | 0.0000 | 577.00 | @@ -225,10 +227,10 @@ FutureEcalZSup INFO Number of counters : 1 |*"No bank found" | 100 | 0 |( 0.000000 +- 0.000000)% | FutureElectronMatchAlg INFO Number of counters : 5 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#above threshold" | 100 | 1033458 | 10335.0 | 15491.0 | 0.0000 | 1.2964e+05 | - | "#chi2" | 122257 |5.397928e+08 | 4415.2 | 2938.4 | 0.024819 | 9999.9 | + | "#above threshold" | 100 | 1033460 | 10335.0 | 15491.0 | 0.0000 | 1.2964e+05 | + | "#chi2" | 122255 |5.397869e+08 | 4415.3 | 2938.4 | 0.024819 | 9999.9 | | "#good tracks" | 100 | 9390 | 93.900 | 67.117 | 0.0000 | 508.00 | - | "#links in table" | 100 | 122257 | 1222.6 | 1914.7 | 0.0000 | 17175.0 | + | "#links in table" | 100 | 122255 | 1222.5 | 1914.5 | 0.0000 | 17173.0 | | "#total calos" | 100 | 8589 | 85.890 | 54.779 | 0.0000 | 289.00 | FutureHcalPIDeAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | @@ -242,7 +244,7 @@ FutureHcalZSup INFO Number of counters : 1 FutureInBremFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 15937 | 159.37 | 96.598 | 0.0000 | 442.00 | - | "#total tracks" | 100 | 28050 | 280.50 | 170.29 | 0.0000 | 1035.0 | + | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | | "#tracks in acceptance" | 100 | 10493 | 104.93 | 65.073 | 0.0000 | 273.00 | FutureNeutralProtoPAlg INFO Number of counters : 30 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | @@ -261,7 +263,7 @@ FutureNeutralProtoPAlg INFO Number of counters : 30 | "CaloNeutralID for Photon" | 10298 |3.928134e+08 | 38145.0 | 3554.9 | 33152.0 | 44151.0 | | "CaloNeutralID for Pi0Merged" | 379 |1.417681e+07 | 37406.0 | 3420.6 | 33294.0 | 43862.0 | | "CaloTrMatch for Photon" | 9794 | 1406768 | 143.64 | 192.58 | 4.0040 | 999.38 | - | "CaloTrMatch for Pi0Merged" | 376 | 8833.668 | 23.494 | 88.821 | 0.00024249 | 940.45 | + | "CaloTrMatch for Pi0Merged" | 376 | 8833.667 | 23.494 | 88.821 | 0.00024249 | 940.45 | | "ClusterAsX for Photon" | 10295 | 27.04689 | 0.0026272 | 0.20124 | -0.67370 | 0.71369 | | "ClusterAsY for Photon" | 10291 | 58.6078 | 0.0056951 | 0.19823 | -0.72460 | 0.71418 | | "IsNotH for Photon" | 10298 | 3963.82 | 0.38491 | 0.35057 | -1.0000 | 0.99502 | @@ -282,7 +284,7 @@ FutureNeutralProtoPAlg.CaloFutur... INFO Number of counters : 1 FuturePhotonMatchAlg INFO Number of counters : 5 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#above threshold" | 100 | 1501812 | 15018.0 | 17356.0 | 0.0000 | 1.3396e+05 | - | "#chi2" | 462634 |2.131799e+08 | 460.80 | 291.00 | 0.00024249 | 1000.0 | + | "#chi2" | 462634 |2.131802e+08 | 460.80 | 291.00 | 0.00024249 | 1000.0 | | "#good tracks" | 100 | 9390 | 93.900 | 67.117 | 0.0000 | 508.00 | | "#links in table" | 100 | 462634 | 4626.3 | 6383.8 | 0.0000 | 51964.0 | | "#total calos" | 100 | 15868 | 158.68 | 79.052 | 0.0000 | 366.00 | @@ -290,27 +292,27 @@ FutureTrack2EcalEAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 9390 | 93.900 | 67.117 | 0.0000 | 508.00 | | "#total energy" | 9390 | 27391.21 | 2.9171 | 3.7713 | -0.093026 | 66.674 | - | "#total tracks" | 100 | 28050 | 280.50 | 170.29 | 0.0000 | 1035.0 | + | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | FutureTrack2HcalEAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 8823 | 88.230 | 63.651 | 0.0000 | 490.00 | - | "#total energy" | 8823 | 50506.48 | 5.7244 | 10.574 | 0.0000 | 202.25 | - | "#total tracks" | 100 | 28050 | 280.50 | 170.29 | 0.0000 | 1035.0 | + | "#total energy" | 8823 | 50485.09 | 5.7220 | 10.566 | 0.0000 | 202.25 | + | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | Hlt2PhotonFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"Cut selection efficiency" | 7967 | 38 |(0.4769675 +- 0.07718960)% | HltPackedDataWriter INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Size of serialized data" | 37 | 763636 | 20639.0 | 22708.0 | 1336.0 | 82800.0 | + | "Size of serialized data" | 32 | 410066 | 12815.0 | 15784.0 | 1220.0 | 53572.0 | InEcalFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 11236 | 112.36 | 78.674 | 0.0000 | 577.00 | - | "#total tracks" | 100 | 28050 | 280.50 | 170.29 | 0.0000 | 1035.0 | + | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | | "#tracks in acceptance" | 100 | 9390 | 93.900 | 67.117 | 0.0000 | 508.00 | InHcalFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 11236 | 112.36 | 78.674 | 0.0000 | 577.00 | - | "#total tracks" | 100 | 28050 | 280.50 | 170.29 | 0.0000 | 1035.0 | + | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | | "#tracks in acceptance" | 100 | 8823 | 88.230 | 63.651 | 0.0000 | 490.00 | LHCb__MDF__IOAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | @@ -346,33 +348,33 @@ LongProtonsFilter INFO Number of counters : 1 MassConstrJpsi2MuMuMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 41 |( 41.00000 +- 4.918333)% | - |*"# passed CombinationCut" | 38670 | 141 |(0.3646237 +- 0.03065082)% | + |*"# passed CombinationCut" | 38658 | 141 |(0.3647369 +- 0.03066032)% | |*"# passed CompositeCut" | 141 | 137 |( 97.16312 +- 1.398175)% | |*"# passed vertex fit" | 141 | 141 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6494 | 64.940 | + | "Input1 size" | 100 | 6493 | 64.930 | | "Input2 size" | 100 | 839 | 8.3900 | MassConstrJpsi2eeMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 58 |( 58.00000 +- 4.935585)% | - |*"# passed CombinationCut" | 66379 | 226 |(0.3404691 +- 0.02260908)% | + |*"# passed CombinationCut" | 66268 | 226 |(0.3410394 +- 0.02264689)% | |*"# passed CompositeCut" | 226 | 219 |( 96.90265 +- 1.152414)% | |*"# passed vertex fit" | 226 | 226 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6494 | 64.940 | - | "Input2 size" | 100 | 1437 | 14.370 | + | "Input1 size" | 100 | 6493 | 64.930 | + | "Input2 size" | 100 | 1436 | 14.360 | ParticleWithBremMaker INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of particles corrected with brem" | 6494 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | + | "Nb of particles corrected with brem" | 6493 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | ParticleWithBremMaker.Functional... INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Delta(E)" | 707 | 7179529 | 10155.0 | 12079.0 | 423.00 | 88750.0 | - | "Nb photons added to single electrons" | 6494 | 739 | 0.11380 | 0.33272 | 0.0000 | 2.0000 | + | "Nb photons added to single electrons" | 6493 | 739 | 0.11381 | 0.33274 | 0.0000 | 2.0000 | Phi2KKMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 62 |( 62.00000 +- 4.853864)% | - |*"# passed CombinationCut" | 111551 | 6260 |( 5.611783 +- 0.06890847)% | + |*"# passed CombinationCut" | 111511 | 6260 |( 5.613796 +- 0.06893245)% | |*"# passed CompositeCut" | 6260 | 270 |( 4.313099 +- 0.2567638)% | |*"# passed vertex fit" | 6260 | 6260 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6494 | 64.940 | + | "Input1 size" | 100 | 6493 | 64.930 | | "Input2 size" | 100 | 2409 | 24.090 | PrForwardTrackingVelo INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | @@ -388,13 +390,13 @@ PrLongLivedTracking INFO Number of counters : 1 | "#Downstream tracks made" | 100 | 7173 | 71.730 | PrMatchNN INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#MatchingChi2" | 19382 | 107701.7 | 5.5568 | - | "#MatchingTracks" | 99 | 6682 | 67.495 | - | "TracksMLP" | 19382 | 6573.627 | 0.33916 | + | "#MatchingChi2" | 19381 | 107686.7 | 5.5563 | + | "#MatchingTracks" | 99 | 6681 | 67.485 | + | "TracksMLP" | 19381 | 6573.57 | 0.33918 | PrMatchNN.PrAddUTHitsTool INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#UT hits added" | 5824 | 23253 | 3.9926 | - | "#tracks with hits added" | 5824 | + | "#UT hits added" | 5823 | 23249 | 3.9926 | + | "#tracks with hits added" | 5823 | PrStorePrUTHits INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#banks" | 100 | 18000 | 180.00 | @@ -438,35 +440,36 @@ ToolSvc.TrackFunctorFactory INFO Number of counters : 1 TrackBeamLineVertexFinderSoA INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb PVs" | 100 | 472 | 4.7200 | -TrackBestTrackCreator INFO Number of counters : 32 +TrackBestTrackCreator INFO Number of counters : 33 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 30924 | 0 |( 0.000000 +- 0.000000)% | + |*"BadInput" | 30925 | 0 |( 0.000000 +- 0.000000)% | |*"Downstream.badChisq" | 2302 | 1067 |( 46.35100 +- 1.039340)% | - | "Downstream.chisqProbSum" | 2302 | 392.0087 | 0.17029 | + | "Downstream.chisqProbSum" | 2302 | 392.0154 | 0.17029 | |*"Downstream.flipCharge" | 2302 | 0 |( 0.000000 +- 0.000000)% | - | "Downstream.ghostProbability" | 2302 | 1074.548 | 0.46679 | + | "Downstream.ghostProbability" | 2302 | 1074.545 | 0.46679 | | "Downstream.numOutliers" | 2302 | 2475 | 1.0752 | - |*"FitFailed" | 30924 | 0 |( 0.000000 +- 0.000000)% | - |*"Long.badChisq" | 8258 | 2786 |( 33.73698 +- 0.5202970)% | - | "Long.chisqProbSum" | 8258 | 2055.666 | 0.24893 | - |*"Long.flipCharge" | 8258 | 1 |(0.01210947 +- 0.01210874)% | - | "Long.ghostProbability" | 8258 | 1476.197 | 0.17876 | - | "Long.numOutliers" | 8258 | 9158 | 1.1090 | - |*"Ttrack.badChisq" | 3375 | 96 |( 2.844444 +- 0.2861513)% | - | "Ttrack.chisqProbSum" | 3375 | 1287.185 | 0.38139 | - |*"Ttrack.flipCharge" | 3375 | 118 |( 3.496296 +- 0.3161835)% | - | "Ttrack.ghostProbability" | 3375 | 306.3021 | 0.090756 | - | "Ttrack.numOutliers" | 3375 | 1370 | 0.40593 | + |*"FitFailed" | 30925 | 2 |(0.006467259 +- 0.004572895)% | + | "Long.FitFailed" | 2 | 2 | 1.0000 | + |*"Long.badChisq" | 8255 | 2783 |( 33.71290 +- 0.5203002)% | + | "Long.chisqProbSum" | 8255 | 2055.67 | 0.24902 | + |*"Long.flipCharge" | 8255 | 1 |(0.01211387 +- 0.01211314)% | + | "Long.ghostProbability" | 8255 | 1473.899 | 0.17855 | + | "Long.numOutliers" | 8255 | 9149 | 1.1083 | + |*"Ttrack.badChisq" | 3376 | 96 |( 2.843602 +- 0.2860677)% | + | "Ttrack.chisqProbSum" | 3376 | 1287.203 | 0.38128 | + |*"Ttrack.flipCharge" | 3376 | 118 |( 3.495261 +- 0.3160916)% | + | "Ttrack.ghostProbability" | 3376 | 306.6537 | 0.090833 | + | "Ttrack.numOutliers" | 3376 | 1370 | 0.40581 | |*"Upstream.badChisq" | 979 | 220 |( 22.47191 +- 1.334007)% | - | "Upstream.chisqProbSum" | 979 | 318.9528 | 0.32579 | + | "Upstream.chisqProbSum" | 979 | 318.9529 | 0.32579 | |*"Upstream.flipCharge" | 982 | 22 |( 2.240326 +- 0.4722584)% | | "Upstream.ghostProbability" | 982 | 235.0278 | 0.23934 | | "Upstream.numOutliers" | 982 | 857 | 0.87271 | - |*"Velo.badChisq" | 6972 | 1567 |( 22.47562 +- 0.4999151)% | - | "Velo.chisqProbSum" | 6972 | 2194.844 | 0.31481 | - |*"Velo.flipCharge" | 7269 | 0 |( 0.000000 +- 0.000000)% | - | "Velo.ghostProbability" | 7269 | 1697.516 | 0.23353 | - | "Velo.numOutliers" | 7269 | 9706 | 1.3353 | + |*"Velo.badChisq" | 6973 | 1567 |( 22.47239 +- 0.4998538)% | + | "Velo.chisqProbSum" | 6973 | 2195.331 | 0.31483 | + |*"Velo.flipCharge" | 7270 | 0 |( 0.000000 +- 0.000000)% | + | "Velo.ghostProbability" | 7270 | 1698.515 | 0.23363 | + | "Velo.numOutliers" | 7270 | 9706 | 1.3351 | |*"VeloBackward.badChisq" | 8552 | 379 |( 4.431712 +- 0.2225404)% | | "VeloBackward.chisqProbSum" | 8552 | 3964.336 | 0.46356 | |*"VeloBackward.flipCharge" | 8738 | 0 |( 0.000000 +- 0.000000)% | @@ -504,7 +507,7 @@ fromPrForwardTracksV1Tracks INFO Number of counters : 1 | "Nb of converted Tracks" | 100 | 6528 | 65.280 | fromPrMatchTracksV1Tracks INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of converted Tracks" | 100 | 6682 | 66.820 | + | "Nb of converted Tracks" | 100 | 6681 | 66.810 | fromPrSeedingTracksV1Tracks INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb of converted Tracks" | 100 | 10300 | 103.00 | diff --git a/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections_fastest.ref b/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections_fastest.ref index d2cec960d1b..e318e5f2dda 100644 --- a/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections_fastest.ref +++ b/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections_fastest.ref @@ -4,11 +4,11 @@ TransportSvc SUCCESS GEOMETRY ERRORS: 'Recover' map has TransportSvc SUCCESS GEOMETRY ERRORS: 'Codes' map has the size 0 TransportSvc INFO Reset the static pointer to DetDesc::IGeometyrErrorSvc ToolSvc INFO Removing all tools created by ToolSvc -Phi2KKMaker.LoKi::DistanceCalcul... SUCCESS #WARNINGS = 35 Message = 'There is no convergency-III' +Phi2KKMaker.LoKi::DistanceCalcul... SUCCESS #WARNINGS = 34 Message = 'There is no convergency-III' Phi2KKMaker.LoKi::DistanceCalcul... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 -PromptHyperonHHHCombiner.LoKi::D... SUCCESS #WARNINGS = 5 Message = 'There is no convergency-III' +PromptHyperonHHHCombiner.LoKi::D... SUCCESS #WARNINGS = 1 Message = 'There is no convergency-III' PromptHyperonHHHCombiner.LoKi::D... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 -ddLambda0Combiner.LoKi::Distance... SUCCESS #WARNINGS = 8 Message = 'There is no convergency-III' +ddLambda0Combiner.LoKi::Distance... SUCCESS #WARNINGS = 6 Message = 'There is no convergency-III' ddLambda0Combiner.LoKi::Distance... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 xiCombiner.LoKi::DistanceCalculator SUCCESS #WARNINGS = 1 Message = 'There is no convergency-III' xiCombiner.LoKi::DistanceCalculator SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 @@ -16,27 +16,27 @@ ApplicationMgr INFO Application Manager Finalized succes ApplicationMgr INFO Application Manager Terminated successfully BremChi22IDFuture INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 6189 | 61.890 | 36.640 | 0.0000 | 148.00 | - | "#total tracks" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | + | "#links in table" | 100 | 6187 | 61.870 | 36.643 | 0.0000 | 148.00 | + | "#total tracks" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | BremPIDeAlgFuture INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Table Size" | 100 | 6189 | 61.890 | 36.640 | 0.0000 | 148.00 | + | "Table Size" | 100 | 6187 | 61.870 | 36.643 | 0.0000 | 148.00 | Bs2JPsiPhi_JPsi2MuMu_Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 10 |( 10.00000 +- 3.000000)% | - |*"# passed CombinationCut" | 644 | 134 |( 20.80745 +- 1.599590)% | - |*"# passed CompositeCut" | 134 | 46 |( 34.32836 +- 4.101692)% | - |*"# passed vertex fit" | 134 | 134 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 123 | 1.2300 | - | "Input2 size" | 100 | 233 | 2.3300 | + |*"# passed" | 100 | 3 |( 3.000000 +- 1.705872)% | + |*"# passed CombinationCut" | 665 | 138 |( 20.75188 +- 1.572579)% | + |*"# passed CompositeCut" | 138 | 14 |( 10.14493 +- 2.570137)% | + |*"# passed vertex fit" | 138 | 138 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 125 | 1.2500 | + | "Input2 size" | 100 | 237 | 2.3700 | Bs2JPsiPhi_JPsi2ee_Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 14 |( 14.00000 +- 3.469870)% | - |*"# passed CombinationCut" | 1205 | 238 |( 19.75104 +- 1.146888)% | - |*"# passed CompositeCut" | 238 | 94 |( 39.49580 +- 3.168690)% | - |*"# passed vertex fit" | 238 | 238 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 226 | 2.2600 | - | "Input2 size" | 100 | 233 | 2.3300 | + |*"# passed" | 100 | 8 |( 8.000000 +- 2.712932)% | + |*"# passed CombinationCut" | 1250 | 258 |( 20.64000 +- 1.144724)% | + |*"# passed CompositeCut" | 258 | 37 |( 14.34109 +- 2.182064)% | + |*"# passed vertex fit" | 258 | 258 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 229 | 2.2900 | + | "Input2 size" | 100 | 237 | 2.3700 | CaloFutureClusterCovarianceAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# clusters" | 15868 | @@ -46,8 +46,8 @@ CaloFutureClusterCovarianceAlg.E... INFO Number of counters : 1 CaloFutureClusterCovarianceAlg.E... INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Corrected Clusters: # cells " | 1174 | 5999 | 5.1099 | 1.7745 | 2.0000 | 14.000 | - | "Corrected Clusters: ET" | 1174 | 317801.1 | 270.70 | 284.59 | 35.600 | 4632.2 | - | "Corrected Clusters: size ratio" | 1174 | 444.1727 | 0.37834 | 0.29125 | -9.1809e-17 | 2.8281 | + | "Corrected Clusters: ET" | 1174 | 317801.2 | 270.70 | 284.59 | 35.600 | 4632.2 | + | "Corrected Clusters: size ratio" | 1174 | 444.1727 | 0.37834 | 0.29125 | -3.6723e-16 | 2.8281 | CaloFutureMergedPi0 INFO Number of counters : 12 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"Cluster without 2nd seed found" | 379 | 0 |( 0.000000 +- 0.000000)% | @@ -56,9 +56,9 @@ CaloFutureMergedPi0 INFO Number of counters : 12 |*"Fails to set spread" | 100 | 0 |( 0.000000 +- 0.000000)% | |*"Fails to tag(E) cluster (1)" | 379 | 0 |( 0.000000 +- 0.000000)% | |*"Fails to tag(E) cluster (2)" | 379 | 0 |( 0.000000 +- 0.000000)% | - | "Photon Delta(E)" | 758 | -44374.11 | -58.541 | 363.70 | -2602.7 | 3251.7 | - | "Photon Delta(X)" | 758 | -648.125 | -0.85505 | 13.562 | -46.608 | 22.319 | - | "Photon Delta(Y)" | 758 | -123.3137 | -0.16268 | 13.410 | -28.241 | 22.325 | + | "Photon Delta(E)" | 758 | -44373.71 | -58.541 | 363.70 | -2602.7 | 3251.7 | + | "Photon Delta(X)" | 758 | -648.1165 | -0.85503 | 13.562 | -46.608 | 22.319 | + | "Photon Delta(Y)" | 758 | -123.2589 | -0.16261 | 13.410 | -28.241 | 22.325 | | "Photon Delta(Z)" | 758 | 58628.89 | 77.347 | 11.362 | 7.5021 | 112.81 | | "clusters => mergedPi0s" | 100 | 379 | 3.7900 | | "clusters => splitClusters" | 100 | 758 | 7.5800 | @@ -66,7 +66,7 @@ CaloFutureMergedPi0.CaloFutureEC... INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | " Inner" | 178 | 177.1093 | 0.99500 | 0.022641 | 0.96563 | 1.0765 | | " Middle" | 120 | 120.4961 | 1.0041 | 0.026115 | 0.97704 | 1.1148 | - | " Outer" | 460 | 458.9484 | 0.99771 | 0.017830 | 0.97404 | 1.0990 | + | " Outer" | 460 | 458.9485 | 0.99771 | 0.017831 | 0.97404 | 1.0990 | | "Pileup offset" | 758 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | | "Pileup scale" | 100 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | | "Pileup subtracted ratio" | 758 | 758 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | @@ -77,7 +77,7 @@ CaloFutureMergedPi0.EcalSpread INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Corrected Clusters: # cells " | 94 | 594 | 6.3191 | 1.7577 | 4.0000 | 9.0000 | | "Corrected Clusters: ET" | 94 | 103801.8 | 1104.3 | 1178.3 | 34.600 | 9841.2 | - | "Corrected Clusters: size ratio" | 94 | 32.5392 | 0.34616 | 0.27227 | 0.066570 | 1.8140 | + | "Corrected Clusters: size ratio" | 94 | 32.53922 | 0.34616 | 0.27227 | 0.066570 | 1.8140 | CaloFutureShowerOverlap INFO Number of counters : 5 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Delta(E)" | 19041 | -595002.2 | -31.248 | 906.20 | -16337.0 | 12389.0 | @@ -87,18 +87,18 @@ CaloFutureShowerOverlap INFO Number of counters : 5 | "negative E clusters (removed)" | 100 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | ClassifyPhotonElectronAlg INFO Number of counters : 12 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Electron Delta(E)" | 5880 | 1155771 | 196.56 | 193.29 | -2313.6 | 2485.9 | - | "Electron Delta(X)" | 5880 | -2396.126 | -0.40750 | 12.095 | -22.782 | 22.326 | - | "Electron Delta(Y)" | 5880 | -2608.302 | -0.44359 | 12.033 | -22.782 | 22.326 | - | "Electron Delta(Z)" | 5880 | 400402.8 | 68.096 | 12.442 | 23.990 | 126.86 | - | "Electron corrected energy" | 5880 |4.041846e+07 | 6873.9 | 7119.2 | 397.47 | 91547.0 | - | "Photon Delta(E)" | 10917 | 798363.9 | 73.130 | 145.89 | -2545.4 | 3183.9 | - | "Photon Delta(X)" | 10917 | -2090.628 | -0.19150 | 12.180 | -22.782 | 22.327 | - | "Photon Delta(Y)" | 10917 | -934.6362 | -0.085613 | 12.191 | -22.782 | 22.326 | - | "Photon Delta(Z)" | 10917 | 643946.5 | 58.986 | 11.886 | 24.107 | 113.40 | - | "Photon corrected energy" | 10917 |4.502959e+07 | 4124.7 | 5949.5 | 253.12 | 1.1665e+05 | - | "electronHypos" | 100 | 5880 | 58.800 | 33.130 | 0.0000 | 182.00 | - | "photonHypos" | 100 | 10917 | 109.17 | 53.985 | 0.0000 | 230.00 | + | "Electron Delta(E)" | 5879 | 1155453 | 196.54 | 193.30 | -2313.6 | 2485.9 | + | "Electron Delta(X)" | 5879 | -2404.116 | -0.40893 | 12.096 | -22.782 | 22.326 | + | "Electron Delta(Y)" | 5879 | -2610.63 | -0.44406 | 12.034 | -22.782 | 22.326 | + | "Electron Delta(Z)" | 5879 | 400313.1 | 68.092 | 12.439 | 23.990 | 126.86 | + | "Electron corrected energy" | 5879 |4.041049e+07 | 6873.7 | 7119.8 | 397.46 | 91547.0 | + | "Photon Delta(E)" | 10918 | 798539.6 | 73.140 | 145.88 | -2545.4 | 3183.9 | + | "Photon Delta(X)" | 10918 | -2082.637 | -0.19075 | 12.180 | -22.782 | 22.327 | + | "Photon Delta(Y)" | 10918 | -932.3072 | -0.085392 | 12.190 | -22.782 | 22.326 | + | "Photon Delta(Z)" | 10918 | 644035.9 | 58.988 | 11.889 | 24.107 | 113.40 | + | "Photon corrected energy" | 10918 |4.503741e+07 | 4125.1 | 5949.3 | 253.12 | 1.1665e+05 | + | "electronHypos" | 100 | 5879 | 58.790 | 33.141 | 0.0000 | 182.00 | + | "photonHypos" | 100 | 10918 | 109.18 | 53.978 | 0.0000 | 230.00 | ClassifyPhotonElectronAlg.CaloFu... INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | " Inner" | 4827 | 4799.134 | 0.99423 | 0.018917 | 0.96447 | 1.1151 | @@ -109,10 +109,10 @@ ClassifyPhotonElectronAlg.CaloFu... INFO Number of counters : 6 | "Pileup subtracted ratio" | 16797 | 16797 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | CloneKillerMatch INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "nTracksSelected" | 100 | 6666 | 66.660 | + | "nTracksSelected" | 100 | 6681 | 66.810 | CopyParticlesWithPVRelations.Gen... INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "IP->(DI)GAMMA" | 250 | + | "IP->(DI)GAMMA" | 249 | DeterministicPrescaler INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"#accept" | 100 | 100 |( 100.0000 +- 0.000000)% | @@ -130,70 +130,70 @@ DeterministicPrescaler#4 INFO Number of counters : 1 |*"#accept" | 100 | 100 |( 100.0000 +- 0.000000)% | DownstreamPionsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 875 | 463 |( 52.91429 +- 1.687435)% | + |*"Cut selection efficiency" | 874 | 461 |( 52.74600 +- 1.688723)% | DownstreamProtonsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 875 | 450 |( 51.42857 +- 1.689618)% | + |*"Cut selection efficiency" | 874 | 451 |( 51.60183 +- 1.690407)% | FilteredPIDElectrons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6189 | 1590 |( 25.69074 +- 0.5553919)% | + |*"Cut selection efficiency" | 6187 | 1588 |( 25.66672 +- 0.5553116)% | FilteredPIDMuons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6189 | 805 |( 13.00695 +- 0.4275823)% | + |*"Cut selection efficiency" | 6187 | 825 |( 13.33441 +- 0.4321855)% | FilteredPIDkaons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6189 | 2307 |( 37.27581 +- 0.6146400)% | + |*"Cut selection efficiency" | 6187 | 2287 |( 36.96460 +- 0.6136846)% | FunctionalChargedProtoParticleMaker INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "CreatedProtos" | 7167 | + | "CreatedProtos" | 7164 | FunctionalParticleMaker#1 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 978 | 875 |( 89.46830 +- 0.9815544)% | - |*"# passed Track filter" | 7167 | 978 |( 13.64588 +- 0.4054839)% | + |*"# passed ProtoParticle filter" | 977 | 874 |( 89.45752 +- 0.9824998)% | + |*"# passed Track filter" | 7164 | 977 |( 13.63763 +- 0.4054656)% | | "Nb created anti-particles" | 100 | 438 | 4.3800 | 3.1170 | 0.0000 | 16.000 | - | "Nb created particles" | 100 | 437 | 4.3700 | 3.4078 | 0.0000 | 14.000 | + | "Nb created particles" | 100 | 436 | 4.3600 | 3.4103 | 0.0000 | 14.000 | FunctionalParticleMaker#2 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 978 | 875 |( 89.46830 +- 0.9815544)% | - |*"# passed Track filter" | 7167 | 978 |( 13.64588 +- 0.4054839)% | + |*"# passed ProtoParticle filter" | 977 | 874 |( 89.45752 +- 0.9824998)% | + |*"# passed Track filter" | 7164 | 977 |( 13.63763 +- 0.4054656)% | | "Nb created anti-particles" | 100 | 438 | 4.3800 | 3.1170 | 0.0000 | 16.000 | - | "Nb created particles" | 100 | 437 | 4.3700 | 3.4078 | 0.0000 | 14.000 | + | "Nb created particles" | 100 | 436 | 4.3600 | 3.4103 | 0.0000 | 14.000 | FunctionalParticleMaker#3 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6189 | 5902 |( 95.36274 +- 0.2673067)% | - |*"# passed Track filter" | 7167 | 6189 |( 86.35412 +- 0.4054839)% | - | "Nb created anti-particles" | 100 | 2927 | 29.270 | 17.489 | 0.0000 | 69.000 | - | "Nb created particles" | 100 | 2975 | 29.750 | 17.945 | 0.0000 | 70.000 | + |*"# passed ProtoParticle filter" | 6187 | 5900 |( 95.36124 +- 0.2673910)% | + |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | + | "Nb created anti-particles" | 100 | 2927 | 29.270 | 17.496 | 0.0000 | 69.000 | + | "Nb created particles" | 100 | 2973 | 29.730 | 17.943 | 0.0000 | 70.000 | FunctionalParticleMaker#4 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6189 | 5902 |( 95.36274 +- 0.2673067)% | - |*"# passed Track filter" | 7167 | 6189 |( 86.35412 +- 0.4054839)% | - | "Nb created anti-particles" | 100 | 2927 | 29.270 | 17.489 | 0.0000 | 69.000 | - | "Nb created particles" | 100 | 2975 | 29.750 | 17.945 | 0.0000 | 70.000 | + |*"# passed ProtoParticle filter" | 6187 | 5900 |( 95.36124 +- 0.2673910)% | + |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | + | "Nb created anti-particles" | 100 | 2927 | 29.270 | 17.496 | 0.0000 | 69.000 | + | "Nb created particles" | 100 | 2973 | 29.730 | 17.943 | 0.0000 | 70.000 | FunctionalParticleMaker#5 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6189 | 5902 |( 95.36274 +- 0.2673067)% | - |*"# passed Track filter" | 7167 | 6189 |( 86.35412 +- 0.4054839)% | - | "Nb created anti-particles" | 100 | 2927 | 29.270 | 17.489 | 0.0000 | 69.000 | - | "Nb created particles" | 100 | 2975 | 29.750 | 17.945 | 0.0000 | 70.000 | + |*"# passed ProtoParticle filter" | 6187 | 5900 |( 95.36124 +- 0.2673910)% | + |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | + | "Nb created anti-particles" | 100 | 2927 | 29.270 | 17.496 | 0.0000 | 69.000 | + | "Nb created particles" | 100 | 2973 | 29.730 | 17.943 | 0.0000 | 70.000 | FunctionalParticleMaker#6 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6189 | 6189 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 7167 | 6189 |( 86.35412 +- 0.4054839)% | - | "Nb created anti-particles" | 100 | 3064 | 30.640 | 18.427 | 0.0000 | 79.000 | - | "Nb created particles" | 100 | 3125 | 31.250 | 18.900 | 0.0000 | 74.000 | + |*"# passed ProtoParticle filter" | 6187 | 6187 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | + | "Nb created anti-particles" | 100 | 3064 | 30.640 | 18.435 | 0.0000 | 79.000 | + | "Nb created particles" | 100 | 3123 | 31.230 | 18.901 | 0.0000 | 74.000 | FunctionalParticleMaker#7 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6189 | 6189 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 7167 | 6189 |( 86.35412 +- 0.4054839)% | - | "Nb created anti-particles" | 100 | 3064 | 30.640 | 18.427 | 0.0000 | 79.000 | - | "Nb created particles" | 100 | 3125 | 31.250 | 18.900 | 0.0000 | 74.000 | + |*"# passed ProtoParticle filter" | 6187 | 6187 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | + | "Nb created anti-particles" | 100 | 3064 | 30.640 | 18.435 | 0.0000 | 79.000 | + | "Nb created particles" | 100 | 3123 | 31.230 | 18.901 | 0.0000 | 74.000 | FunctionalParticleMaker#8 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6189 | 6189 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 7167 | 6189 |( 86.35412 +- 0.4054839)% | - | "Nb created anti-particles" | 100 | 3064 | 30.640 | 18.427 | 0.0000 | 79.000 | - | "Nb created particles" | 100 | 3125 | 31.250 | 18.900 | 0.0000 | 74.000 | + |*"# passed ProtoParticle filter" | 6187 | 6187 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | + | "Nb created anti-particles" | 100 | 3064 | 30.640 | 18.435 | 0.0000 | 79.000 | + | "Nb created particles" | 100 | 3123 | 31.230 | 18.901 | 0.0000 | 74.000 | FutureCellularAutomatonAlg INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# clusterization passes" | 100 | 343 | 3.4300 | 0.79063 | 0.0000 | 6.0000 | @@ -202,206 +202,206 @@ FutureCellularAutomatonAlg INFO Number of counters : 4 | "Cluster size" | 15868 | 193378 | 12.187 | 3.5625 | 4.0000 | 37.000 | FutureClusChi22ID INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | - | "#total tracks" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | + | "#links in table" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | + | "#total tracks" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | FutureEcalChi22ID INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | - | "#total tracks" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | + | "#links in table" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | + | "#total tracks" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | FutureEcalPIDeAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Table Size" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | + | "Table Size" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | FutureEcalPIDmuAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Table Size" | 100 | 9114 | 91.140 | 63.397 | 0.0000 | 478.00 | + | "Table Size" | 100 | 9113 | 91.130 | 63.468 | 0.0000 | 479.00 | FutureEcalZSup INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"No bank found" | 100 | 0 |( 0.000000 +- 0.000000)% | FutureHcalPIDeAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Table Size" | 100 | 8576 | 85.760 | 60.017 | 0.0000 | 459.00 | + | "Table Size" | 100 | 8574 | 85.740 | 60.094 | 0.0000 | 460.00 | FutureHcalPIDmuAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Table Size" | 100 | 8576 | 85.760 | 60.017 | 0.0000 | 459.00 | + | "Table Size" | 100 | 8574 | 85.740 | 60.094 | 0.0000 | 460.00 | FutureHcalZSup INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"No bank found" | 100 | 0 |( 0.000000 +- 0.000000)% | FutureInBremFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 7167 | 71.670 | 41.672 | 0.0000 | 165.00 | - | "#total tracks" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | - | "#tracks in acceptance" | 100 | 5142 | 51.420 | 30.582 | 0.0000 | 117.00 | + | "#links in table" | 100 | 7164 | 71.640 | 41.677 | 0.0000 | 165.00 | + | "#total tracks" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | + | "#tracks in acceptance" | 100 | 5140 | 51.400 | 30.599 | 0.0000 | 117.00 | FutureNeutralProtoPAlg INFO Number of counters : 30 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "CaloClusterCode for Photon" | 10917 | 105958 | 9.7058 | 89.312 | -98.000 | 98.000 | + | "CaloClusterCode for Photon" | 10918 | 106053 | 9.7136 | 89.312 | -98.000 | 98.000 | | "CaloClusterCode for Pi0Merged" | 379 | -6379 | -16.831 | 88.814 | -98.000 | 98.000 | | "CaloClusterFrac for Photon" | 8991 | 9030.721 | 1.0044 | 0.057482 | 0.63017 | 1.6224 | | "CaloClusterFrac for Pi0Merged" | 357 | 356.1058 | 0.99750 | 0.011277 | 0.89264 | 1.0065 | - | "CaloNeutralE19 for Photon" | 10917 | 6374.676 | 0.58392 | 0.19132 | 0.15780 | 1.2922 | + | "CaloNeutralE19 for Photon" | 10918 | 6375.253 | 0.58392 | 0.19131 | 0.15780 | 1.2922 | | "CaloNeutralE19 for Pi0Merged" | 379 | 193.2627 | 0.50993 | 0.17217 | 0.21034 | 0.94609 | - | "CaloNeutralE49 for Photon" | 10917 | 9693.15 | 0.88790 | 0.10075 | 0.50939 | 1.3642 | + | "CaloNeutralE49 for Photon" | 10918 | 9694.101 | 0.88790 | 0.10075 | 0.50939 | 1.3642 | | "CaloNeutralE49 for Pi0Merged" | 379 | 326.1181 | 0.86047 | 0.094041 | 0.56314 | 0.99897 | - | "CaloNeutralEcal for Photon" | 10917 |4.423122e+07 | 4051.6 | 5946.9 | 172.18 | 1.1381e+05 | + | "CaloNeutralEcal for Photon" | 10918 |4.423887e+07 | 4051.9 | 5946.7 | 172.18 | 1.1381e+05 | | "CaloNeutralEcal for Pi0Merged" | 379 | 7576404 | 19991.0 | 17840.0 | 4792.4 | 1.1381e+05 | - | "CaloNeutralHcal2Ecal for Photon" | 10917 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | + | "CaloNeutralHcal2Ecal for Photon" | 10918 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | | "CaloNeutralHcal2Ecal for Pi0Merged" | 379 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | - | "CaloNeutralID for Photon" | 10917 |4.170934e+08 | 38206.0 | 3553.5 | 33152.0 | 44151.0 | + | "CaloNeutralID for Photon" | 10918 |4.171283e+08 | 38206.0 | 3553.5 | 33152.0 | 44151.0 | | "CaloNeutralID for Pi0Merged" | 379 |1.417681e+07 | 37406.0 | 3420.6 | 33294.0 | 43862.0 | - | "CaloTrMatch for Photon" | 953 | 18154.86 | 19.050 | 8.9416 | 10.007 | 75.811 | - | "CaloTrMatch for Pi0Merged" | 296 | 1104.152 | 3.7302 | 5.2147 | 0.011921 | 38.646 | - | "ClusterAsX for Photon" | 10914 | 18.97573 | 0.0017387 | 0.20294 | -0.67370 | 0.72299 | - | "ClusterAsY for Photon" | 10908 | 60.95187 | 0.0055878 | 0.20020 | -0.72460 | 0.71418 | - | "IsNotH for Photon" | 10917 | 4007.264 | 0.36707 | 0.34902 | -1.0000 | 0.99502 | + | "CaloTrMatch for Photon" | 953 | 18154.85 | 19.050 | 8.9416 | 10.007 | 75.811 | + | "CaloTrMatch for Pi0Merged" | 295 | 1096.958 | 3.7185 | 5.2229 | 0.011918 | 38.646 | + | "ClusterAsX for Photon" | 10915 | 19.38025 | 0.0017756 | 0.20296 | -0.67370 | 0.72299 | + | "ClusterAsY for Photon" | 10911 | 60.95616 | 0.0055867 | 0.20018 | -0.72460 | 0.71418 | + | "IsNotH for Photon" | 10918 | 4007.696 | 0.36707 | 0.34900 | -1.0000 | 0.99502 | | "IsNotH for Pi0Merged" | 379 | 103.4619 | 0.27299 | 0.31789 | 0.00025262 | 0.99454 | - | "IsPhoton for Photon" | 10917 | 10900.14 | 0.99846 | 0.035358 | 7.1631e-05 | 1.0000 | + | "IsPhoton for Photon" | 10918 | 10901.14 | 0.99846 | 0.035356 | 7.1631e-05 | 1.0000 | | "IsPhoton for Pi0Merged" | 379 | 272.9914 | 0.72029 | 0.40476 | 1.8805e-06 | 1.0000 | - | "IsPhotonXGB for Photon" | 10917 | 10904.43 | 0.99885 | 0.029175 | 9.0229e-05 | 1.0000 | + | "IsPhotonXGB for Photon" | 10918 | 10905.43 | 0.99885 | 0.029174 | 9.0229e-05 | 1.0000 | | "IsPhotonXGB for Pi0Merged" | 379 | 315.0852 | 0.83136 | 0.29830 | 5.6350e-05 | 1.0000 | - | "Neutral Protos" | 100 | 12054 | 120.54 | 64.214 | 0.0000 | 269.00 | + | "Neutral Protos" | 100 | 12055 | 120.55 | 64.206 | 0.0000 | 269.00 | | "Neutral Protos from MergedPi0s" | 100 | 379 | 3.7900 | 4.3550 | 0.0000 | 19.000 | - | "Neutral Protos from Photons" | 100 | 10917 | 109.17 | 53.985 | 0.0000 | 230.00 | + | "Neutral Protos from Photons" | 100 | 10918 | 109.18 | 53.978 | 0.0000 | 230.00 | | "Neutral Protos from SplitPhotons" | 100 | 758 | 7.5800 | 8.7100 | 0.0000 | 38.000 | - | "ShowerShape for Photon" | 10917 |5.377538e+07 | 4925.8 | 5058.3 | 253.69 | 69098.0 | + | "ShowerShape for Photon" | 10918 |5.378973e+07 | 4926.7 | 5058.9 | 253.69 | 69098.0 | | "ShowerShape for Pi0Merged" | 379 | 3349026 | 8836.5 | 7010.8 | 416.65 | 36918.0 | FutureNeutralProtoPAlg.CaloFutur... INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "no cluster" | 758 | 758 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | FutureTrack2EcalEAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 9114 | 91.140 | 63.397 | 0.0000 | 478.00 | - | "#total energy" | 9114 | 26539.93 | 2.9120 | 3.7709 | -0.093026 | 66.674 | - | "#total tracks" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | + | "#links in table" | 100 | 9113 | 91.130 | 63.468 | 0.0000 | 479.00 | + | "#total energy" | 9113 | 26527.29 | 2.9109 | 3.7697 | -0.093026 | 66.674 | + | "#total tracks" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | FutureTrack2HcalEAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 8576 | 85.760 | 60.017 | 0.0000 | 459.00 | - | "#total energy" | 8576 | 49618.71 | 5.7858 | 10.727 | 0.0000 | 202.25 | - | "#total tracks" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | + | "#links in table" | 100 | 8574 | 85.740 | 60.094 | 0.0000 | 460.00 | + | "#total energy" | 8574 | 49671 | 5.7932 | 10.734 | 0.0000 | 202.25 | + | "#total tracks" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | Hlt2PhotonFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 8595 | 40 |(0.4653869 +- 0.07341270)% | + |*"Cut selection efficiency" | 8596 | 40 |(0.4653327 +- 0.07340418)% | HltPackedDataWriter INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Size of serialized data" | 35 | 481708 | 13763.0 | 16510.0 | 1212.0 | 65376.0 | + | "Size of serialized data" | 33 | 250200 | 7581.8 | 10991.0 | 1212.0 | 41106.0 | InEcalFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | - | "#total tracks" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | - | "#tracks in acceptance" | 100 | 9114 | 91.140 | 63.397 | 0.0000 | 478.00 | + | "#links in table" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | + | "#total tracks" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | + | "#tracks in acceptance" | 100 | 9113 | 91.130 | 63.468 | 0.0000 | 479.00 | InHcalFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | - | "#total tracks" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | - | "#tracks in acceptance" | 100 | 8576 | 85.760 | 60.017 | 0.0000 | 459.00 | + | "#links in table" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | + | "#total tracks" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | + | "#tracks in acceptance" | 100 | 8574 | 85.740 | 60.094 | 0.0000 | 460.00 | LHCb__MDF__IOAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#banks in raw event" | 100 | 102500 | 1025.0 | 0.0000 | 1025.0 | 1025.0 | LHCb__Phys__ParticleMakers__Phot... INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Confidence Level" | 8595 | 3022.273 | 0.35163 | 0.33702 | 7.1976e-05 | 0.99404 | - | "Created photons" | 10917 | - | "Selected photons" | 100 | 8595 | 85.950 | 48.246 | 0.0000 | 195.00 | + | "Confidence Level" | 8596 | 3022.706 | 0.35164 | 0.33700 | 7.1976e-05 | 0.99404 | + | "Created photons" | 10918 | + | "Selected photons" | 100 | 8596 | 85.960 | 48.238 | 0.0000 | 195.00 | LHCb__Phys__ParticleMakers__Phot... INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Confidence Level" | 7152 | 3964.562 | 0.55433 | 0.27138 | 0.10004 | 0.99502 | - | "Created photons" | 10917 | - | "Selected photons" | 100 | 7152 | 71.520 | 29.573 | 0.0000 | 134.00 | + | "Confidence Level" | 7153 | 3964.995 | 0.55431 | 0.27137 | 0.10004 | 0.99502 | + | "Created photons" | 10918 | + | "Selected photons" | 100 | 7153 | 71.530 | 29.567 | 0.0000 | 134.00 | LongKaonsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 5902 | 680 |( 11.52152 +- 0.4155986)% | + |*"Cut selection efficiency" | 5900 | 670 |( 11.35593 +- 0.4130572)% | LongPionsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 5902 | 653 |( 11.06405 +- 0.4083157)% | + |*"Cut selection efficiency" | 5900 | 639 |( 10.83051 +- 0.4045820)% | LongPionsFilter#1 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 5902 | 467 |( 7.912572 +- 0.3513657)% | + |*"Cut selection efficiency" | 5900 | 473 |( 8.016949 +- 0.3535350)% | LongPionsFilter#2 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 5902 | 501 |( 8.488648 +- 0.3627915)% | + |*"Cut selection efficiency" | 5900 | 505 |( 8.559322 +- 0.3642197)% | LongPionsFilter#3 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 5902 | 881 |( 14.92714 +- 0.4638572)% | + |*"Cut selection efficiency" | 5900 | 872 |( 14.77966 +- 0.4620382)% | LongProtonsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 5902 | 392 |( 6.641816 +- 0.3241306)% | + |*"Cut selection efficiency" | 5900 | 386 |( 6.542373 +- 0.3219208)% | MassConstrJpsi2MuMuMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 37 |( 37.00000 +- 4.828043)% | - |*"# passed CombinationCut" | 34372 | 128 |(0.3723961 +- 0.03285413)% | - |*"# passed CompositeCut" | 128 | 123 |( 96.09375 +- 1.712469)% | - |*"# passed vertex fit" | 128 | 128 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6189 | 61.890 | - | "Input2 size" | 100 | 805 | 8.0500 | + |*"# passed" | 100 | 38 |( 38.00000 +- 4.853864)% | + |*"# passed CombinationCut" | 35102 | 129 |(0.3675004 +- 0.03229710)% | + |*"# passed CompositeCut" | 129 | 125 |( 96.89922 +- 1.526161)% | + |*"# passed vertex fit" | 129 | 129 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 6187 | 61.870 | + | "Input2 size" | 100 | 825 | 8.2500 | MassConstrJpsi2eeMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 54 |( 54.00000 +- 4.983974)% | - |*"# passed CombinationCut" | 70211 | 232 |(0.3304326 +- 0.02165809)% | - |*"# passed CompositeCut" | 232 | 226 |( 97.41379 +- 1.042072)% | - |*"# passed vertex fit" | 232 | 232 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6189 | 61.890 | - | "Input2 size" | 100 | 1590 | 15.900 | + |*"# passed" | 100 | 55 |( 55.00000 +- 4.974937)% | + |*"# passed CombinationCut" | 70296 | 237 |(0.3371458 +- 0.02186302)% | + |*"# passed CompositeCut" | 237 | 229 |( 96.62447 +- 1.173114)% | + |*"# passed vertex fit" | 237 | 237 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 6187 | 61.870 | + | "Input2 size" | 100 | 1588 | 15.880 | ParticleWithBremMaker INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of particles corrected with brem" | 6189 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | + | "Nb of particles corrected with brem" | 6187 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | ParticleWithBremMaker.Functional... INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Delta(E)" | 716 | 7166759 | 10009.0 | 11777.0 | 423.00 | 87274.0 | - | "Nb photons added to single electrons" | 6189 | 751 | 0.12134 | 0.34341 | 0.0000 | 2.0000 | + | "Delta(E)" | 711 | 7131602 | 10030.0 | 11808.0 | 423.00 | 87274.0 | + | "Nb photons added to single electrons" | 6187 | 746 | 0.12058 | 0.34257 | 0.0000 | 2.0000 | Phi2KKMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 60 |( 60.00000 +- 4.898979)% | - |*"# passed CombinationCut" | 98593 | 4937 |( 5.007455 +- 0.06945927)% | - |*"# passed CompositeCut" | 4937 | 233 |( 4.719465 +- 0.3017984)% | - |*"# passed vertex fit" | 4937 | 4937 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6189 | 61.890 | - | "Input2 size" | 100 | 2307 | 23.070 | + |*"# passed CombinationCut" | 97891 | 4845 |( 4.949382 +- 0.06932368)% | + |*"# passed CompositeCut" | 4845 | 237 |( 4.891641 +- 0.3098773)% | + |*"# passed vertex fit" | 4845 | 4845 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 6187 | 61.870 | + | "Input2 size" | 100 | 2287 | 22.870 | PrCloneKillerDown INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "nTracksSelected" | 100 | 1456 | 14.560 | + | "nTracksSelected" | 100 | 1454 | 14.540 | PrForwardTrackingVelo INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Accepted input tracks" | 99 | 7404 | 74.788 | - | "Created long tracks" | 99 | 463 | 4.6768 | - | "Input tracks" | 99 | 7833 | 79.121 | + | "Created long tracks" | 99 | 466 | 4.7071 | + | "Input tracks" | 99 | 7851 | 79.303 | PrForwardTrackingVelo.PrAddUTHit... INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#UT hits added" | 343 | 1330 | 3.8776 | - | "#tracks with hits added" | 343 | + | "#UT hits added" | 345 | 1337 | 3.8754 | + | "#tracks with hits added" | 345 | PrKalmanFilterForward INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Pre outlier chi2 cut" | 50 | + | "Pre outlier chi2 cut" | 52 | | "chi2 cut" | 120 | - | "nIterations" | 463 | 1227 | 2.6501 | - | "nOutlierIterations" | 413 | 406 | 0.98305 | - | "nTracksInput" | 100 | 463 | 4.6300 | - | "nTracksOutput" | 100 | 293 | 2.9300 | + | "nIterations" | 466 | 1242 | 2.6652 | + | "nOutlierIterations" | 414 | 407 | 0.98309 | + | "nTracksInput" | 100 | 466 | 4.6600 | + | "nTracksOutput" | 100 | 294 | 2.9400 | PrKalmanFilterMatch INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Pre outlier chi2 cut" | 146 | - | "chi2 cut" | 612 | - | "nIterations" | 6666 | 14480 | 2.1722 | - | "nOutlierIterations" | 6520 | 4109 | 0.63021 | - | "nTracksInput" | 100 | 6666 | 66.660 | - | "nTracksOutput" | 100 | 5908 | 59.080 | + | "Pre outlier chi2 cut" | 149 | + | "chi2 cut" | 615 | + | "nIterations" | 6681 | 14513 | 2.1723 | + | "nOutlierIterations" | 6532 | 4127 | 0.63181 | + | "nTracksInput" | 100 | 6681 | 66.810 | + | "nTracksOutput" | 100 | 5917 | 59.170 | PrKalmanFilter_Downstream INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Pre outlier chi2 cut" | 187 | - | "chi2 cut" | 291 | - | "nIterations" | 1456 | 3765 | 2.5859 | - | "nOutlierIterations" | 1269 | 938 | 0.73916 | - | "nTracksInput" | 100 | 1456 | 14.560 | - | "nTracksOutput" | 100 | 978 | 9.7800 | + | "chi2 cut" | 290 | + | "nIterations" | 1454 | 3766 | 2.5901 | + | "nOutlierIterations" | 1267 | 939 | 0.74112 | + | "nTracksInput" | 100 | 1454 | 14.540 | + | "nTracksOutput" | 100 | 977 | 9.7700 | PrLongLivedTracking INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#Downstream tracks made" | 100 | 1515 | 15.150 | + | "#Downstream tracks made" | 100 | 1513 | 15.130 | PrMatchNN INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#MatchingChi2" | 19349 | 107520.6 | 5.5569 | - | "#MatchingTracks" | 99 | 6666 | 67.333 | - | "TracksMLP" | 19349 | 6563.198 | 0.33920 | + | "#MatchingChi2" | 19381 | 107686.7 | 5.5563 | + | "#MatchingTracks" | 99 | 6681 | 67.485 | + | "TracksMLP" | 19381 | 6573.57 | 0.33918 | PrMatchNN.PrAddUTHitsTool INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#UT hits added" | 5810 | 23199 | 3.9929 | - | "#tracks with hits added" | 5810 | + | "#UT hits added" | 5823 | 23249 | 3.9926 | + | "#tracks with hits added" | 5823 | PrStorePrUTHits INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#banks" | 100 | 18000 | 180.00 | @@ -410,95 +410,95 @@ PrStoreUTHit INFO Number of counters : 1 | "#banks" | 100 | 18000 | 180.00 | PromptHyperonHHCombiner INFO Number of counters : 8 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 2 |( 2.000000 +- 1.400000)% | - |*"# passed Combination12Cut" | 199 | 74 |( 37.18593 +- 3.426031)% | - |*"# passed CombinationCut" | 368 | 54 |( 14.67391 +- 1.844548)% | - |*"# passed CompositeCut" | 54 | 2 |( 3.703704 +- 2.569958)% | - |*"# passed vertex fit" | 54 | 54 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 44 | 0.44000 | - | "Input2 size" | 100 | 653 | 6.5300 | - | "Input3 size" | 100 | 653 | 6.5300 | + |*"# passed" | 100 | 1 |( 1.000000 +- 0.9949874)% | + |*"# passed Combination12Cut" | 185 | 68 |( 36.75676 +- 3.544784)% | + |*"# passed CombinationCut" | 308 | 45 |( 14.61039 +- 2.012603)% | + |*"# passed CompositeCut" | 45 | 1 |( 2.222222 +- 2.197392)% | + |*"# passed vertex fit" | 45 | 45 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 43 | 0.43000 | + | "Input2 size" | 100 | 639 | 6.3900 | + | "Input3 size" | 100 | 639 | 6.3900 | PromptHyperonHHHCombiner INFO Number of counters : 10 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 1 |( 1.000000 +- 0.9949874)% | - |*"# passed Combination123Cut" | 2304 | 1032 |( 44.79167 +- 1.036000)% | - |*"# passed Combination12Cut" | 578 | 246 |( 42.56055 +- 2.056576)% | - |*"# passed CombinationCut" | 4898 | 300 |( 6.124949 +- 0.3426233)% | - |*"# passed CompositeCut" | 300 | 5 |( 1.666667 +- 0.7391186)% | - |*"# passed vertex fit" | 300 | 300 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 76 | 0.76000 | - | "Input2 size" | 100 | 680 | 6.8000 | - | "Input3 size" | 100 | 881 | 8.8100 | - | "Input4 size" | 100 | 881 | 8.8100 | + |*"# passed Combination123Cut" | 2134 | 1020 |( 47.79756 +- 1.081312)% | + |*"# passed Combination12Cut" | 561 | 253 |( 45.09804 +- 2.100832)% | + |*"# passed CombinationCut" | 4274 | 253 |( 5.919513 +- 0.3609737)% | + |*"# passed CompositeCut" | 253 | 5 |( 1.976285 +- 0.8750443)% | + |*"# passed vertex fit" | 253 | 253 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 71 | 0.71000 | + | "Input2 size" | 100 | 670 | 6.7000 | + | "Input3 size" | 100 | 872 | 8.7200 | + | "Input4 size" | 100 | 872 | 8.7200 | SelectiveBremMatchAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 2250 | 22.500 | 20.376 | 0.0000 | 77.000 | - | "average chi2" | 2250 | 1611.169 | 0.71608 | 1.3740 | 1.8631e-07 | 27.343 | - | "average energy (track based)" | 5142 | 100605.6 | 19.565 | 56.186 | 0.0000 | 1127.5 | + | "#links in table" | 100 | 2251 | 22.510 | 20.449 | 0.0000 | 77.000 | + | "average chi2" | 2251 | 1617.261 | 0.71846 | 1.3755 | 1.8358e-07 | 27.343 | + | "average energy (track based)" | 5140 | 100622.8 | 19.576 | 56.391 | 0.0000 | 1173.6 | SelectiveElectronMatchAlg INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 7557 | 75.570 | 53.022 | 0.0000 | 371.00 | - | "average chi2" | 7557 | 28610.42 | 3.7859 | 10.342 | 3.6684e-06 | 242.64 | + | "#links in table" | 100 | 7557 | 75.570 | 53.094 | 0.0000 | 372.00 | + | "average chi2" | 7557 | 28611.21 | 3.7861 | 10.341 | 3.6590e-06 | 242.64 | SelectiveTrackMatchAlg INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 7568 | 75.680 | 53.034 | 0.0000 | 371.00 | - | "average chi2" | 7568 | 625.8487 | 0.082697 | 0.13332 | 7.8550e-07 | 1.8176 | + | "#links in table" | 100 | 7568 | 75.680 | 53.107 | 0.0000 | 372.00 | + | "average chi2" | 7568 | 625.7106 | 0.082678 | 0.13337 | 7.8163e-07 | 1.8176 | TBTCMatch INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 5896 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 5896 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 5896 | + |*"BadInput" | 5893 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 5893 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 5893 | TBTC_Forward INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 293 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 293 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 293 | + |*"BadInput" | 294 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 294 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 294 | TBTC_down INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 978 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 978 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 978 | + |*"BadInput" | 977 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 977 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 977 | ToolSvc.PPFactoryHybridFactory INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | ToolSvc.TrackFunctorFactory INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | TrackBeamLineVertexFinderSoA INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb PVs" | 100 | 473 | 4.7300 | + | "Nb PVs" | 100 | 472 | 4.7200 | VPClus INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb of Produced Clusters" | 100 | 179234 | 1792.3 | VeloClusterTrackingSIMD INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb of Produced Clusters" | 100 | 179234 | 1792.3 | - | "Nb of Produced Tracks" | 100 | 23012 | 230.12 | + | "Nb of Produced Tracks" | 100 | 23069 | 230.69 | ddLambda0Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 29 |( 29.00000 +- 4.537621)% | - |*"# passed CombinationCut" | 1504 | 341 |( 22.67287 +- 1.079681)% | - |*"# passed CompositeCut" | 341 | 44 |( 12.90323 +- 1.815403)% | - |*"# passed vertex fit" | 341 | 341 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 450 | 4.5000 | - | "Input2 size" | 100 | 463 | 4.6300 | + |*"# passed CombinationCut" | 1503 | 342 |( 22.75449 +- 1.081411)% | + |*"# passed CompositeCut" | 342 | 43 |( 12.57310 +- 1.792795)% | + |*"# passed vertex fit" | 342 | 342 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 451 | 4.5100 | + | "Input2 size" | 100 | 461 | 4.6100 | fromPrSeedingTracksV1Tracks INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb of converted Tracks" | 100 | 10300 | 103.00 | fromPrVeloTracksV1TracksMerger INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of converted Tracks" | 100 | 23012 | 230.12 | + | "Nb of converted Tracks" | 100 | 23069 | 230.69 | llLambda0Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 50 |( 50.00000 +- 5.000000)% | - |*"# passed CombinationCut" | 1447 | 335 |( 23.15135 +- 1.108848)% | - |*"# passed CompositeCut" | 335 | 140 |( 41.79104 +- 2.694723)% | - |*"# passed vertex fit" | 335 | 335 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 392 | 3.9200 | - | "Input2 size" | 100 | 467 | 4.6700 | + |*"# passed" | 100 | 48 |( 48.00000 +- 4.995998)% | + |*"# passed CombinationCut" | 1421 | 336 |( 23.64532 +- 1.127180)% | + |*"# passed CompositeCut" | 336 | 137 |( 40.77381 +- 2.680883)% | + |*"# passed vertex fit" | 336 | 336 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 386 | 3.8600 | + | "Input2 size" | 100 | 473 | 4.7300 | xiCombiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 19 |( 19.00000 +- 3.923009)% | - |*"# passed CombinationCut" | 690 | 91 |( 13.18841 +- 1.288132)% | - |*"# passed CompositeCut" | 91 | 76 |( 83.51648 +- 3.889469)% | - |*"# passed vertex fit" | 91 | 91 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 140 | 1.4000 | - | "Input2 size" | 100 | 501 | 5.0100 | + |*"# passed" | 100 | 20 |( 20.00000 +- 4.000000)% | + |*"# passed CombinationCut" | 666 | 87 |( 13.06306 +- 1.305833)% | + |*"# passed CompositeCut" | 87 | 71 |( 81.60920 +- 4.153462)% | + |*"# passed vertex fit" | 87 | 87 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 137 | 1.3700 | + | "Input2 size" | 100 | 505 | 5.0500 | diff --git a/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections_fastest.ref.x86_64_v3-opt b/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections_fastest.ref.x86_64_v3-opt index 75ecb644e78..e318e5f2dda 100644 --- a/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections_fastest.ref.x86_64_v3-opt +++ b/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections_fastest.ref.x86_64_v3-opt @@ -16,24 +16,24 @@ ApplicationMgr INFO Application Manager Finalized succes ApplicationMgr INFO Application Manager Terminated successfully BremChi22IDFuture INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 6188 | 61.880 | 36.636 | 0.0000 | 148.00 | + | "#links in table" | 100 | 6187 | 61.870 | 36.643 | 0.0000 | 148.00 | | "#total tracks" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | BremPIDeAlgFuture INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Table Size" | 100 | 6188 | 61.880 | 36.636 | 0.0000 | 148.00 | + | "Table Size" | 100 | 6187 | 61.870 | 36.643 | 0.0000 | 148.00 | Bs2JPsiPhi_JPsi2MuMu_Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 10 |( 10.00000 +- 3.000000)% | + |*"# passed" | 100 | 3 |( 3.000000 +- 1.705872)% | |*"# passed CombinationCut" | 665 | 138 |( 20.75188 +- 1.572579)% | - |*"# passed CompositeCut" | 138 | 48 |( 34.78261 +- 4.054369)% | + |*"# passed CompositeCut" | 138 | 14 |( 10.14493 +- 2.570137)% | |*"# passed vertex fit" | 138 | 138 |( 100.0000 +- 0.000000)% | | "Input1 size" | 100 | 125 | 1.2500 | | "Input2 size" | 100 | 237 | 2.3700 | Bs2JPsiPhi_JPsi2ee_Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 14 |( 14.00000 +- 3.469870)% | + |*"# passed" | 100 | 8 |( 8.000000 +- 2.712932)% | |*"# passed CombinationCut" | 1250 | 258 |( 20.64000 +- 1.144724)% | - |*"# passed CompositeCut" | 258 | 107 |( 41.47287 +- 3.067262)% | + |*"# passed CompositeCut" | 258 | 37 |( 14.34109 +- 2.182064)% | |*"# passed vertex fit" | 258 | 258 |( 100.0000 +- 0.000000)% | | "Input1 size" | 100 | 229 | 2.2900 | | "Input2 size" | 100 | 237 | 2.3700 | @@ -87,13 +87,13 @@ CaloFutureShowerOverlap INFO Number of counters : 5 | "negative E clusters (removed)" | 100 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | ClassifyPhotonElectronAlg INFO Number of counters : 12 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Electron Delta(E)" | 5879 | 1155449 | 196.54 | 193.29 | -2313.6 | 2485.9 | + | "Electron Delta(E)" | 5879 | 1155453 | 196.54 | 193.30 | -2313.6 | 2485.9 | | "Electron Delta(X)" | 5879 | -2404.116 | -0.40893 | 12.096 | -22.782 | 22.326 | | "Electron Delta(Y)" | 5879 | -2610.63 | -0.44406 | 12.034 | -22.782 | 22.326 | | "Electron Delta(Z)" | 5879 | 400313.1 | 68.092 | 12.439 | 23.990 | 126.86 | - | "Electron corrected energy" | 5879 |4.041049e+07 | 6873.7 | 7119.8 | 397.47 | 91547.0 | + | "Electron corrected energy" | 5879 |4.041049e+07 | 6873.7 | 7119.8 | 397.46 | 91547.0 | | "Photon Delta(E)" | 10918 | 798539.6 | 73.140 | 145.88 | -2545.4 | 3183.9 | - | "Photon Delta(X)" | 10918 | -2082.636 | -0.19075 | 12.180 | -22.782 | 22.327 | + | "Photon Delta(X)" | 10918 | -2082.637 | -0.19075 | 12.180 | -22.782 | 22.327 | | "Photon Delta(Y)" | 10918 | -932.3072 | -0.085392 | 12.190 | -22.782 | 22.326 | | "Photon Delta(Z)" | 10918 | 644035.9 | 58.988 | 11.889 | 24.107 | 113.40 | | "Photon corrected energy" | 10918 |4.503741e+07 | 4125.1 | 5949.3 | 253.12 | 1.1665e+05 | @@ -109,7 +109,7 @@ ClassifyPhotonElectronAlg.CaloFu... INFO Number of counters : 6 | "Pileup subtracted ratio" | 16797 | 16797 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | CloneKillerMatch INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "nTracksSelected" | 100 | 6682 | 66.820 | + | "nTracksSelected" | 100 | 6681 | 66.810 | CopyParticlesWithPVRelations.Gen... INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "IP->(DI)GAMMA" | 249 | @@ -130,69 +130,69 @@ DeterministicPrescaler#4 INFO Number of counters : 1 |*"#accept" | 100 | 100 |( 100.0000 +- 0.000000)% | DownstreamPionsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 873 | 461 |( 52.80641 +- 1.689576)% | + |*"Cut selection efficiency" | 874 | 461 |( 52.74600 +- 1.688723)% | DownstreamProtonsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 873 | 451 |( 51.66094 +- 1.691310)% | + |*"Cut selection efficiency" | 874 | 451 |( 51.60183 +- 1.690407)% | FilteredPIDElectrons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6188 | 1589 |( 25.67873 +- 0.5553518)% | + |*"Cut selection efficiency" | 6187 | 1588 |( 25.66672 +- 0.5553116)% | FilteredPIDMuons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6188 | 825 |( 13.33226 +- 0.4321210)% | + |*"Cut selection efficiency" | 6187 | 825 |( 13.33441 +- 0.4321855)% | FilteredPIDkaons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6188 | 2287 |( 36.95863 +- 0.6136145)% | + |*"Cut selection efficiency" | 6187 | 2287 |( 36.96460 +- 0.6136846)% | FunctionalChargedProtoParticleMaker INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "CreatedProtos" | 7163 | + | "CreatedProtos" | 7164 | FunctionalParticleMaker#1 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 975 | 873 |( 89.53846 +- 0.9801675)% | - |*"# passed Track filter" | 7163 | 975 |( 13.61162 +- 0.4051679)% | - | "Nb created anti-particles" | 100 | 437 | 4.3700 | 3.1102 | 0.0000 | 16.000 | + |*"# passed ProtoParticle filter" | 977 | 874 |( 89.45752 +- 0.9824998)% | + |*"# passed Track filter" | 7164 | 977 |( 13.63763 +- 0.4054656)% | + | "Nb created anti-particles" | 100 | 438 | 4.3800 | 3.1170 | 0.0000 | 16.000 | | "Nb created particles" | 100 | 436 | 4.3600 | 3.4103 | 0.0000 | 14.000 | FunctionalParticleMaker#2 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 975 | 873 |( 89.53846 +- 0.9801675)% | - |*"# passed Track filter" | 7163 | 975 |( 13.61162 +- 0.4051679)% | - | "Nb created anti-particles" | 100 | 437 | 4.3700 | 3.1102 | 0.0000 | 16.000 | + |*"# passed ProtoParticle filter" | 977 | 874 |( 89.45752 +- 0.9824998)% | + |*"# passed Track filter" | 7164 | 977 |( 13.63763 +- 0.4054656)% | + | "Nb created anti-particles" | 100 | 438 | 4.3800 | 3.1170 | 0.0000 | 16.000 | | "Nb created particles" | 100 | 436 | 4.3600 | 3.4103 | 0.0000 | 14.000 | FunctionalParticleMaker#3 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6188 | 5900 |( 95.34583 +- 0.2677915)% | - |*"# passed Track filter" | 7163 | 6188 |( 86.38838 +- 0.4051679)% | + |*"# passed ProtoParticle filter" | 6187 | 5900 |( 95.36124 +- 0.2673910)% | + |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | | "Nb created anti-particles" | 100 | 2927 | 29.270 | 17.496 | 0.0000 | 69.000 | | "Nb created particles" | 100 | 2973 | 29.730 | 17.943 | 0.0000 | 70.000 | FunctionalParticleMaker#4 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6188 | 5900 |( 95.34583 +- 0.2677915)% | - |*"# passed Track filter" | 7163 | 6188 |( 86.38838 +- 0.4051679)% | + |*"# passed ProtoParticle filter" | 6187 | 5900 |( 95.36124 +- 0.2673910)% | + |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | | "Nb created anti-particles" | 100 | 2927 | 29.270 | 17.496 | 0.0000 | 69.000 | | "Nb created particles" | 100 | 2973 | 29.730 | 17.943 | 0.0000 | 70.000 | FunctionalParticleMaker#5 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6188 | 5900 |( 95.34583 +- 0.2677915)% | - |*"# passed Track filter" | 7163 | 6188 |( 86.38838 +- 0.4051679)% | + |*"# passed ProtoParticle filter" | 6187 | 5900 |( 95.36124 +- 0.2673910)% | + |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | | "Nb created anti-particles" | 100 | 2927 | 29.270 | 17.496 | 0.0000 | 69.000 | | "Nb created particles" | 100 | 2973 | 29.730 | 17.943 | 0.0000 | 70.000 | FunctionalParticleMaker#6 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6188 | 6188 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 7163 | 6188 |( 86.38838 +- 0.4051679)% | - | "Nb created anti-particles" | 100 | 3065 | 30.650 | 18.429 | 0.0000 | 79.000 | + |*"# passed ProtoParticle filter" | 6187 | 6187 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | + | "Nb created anti-particles" | 100 | 3064 | 30.640 | 18.435 | 0.0000 | 79.000 | | "Nb created particles" | 100 | 3123 | 31.230 | 18.901 | 0.0000 | 74.000 | FunctionalParticleMaker#7 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6188 | 6188 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 7163 | 6188 |( 86.38838 +- 0.4051679)% | - | "Nb created anti-particles" | 100 | 3065 | 30.650 | 18.429 | 0.0000 | 79.000 | + |*"# passed ProtoParticle filter" | 6187 | 6187 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | + | "Nb created anti-particles" | 100 | 3064 | 30.640 | 18.435 | 0.0000 | 79.000 | | "Nb created particles" | 100 | 3123 | 31.230 | 18.901 | 0.0000 | 74.000 | FunctionalParticleMaker#8 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6188 | 6188 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 7163 | 6188 |( 86.38838 +- 0.4051679)% | - | "Nb created anti-particles" | 100 | 3065 | 30.650 | 18.429 | 0.0000 | 79.000 | + |*"# passed ProtoParticle filter" | 6187 | 6187 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | + | "Nb created anti-particles" | 100 | 3064 | 30.640 | 18.435 | 0.0000 | 79.000 | | "Nb created particles" | 100 | 3123 | 31.230 | 18.901 | 0.0000 | 74.000 | FutureCellularAutomatonAlg INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | @@ -228,7 +228,7 @@ FutureHcalZSup INFO Number of counters : 1 |*"No bank found" | 100 | 0 |( 0.000000 +- 0.000000)% | FutureInBremFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 7163 | 71.630 | 41.682 | 0.0000 | 165.00 | + | "#links in table" | 100 | 7164 | 71.640 | 41.677 | 0.0000 | 165.00 | | "#total tracks" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | | "#tracks in acceptance" | 100 | 5140 | 51.400 | 30.599 | 0.0000 | 117.00 | FutureNeutralProtoPAlg INFO Number of counters : 30 @@ -248,7 +248,7 @@ FutureNeutralProtoPAlg INFO Number of counters : 30 | "CaloNeutralID for Photon" | 10918 |4.171283e+08 | 38206.0 | 3553.5 | 33152.0 | 44151.0 | | "CaloNeutralID for Pi0Merged" | 379 |1.417681e+07 | 37406.0 | 3420.6 | 33294.0 | 43862.0 | | "CaloTrMatch for Photon" | 953 | 18154.85 | 19.050 | 8.9416 | 10.007 | 75.811 | - | "CaloTrMatch for Pi0Merged" | 295 | 1096.957 | 3.7185 | 5.2229 | 0.011918 | 38.646 | + | "CaloTrMatch for Pi0Merged" | 295 | 1096.958 | 3.7185 | 5.2229 | 0.011918 | 38.646 | | "ClusterAsX for Photon" | 10915 | 19.38025 | 0.0017756 | 0.20296 | -0.67370 | 0.72299 | | "ClusterAsY for Photon" | 10911 | 60.95616 | 0.0055867 | 0.20018 | -0.72460 | 0.71418 | | "IsNotH for Photon" | 10918 | 4007.696 | 0.36707 | 0.34900 | -1.0000 | 0.99502 | @@ -269,7 +269,7 @@ FutureNeutralProtoPAlg.CaloFutur... INFO Number of counters : 1 FutureTrack2EcalEAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 9113 | 91.130 | 63.468 | 0.0000 | 479.00 | - | "#total energy" | 9113 | 26537.17 | 2.9120 | 3.7708 | -0.093026 | 66.674 | + | "#total energy" | 9113 | 26527.29 | 2.9109 | 3.7697 | -0.093026 | 66.674 | | "#total tracks" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | FutureTrack2HcalEAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | @@ -281,7 +281,7 @@ Hlt2PhotonFilter INFO Number of counters : 1 |*"Cut selection efficiency" | 8596 | 40 |(0.4653327 +- 0.07340418)% | HltPackedDataWriter INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Size of serialized data" | 35 | 498238 | 14235.0 | 17816.0 | 1212.0 | 65376.0 | + | "Size of serialized data" | 33 | 250200 | 7581.8 | 10991.0 | 1212.0 | 41106.0 | InEcalFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | @@ -326,37 +326,37 @@ LongProtonsFilter INFO Number of counters : 1 MassConstrJpsi2MuMuMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 38 |( 38.00000 +- 4.853864)% | - |*"# passed CombinationCut" | 35104 | 129 |(0.3674795 +- 0.03229526)% | + |*"# passed CombinationCut" | 35102 | 129 |(0.3675004 +- 0.03229710)% | |*"# passed CompositeCut" | 129 | 125 |( 96.89922 +- 1.526161)% | |*"# passed vertex fit" | 129 | 129 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6188 | 61.880 | + | "Input1 size" | 100 | 6187 | 61.870 | | "Input2 size" | 100 | 825 | 8.2500 | MassConstrJpsi2eeMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 55 |( 55.00000 +- 4.974937)% | - |*"# passed CombinationCut" | 70316 | 237 |(0.3370499 +- 0.02185682)% | + |*"# passed CombinationCut" | 70296 | 237 |(0.3371458 +- 0.02186302)% | |*"# passed CompositeCut" | 237 | 229 |( 96.62447 +- 1.173114)% | |*"# passed vertex fit" | 237 | 237 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6188 | 61.880 | - | "Input2 size" | 100 | 1589 | 15.890 | + | "Input1 size" | 100 | 6187 | 61.870 | + | "Input2 size" | 100 | 1588 | 15.880 | ParticleWithBremMaker INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of particles corrected with brem" | 6188 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | + | "Nb of particles corrected with brem" | 6187 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | ParticleWithBremMaker.Functional... INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Delta(E)" | 711 | 7131602 | 10030.0 | 11808.0 | 423.00 | 87274.0 | - | "Nb photons added to single electrons" | 6188 | 746 | 0.12056 | 0.34254 | 0.0000 | 2.0000 | + | "Nb photons added to single electrons" | 6187 | 746 | 0.12058 | 0.34257 | 0.0000 | 2.0000 | Phi2KKMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 60 |( 60.00000 +- 4.898979)% | - |*"# passed CombinationCut" | 97899 | 4846 |( 4.949999 +- 0.06932494)% | - |*"# passed CompositeCut" | 4846 | 237 |( 4.890631 +- 0.3098150)% | - |*"# passed vertex fit" | 4846 | 4846 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6188 | 61.880 | + |*"# passed CombinationCut" | 97891 | 4845 |( 4.949382 +- 0.06932368)% | + |*"# passed CompositeCut" | 4845 | 237 |( 4.891641 +- 0.3098773)% | + |*"# passed vertex fit" | 4845 | 4845 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 6187 | 61.870 | | "Input2 size" | 100 | 2287 | 22.870 | PrCloneKillerDown INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "nTracksSelected" | 100 | 1452 | 14.520 | + | "nTracksSelected" | 100 | 1454 | 14.540 | PrForwardTrackingVelo INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Accepted input tracks" | 99 | 7404 | 74.788 | @@ -370,7 +370,7 @@ PrKalmanFilterForward INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Pre outlier chi2 cut" | 52 | | "chi2 cut" | 120 | - | "nIterations" | 466 | 1245 | 2.6717 | + | "nIterations" | 466 | 1242 | 2.6652 | | "nOutlierIterations" | 414 | 407 | 0.98309 | | "nTracksInput" | 100 | 466 | 4.6600 | | "nTracksOutput" | 100 | 294 | 2.9400 | @@ -378,30 +378,30 @@ PrKalmanFilterMatch INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Pre outlier chi2 cut" | 149 | | "chi2 cut" | 615 | - | "nIterations" | 6682 | 14516 | 2.1724 | - | "nOutlierIterations" | 6533 | 4127 | 0.63172 | - | "nTracksInput" | 100 | 6682 | 66.820 | - | "nTracksOutput" | 100 | 5918 | 59.180 | + | "nIterations" | 6681 | 14513 | 2.1723 | + | "nOutlierIterations" | 6532 | 4127 | 0.63181 | + | "nTracksInput" | 100 | 6681 | 66.810 | + | "nTracksOutput" | 100 | 5917 | 59.170 | PrKalmanFilter_Downstream INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Pre outlier chi2 cut" | 187 | | "chi2 cut" | 290 | - | "nIterations" | 1452 | 3763 | 2.5916 | - | "nOutlierIterations" | 1265 | 939 | 0.74229 | - | "nTracksInput" | 100 | 1452 | 14.520 | - | "nTracksOutput" | 100 | 975 | 9.7500 | + | "nIterations" | 1454 | 3766 | 2.5901 | + | "nOutlierIterations" | 1267 | 939 | 0.74112 | + | "nTracksInput" | 100 | 1454 | 14.540 | + | "nTracksOutput" | 100 | 977 | 9.7700 | PrLongLivedTracking INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#Downstream tracks made" | 100 | 1511 | 15.110 | + | "#Downstream tracks made" | 100 | 1513 | 15.130 | PrMatchNN INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#MatchingChi2" | 19382 | 107701.7 | 5.5568 | - | "#MatchingTracks" | 99 | 6682 | 67.495 | - | "TracksMLP" | 19382 | 6573.627 | 0.33916 | + | "#MatchingChi2" | 19381 | 107686.7 | 5.5563 | + | "#MatchingTracks" | 99 | 6681 | 67.485 | + | "TracksMLP" | 19381 | 6573.57 | 0.33918 | PrMatchNN.PrAddUTHitsTool INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#UT hits added" | 5824 | 23253 | 3.9926 | - | "#tracks with hits added" | 5824 | + | "#UT hits added" | 5823 | 23249 | 3.9926 | + | "#tracks with hits added" | 5823 | PrStorePrUTHits INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#banks" | 100 | 18000 | 180.00 | @@ -438,16 +438,16 @@ SelectiveBremMatchAlg INFO Number of counters : 3 SelectiveElectronMatchAlg INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 7557 | 75.570 | 53.094 | 0.0000 | 372.00 | - | "average chi2" | 7557 | 28610.24 | 3.7859 | 10.341 | 3.6590e-06 | 242.64 | + | "average chi2" | 7557 | 28611.21 | 3.7861 | 10.341 | 3.6590e-06 | 242.64 | SelectiveTrackMatchAlg INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 7568 | 75.680 | 53.107 | 0.0000 | 372.00 | - | "average chi2" | 7568 | 625.624 | 0.082667 | 0.13337 | 7.8163e-07 | 1.8176 | + | "average chi2" | 7568 | 625.7106 | 0.082678 | 0.13337 | 7.8163e-07 | 1.8176 | TBTCMatch INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 5894 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 5894 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 5894 | + |*"BadInput" | 5893 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 5893 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 5893 | TBTC_Forward INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"BadInput" | 294 | 0 |( 0.000000 +- 0.000000)% | @@ -455,9 +455,9 @@ TBTC_Forward INFO Number of counters : 3 | "FittedBefore" | 294 | TBTC_down INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 975 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 975 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 975 | + |*"BadInput" | 977 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 977 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 977 | ToolSvc.PPFactoryHybridFactory INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | ToolSvc.TrackFunctorFactory INFO Number of counters : 1 -- GitLab From c8f169af742f229530e466e49fe9b95b8b92c256 Mon Sep 17 00:00:00 2001 From: Alexander Leon Gilman Date: Wed, 10 Nov 2021 11:36:11 +0100 Subject: [PATCH 09/22] Loosen lifetime cut in generic Bs builder/ update reference files for tests --- .../lines/generic_lines_thor/builders/bs_builders.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py index 1f6b1d02618..7831ee40807 100644 --- a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py +++ b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py @@ -14,6 +14,8 @@ from Functors.math import in_range from GaudiKernel.SystemOfUnits import GeV, MeV, ps from Hlt2Conf.algorithms_thor import ParticleFilter, ParticleCombiner, require_all from Hlt2Conf.standard_particles import make_long_kaons, make_long_muons, make_long_electrons_with_brem +from RecoConf.reconstruction_objects import make_pvs_v2 as make_pvs + def make_mass_constrained_jpsi2mumu(name='MassConstrJpsi2MuMuMaker', @@ -97,9 +99,11 @@ def make_bs2jpsiphi(name="Bs2JPsiPhiCombiner", bpvltime_min=0.02 * ps): phi = make_phi() jpsi = jpsi_maker() + pvs = make_pvs() combination_code = require_all(in_range(am_min, F.MASS, am_max)) vertex_code = require_all( - in_range(am_min_vtx, F.MASS, am_max_vtx), F.CHI2DOF < vtx_chi2pdof) + in_range(am_min_vtx, F.MASS, am_max_vtx), F.CHI2DOF < vtx_chi2pdof + f.BPVLTIME(pvs)> bpvltime_min) return ParticleCombiner( name=name, Inputs=[jpsi, phi], -- GitLab From a27d5c93007a14876838cee6009321987b288eb3 Mon Sep 17 00:00:00 2001 From: Alexander Leon Gilman Date: Wed, 10 Nov 2021 11:37:54 +0100 Subject: [PATCH 10/22] linting --- .../Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py index 7831ee40807..397f80a1501 100644 --- a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py +++ b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py @@ -102,8 +102,7 @@ def make_bs2jpsiphi(name="Bs2JPsiPhiCombiner", pvs = make_pvs() combination_code = require_all(in_range(am_min, F.MASS, am_max)) vertex_code = require_all( - in_range(am_min_vtx, F.MASS, am_max_vtx), F.CHI2DOF < vtx_chi2pdof - f.BPVLTIME(pvs)> bpvltime_min) + in_range(am_min_vtx, F.MASS, am_max_vtx), F.CHI2DOF < vtx_chi2pdof, F.BPVLTIME(pvs) > bpvltime_min) return ParticleCombiner( name=name, Inputs=[jpsi, phi], -- GitLab From edc1ad8d35ebfe38e33ce3cb506bcf27d35aaf19 Mon Sep 17 00:00:00 2001 From: Gitlab CI Date: Wed, 10 Nov 2021 10:38:38 +0000 Subject: [PATCH 11/22] Fixed formatting patch generated by https://gitlab.cern.ch/lhcb/Moore/-/jobs/17494450 --- .../Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py index 397f80a1501..61ae53a91c2 100644 --- a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py +++ b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py @@ -17,7 +17,6 @@ from Hlt2Conf.standard_particles import make_long_kaons, make_long_muons, make_l from RecoConf.reconstruction_objects import make_pvs_v2 as make_pvs - def make_mass_constrained_jpsi2mumu(name='MassConstrJpsi2MuMuMaker', pid_mu=0, pt_mu=0.5 * GeV, @@ -102,7 +101,8 @@ def make_bs2jpsiphi(name="Bs2JPsiPhiCombiner", pvs = make_pvs() combination_code = require_all(in_range(am_min, F.MASS, am_max)) vertex_code = require_all( - in_range(am_min_vtx, F.MASS, am_max_vtx), F.CHI2DOF < vtx_chi2pdof, F.BPVLTIME(pvs) > bpvltime_min) + in_range(am_min_vtx, F.MASS, am_max_vtx), F.CHI2DOF < vtx_chi2pdof, + F.BPVLTIME(pvs) > bpvltime_min) return ParticleCombiner( name=name, Inputs=[jpsi, phi], -- GitLab From 544a3a2956e27233cf0e55ec612cab988f7741ac Mon Sep 17 00:00:00 2001 From: Alexander Leon Gilman Date: Fri, 12 Nov 2021 13:17:51 +0100 Subject: [PATCH 12/22] Reasonable Lifetime cut --- .../Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py index 61ae53a91c2..77f86a32d3a 100644 --- a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py +++ b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py @@ -95,7 +95,7 @@ def make_bs2jpsiphi(name="Bs2JPsiPhiCombiner", am_min_vtx=5100 * MeV, am_max_vtx=5600 * MeV, vtx_chi2pdof=20, - bpvltime_min=0.02 * ps): + bpvltime_min=2 * ps): phi = make_phi() jpsi = jpsi_maker() pvs = make_pvs() -- GitLab From e3939d3d1c1ddc7fba00864f7f3e689588d827fc Mon Sep 17 00:00:00 2001 From: Alexander Leon Gilman Date: Fri, 12 Nov 2021 13:22:44 +0100 Subject: [PATCH 13/22] Updated refs --- .../refs/hlt2_reco_plus_thor_selections.ref | 450 ++++++++--------- ...hlt2_reco_plus_thor_selections_fastest.ref | 454 +++++++++--------- 2 files changed, 452 insertions(+), 452 deletions(-) diff --git a/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections.ref b/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections.ref index 9053191f519..3ff746b9bc2 100644 --- a/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections.ref +++ b/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections.ref @@ -4,13 +4,13 @@ TransportSvc SUCCESS GEOMETRY ERRORS: 'Recover' map has TransportSvc SUCCESS GEOMETRY ERRORS: 'Codes' map has the size 0 TransportSvc INFO Reset the static pointer to DetDesc::IGeometyrErrorSvc ToolSvc INFO Removing all tools created by ToolSvc -Phi2KKMaker.LoKi::DistanceCalcul... SUCCESS #WARNINGS = 47 Message = 'There is no convergency-III' +Phi2KKMaker.LoKi::DistanceCalcul... SUCCESS #WARNINGS = 51 Message = 'There is no convergency-III' Phi2KKMaker.LoKi::DistanceCalcul... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 -PromptHyperonHHHCombiner.LoKi::D... SUCCESS #WARNINGS = 34 Message = 'There is no convergency-III' +PromptHyperonHHHCombiner.LoKi::D... SUCCESS #WARNINGS = 25 Message = 'There is no convergency-III' PromptHyperonHHHCombiner.LoKi::D... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 TrackBestTrackCreator.TrackMaste... SUCCESS #WARNINGS = 2 Message = 'Error in compute residual: non positive variance.' TrackBestTrackCreator.TrackMaste... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 -ddLambda0Combiner.LoKi::Distance... SUCCESS #WARNINGS = 6 Message = 'There is no convergency-III' +ddLambda0Combiner.LoKi::Distance... SUCCESS #WARNINGS = 8 Message = 'There is no convergency-III' ddLambda0Combiner.LoKi::Distance... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 llLambda0Combiner.LoKi::Distance... SUCCESS #WARNINGS = 2 Message = 'There is no convergency-III' llLambda0Combiner.LoKi::Distance... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 @@ -20,34 +20,34 @@ ApplicationMgr INFO Application Manager Finalized succes ApplicationMgr INFO Application Manager Terminated successfully BremChi22IDFuture INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 14570 | 145.70 | 87.735 | 0.0000 | 410.00 | - | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | + | "#links in table" | 100 | 14568 | 145.68 | 87.819 | 0.0000 | 412.00 | + | "#total tracks" | 100 | 28039 | 280.39 | 170.15 | 0.0000 | 1035.0 | BremMatchAlgFuture INFO Number of counters : 5 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#above threshold" | 100 | 881983 | 8819.8 | 8540.9 | 0.0000 | 36843.0 | - | "#chi2" | 359460 |1.683558e+09 | 4683.6 | 2882.6 | 0.0011016 | 9999.9 | - | "#good tracks" | 100 | 9515 | 95.150 | 58.550 | 0.0000 | 251.00 | - | "#links in table" | 100 | 359460 | 3594.6 | 3063.0 | 0.0000 | 12049.0 | + | "#above threshold" | 100 | 882056 | 8820.6 | 8539.3 | 0.0000 | 36928.0 | + | "#chi2" | 359869 |1.685473e+09 | 4683.6 | 2882.4 | 0.0011018 | 9999.9 | + | "#good tracks" | 100 | 9517 | 95.170 | 58.558 | 0.0000 | 252.00 | + | "#links in table" | 100 | 359869 | 3598.7 | 3066.6 | 0.0000 | 12106.0 | | "#total calos" | 100 | 10298 | 102.98 | 48.402 | 0.0000 | 210.00 | BremPIDeAlgFuture INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Table Size" | 100 | 14570 | 145.70 | 87.735 | 0.0000 | 410.00 | + | "Table Size" | 100 | 14568 | 145.68 | 87.819 | 0.0000 | 412.00 | Bs2JPsiPhi_JPsi2MuMu_Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 5 |( 5.000000 +- 2.179449)% | - |*"# passed CombinationCut" | 750 | 152 |( 20.26667 +- 1.467846)% | - |*"# passed CompositeCut" | 152 | 12 |( 7.894737 +- 2.187204)% | - |*"# passed vertex fit" | 152 | 152 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 137 | 1.3700 | - | "Input2 size" | 100 | 270 | 2.7000 | + |*"# passed" | 100 | 0 |( 0.000000 +- 0.000000)% | + |*"# passed CombinationCut" | 786 | 154 |( 19.59288 +- 1.415745)% | + |*"# passed CompositeCut" | 154 | 0 |( 0.000000 +- 0.000000)% | + |*"# passed vertex fit" | 154 | 154 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 139 | 1.3900 | + | "Input2 size" | 100 | 277 | 2.7700 | Bs2JPsiPhi_JPsi2ee_Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 9 |( 9.000000 +- 2.861818)% | - |*"# passed CombinationCut" | 1399 | 293 |( 20.94353 +- 1.087890)% | - |*"# passed CompositeCut" | 293 | 36 |( 12.28669 +- 1.917858)% | - |*"# passed vertex fit" | 293 | 293 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 219 | 2.1900 | - | "Input2 size" | 100 | 270 | 2.7000 | + |*"# passed" | 100 | 0 |( 0.000000 +- 0.000000)% | + |*"# passed CombinationCut" | 1452 | 308 |( 21.21212 +- 1.072849)% | + |*"# passed CompositeCut" | 308 | 0 |( 0.000000 +- 0.000000)% | + |*"# passed vertex fit" | 308 | 308 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 221 | 2.2100 | + | "Input2 size" | 100 | 277 | 2.7700 | CaloFutureClusterCovarianceAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# clusters" | 15868 | @@ -58,7 +58,7 @@ CaloFutureClusterCovarianceAlg.E... INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Corrected Clusters: # cells " | 1174 | 5999 | 5.1099 | 1.7745 | 2.0000 | 14.000 | | "Corrected Clusters: ET" | 1174 | 317801.2 | 270.70 | 284.59 | 35.600 | 4632.2 | - | "Corrected Clusters: size ratio" | 1174 | 444.1727 | 0.37834 | 0.29125 | -3.6723e-16 | 2.8281 | + | "Corrected Clusters: size ratio" | 1174 | 444.1726 | 0.37834 | 0.29125 | -9.1809e-17 | 2.8281 | CaloFutureMergedPi0 INFO Number of counters : 12 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"Cluster without 2nd seed found" | 379 | 0 |( 0.000000 +- 0.000000)% | @@ -67,9 +67,9 @@ CaloFutureMergedPi0 INFO Number of counters : 12 |*"Fails to set spread" | 100 | 0 |( 0.000000 +- 0.000000)% | |*"Fails to tag(E) cluster (1)" | 379 | 0 |( 0.000000 +- 0.000000)% | |*"Fails to tag(E) cluster (2)" | 379 | 0 |( 0.000000 +- 0.000000)% | - | "Photon Delta(E)" | 758 | -44373.71 | -58.541 | 363.70 | -2602.7 | 3251.7 | - | "Photon Delta(X)" | 758 | -648.1165 | -0.85503 | 13.562 | -46.608 | 22.319 | - | "Photon Delta(Y)" | 758 | -123.2589 | -0.16261 | 13.410 | -28.241 | 22.325 | + | "Photon Delta(E)" | 758 | -44374.11 | -58.541 | 363.70 | -2602.7 | 3251.7 | + | "Photon Delta(X)" | 758 | -648.125 | -0.85505 | 13.562 | -46.608 | 22.319 | + | "Photon Delta(Y)" | 758 | -123.3137 | -0.16268 | 13.410 | -28.241 | 22.325 | | "Photon Delta(Z)" | 758 | 58628.89 | 77.347 | 11.362 | 7.5021 | 112.81 | | "clusters => mergedPi0s" | 100 | 379 | 3.7900 | | "clusters => splitClusters" | 100 | 758 | 7.5800 | @@ -77,7 +77,7 @@ CaloFutureMergedPi0.CaloFutureEC... INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | " Inner" | 178 | 177.1093 | 0.99500 | 0.022641 | 0.96563 | 1.0765 | | " Middle" | 120 | 120.4961 | 1.0041 | 0.026115 | 0.97704 | 1.1148 | - | " Outer" | 460 | 458.9485 | 0.99771 | 0.017831 | 0.97404 | 1.0990 | + | " Outer" | 460 | 458.9484 | 0.99771 | 0.017830 | 0.97404 | 1.0990 | | "Pileup offset" | 758 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | | "Pileup scale" | 100 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | | "Pileup subtracted ratio" | 758 | 758 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | @@ -88,7 +88,7 @@ CaloFutureMergedPi0.EcalSpread INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Corrected Clusters: # cells " | 94 | 594 | 6.3191 | 1.7577 | 4.0000 | 9.0000 | | "Corrected Clusters: ET" | 94 | 103801.8 | 1104.3 | 1178.3 | 34.600 | 9841.2 | - | "Corrected Clusters: size ratio" | 94 | 32.53922 | 0.34616 | 0.27227 | 0.066570 | 1.8140 | + | "Corrected Clusters: size ratio" | 94 | 32.5392 | 0.34616 | 0.27227 | 0.066570 | 1.8140 | CaloFutureShowerOverlap INFO Number of counters : 5 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Delta(E)" | 19041 | -595002.2 | -31.248 | 906.20 | -16337.0 | 12389.0 | @@ -98,29 +98,29 @@ CaloFutureShowerOverlap INFO Number of counters : 5 | "negative E clusters (removed)" | 100 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | ClassifyPhotonElectronAlg INFO Number of counters : 12 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Electron Delta(E)" | 8589 | 1753095 | 204.11 | 206.67 | -2371.5 | 3317.9 | - | "Electron Delta(X)" | 8589 | -3385.905 | -0.39421 | 11.664 | -22.782 | 22.327 | - | "Electron Delta(Y)" | 8589 | -2657.266 | -0.30938 | 11.638 | -22.782 | 22.326 | - | "Electron Delta(Z)" | 8589 | 565485.1 | 65.838 | 12.656 | 24.066 | 126.86 | - | "Electron corrected energy" | 8589 |5.664116e+07 | 6594.6 | 7415.4 | 397.53 | 1.1680e+05 | + | "Electron Delta(E)" | 8590 | 1753160 | 204.09 | 206.66 | -2371.5 | 3317.9 | + | "Electron Delta(X)" | 8590 | -3379.965 | -0.39348 | 11.663 | -22.782 | 22.327 | + | "Electron Delta(Y)" | 8590 | -2663.935 | -0.31012 | 11.638 | -22.782 | 22.326 | + | "Electron Delta(Z)" | 8590 | 565542.8 | 65.837 | 12.656 | 24.066 | 126.86 | + | "Electron corrected energy" | 8590 |5.664199e+07 | 6593.9 | 7415.2 | 397.53 | 1.1680e+05 | | "Photon Delta(E)" | 10298 | 739264.2 | 71.787 | 140.88 | -2545.4 | 3183.9 | | "Photon Delta(X)" | 10298 | -1214.282 | -0.11791 | 12.248 | -22.782 | 22.327 | - | "Photon Delta(Y)" | 10298 | -831.3886 | -0.080733 | 12.270 | -22.782 | 22.326 | + | "Photon Delta(Y)" | 10298 | -831.3897 | -0.080733 | 12.270 | -22.782 | 22.326 | | "Photon Delta(Z)" | 10298 | 601955.6 | 58.454 | 11.748 | 24.107 | 113.40 | | "Photon corrected energy" | 10298 |4.030144e+07 | 3913.5 | 5746.2 | 253.12 | 1.0415e+05 | - | "electronHypos" | 100 | 8589 | 85.890 | 54.779 | 0.0000 | 289.00 | + | "electronHypos" | 100 | 8590 | 85.900 | 54.785 | 0.0000 | 289.00 | | "photonHypos" | 100 | 10298 | 102.98 | 48.402 | 0.0000 | 210.00 | ClassifyPhotonElectronAlg.CaloFu... INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | " Inner" | 5716 | 5684.807 | 0.99454 | 0.019141 | 0.96447 | 1.1151 | | " Middle" | 5081 | 5109.044 | 1.0055 | 0.018705 | 0.97671 | 1.1114 | - | " Outer" | 8090 | 8074.685 | 0.99811 | 0.015083 | 0.97356 | 1.0515 | - | "Pileup offset" | 18887 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | + | " Outer" | 8091 | 8075.699 | 0.99811 | 0.015084 | 0.97356 | 1.0515 | + | "Pileup offset" | 18888 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | | "Pileup scale" | 200 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | - | "Pileup subtracted ratio" | 18887 | 18887 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Pileup subtracted ratio" | 18888 | 18888 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | CopyParticlesWithPVRelations.Gen... INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "IP->(DI)GAMMA" | 234 | + | "IP->(DI)GAMMA" | 235 | DeterministicPrescaler INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"#accept" | 100 | 100 |( 100.0000 +- 0.000000)% | @@ -138,70 +138,70 @@ DeterministicPrescaler#4 INFO Number of counters : 1 |*"#accept" | 100 | 100 |( 100.0000 +- 0.000000)% | DownstreamPionsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 1188 | 598 |( 50.33670 +- 1.450614)% | + |*"Cut selection efficiency" | 1188 | 608 |( 51.17845 +- 1.450244)% | DownstreamProtonsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 1188 | 587 |( 49.41077 +- 1.450546)% | + |*"Cut selection efficiency" | 1188 | 581 |( 48.90572 +- 1.450300)% | FilteredPIDElectrons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6493 | 1436 |( 22.11613 +- 0.5150574)% | + |*"Cut selection efficiency" | 6491 | 1444 |( 22.24619 +- 0.5162176)% | FilteredPIDMuons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6493 | 839 |( 12.92161 +- 0.4162850)% | + |*"Cut selection efficiency" | 6491 | 847 |( 13.04884 +- 0.4180881)% | FilteredPIDkaons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6493 | 2409 |( 37.10149 +- 0.5995055)% | + |*"Cut selection efficiency" | 6491 | 2412 |( 37.15914 +- 0.5997884)% | FunctionalChargedProtoParticleMaker INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "CreatedProtos" | 8667 | + | "CreatedProtos" | 8664 | FunctionalParticleMaker#1 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed ProtoParticle filter" | 1367 | 1188 |( 86.90563 +- 0.9123930)% | - |*"# passed Track filter" | 8667 | 1367 |( 15.77247 +- 0.3915097)% | - | "Nb created anti-particles" | 100 | 594 | 5.9400 | 4.8204 | 0.0000 | 22.000 | - | "Nb created particles" | 100 | 594 | 5.9400 | 4.6772 | 0.0000 | 21.000 | + |*"# passed Track filter" | 8664 | 1367 |( 15.77793 +- 0.3916325)% | + | "Nb created anti-particles" | 100 | 593 | 5.9300 | 4.8213 | 0.0000 | 22.000 | + | "Nb created particles" | 100 | 595 | 5.9500 | 4.6827 | 0.0000 | 21.000 | FunctionalParticleMaker#2 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed ProtoParticle filter" | 1367 | 1188 |( 86.90563 +- 0.9123930)% | - |*"# passed Track filter" | 8667 | 1367 |( 15.77247 +- 0.3915097)% | - | "Nb created anti-particles" | 100 | 594 | 5.9400 | 4.8204 | 0.0000 | 22.000 | - | "Nb created particles" | 100 | 594 | 5.9400 | 4.6772 | 0.0000 | 21.000 | + |*"# passed Track filter" | 8664 | 1367 |( 15.77793 +- 0.3916325)% | + | "Nb created anti-particles" | 100 | 593 | 5.9300 | 4.8213 | 0.0000 | 22.000 | + | "Nb created particles" | 100 | 595 | 5.9500 | 4.6827 | 0.0000 | 21.000 | FunctionalParticleMaker#3 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6493 | 6182 |( 95.21023 +- 0.2650187)% | - |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | - | "Nb created anti-particles" | 100 | 3083 | 30.830 | 19.299 | 0.0000 | 89.000 | - | "Nb created particles" | 100 | 3099 | 30.990 | 19.358 | 0.0000 | 84.000 | + |*"# passed ProtoParticle filter" | 6491 | 6182 |( 95.23956 +- 0.2642873)% | + |*"# passed Track filter" | 8664 | 6491 |( 74.91921 +- 0.4657019)% | + | "Nb created anti-particles" | 100 | 3084 | 30.840 | 19.325 | 0.0000 | 90.000 | + | "Nb created particles" | 100 | 3098 | 30.980 | 19.359 | 0.0000 | 84.000 | FunctionalParticleMaker#4 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6493 | 6182 |( 95.21023 +- 0.2650187)% | - |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | - | "Nb created anti-particles" | 100 | 3083 | 30.830 | 19.299 | 0.0000 | 89.000 | - | "Nb created particles" | 100 | 3099 | 30.990 | 19.358 | 0.0000 | 84.000 | + |*"# passed ProtoParticle filter" | 6491 | 6182 |( 95.23956 +- 0.2642873)% | + |*"# passed Track filter" | 8664 | 6491 |( 74.91921 +- 0.4657019)% | + | "Nb created anti-particles" | 100 | 3084 | 30.840 | 19.325 | 0.0000 | 90.000 | + | "Nb created particles" | 100 | 3098 | 30.980 | 19.359 | 0.0000 | 84.000 | FunctionalParticleMaker#5 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6493 | 6182 |( 95.21023 +- 0.2650187)% | - |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | - | "Nb created anti-particles" | 100 | 3083 | 30.830 | 19.299 | 0.0000 | 89.000 | - | "Nb created particles" | 100 | 3099 | 30.990 | 19.358 | 0.0000 | 84.000 | + |*"# passed ProtoParticle filter" | 6491 | 6182 |( 95.23956 +- 0.2642873)% | + |*"# passed Track filter" | 8664 | 6491 |( 74.91921 +- 0.4657019)% | + | "Nb created anti-particles" | 100 | 3084 | 30.840 | 19.325 | 0.0000 | 90.000 | + | "Nb created particles" | 100 | 3098 | 30.980 | 19.359 | 0.0000 | 84.000 | FunctionalParticleMaker#6 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6493 | 6493 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | - | "Nb created anti-particles" | 100 | 3236 | 32.360 | 20.402 | 0.0000 | 93.000 | - | "Nb created particles" | 100 | 3257 | 32.570 | 20.373 | 0.0000 | 87.000 | + |*"# passed ProtoParticle filter" | 6491 | 6491 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 8664 | 6491 |( 74.91921 +- 0.4657019)% | + | "Nb created anti-particles" | 100 | 3236 | 32.360 | 20.423 | 0.0000 | 94.000 | + | "Nb created particles" | 100 | 3255 | 32.550 | 20.363 | 0.0000 | 87.000 | FunctionalParticleMaker#7 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6493 | 6493 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | - | "Nb created anti-particles" | 100 | 3236 | 32.360 | 20.402 | 0.0000 | 93.000 | - | "Nb created particles" | 100 | 3257 | 32.570 | 20.373 | 0.0000 | 87.000 | + |*"# passed ProtoParticle filter" | 6491 | 6491 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 8664 | 6491 |( 74.91921 +- 0.4657019)% | + | "Nb created anti-particles" | 100 | 3236 | 32.360 | 20.423 | 0.0000 | 94.000 | + | "Nb created particles" | 100 | 3255 | 32.550 | 20.363 | 0.0000 | 87.000 | FunctionalParticleMaker#8 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6493 | 6493 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | - | "Nb created anti-particles" | 100 | 3236 | 32.360 | 20.402 | 0.0000 | 93.000 | - | "Nb created particles" | 100 | 3257 | 32.570 | 20.373 | 0.0000 | 87.000 | + |*"# passed ProtoParticle filter" | 6491 | 6491 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 8664 | 6491 |( 74.91921 +- 0.4657019)% | + | "Nb created anti-particles" | 100 | 3236 | 32.360 | 20.423 | 0.0000 | 94.000 | + | "Nb created particles" | 100 | 3255 | 32.550 | 20.363 | 0.0000 | 87.000 | FutureCellularAutomatonAlg INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# clusterization passes" | 100 | 343 | 3.4300 | 0.79063 | 0.0000 | 6.0000 | @@ -210,42 +210,42 @@ FutureCellularAutomatonAlg INFO Number of counters : 4 | "Cluster size" | 15868 | 193378 | 12.187 | 3.5625 | 4.0000 | 37.000 | FutureClusChi22ID INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 11236 | 112.36 | 78.674 | 0.0000 | 577.00 | - | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | + | "#links in table" | 100 | 11236 | 112.36 | 78.671 | 0.0000 | 577.00 | + | "#total tracks" | 100 | 28039 | 280.39 | 170.15 | 0.0000 | 1035.0 | FutureEcalChi22ID INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 11236 | 112.36 | 78.674 | 0.0000 | 577.00 | - | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | + | "#links in table" | 100 | 11236 | 112.36 | 78.671 | 0.0000 | 577.00 | + | "#total tracks" | 100 | 28039 | 280.39 | 170.15 | 0.0000 | 1035.0 | FutureEcalPIDeAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Table Size" | 100 | 11236 | 112.36 | 78.674 | 0.0000 | 577.00 | + | "Table Size" | 100 | 11236 | 112.36 | 78.671 | 0.0000 | 577.00 | FutureEcalPIDmuAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Table Size" | 100 | 9390 | 93.900 | 67.117 | 0.0000 | 508.00 | + | "Table Size" | 100 | 9392 | 93.920 | 67.108 | 0.0000 | 508.00 | FutureEcalZSup INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"No bank found" | 100 | 0 |( 0.000000 +- 0.000000)% | FutureElectronMatchAlg INFO Number of counters : 5 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#above threshold" | 100 | 1033460 | 10335.0 | 15491.0 | 0.0000 | 1.2964e+05 | - | "#chi2" | 122255 |5.397869e+08 | 4415.3 | 2938.4 | 0.024819 | 9999.9 | - | "#good tracks" | 100 | 9390 | 93.900 | 67.117 | 0.0000 | 508.00 | - | "#links in table" | 100 | 122255 | 1222.5 | 1914.5 | 0.0000 | 17173.0 | - | "#total calos" | 100 | 8589 | 85.890 | 54.779 | 0.0000 | 289.00 | + | "#above threshold" | 100 | 1033643 | 10336.0 | 15489.0 | 0.0000 | 1.2965e+05 | + | "#chi2" | 122307 |5.401053e+08 | 4416.0 | 2938.6 | 0.024819 | 9999.9 | + | "#good tracks" | 100 | 9392 | 93.920 | 67.108 | 0.0000 | 508.00 | + | "#links in table" | 100 | 122307 | 1223.1 | 1913.6 | 0.0000 | 17162.0 | + | "#total calos" | 100 | 8590 | 85.900 | 54.785 | 0.0000 | 289.00 | FutureHcalPIDeAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Table Size" | 100 | 8823 | 88.230 | 63.651 | 0.0000 | 490.00 | + | "Table Size" | 100 | 8826 | 88.260 | 63.640 | 0.0000 | 490.00 | FutureHcalPIDmuAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Table Size" | 100 | 8823 | 88.230 | 63.651 | 0.0000 | 490.00 | + | "Table Size" | 100 | 8826 | 88.260 | 63.640 | 0.0000 | 490.00 | FutureHcalZSup INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"No bank found" | 100 | 0 |( 0.000000 +- 0.000000)% | FutureInBremFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 15937 | 159.37 | 96.598 | 0.0000 | 442.00 | - | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | - | "#tracks in acceptance" | 100 | 10493 | 104.93 | 65.073 | 0.0000 | 273.00 | + | "#links in table" | 100 | 15935 | 159.35 | 96.696 | 0.0000 | 444.00 | + | "#total tracks" | 100 | 28039 | 280.39 | 170.15 | 0.0000 | 1035.0 | + | "#tracks in acceptance" | 100 | 10496 | 104.96 | 65.092 | 0.0000 | 274.00 | FutureNeutralProtoPAlg INFO Number of counters : 30 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "CaloClusterCode for Photon" | 10298 | 113826 | 11.053 | 89.089 | -98.000 | 98.000 | @@ -262,10 +262,10 @@ FutureNeutralProtoPAlg INFO Number of counters : 30 | "CaloNeutralHcal2Ecal for Pi0Merged" | 379 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | | "CaloNeutralID for Photon" | 10298 |3.928134e+08 | 38145.0 | 3554.9 | 33152.0 | 44151.0 | | "CaloNeutralID for Pi0Merged" | 379 |1.417681e+07 | 37406.0 | 3420.6 | 33294.0 | 43862.0 | - | "CaloTrMatch for Photon" | 9794 | 1406768 | 143.64 | 192.58 | 4.0040 | 999.38 | - | "CaloTrMatch for Pi0Merged" | 376 | 8833.667 | 23.494 | 88.821 | 0.00024249 | 940.45 | + | "CaloTrMatch for Photon" | 9794 | 1406741 | 143.63 | 192.58 | 4.0040 | 999.38 | + | "CaloTrMatch for Pi0Merged" | 376 | 8833.642 | 23.494 | 88.821 | 0.00024249 | 940.45 | | "ClusterAsX for Photon" | 10295 | 27.04689 | 0.0026272 | 0.20124 | -0.67370 | 0.71369 | - | "ClusterAsY for Photon" | 10291 | 58.6078 | 0.0056951 | 0.19823 | -0.72460 | 0.71418 | + | "ClusterAsY for Photon" | 10288 | 58.6078 | 0.0056967 | 0.19826 | -0.72460 | 0.71418 | | "IsNotH for Photon" | 10298 | 3963.82 | 0.38491 | 0.35057 | -1.0000 | 0.99502 | | "IsNotH for Pi0Merged" | 379 | 103.4619 | 0.27299 | 0.31789 | 0.00025262 | 0.99454 | | "IsPhoton for Photon" | 10298 | 10281.48 | 0.99840 | 0.035443 | 7.1631e-05 | 1.0000 | @@ -283,37 +283,37 @@ FutureNeutralProtoPAlg.CaloFutur... INFO Number of counters : 1 | "no cluster" | 758 | 758 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | FuturePhotonMatchAlg INFO Number of counters : 5 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#above threshold" | 100 | 1501812 | 15018.0 | 17356.0 | 0.0000 | 1.3396e+05 | - | "#chi2" | 462634 |2.131802e+08 | 460.80 | 291.00 | 0.00024249 | 1000.0 | - | "#good tracks" | 100 | 9390 | 93.900 | 67.117 | 0.0000 | 508.00 | - | "#links in table" | 100 | 462634 | 4626.3 | 6383.8 | 0.0000 | 51964.0 | + | "#above threshold" | 100 | 1501963 | 15020.0 | 17347.0 | 0.0000 | 1.3390e+05 | + | "#chi2" | 462709 |2.132052e+08 | 460.78 | 290.99 | 0.00024249 | 1000.0 | + | "#good tracks" | 100 | 9392 | 93.920 | 67.108 | 0.0000 | 508.00 | + | "#links in table" | 100 | 462709 | 4627.1 | 6387.2 | 0.0000 | 52026.0 | | "#total calos" | 100 | 15868 | 158.68 | 79.052 | 0.0000 | 366.00 | FutureTrack2EcalEAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 9390 | 93.900 | 67.117 | 0.0000 | 508.00 | - | "#total energy" | 9390 | 27391.21 | 2.9171 | 3.7713 | -0.093026 | 66.674 | - | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | + | "#links in table" | 100 | 9392 | 93.920 | 67.108 | 0.0000 | 508.00 | + | "#total energy" | 9392 | 27412.54 | 2.9187 | 3.7729 | -0.093026 | 66.674 | + | "#total tracks" | 100 | 28039 | 280.39 | 170.15 | 0.0000 | 1035.0 | FutureTrack2HcalEAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 8823 | 88.230 | 63.651 | 0.0000 | 490.00 | - | "#total energy" | 8823 | 50485.09 | 5.7220 | 10.566 | 0.0000 | 202.25 | - | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | + | "#links in table" | 100 | 8826 | 88.260 | 63.640 | 0.0000 | 490.00 | + | "#total energy" | 8826 | 50440.03 | 5.7149 | 10.558 | 0.0000 | 202.25 | + | "#total tracks" | 100 | 28039 | 280.39 | 170.15 | 0.0000 | 1035.0 | Hlt2PhotonFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"Cut selection efficiency" | 7967 | 38 |(0.4769675 +- 0.07718960)% | HltPackedDataWriter INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Size of serialized data" | 32 | 410066 | 12815.0 | 15784.0 | 1220.0 | 53572.0 | + | "Size of serialized data" | 28 | 161750 | 5776.8 | 11076.0 | 1220.0 | 44270.0 | InEcalFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 11236 | 112.36 | 78.674 | 0.0000 | 577.00 | - | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | - | "#tracks in acceptance" | 100 | 9390 | 93.900 | 67.117 | 0.0000 | 508.00 | + | "#links in table" | 100 | 11236 | 112.36 | 78.671 | 0.0000 | 577.00 | + | "#total tracks" | 100 | 28039 | 280.39 | 170.15 | 0.0000 | 1035.0 | + | "#tracks in acceptance" | 100 | 9392 | 93.920 | 67.108 | 0.0000 | 508.00 | InHcalFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 11236 | 112.36 | 78.674 | 0.0000 | 577.00 | - | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | - | "#tracks in acceptance" | 100 | 8823 | 88.230 | 63.651 | 0.0000 | 490.00 | + | "#links in table" | 100 | 11236 | 112.36 | 78.671 | 0.0000 | 577.00 | + | "#total tracks" | 100 | 28039 | 280.39 | 170.15 | 0.0000 | 1035.0 | + | "#tracks in acceptance" | 100 | 8826 | 88.260 | 63.640 | 0.0000 | 490.00 | LHCb__MDF__IOAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#banks in raw event" | 100 | 102500 | 1025.0 | 0.0000 | 1025.0 | 1025.0 | @@ -329,74 +329,74 @@ LHCb__Phys__ParticleMakers__Phot... INFO Number of counters : 3 | "Selected photons" | 100 | 7022 | 70.220 | 28.408 | 0.0000 | 127.00 | LongKaonsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6182 | 761 |( 12.30993 +- 0.4178674)% | + |*"Cut selection efficiency" | 6182 | 773 |( 12.50404 +- 0.4206828)% | LongPionsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6182 | 734 |( 11.87318 +- 0.4114083)% | + |*"Cut selection efficiency" | 6182 | 733 |( 11.85700 +- 0.4111657)% | LongPionsFilter#1 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"Cut selection efficiency" | 6182 | 485 |( 7.845357 +- 0.3419798)% | LongPionsFilter#2 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6182 | 528 |( 8.540925 +- 0.3554687)% | + |*"Cut selection efficiency" | 6182 | 525 |( 8.492397 +- 0.3545514)% | LongPionsFilter#3 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6182 | 950 |( 15.36720 +- 0.4586719)% | + |*"Cut selection efficiency" | 6182 | 948 |( 15.33484 +- 0.4582764)% | LongProtonsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6182 | 450 |( 7.279198 +- 0.3304196)% | + |*"Cut selection efficiency" | 6182 | 458 |( 7.408606 +- 0.3331111)% | MassConstrJpsi2MuMuMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 41 |( 41.00000 +- 4.918333)% | - |*"# passed CombinationCut" | 38658 | 141 |(0.3647369 +- 0.03066032)% | - |*"# passed CompositeCut" | 141 | 137 |( 97.16312 +- 1.398175)% | - |*"# passed vertex fit" | 141 | 141 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6493 | 64.930 | - | "Input2 size" | 100 | 839 | 8.3900 | + |*"# passed" | 100 | 42 |( 42.00000 +- 4.935585)% | + |*"# passed CombinationCut" | 39203 | 143 |(0.3647680 +- 0.03044775)% | + |*"# passed CompositeCut" | 143 | 139 |( 97.20280 +- 1.378902)% | + |*"# passed vertex fit" | 143 | 143 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 6491 | 64.910 | + | "Input2 size" | 100 | 847 | 8.4700 | MassConstrJpsi2eeMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 58 |( 58.00000 +- 4.935585)% | - |*"# passed CombinationCut" | 66268 | 226 |(0.3410394 +- 0.02264689)% | - |*"# passed CompositeCut" | 226 | 219 |( 96.90265 +- 1.152414)% | - |*"# passed vertex fit" | 226 | 226 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6493 | 64.930 | - | "Input2 size" | 100 | 1436 | 14.360 | + |*"# passed" | 100 | 57 |( 57.00000 +- 4.950758)% | + |*"# passed CombinationCut" | 66814 | 228 |(0.3412458 +- 0.02256097)% | + |*"# passed CompositeCut" | 228 | 221 |( 96.92982 +- 1.142465)% | + |*"# passed vertex fit" | 228 | 228 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 6491 | 64.910 | + | "Input2 size" | 100 | 1444 | 14.440 | ParticleWithBremMaker INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of particles corrected with brem" | 6493 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | + | "Nb of particles corrected with brem" | 6491 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | ParticleWithBremMaker.Functional... INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Delta(E)" | 707 | 7179529 | 10155.0 | 12079.0 | 423.00 | 88750.0 | - | "Nb photons added to single electrons" | 6493 | 739 | 0.11381 | 0.33274 | 0.0000 | 2.0000 | + | "Delta(E)" | 710 | 7207696 | 10152.0 | 12058.0 | 423.00 | 88750.0 | + | "Nb photons added to single electrons" | 6491 | 742 | 0.11431 | 0.33332 | 0.0000 | 2.0000 | Phi2KKMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 62 |( 62.00000 +- 4.853864)% | - |*"# passed CombinationCut" | 111511 | 6260 |( 5.613796 +- 0.06893245)% | - |*"# passed CompositeCut" | 6260 | 270 |( 4.313099 +- 0.2567638)% | - |*"# passed vertex fit" | 6260 | 6260 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6493 | 64.930 | - | "Input2 size" | 100 | 2409 | 24.090 | + |*"# passed CombinationCut" | 111740 | 6257 |( 5.599606 +- 0.06877986)% | + |*"# passed CompositeCut" | 6257 | 277 |( 4.427042 +- 0.2600407)% | + |*"# passed vertex fit" | 6257 | 6257 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 6491 | 64.910 | + | "Input2 size" | 100 | 2412 | 24.120 | PrForwardTrackingVelo INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Accepted input tracks" | 99 | 13857 | 139.97 | - | "Created long tracks" | 99 | 6528 | 65.939 | - | "Input tracks" | 99 | 14312 | 144.57 | + | "Accepted input tracks" | 99 | 13846 | 139.86 | + | "Created long tracks" | 99 | 6519 | 65.848 | + | "Input tracks" | 99 | 14279 | 144.23 | PrForwardTrackingVelo.PrAddUTHit... INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#UT hits added" | 5734 | 22885 | 3.9911 | - | "#tracks with hits added" | 5734 | + | "#UT hits added" | 5725 | 22851 | 3.9914 | + | "#tracks with hits added" | 5725 | PrLongLivedTracking INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#Downstream tracks made" | 100 | 7173 | 71.730 | + | "#Downstream tracks made" | 100 | 7174 | 71.740 | PrMatchNN INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#MatchingChi2" | 19381 | 107686.7 | 5.5563 | - | "#MatchingTracks" | 99 | 6681 | 67.485 | - | "TracksMLP" | 19381 | 6573.57 | 0.33918 | + | "#MatchingChi2" | 19349 | 107520.5 | 5.5569 | + | "#MatchingTracks" | 99 | 6666 | 67.333 | + | "TracksMLP" | 19349 | 6563.198 | 0.33920 | PrMatchNN.PrAddUTHitsTool INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#UT hits added" | 5823 | 23249 | 3.9926 | - | "#tracks with hits added" | 5823 | + | "#UT hits added" | 5810 | 23199 | 3.9929 | + | "#tracks with hits added" | 5810 | PrStorePrUTHits INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#banks" | 100 | 18000 | 180.00 | @@ -405,131 +405,131 @@ PrStoreUTHit INFO Number of counters : 1 | "#banks" | 100 | 18000 | 180.00 | PrVeloUT INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#seeds" | 100 | 14312 | 143.12 | - | "#tracks" | 100 | 3793 | 37.930 | + | "#seeds" | 100 | 14279 | 142.79 | + | "#tracks" | 100 | 3784 | 37.840 | PromptHyperonHHCombiner INFO Number of counters : 8 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 3 |( 3.000000 +- 1.705872)% | - |*"# passed Combination12Cut" | 414 | 126 |( 30.43478 +- 2.261419)% | - |*"# passed CombinationCut" | 804 | 64 |( 7.960199 +- 0.9546008)% | - |*"# passed CompositeCut" | 64 | 4 |( 6.250000 +- 3.025768)% | - |*"# passed vertex fit" | 64 | 64 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 73 | 0.73000 | - | "Input2 size" | 100 | 734 | 7.3400 | - | "Input3 size" | 100 | 734 | 7.3400 | + |*"# passed" | 100 | 2 |( 2.000000 +- 1.400000)% | + |*"# passed Combination12Cut" | 406 | 134 |( 33.00493 +- 2.333715)% | + |*"# passed CombinationCut" | 876 | 82 |( 9.360731 +- 0.9841494)% | + |*"# passed CompositeCut" | 82 | 3 |( 3.658537 +- 2.073258)% | + |*"# passed vertex fit" | 82 | 82 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 72 | 0.72000 | + | "Input2 size" | 100 | 733 | 7.3300 | + | "Input3 size" | 100 | 733 | 7.3300 | PromptHyperonHHHCombiner INFO Number of counters : 10 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 3 |( 3.000000 +- 1.705872)% | - |*"# passed Combination123Cut" | 5935 | 2734 |( 46.06571 +- 0.6470100)% | - |*"# passed Combination12Cut" | 1235 | 557 |( 45.10121 +- 1.415931)% | - |*"# passed CombinationCut" | 15543 | 742 |( 4.773853 +- 0.1710193)% | - |*"# passed CompositeCut" | 742 | 21 |( 2.830189 +- 0.6087955)% | - |*"# passed vertex fit" | 742 | 742 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 123 | 1.2300 | - | "Input2 size" | 100 | 761 | 7.6100 | - | "Input3 size" | 100 | 950 | 9.5000 | - | "Input4 size" | 100 | 950 | 9.5000 | + |*"# passed Combination123Cut" | 6043 | 2705 |( 44.76254 +- 0.6396581)% | + |*"# passed Combination12Cut" | 1228 | 530 |( 43.15961 +- 1.413410)% | + |*"# passed CombinationCut" | 16642 | 763 |( 4.584785 +- 0.1621308)% | + |*"# passed CompositeCut" | 763 | 20 |( 2.621232 +- 0.5783924)% | + |*"# passed vertex fit" | 763 | 763 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 128 | 1.2800 | + | "Input2 size" | 100 | 773 | 7.7300 | + | "Input3 size" | 100 | 948 | 9.4800 | + | "Input4 size" | 100 | 948 | 9.4800 | SciFiTrackForwarding INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "2nd Loop" | 1789 | - | "Created long tracks" | 100 | 2338 | 23.380 | + | "2nd Loop" | 1785 | + | "Created long tracks" | 100 | 2334 | 23.340 | ToolSvc.PPFactoryHybridFactory INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | ToolSvc.TrackFunctorFactory INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | TrackBeamLineVertexFinderSoA INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb PVs" | 100 | 472 | 4.7200 | + | "Nb PVs" | 100 | 473 | 4.7300 | TrackBestTrackCreator INFO Number of counters : 33 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 30925 | 0 |( 0.000000 +- 0.000000)% | - |*"Downstream.badChisq" | 2302 | 1067 |( 46.35100 +- 1.039340)% | - | "Downstream.chisqProbSum" | 2302 | 392.0154 | 0.17029 | - |*"Downstream.flipCharge" | 2302 | 0 |( 0.000000 +- 0.000000)% | - | "Downstream.ghostProbability" | 2302 | 1074.545 | 0.46679 | - | "Downstream.numOutliers" | 2302 | 2475 | 1.0752 | - |*"FitFailed" | 30925 | 2 |(0.006467259 +- 0.004572895)% | + |*"BadInput" | 30910 | 0 |( 0.000000 +- 0.000000)% | + |*"Downstream.badChisq" | 2304 | 1069 |( 46.39757 +- 1.038960)% | + | "Downstream.chisqProbSum" | 2304 | 392.1794 | 0.17022 | + |*"Downstream.flipCharge" | 2304 | 0 |( 0.000000 +- 0.000000)% | + | "Downstream.ghostProbability" | 2304 | 1075.4 | 0.46675 | + | "Downstream.numOutliers" | 2304 | 2479 | 1.0760 | + |*"FitFailed" | 30910 | 2 |(0.006470398 +- 0.004575114)% | | "Long.FitFailed" | 2 | 2 | 1.0000 | - |*"Long.badChisq" | 8255 | 2783 |( 33.71290 +- 0.5203002)% | - | "Long.chisqProbSum" | 8255 | 2055.67 | 0.24902 | - |*"Long.flipCharge" | 8255 | 1 |(0.01211387 +- 0.01211314)% | - | "Long.ghostProbability" | 8255 | 1473.899 | 0.17855 | - | "Long.numOutliers" | 8255 | 9149 | 1.1083 | - |*"Ttrack.badChisq" | 3376 | 96 |( 2.843602 +- 0.2860677)% | - | "Ttrack.chisqProbSum" | 3376 | 1287.203 | 0.38128 | - |*"Ttrack.flipCharge" | 3376 | 118 |( 3.495261 +- 0.3160916)% | - | "Ttrack.ghostProbability" | 3376 | 306.6537 | 0.090833 | - | "Ttrack.numOutliers" | 3376 | 1370 | 0.40581 | - |*"Upstream.badChisq" | 979 | 220 |( 22.47191 +- 1.334007)% | - | "Upstream.chisqProbSum" | 979 | 318.9529 | 0.32579 | - |*"Upstream.flipCharge" | 982 | 22 |( 2.240326 +- 0.4722584)% | - | "Upstream.ghostProbability" | 982 | 235.0278 | 0.23934 | - | "Upstream.numOutliers" | 982 | 857 | 0.87271 | - |*"Velo.badChisq" | 6973 | 1567 |( 22.47239 +- 0.4998538)% | - | "Velo.chisqProbSum" | 6973 | 2195.331 | 0.31483 | - |*"Velo.flipCharge" | 7270 | 0 |( 0.000000 +- 0.000000)% | - | "Velo.ghostProbability" | 7270 | 1698.515 | 0.23363 | - | "Velo.numOutliers" | 7270 | 9706 | 1.3351 | - |*"VeloBackward.badChisq" | 8552 | 379 |( 4.431712 +- 0.2225404)% | - | "VeloBackward.chisqProbSum" | 8552 | 3964.336 | 0.46356 | - |*"VeloBackward.flipCharge" | 8738 | 0 |( 0.000000 +- 0.000000)% | - | "VeloBackward.ghostProbability" | 8738 | 998.9804 | 0.11433 | - | "VeloBackward.numOutliers" | 8738 | 4408 | 0.50446 | + |*"Long.badChisq" | 8250 | 2781 |( 33.70909 +- 0.5204434)% | + | "Long.chisqProbSum" | 8250 | 2053.942 | 0.24896 | + |*"Long.flipCharge" | 8250 | 1 |(0.01212121 +- 0.01212048)% | + | "Long.ghostProbability" | 8250 | 1470.269 | 0.17821 | + | "Long.numOutliers" | 8250 | 9129 | 1.1065 | + |*"Ttrack.badChisq" | 3378 | 96 |( 2.841918 +- 0.2859008)% | + | "Ttrack.chisqProbSum" | 3378 | 1287.864 | 0.38125 | + |*"Ttrack.flipCharge" | 3378 | 118 |( 3.493191 +- 0.3159078)% | + | "Ttrack.ghostProbability" | 3378 | 305.7523 | 0.090513 | + | "Ttrack.numOutliers" | 3378 | 1372 | 0.40616 | + |*"Upstream.badChisq" | 976 | 221 |( 22.64344 +- 1.339661)% | + | "Upstream.chisqProbSum" | 976 | 318.0681 | 0.32589 | + |*"Upstream.flipCharge" | 979 | 22 |( 2.247191 +- 0.4736890)% | + | "Upstream.ghostProbability" | 979 | 232.3035 | 0.23729 | + | "Upstream.numOutliers" | 979 | 841 | 0.85904 | + |*"Velo.badChisq" | 6976 | 1560 |( 22.36239 +- 0.4988752)% | + | "Velo.chisqProbSum" | 6976 | 2202.881 | 0.31578 | + |*"Velo.flipCharge" | 7271 | 0 |( 0.000000 +- 0.000000)% | + | "Velo.ghostProbability" | 7271 | 1700.283 | 0.23384 | + | "Velo.numOutliers" | 7271 | 9688 | 1.3324 | + |*"VeloBackward.badChisq" | 8547 | 377 |( 4.410904 +- 0.2221064)% | + | "VeloBackward.chisqProbSum" | 8547 | 3957.79 | 0.46306 | + |*"VeloBackward.flipCharge" | 8726 | 0 |( 0.000000 +- 0.000000)% | + | "VeloBackward.ghostProbability" | 8726 | 985.7012 | 0.11296 | + | "VeloBackward.numOutliers" | 8726 | 4364 | 0.50011 | VPClus INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb of Produced Clusters" | 100 | 179234 | 1792.3 | VeloClusterTrackingSIMD INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb of Produced Clusters" | 100 | 179234 | 1792.3 | - | "Nb of Produced Tracks" | 100 | 23069 | 230.69 | + | "Nb of Produced Tracks" | 100 | 23012 | 230.12 | VeloKalman INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of Produced Tracks" | 100 | 2338 | 23.380 | + | "Nb of Produced Tracks" | 100 | 2334 | 23.340 | ddLambda0Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 34 |( 34.00000 +- 4.737088)% | - |*"# passed CombinationCut" | 2658 | 566 |( 21.29421 +- 0.7940660)% | - |*"# passed CompositeCut" | 566 | 73 |( 12.89753 +- 1.408835)% | - |*"# passed vertex fit" | 566 | 566 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 587 | 5.8700 | - | "Input2 size" | 100 | 598 | 5.9800 | + |*"# passed" | 100 | 33 |( 33.00000 +- 4.702127)% | + |*"# passed CombinationCut" | 2675 | 567 |( 21.19626 +- 0.7902075)% | + |*"# passed CompositeCut" | 567 | 72 |( 12.69841 +- 1.398280)% | + |*"# passed vertex fit" | 567 | 567 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 581 | 5.8100 | + | "Input2 size" | 100 | 608 | 6.0800 | fromPrDownstreamTracksV1Tracks INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of converted Tracks" | 100 | 7173 | 71.730 | + | "Nb of converted Tracks" | 100 | 7174 | 71.740 | fromPrFittedForwardTracksV1Tracks INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of converted Tracks" | 100 | 2338 | 23.380 | + | "Nb of converted Tracks" | 100 | 2334 | 23.340 | fromPrForwardTracksFromVeloUTV1T... INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of converted Tracks" | 100 | 2338 | 23.380 | + | "Nb of converted Tracks" | 100 | 2334 | 23.340 | fromPrForwardTracksV1Tracks INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of converted Tracks" | 100 | 6528 | 65.280 | + | "Nb of converted Tracks" | 100 | 6519 | 65.190 | fromPrMatchTracksV1Tracks INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of converted Tracks" | 100 | 6681 | 66.810 | + | "Nb of converted Tracks" | 100 | 6666 | 66.660 | fromPrSeedingTracksV1Tracks INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb of converted Tracks" | 100 | 10300 | 103.00 | fromPrUpstreamTracksV1Tracks INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of converted Tracks" | 100 | 3793 | 37.930 | + | "Nb of converted Tracks" | 100 | 3784 | 37.840 | fromPrVeloTracksV1TracksMerger INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of converted Tracks" | 100 | 23069 | 230.69 | + | "Nb of converted Tracks" | 100 | 23012 | 230.12 | llLambda0Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 49 |( 49.00000 +- 4.999000)% | - |*"# passed CombinationCut" | 1737 | 415 |( 23.89177 +- 1.023152)% | - |*"# passed CompositeCut" | 415 | 193 |( 46.50602 +- 2.448404)% | + |*"# passed CombinationCut" | 1803 | 415 |( 23.01719 +- 0.9913458)% | + |*"# passed CompositeCut" | 415 | 197 |( 47.46988 +- 2.451259)% | |*"# passed vertex fit" | 415 | 415 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 450 | 4.5000 | + | "Input1 size" | 100 | 458 | 4.5800 | | "Input2 size" | 100 | 485 | 4.8500 | xiCombiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 21 |( 21.00000 +- 4.073082)% | - |*"# passed CombinationCut" | 1132 | 143 |( 12.63251 +- 0.9874077)% | - |*"# passed CompositeCut" | 143 | 123 |( 86.01399 +- 2.900437)% | - |*"# passed vertex fit" | 143 | 143 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 193 | 1.9300 | - | "Input2 size" | 100 | 528 | 5.2800 | + |*"# passed" | 100 | 22 |( 22.00000 +- 4.142463)% | + |*"# passed CombinationCut" | 1173 | 147 |( 12.53197 +- 0.9666858)% | + |*"# passed CompositeCut" | 147 | 128 |( 87.07483 +- 2.766978)% | + |*"# passed vertex fit" | 147 | 147 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 197 | 1.9700 | + | "Input2 size" | 100 | 525 | 5.2500 | diff --git a/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections_fastest.ref b/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections_fastest.ref index e318e5f2dda..aed00690e91 100644 --- a/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections_fastest.ref +++ b/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections_fastest.ref @@ -4,11 +4,11 @@ TransportSvc SUCCESS GEOMETRY ERRORS: 'Recover' map has TransportSvc SUCCESS GEOMETRY ERRORS: 'Codes' map has the size 0 TransportSvc INFO Reset the static pointer to DetDesc::IGeometyrErrorSvc ToolSvc INFO Removing all tools created by ToolSvc -Phi2KKMaker.LoKi::DistanceCalcul... SUCCESS #WARNINGS = 34 Message = 'There is no convergency-III' +Phi2KKMaker.LoKi::DistanceCalcul... SUCCESS #WARNINGS = 35 Message = 'There is no convergency-III' Phi2KKMaker.LoKi::DistanceCalcul... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 -PromptHyperonHHHCombiner.LoKi::D... SUCCESS #WARNINGS = 1 Message = 'There is no convergency-III' +PromptHyperonHHHCombiner.LoKi::D... SUCCESS #WARNINGS = 5 Message = 'There is no convergency-III' PromptHyperonHHHCombiner.LoKi::D... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 -ddLambda0Combiner.LoKi::Distance... SUCCESS #WARNINGS = 6 Message = 'There is no convergency-III' +ddLambda0Combiner.LoKi::Distance... SUCCESS #WARNINGS = 8 Message = 'There is no convergency-III' ddLambda0Combiner.LoKi::Distance... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 xiCombiner.LoKi::DistanceCalculator SUCCESS #WARNINGS = 1 Message = 'There is no convergency-III' xiCombiner.LoKi::DistanceCalculator SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 @@ -16,27 +16,27 @@ ApplicationMgr INFO Application Manager Finalized succes ApplicationMgr INFO Application Manager Terminated successfully BremChi22IDFuture INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 6187 | 61.870 | 36.643 | 0.0000 | 148.00 | - | "#total tracks" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | + | "#links in table" | 100 | 6189 | 61.890 | 36.640 | 0.0000 | 148.00 | + | "#total tracks" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | BremPIDeAlgFuture INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Table Size" | 100 | 6187 | 61.870 | 36.643 | 0.0000 | 148.00 | + | "Table Size" | 100 | 6189 | 61.890 | 36.640 | 0.0000 | 148.00 | Bs2JPsiPhi_JPsi2MuMu_Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 3 |( 3.000000 +- 1.705872)% | - |*"# passed CombinationCut" | 665 | 138 |( 20.75188 +- 1.572579)% | - |*"# passed CompositeCut" | 138 | 14 |( 10.14493 +- 2.570137)% | - |*"# passed vertex fit" | 138 | 138 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 125 | 1.2500 | - | "Input2 size" | 100 | 237 | 2.3700 | + |*"# passed" | 100 | 0 |( 0.000000 +- 0.000000)% | + |*"# passed CombinationCut" | 644 | 134 |( 20.80745 +- 1.599590)% | + |*"# passed CompositeCut" | 134 | 0 |( 0.000000 +- 0.000000)% | + |*"# passed vertex fit" | 134 | 134 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 123 | 1.2300 | + | "Input2 size" | 100 | 233 | 2.3300 | Bs2JPsiPhi_JPsi2ee_Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 8 |( 8.000000 +- 2.712932)% | - |*"# passed CombinationCut" | 1250 | 258 |( 20.64000 +- 1.144724)% | - |*"# passed CompositeCut" | 258 | 37 |( 14.34109 +- 2.182064)% | - |*"# passed vertex fit" | 258 | 258 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 229 | 2.2900 | - | "Input2 size" | 100 | 237 | 2.3700 | + |*"# passed" | 100 | 0 |( 0.000000 +- 0.000000)% | + |*"# passed CombinationCut" | 1205 | 238 |( 19.75104 +- 1.146888)% | + |*"# passed CompositeCut" | 238 | 0 |( 0.000000 +- 0.000000)% | + |*"# passed vertex fit" | 238 | 238 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 226 | 2.2600 | + | "Input2 size" | 100 | 233 | 2.3300 | CaloFutureClusterCovarianceAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# clusters" | 15868 | @@ -47,7 +47,7 @@ CaloFutureClusterCovarianceAlg.E... INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Corrected Clusters: # cells " | 1174 | 5999 | 5.1099 | 1.7745 | 2.0000 | 14.000 | | "Corrected Clusters: ET" | 1174 | 317801.2 | 270.70 | 284.59 | 35.600 | 4632.2 | - | "Corrected Clusters: size ratio" | 1174 | 444.1727 | 0.37834 | 0.29125 | -3.6723e-16 | 2.8281 | + | "Corrected Clusters: size ratio" | 1174 | 444.1727 | 0.37834 | 0.29125 | -9.1809e-17 | 2.8281 | CaloFutureMergedPi0 INFO Number of counters : 12 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"Cluster without 2nd seed found" | 379 | 0 |( 0.000000 +- 0.000000)% | @@ -56,9 +56,9 @@ CaloFutureMergedPi0 INFO Number of counters : 12 |*"Fails to set spread" | 100 | 0 |( 0.000000 +- 0.000000)% | |*"Fails to tag(E) cluster (1)" | 379 | 0 |( 0.000000 +- 0.000000)% | |*"Fails to tag(E) cluster (2)" | 379 | 0 |( 0.000000 +- 0.000000)% | - | "Photon Delta(E)" | 758 | -44373.71 | -58.541 | 363.70 | -2602.7 | 3251.7 | - | "Photon Delta(X)" | 758 | -648.1165 | -0.85503 | 13.562 | -46.608 | 22.319 | - | "Photon Delta(Y)" | 758 | -123.2589 | -0.16261 | 13.410 | -28.241 | 22.325 | + | "Photon Delta(E)" | 758 | -44374.11 | -58.541 | 363.70 | -2602.7 | 3251.7 | + | "Photon Delta(X)" | 758 | -648.125 | -0.85505 | 13.562 | -46.608 | 22.319 | + | "Photon Delta(Y)" | 758 | -123.3137 | -0.16268 | 13.410 | -28.241 | 22.325 | | "Photon Delta(Z)" | 758 | 58628.89 | 77.347 | 11.362 | 7.5021 | 112.81 | | "clusters => mergedPi0s" | 100 | 379 | 3.7900 | | "clusters => splitClusters" | 100 | 758 | 7.5800 | @@ -66,7 +66,7 @@ CaloFutureMergedPi0.CaloFutureEC... INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | " Inner" | 178 | 177.1093 | 0.99500 | 0.022641 | 0.96563 | 1.0765 | | " Middle" | 120 | 120.4961 | 1.0041 | 0.026115 | 0.97704 | 1.1148 | - | " Outer" | 460 | 458.9485 | 0.99771 | 0.017831 | 0.97404 | 1.0990 | + | " Outer" | 460 | 458.9484 | 0.99771 | 0.017830 | 0.97404 | 1.0990 | | "Pileup offset" | 758 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | | "Pileup scale" | 100 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | | "Pileup subtracted ratio" | 758 | 758 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | @@ -77,7 +77,7 @@ CaloFutureMergedPi0.EcalSpread INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Corrected Clusters: # cells " | 94 | 594 | 6.3191 | 1.7577 | 4.0000 | 9.0000 | | "Corrected Clusters: ET" | 94 | 103801.8 | 1104.3 | 1178.3 | 34.600 | 9841.2 | - | "Corrected Clusters: size ratio" | 94 | 32.53922 | 0.34616 | 0.27227 | 0.066570 | 1.8140 | + | "Corrected Clusters: size ratio" | 94 | 32.5392 | 0.34616 | 0.27227 | 0.066570 | 1.8140 | CaloFutureShowerOverlap INFO Number of counters : 5 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Delta(E)" | 19041 | -595002.2 | -31.248 | 906.20 | -16337.0 | 12389.0 | @@ -87,18 +87,18 @@ CaloFutureShowerOverlap INFO Number of counters : 5 | "negative E clusters (removed)" | 100 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | ClassifyPhotonElectronAlg INFO Number of counters : 12 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Electron Delta(E)" | 5879 | 1155453 | 196.54 | 193.30 | -2313.6 | 2485.9 | - | "Electron Delta(X)" | 5879 | -2404.116 | -0.40893 | 12.096 | -22.782 | 22.326 | - | "Electron Delta(Y)" | 5879 | -2610.63 | -0.44406 | 12.034 | -22.782 | 22.326 | - | "Electron Delta(Z)" | 5879 | 400313.1 | 68.092 | 12.439 | 23.990 | 126.86 | - | "Electron corrected energy" | 5879 |4.041049e+07 | 6873.7 | 7119.8 | 397.46 | 91547.0 | - | "Photon Delta(E)" | 10918 | 798539.6 | 73.140 | 145.88 | -2545.4 | 3183.9 | - | "Photon Delta(X)" | 10918 | -2082.637 | -0.19075 | 12.180 | -22.782 | 22.327 | - | "Photon Delta(Y)" | 10918 | -932.3072 | -0.085392 | 12.190 | -22.782 | 22.326 | - | "Photon Delta(Z)" | 10918 | 644035.9 | 58.988 | 11.889 | 24.107 | 113.40 | - | "Photon corrected energy" | 10918 |4.503741e+07 | 4125.1 | 5949.3 | 253.12 | 1.1665e+05 | - | "electronHypos" | 100 | 5879 | 58.790 | 33.141 | 0.0000 | 182.00 | - | "photonHypos" | 100 | 10918 | 109.18 | 53.978 | 0.0000 | 230.00 | + | "Electron Delta(E)" | 5880 | 1155771 | 196.56 | 193.29 | -2313.6 | 2485.9 | + | "Electron Delta(X)" | 5880 | -2396.126 | -0.40750 | 12.095 | -22.782 | 22.326 | + | "Electron Delta(Y)" | 5880 | -2608.302 | -0.44359 | 12.033 | -22.782 | 22.326 | + | "Electron Delta(Z)" | 5880 | 400402.8 | 68.096 | 12.442 | 23.990 | 126.86 | + | "Electron corrected energy" | 5880 |4.041846e+07 | 6873.9 | 7119.2 | 397.47 | 91547.0 | + | "Photon Delta(E)" | 10917 | 798363.9 | 73.130 | 145.89 | -2545.4 | 3183.9 | + | "Photon Delta(X)" | 10917 | -2090.628 | -0.19150 | 12.180 | -22.782 | 22.327 | + | "Photon Delta(Y)" | 10917 | -934.6362 | -0.085613 | 12.191 | -22.782 | 22.326 | + | "Photon Delta(Z)" | 10917 | 643946.5 | 58.986 | 11.886 | 24.107 | 113.40 | + | "Photon corrected energy" | 10917 |4.502959e+07 | 4124.7 | 5949.5 | 253.12 | 1.1665e+05 | + | "electronHypos" | 100 | 5880 | 58.800 | 33.130 | 0.0000 | 182.00 | + | "photonHypos" | 100 | 10917 | 109.17 | 53.985 | 0.0000 | 230.00 | ClassifyPhotonElectronAlg.CaloFu... INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | " Inner" | 4827 | 4799.134 | 0.99423 | 0.018917 | 0.96447 | 1.1151 | @@ -109,10 +109,10 @@ ClassifyPhotonElectronAlg.CaloFu... INFO Number of counters : 6 | "Pileup subtracted ratio" | 16797 | 16797 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | CloneKillerMatch INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "nTracksSelected" | 100 | 6681 | 66.810 | + | "nTracksSelected" | 100 | 6666 | 66.660 | CopyParticlesWithPVRelations.Gen... INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "IP->(DI)GAMMA" | 249 | + | "IP->(DI)GAMMA" | 250 | DeterministicPrescaler INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"#accept" | 100 | 100 |( 100.0000 +- 0.000000)% | @@ -130,70 +130,70 @@ DeterministicPrescaler#4 INFO Number of counters : 1 |*"#accept" | 100 | 100 |( 100.0000 +- 0.000000)% | DownstreamPionsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 874 | 461 |( 52.74600 +- 1.688723)% | + |*"Cut selection efficiency" | 875 | 463 |( 52.91429 +- 1.687435)% | DownstreamProtonsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 874 | 451 |( 51.60183 +- 1.690407)% | + |*"Cut selection efficiency" | 875 | 450 |( 51.42857 +- 1.689618)% | FilteredPIDElectrons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6187 | 1588 |( 25.66672 +- 0.5553116)% | + |*"Cut selection efficiency" | 6189 | 1590 |( 25.69074 +- 0.5553919)% | FilteredPIDMuons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6187 | 825 |( 13.33441 +- 0.4321855)% | + |*"Cut selection efficiency" | 6189 | 805 |( 13.00695 +- 0.4275823)% | FilteredPIDkaons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6187 | 2287 |( 36.96460 +- 0.6136846)% | + |*"Cut selection efficiency" | 6189 | 2307 |( 37.27581 +- 0.6146400)% | FunctionalChargedProtoParticleMaker INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "CreatedProtos" | 7164 | + | "CreatedProtos" | 7167 | FunctionalParticleMaker#1 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 977 | 874 |( 89.45752 +- 0.9824998)% | - |*"# passed Track filter" | 7164 | 977 |( 13.63763 +- 0.4054656)% | + |*"# passed ProtoParticle filter" | 978 | 875 |( 89.46830 +- 0.9815544)% | + |*"# passed Track filter" | 7167 | 978 |( 13.64588 +- 0.4054839)% | | "Nb created anti-particles" | 100 | 438 | 4.3800 | 3.1170 | 0.0000 | 16.000 | - | "Nb created particles" | 100 | 436 | 4.3600 | 3.4103 | 0.0000 | 14.000 | + | "Nb created particles" | 100 | 437 | 4.3700 | 3.4078 | 0.0000 | 14.000 | FunctionalParticleMaker#2 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 977 | 874 |( 89.45752 +- 0.9824998)% | - |*"# passed Track filter" | 7164 | 977 |( 13.63763 +- 0.4054656)% | + |*"# passed ProtoParticle filter" | 978 | 875 |( 89.46830 +- 0.9815544)% | + |*"# passed Track filter" | 7167 | 978 |( 13.64588 +- 0.4054839)% | | "Nb created anti-particles" | 100 | 438 | 4.3800 | 3.1170 | 0.0000 | 16.000 | - | "Nb created particles" | 100 | 436 | 4.3600 | 3.4103 | 0.0000 | 14.000 | + | "Nb created particles" | 100 | 437 | 4.3700 | 3.4078 | 0.0000 | 14.000 | FunctionalParticleMaker#3 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6187 | 5900 |( 95.36124 +- 0.2673910)% | - |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | - | "Nb created anti-particles" | 100 | 2927 | 29.270 | 17.496 | 0.0000 | 69.000 | - | "Nb created particles" | 100 | 2973 | 29.730 | 17.943 | 0.0000 | 70.000 | + |*"# passed ProtoParticle filter" | 6189 | 5902 |( 95.36274 +- 0.2673067)% | + |*"# passed Track filter" | 7167 | 6189 |( 86.35412 +- 0.4054839)% | + | "Nb created anti-particles" | 100 | 2927 | 29.270 | 17.489 | 0.0000 | 69.000 | + | "Nb created particles" | 100 | 2975 | 29.750 | 17.945 | 0.0000 | 70.000 | FunctionalParticleMaker#4 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6187 | 5900 |( 95.36124 +- 0.2673910)% | - |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | - | "Nb created anti-particles" | 100 | 2927 | 29.270 | 17.496 | 0.0000 | 69.000 | - | "Nb created particles" | 100 | 2973 | 29.730 | 17.943 | 0.0000 | 70.000 | + |*"# passed ProtoParticle filter" | 6189 | 5902 |( 95.36274 +- 0.2673067)% | + |*"# passed Track filter" | 7167 | 6189 |( 86.35412 +- 0.4054839)% | + | "Nb created anti-particles" | 100 | 2927 | 29.270 | 17.489 | 0.0000 | 69.000 | + | "Nb created particles" | 100 | 2975 | 29.750 | 17.945 | 0.0000 | 70.000 | FunctionalParticleMaker#5 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6187 | 5900 |( 95.36124 +- 0.2673910)% | - |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | - | "Nb created anti-particles" | 100 | 2927 | 29.270 | 17.496 | 0.0000 | 69.000 | - | "Nb created particles" | 100 | 2973 | 29.730 | 17.943 | 0.0000 | 70.000 | + |*"# passed ProtoParticle filter" | 6189 | 5902 |( 95.36274 +- 0.2673067)% | + |*"# passed Track filter" | 7167 | 6189 |( 86.35412 +- 0.4054839)% | + | "Nb created anti-particles" | 100 | 2927 | 29.270 | 17.489 | 0.0000 | 69.000 | + | "Nb created particles" | 100 | 2975 | 29.750 | 17.945 | 0.0000 | 70.000 | FunctionalParticleMaker#6 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6187 | 6187 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | - | "Nb created anti-particles" | 100 | 3064 | 30.640 | 18.435 | 0.0000 | 79.000 | - | "Nb created particles" | 100 | 3123 | 31.230 | 18.901 | 0.0000 | 74.000 | + |*"# passed ProtoParticle filter" | 6189 | 6189 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 7167 | 6189 |( 86.35412 +- 0.4054839)% | + | "Nb created anti-particles" | 100 | 3064 | 30.640 | 18.427 | 0.0000 | 79.000 | + | "Nb created particles" | 100 | 3125 | 31.250 | 18.900 | 0.0000 | 74.000 | FunctionalParticleMaker#7 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6187 | 6187 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | - | "Nb created anti-particles" | 100 | 3064 | 30.640 | 18.435 | 0.0000 | 79.000 | - | "Nb created particles" | 100 | 3123 | 31.230 | 18.901 | 0.0000 | 74.000 | + |*"# passed ProtoParticle filter" | 6189 | 6189 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 7167 | 6189 |( 86.35412 +- 0.4054839)% | + | "Nb created anti-particles" | 100 | 3064 | 30.640 | 18.427 | 0.0000 | 79.000 | + | "Nb created particles" | 100 | 3125 | 31.250 | 18.900 | 0.0000 | 74.000 | FunctionalParticleMaker#8 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6187 | 6187 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | - | "Nb created anti-particles" | 100 | 3064 | 30.640 | 18.435 | 0.0000 | 79.000 | - | "Nb created particles" | 100 | 3123 | 31.230 | 18.901 | 0.0000 | 74.000 | + |*"# passed ProtoParticle filter" | 6189 | 6189 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 7167 | 6189 |( 86.35412 +- 0.4054839)% | + | "Nb created anti-particles" | 100 | 3064 | 30.640 | 18.427 | 0.0000 | 79.000 | + | "Nb created particles" | 100 | 3125 | 31.250 | 18.900 | 0.0000 | 74.000 | FutureCellularAutomatonAlg INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# clusterization passes" | 100 | 343 | 3.4300 | 0.79063 | 0.0000 | 6.0000 | @@ -202,206 +202,206 @@ FutureCellularAutomatonAlg INFO Number of counters : 4 | "Cluster size" | 15868 | 193378 | 12.187 | 3.5625 | 4.0000 | 37.000 | FutureClusChi22ID INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | - | "#total tracks" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | + | "#links in table" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | + | "#total tracks" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | FutureEcalChi22ID INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | - | "#total tracks" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | + | "#links in table" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | + | "#total tracks" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | FutureEcalPIDeAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Table Size" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | + | "Table Size" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | FutureEcalPIDmuAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Table Size" | 100 | 9113 | 91.130 | 63.468 | 0.0000 | 479.00 | + | "Table Size" | 100 | 9114 | 91.140 | 63.397 | 0.0000 | 478.00 | FutureEcalZSup INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"No bank found" | 100 | 0 |( 0.000000 +- 0.000000)% | FutureHcalPIDeAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Table Size" | 100 | 8574 | 85.740 | 60.094 | 0.0000 | 460.00 | + | "Table Size" | 100 | 8576 | 85.760 | 60.017 | 0.0000 | 459.00 | FutureHcalPIDmuAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Table Size" | 100 | 8574 | 85.740 | 60.094 | 0.0000 | 460.00 | + | "Table Size" | 100 | 8576 | 85.760 | 60.017 | 0.0000 | 459.00 | FutureHcalZSup INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"No bank found" | 100 | 0 |( 0.000000 +- 0.000000)% | FutureInBremFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 7164 | 71.640 | 41.677 | 0.0000 | 165.00 | - | "#total tracks" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | - | "#tracks in acceptance" | 100 | 5140 | 51.400 | 30.599 | 0.0000 | 117.00 | + | "#links in table" | 100 | 7167 | 71.670 | 41.672 | 0.0000 | 165.00 | + | "#total tracks" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | + | "#tracks in acceptance" | 100 | 5142 | 51.420 | 30.582 | 0.0000 | 117.00 | FutureNeutralProtoPAlg INFO Number of counters : 30 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "CaloClusterCode for Photon" | 10918 | 106053 | 9.7136 | 89.312 | -98.000 | 98.000 | + | "CaloClusterCode for Photon" | 10917 | 105958 | 9.7058 | 89.312 | -98.000 | 98.000 | | "CaloClusterCode for Pi0Merged" | 379 | -6379 | -16.831 | 88.814 | -98.000 | 98.000 | | "CaloClusterFrac for Photon" | 8991 | 9030.721 | 1.0044 | 0.057482 | 0.63017 | 1.6224 | | "CaloClusterFrac for Pi0Merged" | 357 | 356.1058 | 0.99750 | 0.011277 | 0.89264 | 1.0065 | - | "CaloNeutralE19 for Photon" | 10918 | 6375.253 | 0.58392 | 0.19131 | 0.15780 | 1.2922 | + | "CaloNeutralE19 for Photon" | 10917 | 6374.676 | 0.58392 | 0.19132 | 0.15780 | 1.2922 | | "CaloNeutralE19 for Pi0Merged" | 379 | 193.2627 | 0.50993 | 0.17217 | 0.21034 | 0.94609 | - | "CaloNeutralE49 for Photon" | 10918 | 9694.101 | 0.88790 | 0.10075 | 0.50939 | 1.3642 | + | "CaloNeutralE49 for Photon" | 10917 | 9693.15 | 0.88790 | 0.10075 | 0.50939 | 1.3642 | | "CaloNeutralE49 for Pi0Merged" | 379 | 326.1181 | 0.86047 | 0.094041 | 0.56314 | 0.99897 | - | "CaloNeutralEcal for Photon" | 10918 |4.423887e+07 | 4051.9 | 5946.7 | 172.18 | 1.1381e+05 | + | "CaloNeutralEcal for Photon" | 10917 |4.423122e+07 | 4051.6 | 5946.9 | 172.18 | 1.1381e+05 | | "CaloNeutralEcal for Pi0Merged" | 379 | 7576404 | 19991.0 | 17840.0 | 4792.4 | 1.1381e+05 | - | "CaloNeutralHcal2Ecal for Photon" | 10918 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | + | "CaloNeutralHcal2Ecal for Photon" | 10917 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | | "CaloNeutralHcal2Ecal for Pi0Merged" | 379 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | - | "CaloNeutralID for Photon" | 10918 |4.171283e+08 | 38206.0 | 3553.5 | 33152.0 | 44151.0 | + | "CaloNeutralID for Photon" | 10917 |4.170934e+08 | 38206.0 | 3553.5 | 33152.0 | 44151.0 | | "CaloNeutralID for Pi0Merged" | 379 |1.417681e+07 | 37406.0 | 3420.6 | 33294.0 | 43862.0 | - | "CaloTrMatch for Photon" | 953 | 18154.85 | 19.050 | 8.9416 | 10.007 | 75.811 | - | "CaloTrMatch for Pi0Merged" | 295 | 1096.958 | 3.7185 | 5.2229 | 0.011918 | 38.646 | - | "ClusterAsX for Photon" | 10915 | 19.38025 | 0.0017756 | 0.20296 | -0.67370 | 0.72299 | - | "ClusterAsY for Photon" | 10911 | 60.95616 | 0.0055867 | 0.20018 | -0.72460 | 0.71418 | - | "IsNotH for Photon" | 10918 | 4007.696 | 0.36707 | 0.34900 | -1.0000 | 0.99502 | + | "CaloTrMatch for Photon" | 953 | 18154.86 | 19.050 | 8.9416 | 10.007 | 75.811 | + | "CaloTrMatch for Pi0Merged" | 296 | 1104.152 | 3.7302 | 5.2147 | 0.011921 | 38.646 | + | "ClusterAsX for Photon" | 10914 | 18.97573 | 0.0017387 | 0.20294 | -0.67370 | 0.72299 | + | "ClusterAsY for Photon" | 10908 | 60.95187 | 0.0055878 | 0.20020 | -0.72460 | 0.71418 | + | "IsNotH for Photon" | 10917 | 4007.264 | 0.36707 | 0.34902 | -1.0000 | 0.99502 | | "IsNotH for Pi0Merged" | 379 | 103.4619 | 0.27299 | 0.31789 | 0.00025262 | 0.99454 | - | "IsPhoton for Photon" | 10918 | 10901.14 | 0.99846 | 0.035356 | 7.1631e-05 | 1.0000 | + | "IsPhoton for Photon" | 10917 | 10900.14 | 0.99846 | 0.035358 | 7.1631e-05 | 1.0000 | | "IsPhoton for Pi0Merged" | 379 | 272.9914 | 0.72029 | 0.40476 | 1.8805e-06 | 1.0000 | - | "IsPhotonXGB for Photon" | 10918 | 10905.43 | 0.99885 | 0.029174 | 9.0229e-05 | 1.0000 | + | "IsPhotonXGB for Photon" | 10917 | 10904.43 | 0.99885 | 0.029175 | 9.0229e-05 | 1.0000 | | "IsPhotonXGB for Pi0Merged" | 379 | 315.0852 | 0.83136 | 0.29830 | 5.6350e-05 | 1.0000 | - | "Neutral Protos" | 100 | 12055 | 120.55 | 64.206 | 0.0000 | 269.00 | + | "Neutral Protos" | 100 | 12054 | 120.54 | 64.214 | 0.0000 | 269.00 | | "Neutral Protos from MergedPi0s" | 100 | 379 | 3.7900 | 4.3550 | 0.0000 | 19.000 | - | "Neutral Protos from Photons" | 100 | 10918 | 109.18 | 53.978 | 0.0000 | 230.00 | + | "Neutral Protos from Photons" | 100 | 10917 | 109.17 | 53.985 | 0.0000 | 230.00 | | "Neutral Protos from SplitPhotons" | 100 | 758 | 7.5800 | 8.7100 | 0.0000 | 38.000 | - | "ShowerShape for Photon" | 10918 |5.378973e+07 | 4926.7 | 5058.9 | 253.69 | 69098.0 | + | "ShowerShape for Photon" | 10917 |5.377538e+07 | 4925.8 | 5058.3 | 253.69 | 69098.0 | | "ShowerShape for Pi0Merged" | 379 | 3349026 | 8836.5 | 7010.8 | 416.65 | 36918.0 | FutureNeutralProtoPAlg.CaloFutur... INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "no cluster" | 758 | 758 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | FutureTrack2EcalEAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 9113 | 91.130 | 63.468 | 0.0000 | 479.00 | - | "#total energy" | 9113 | 26527.29 | 2.9109 | 3.7697 | -0.093026 | 66.674 | - | "#total tracks" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | + | "#links in table" | 100 | 9114 | 91.140 | 63.397 | 0.0000 | 478.00 | + | "#total energy" | 9114 | 26539.93 | 2.9120 | 3.7709 | -0.093026 | 66.674 | + | "#total tracks" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | FutureTrack2HcalEAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 8574 | 85.740 | 60.094 | 0.0000 | 460.00 | - | "#total energy" | 8574 | 49671 | 5.7932 | 10.734 | 0.0000 | 202.25 | - | "#total tracks" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | + | "#links in table" | 100 | 8576 | 85.760 | 60.017 | 0.0000 | 459.00 | + | "#total energy" | 8576 | 49618.71 | 5.7858 | 10.727 | 0.0000 | 202.25 | + | "#total tracks" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | Hlt2PhotonFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 8596 | 40 |(0.4653327 +- 0.07340418)% | + |*"Cut selection efficiency" | 8595 | 40 |(0.4653869 +- 0.07341270)% | HltPackedDataWriter INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Size of serialized data" | 33 | 250200 | 7581.8 | 10991.0 | 1212.0 | 41106.0 | + | "Size of serialized data" | 29 | 94898 | 3272.3 | 5894.4 | 1212.0 | 32242.0 | InEcalFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | - | "#total tracks" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | - | "#tracks in acceptance" | 100 | 9113 | 91.130 | 63.468 | 0.0000 | 479.00 | + | "#links in table" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | + | "#total tracks" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | + | "#tracks in acceptance" | 100 | 9114 | 91.140 | 63.397 | 0.0000 | 478.00 | InHcalFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | - | "#total tracks" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | - | "#tracks in acceptance" | 100 | 8574 | 85.740 | 60.094 | 0.0000 | 460.00 | + | "#links in table" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | + | "#total tracks" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | + | "#tracks in acceptance" | 100 | 8576 | 85.760 | 60.017 | 0.0000 | 459.00 | LHCb__MDF__IOAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#banks in raw event" | 100 | 102500 | 1025.0 | 0.0000 | 1025.0 | 1025.0 | LHCb__Phys__ParticleMakers__Phot... INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Confidence Level" | 8596 | 3022.706 | 0.35164 | 0.33700 | 7.1976e-05 | 0.99404 | - | "Created photons" | 10918 | - | "Selected photons" | 100 | 8596 | 85.960 | 48.238 | 0.0000 | 195.00 | + | "Confidence Level" | 8595 | 3022.273 | 0.35163 | 0.33702 | 7.1976e-05 | 0.99404 | + | "Created photons" | 10917 | + | "Selected photons" | 100 | 8595 | 85.950 | 48.246 | 0.0000 | 195.00 | LHCb__Phys__ParticleMakers__Phot... INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Confidence Level" | 7153 | 3964.995 | 0.55431 | 0.27137 | 0.10004 | 0.99502 | - | "Created photons" | 10918 | - | "Selected photons" | 100 | 7153 | 71.530 | 29.567 | 0.0000 | 134.00 | + | "Confidence Level" | 7152 | 3964.562 | 0.55433 | 0.27138 | 0.10004 | 0.99502 | + | "Created photons" | 10917 | + | "Selected photons" | 100 | 7152 | 71.520 | 29.573 | 0.0000 | 134.00 | LongKaonsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 5900 | 670 |( 11.35593 +- 0.4130572)% | + |*"Cut selection efficiency" | 5902 | 680 |( 11.52152 +- 0.4155986)% | LongPionsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 5900 | 639 |( 10.83051 +- 0.4045820)% | + |*"Cut selection efficiency" | 5902 | 653 |( 11.06405 +- 0.4083157)% | LongPionsFilter#1 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 5900 | 473 |( 8.016949 +- 0.3535350)% | + |*"Cut selection efficiency" | 5902 | 467 |( 7.912572 +- 0.3513657)% | LongPionsFilter#2 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 5900 | 505 |( 8.559322 +- 0.3642197)% | + |*"Cut selection efficiency" | 5902 | 501 |( 8.488648 +- 0.3627915)% | LongPionsFilter#3 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 5900 | 872 |( 14.77966 +- 0.4620382)% | + |*"Cut selection efficiency" | 5902 | 881 |( 14.92714 +- 0.4638572)% | LongProtonsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 5900 | 386 |( 6.542373 +- 0.3219208)% | + |*"Cut selection efficiency" | 5902 | 392 |( 6.641816 +- 0.3241306)% | MassConstrJpsi2MuMuMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 38 |( 38.00000 +- 4.853864)% | - |*"# passed CombinationCut" | 35102 | 129 |(0.3675004 +- 0.03229710)% | - |*"# passed CompositeCut" | 129 | 125 |( 96.89922 +- 1.526161)% | - |*"# passed vertex fit" | 129 | 129 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6187 | 61.870 | - | "Input2 size" | 100 | 825 | 8.2500 | + |*"# passed" | 100 | 37 |( 37.00000 +- 4.828043)% | + |*"# passed CombinationCut" | 34372 | 128 |(0.3723961 +- 0.03285413)% | + |*"# passed CompositeCut" | 128 | 123 |( 96.09375 +- 1.712469)% | + |*"# passed vertex fit" | 128 | 128 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 6189 | 61.890 | + | "Input2 size" | 100 | 805 | 8.0500 | MassConstrJpsi2eeMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 55 |( 55.00000 +- 4.974937)% | - |*"# passed CombinationCut" | 70296 | 237 |(0.3371458 +- 0.02186302)% | - |*"# passed CompositeCut" | 237 | 229 |( 96.62447 +- 1.173114)% | - |*"# passed vertex fit" | 237 | 237 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6187 | 61.870 | - | "Input2 size" | 100 | 1588 | 15.880 | + |*"# passed" | 100 | 54 |( 54.00000 +- 4.983974)% | + |*"# passed CombinationCut" | 70211 | 232 |(0.3304326 +- 0.02165809)% | + |*"# passed CompositeCut" | 232 | 226 |( 97.41379 +- 1.042072)% | + |*"# passed vertex fit" | 232 | 232 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 6189 | 61.890 | + | "Input2 size" | 100 | 1590 | 15.900 | ParticleWithBremMaker INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of particles corrected with brem" | 6187 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | + | "Nb of particles corrected with brem" | 6189 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | ParticleWithBremMaker.Functional... INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Delta(E)" | 711 | 7131602 | 10030.0 | 11808.0 | 423.00 | 87274.0 | - | "Nb photons added to single electrons" | 6187 | 746 | 0.12058 | 0.34257 | 0.0000 | 2.0000 | + | "Delta(E)" | 716 | 7166759 | 10009.0 | 11777.0 | 423.00 | 87274.0 | + | "Nb photons added to single electrons" | 6189 | 751 | 0.12134 | 0.34341 | 0.0000 | 2.0000 | Phi2KKMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 60 |( 60.00000 +- 4.898979)% | - |*"# passed CombinationCut" | 97891 | 4845 |( 4.949382 +- 0.06932368)% | - |*"# passed CompositeCut" | 4845 | 237 |( 4.891641 +- 0.3098773)% | - |*"# passed vertex fit" | 4845 | 4845 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6187 | 61.870 | - | "Input2 size" | 100 | 2287 | 22.870 | + |*"# passed CombinationCut" | 98593 | 4937 |( 5.007455 +- 0.06945927)% | + |*"# passed CompositeCut" | 4937 | 233 |( 4.719465 +- 0.3017984)% | + |*"# passed vertex fit" | 4937 | 4937 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 6189 | 61.890 | + | "Input2 size" | 100 | 2307 | 23.070 | PrCloneKillerDown INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "nTracksSelected" | 100 | 1454 | 14.540 | + | "nTracksSelected" | 100 | 1456 | 14.560 | PrForwardTrackingVelo INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Accepted input tracks" | 99 | 7404 | 74.788 | - | "Created long tracks" | 99 | 466 | 4.7071 | - | "Input tracks" | 99 | 7851 | 79.303 | + | "Created long tracks" | 99 | 463 | 4.6768 | + | "Input tracks" | 99 | 7833 | 79.121 | PrForwardTrackingVelo.PrAddUTHit... INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#UT hits added" | 345 | 1337 | 3.8754 | - | "#tracks with hits added" | 345 | + | "#UT hits added" | 343 | 1330 | 3.8776 | + | "#tracks with hits added" | 343 | PrKalmanFilterForward INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Pre outlier chi2 cut" | 52 | + | "Pre outlier chi2 cut" | 50 | | "chi2 cut" | 120 | - | "nIterations" | 466 | 1242 | 2.6652 | - | "nOutlierIterations" | 414 | 407 | 0.98309 | - | "nTracksInput" | 100 | 466 | 4.6600 | - | "nTracksOutput" | 100 | 294 | 2.9400 | + | "nIterations" | 463 | 1227 | 2.6501 | + | "nOutlierIterations" | 413 | 406 | 0.98305 | + | "nTracksInput" | 100 | 463 | 4.6300 | + | "nTracksOutput" | 100 | 293 | 2.9300 | PrKalmanFilterMatch INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Pre outlier chi2 cut" | 149 | - | "chi2 cut" | 615 | - | "nIterations" | 6681 | 14513 | 2.1723 | - | "nOutlierIterations" | 6532 | 4127 | 0.63181 | - | "nTracksInput" | 100 | 6681 | 66.810 | - | "nTracksOutput" | 100 | 5917 | 59.170 | + | "Pre outlier chi2 cut" | 146 | + | "chi2 cut" | 612 | + | "nIterations" | 6666 | 14480 | 2.1722 | + | "nOutlierIterations" | 6520 | 4109 | 0.63021 | + | "nTracksInput" | 100 | 6666 | 66.660 | + | "nTracksOutput" | 100 | 5908 | 59.080 | PrKalmanFilter_Downstream INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Pre outlier chi2 cut" | 187 | - | "chi2 cut" | 290 | - | "nIterations" | 1454 | 3766 | 2.5901 | - | "nOutlierIterations" | 1267 | 939 | 0.74112 | - | "nTracksInput" | 100 | 1454 | 14.540 | - | "nTracksOutput" | 100 | 977 | 9.7700 | + | "chi2 cut" | 291 | + | "nIterations" | 1456 | 3765 | 2.5859 | + | "nOutlierIterations" | 1269 | 938 | 0.73916 | + | "nTracksInput" | 100 | 1456 | 14.560 | + | "nTracksOutput" | 100 | 978 | 9.7800 | PrLongLivedTracking INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#Downstream tracks made" | 100 | 1513 | 15.130 | + | "#Downstream tracks made" | 100 | 1515 | 15.150 | PrMatchNN INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#MatchingChi2" | 19381 | 107686.7 | 5.5563 | - | "#MatchingTracks" | 99 | 6681 | 67.485 | - | "TracksMLP" | 19381 | 6573.57 | 0.33918 | + | "#MatchingChi2" | 19349 | 107520.6 | 5.5569 | + | "#MatchingTracks" | 99 | 6666 | 67.333 | + | "TracksMLP" | 19349 | 6563.198 | 0.33920 | PrMatchNN.PrAddUTHitsTool INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#UT hits added" | 5823 | 23249 | 3.9926 | - | "#tracks with hits added" | 5823 | + | "#UT hits added" | 5810 | 23199 | 3.9929 | + | "#tracks with hits added" | 5810 | PrStorePrUTHits INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#banks" | 100 | 18000 | 180.00 | @@ -410,95 +410,95 @@ PrStoreUTHit INFO Number of counters : 1 | "#banks" | 100 | 18000 | 180.00 | PromptHyperonHHCombiner INFO Number of counters : 8 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 1 |( 1.000000 +- 0.9949874)% | - |*"# passed Combination12Cut" | 185 | 68 |( 36.75676 +- 3.544784)% | - |*"# passed CombinationCut" | 308 | 45 |( 14.61039 +- 2.012603)% | - |*"# passed CompositeCut" | 45 | 1 |( 2.222222 +- 2.197392)% | - |*"# passed vertex fit" | 45 | 45 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 43 | 0.43000 | - | "Input2 size" | 100 | 639 | 6.3900 | - | "Input3 size" | 100 | 639 | 6.3900 | + |*"# passed" | 100 | 2 |( 2.000000 +- 1.400000)% | + |*"# passed Combination12Cut" | 199 | 74 |( 37.18593 +- 3.426031)% | + |*"# passed CombinationCut" | 368 | 54 |( 14.67391 +- 1.844548)% | + |*"# passed CompositeCut" | 54 | 2 |( 3.703704 +- 2.569958)% | + |*"# passed vertex fit" | 54 | 54 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 44 | 0.44000 | + | "Input2 size" | 100 | 653 | 6.5300 | + | "Input3 size" | 100 | 653 | 6.5300 | PromptHyperonHHHCombiner INFO Number of counters : 10 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 1 |( 1.000000 +- 0.9949874)% | - |*"# passed Combination123Cut" | 2134 | 1020 |( 47.79756 +- 1.081312)% | - |*"# passed Combination12Cut" | 561 | 253 |( 45.09804 +- 2.100832)% | - |*"# passed CombinationCut" | 4274 | 253 |( 5.919513 +- 0.3609737)% | - |*"# passed CompositeCut" | 253 | 5 |( 1.976285 +- 0.8750443)% | - |*"# passed vertex fit" | 253 | 253 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 71 | 0.71000 | - | "Input2 size" | 100 | 670 | 6.7000 | - | "Input3 size" | 100 | 872 | 8.7200 | - | "Input4 size" | 100 | 872 | 8.7200 | + |*"# passed Combination123Cut" | 2304 | 1032 |( 44.79167 +- 1.036000)% | + |*"# passed Combination12Cut" | 578 | 246 |( 42.56055 +- 2.056576)% | + |*"# passed CombinationCut" | 4898 | 300 |( 6.124949 +- 0.3426233)% | + |*"# passed CompositeCut" | 300 | 5 |( 1.666667 +- 0.7391186)% | + |*"# passed vertex fit" | 300 | 300 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 76 | 0.76000 | + | "Input2 size" | 100 | 680 | 6.8000 | + | "Input3 size" | 100 | 881 | 8.8100 | + | "Input4 size" | 100 | 881 | 8.8100 | SelectiveBremMatchAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 2251 | 22.510 | 20.449 | 0.0000 | 77.000 | - | "average chi2" | 2251 | 1617.261 | 0.71846 | 1.3755 | 1.8358e-07 | 27.343 | - | "average energy (track based)" | 5140 | 100622.8 | 19.576 | 56.391 | 0.0000 | 1173.6 | + | "#links in table" | 100 | 2250 | 22.500 | 20.376 | 0.0000 | 77.000 | + | "average chi2" | 2250 | 1611.169 | 0.71608 | 1.3740 | 1.8631e-07 | 27.343 | + | "average energy (track based)" | 5142 | 100605.6 | 19.565 | 56.186 | 0.0000 | 1127.5 | SelectiveElectronMatchAlg INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 7557 | 75.570 | 53.094 | 0.0000 | 372.00 | - | "average chi2" | 7557 | 28611.21 | 3.7861 | 10.341 | 3.6590e-06 | 242.64 | + | "#links in table" | 100 | 7557 | 75.570 | 53.022 | 0.0000 | 371.00 | + | "average chi2" | 7557 | 28610.41 | 3.7859 | 10.342 | 3.6684e-06 | 242.64 | SelectiveTrackMatchAlg INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 7568 | 75.680 | 53.107 | 0.0000 | 372.00 | - | "average chi2" | 7568 | 625.7106 | 0.082678 | 0.13337 | 7.8163e-07 | 1.8176 | + | "#links in table" | 100 | 7568 | 75.680 | 53.034 | 0.0000 | 371.00 | + | "average chi2" | 7568 | 625.8486 | 0.082697 | 0.13332 | 7.8550e-07 | 1.8176 | TBTCMatch INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 5893 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 5893 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 5893 | + |*"BadInput" | 5896 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 5896 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 5896 | TBTC_Forward INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 294 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 294 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 294 | + |*"BadInput" | 293 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 293 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 293 | TBTC_down INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 977 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 977 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 977 | + |*"BadInput" | 978 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 978 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 978 | ToolSvc.PPFactoryHybridFactory INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | ToolSvc.TrackFunctorFactory INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | TrackBeamLineVertexFinderSoA INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb PVs" | 100 | 472 | 4.7200 | + | "Nb PVs" | 100 | 473 | 4.7300 | VPClus INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb of Produced Clusters" | 100 | 179234 | 1792.3 | VeloClusterTrackingSIMD INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb of Produced Clusters" | 100 | 179234 | 1792.3 | - | "Nb of Produced Tracks" | 100 | 23069 | 230.69 | + | "Nb of Produced Tracks" | 100 | 23012 | 230.12 | ddLambda0Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 29 |( 29.00000 +- 4.537621)% | - |*"# passed CombinationCut" | 1503 | 342 |( 22.75449 +- 1.081411)% | - |*"# passed CompositeCut" | 342 | 43 |( 12.57310 +- 1.792795)% | - |*"# passed vertex fit" | 342 | 342 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 451 | 4.5100 | - | "Input2 size" | 100 | 461 | 4.6100 | + |*"# passed CombinationCut" | 1504 | 341 |( 22.67287 +- 1.079681)% | + |*"# passed CompositeCut" | 341 | 44 |( 12.90323 +- 1.815403)% | + |*"# passed vertex fit" | 341 | 341 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 450 | 4.5000 | + | "Input2 size" | 100 | 463 | 4.6300 | fromPrSeedingTracksV1Tracks INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb of converted Tracks" | 100 | 10300 | 103.00 | fromPrVeloTracksV1TracksMerger INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of converted Tracks" | 100 | 23069 | 230.69 | + | "Nb of converted Tracks" | 100 | 23012 | 230.12 | llLambda0Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 48 |( 48.00000 +- 4.995998)% | - |*"# passed CombinationCut" | 1421 | 336 |( 23.64532 +- 1.127180)% | - |*"# passed CompositeCut" | 336 | 137 |( 40.77381 +- 2.680883)% | - |*"# passed vertex fit" | 336 | 336 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 386 | 3.8600 | - | "Input2 size" | 100 | 473 | 4.7300 | + |*"# passed" | 100 | 50 |( 50.00000 +- 5.000000)% | + |*"# passed CombinationCut" | 1447 | 335 |( 23.15135 +- 1.108848)% | + |*"# passed CompositeCut" | 335 | 140 |( 41.79104 +- 2.694723)% | + |*"# passed vertex fit" | 335 | 335 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 392 | 3.9200 | + | "Input2 size" | 100 | 467 | 4.6700 | xiCombiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 20 |( 20.00000 +- 4.000000)% | - |*"# passed CombinationCut" | 666 | 87 |( 13.06306 +- 1.305833)% | - |*"# passed CompositeCut" | 87 | 71 |( 81.60920 +- 4.153462)% | - |*"# passed vertex fit" | 87 | 87 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 137 | 1.3700 | - | "Input2 size" | 100 | 505 | 5.0500 | + |*"# passed" | 100 | 19 |( 19.00000 +- 3.923009)% | + |*"# passed CombinationCut" | 690 | 91 |( 13.18841 +- 1.288132)% | + |*"# passed CompositeCut" | 91 | 76 |( 83.51648 +- 3.889469)% | + |*"# passed vertex fit" | 91 | 91 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 140 | 1.4000 | + | "Input2 size" | 100 | 501 | 5.0100 | -- GitLab From 40cda9727fbf6861a1aa6877a58616d8ed1f6877 Mon Sep 17 00:00:00 2001 From: Alexander Leon Gilman Date: Tue, 16 Nov 2021 10:46:13 +0100 Subject: [PATCH 14/22] revert refs --- .../refs/hlt2_reco_plus_thor_selections.ref | 14 +- ...eco_plus_thor_selections.ref.x86_64_v3-opt | 161 +++++++++--------- ...hlt2_reco_plus_thor_selections_fastest.ref | 16 +- ..._thor_selections_fastest.ref.x86_64_v3-opt | 152 ++++++++--------- 4 files changed, 170 insertions(+), 173 deletions(-) diff --git a/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections.ref b/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections.ref index 3ff746b9bc2..d85792f2f41 100644 --- a/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections.ref +++ b/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections.ref @@ -34,17 +34,17 @@ BremPIDeAlgFuture INFO Number of counters : 1 | "Table Size" | 100 | 14568 | 145.68 | 87.819 | 0.0000 | 412.00 | Bs2JPsiPhi_JPsi2MuMu_Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 0 |( 0.000000 +- 0.000000)% | + |*"# passed" | 100 | 14 |( 14.00000 +- 3.469870)% | |*"# passed CombinationCut" | 786 | 154 |( 19.59288 +- 1.415745)% | - |*"# passed CompositeCut" | 154 | 0 |( 0.000000 +- 0.000000)% | + |*"# passed CompositeCut" | 154 | 49 |( 31.81818 +- 3.753286)% | |*"# passed vertex fit" | 154 | 154 |( 100.0000 +- 0.000000)% | | "Input1 size" | 100 | 139 | 1.3900 | | "Input2 size" | 100 | 277 | 2.7700 | Bs2JPsiPhi_JPsi2ee_Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 0 |( 0.000000 +- 0.000000)% | + |*"# passed" | 100 | 16 |( 16.00000 +- 3.666061)% | |*"# passed CombinationCut" | 1452 | 308 |( 21.21212 +- 1.072849)% | - |*"# passed CompositeCut" | 308 | 0 |( 0.000000 +- 0.000000)% | + |*"# passed CompositeCut" | 308 | 98 |( 31.81818 +- 2.653974)% | |*"# passed vertex fit" | 308 | 308 |( 100.0000 +- 0.000000)% | | "Input1 size" | 100 | 221 | 2.2100 | | "Input2 size" | 100 | 277 | 2.7700 | @@ -57,8 +57,8 @@ CaloFutureClusterCovarianceAlg.E... INFO Number of counters : 1 CaloFutureClusterCovarianceAlg.E... INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Corrected Clusters: # cells " | 1174 | 5999 | 5.1099 | 1.7745 | 2.0000 | 14.000 | - | "Corrected Clusters: ET" | 1174 | 317801.2 | 270.70 | 284.59 | 35.600 | 4632.2 | - | "Corrected Clusters: size ratio" | 1174 | 444.1726 | 0.37834 | 0.29125 | -9.1809e-17 | 2.8281 | + | "Corrected Clusters: ET" | 1174 | 317801.1 | 270.70 | 284.59 | 35.600 | 4632.2 | + | "Corrected Clusters: size ratio" | 1174 | 444.1727 | 0.37834 | 0.29125 | -9.1809e-17 | 2.8281 | CaloFutureMergedPi0 INFO Number of counters : 12 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"Cluster without 2nd seed found" | 379 | 0 |( 0.000000 +- 0.000000)% | @@ -303,7 +303,7 @@ Hlt2PhotonFilter INFO Number of counters : 1 |*"Cut selection efficiency" | 7967 | 38 |(0.4769675 +- 0.07718960)% | HltPackedDataWriter INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Size of serialized data" | 28 | 161750 | 5776.8 | 11076.0 | 1220.0 | 44270.0 | + | "Size of serialized data" | 37 | 732858 | 19807.0 | 21832.0 | 1336.0 | 70120.0 | InEcalFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 11236 | 112.36 | 78.671 | 0.0000 | 577.00 | diff --git a/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections.ref.x86_64_v3-opt b/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections.ref.x86_64_v3-opt index 9053191f519..d91c258ddcf 100644 --- a/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections.ref.x86_64_v3-opt +++ b/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections.ref.x86_64_v3-opt @@ -8,8 +8,6 @@ Phi2KKMaker.LoKi::DistanceCalcul... SUCCESS #WARNINGS = 47 Message = 'T Phi2KKMaker.LoKi::DistanceCalcul... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 PromptHyperonHHHCombiner.LoKi::D... SUCCESS #WARNINGS = 34 Message = 'There is no convergency-III' PromptHyperonHHHCombiner.LoKi::D... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 -TrackBestTrackCreator.TrackMaste... SUCCESS #WARNINGS = 2 Message = 'Error in compute residual: non positive variance.' -TrackBestTrackCreator.TrackMaste... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 ddLambda0Combiner.LoKi::Distance... SUCCESS #WARNINGS = 6 Message = 'There is no convergency-III' ddLambda0Combiner.LoKi::Distance... SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 llLambda0Combiner.LoKi::Distance... SUCCESS #WARNINGS = 2 Message = 'There is no convergency-III' @@ -21,11 +19,11 @@ ApplicationMgr INFO Application Manager Terminated succe BremChi22IDFuture INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 14570 | 145.70 | 87.735 | 0.0000 | 410.00 | - | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | + | "#total tracks" | 100 | 28050 | 280.50 | 170.29 | 0.0000 | 1035.0 | BremMatchAlgFuture INFO Number of counters : 5 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#above threshold" | 100 | 881983 | 8819.8 | 8540.9 | 0.0000 | 36843.0 | - | "#chi2" | 359460 |1.683558e+09 | 4683.6 | 2882.6 | 0.0011016 | 9999.9 | + | "#chi2" | 359460 |1.683559e+09 | 4683.6 | 2882.6 | 0.0011016 | 9999.9 | | "#good tracks" | 100 | 9515 | 95.150 | 58.550 | 0.0000 | 251.00 | | "#links in table" | 100 | 359460 | 3594.6 | 3063.0 | 0.0000 | 12049.0 | | "#total calos" | 100 | 10298 | 102.98 | 48.402 | 0.0000 | 210.00 | @@ -34,17 +32,17 @@ BremPIDeAlgFuture INFO Number of counters : 1 | "Table Size" | 100 | 14570 | 145.70 | 87.735 | 0.0000 | 410.00 | Bs2JPsiPhi_JPsi2MuMu_Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 5 |( 5.000000 +- 2.179449)% | + |*"# passed" | 100 | 14 |( 14.00000 +- 3.469870)% | |*"# passed CombinationCut" | 750 | 152 |( 20.26667 +- 1.467846)% | - |*"# passed CompositeCut" | 152 | 12 |( 7.894737 +- 2.187204)% | + |*"# passed CompositeCut" | 152 | 52 |( 34.21053 +- 3.848011)% | |*"# passed vertex fit" | 152 | 152 |( 100.0000 +- 0.000000)% | | "Input1 size" | 100 | 137 | 1.3700 | | "Input2 size" | 100 | 270 | 2.7000 | Bs2JPsiPhi_JPsi2ee_Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 9 |( 9.000000 +- 2.861818)% | + |*"# passed" | 100 | 16 |( 16.00000 +- 3.666061)% | |*"# passed CombinationCut" | 1399 | 293 |( 20.94353 +- 1.087890)% | - |*"# passed CompositeCut" | 293 | 36 |( 12.28669 +- 1.917858)% | + |*"# passed CompositeCut" | 293 | 97 |( 33.10580 +- 2.749239)% | |*"# passed vertex fit" | 293 | 293 |( 100.0000 +- 0.000000)% | | "Input1 size" | 100 | 219 | 2.1900 | | "Input2 size" | 100 | 270 | 2.7000 | @@ -58,7 +56,7 @@ CaloFutureClusterCovarianceAlg.E... INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Corrected Clusters: # cells " | 1174 | 5999 | 5.1099 | 1.7745 | 2.0000 | 14.000 | | "Corrected Clusters: ET" | 1174 | 317801.2 | 270.70 | 284.59 | 35.600 | 4632.2 | - | "Corrected Clusters: size ratio" | 1174 | 444.1727 | 0.37834 | 0.29125 | -3.6723e-16 | 2.8281 | + | "Corrected Clusters: size ratio" | 1174 | 444.1726 | 0.37834 | 0.29125 | -3.6723e-16 | 2.8281 | CaloFutureMergedPi0 INFO Number of counters : 12 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"Cluster without 2nd seed found" | 379 | 0 |( 0.000000 +- 0.000000)% | @@ -88,7 +86,7 @@ CaloFutureMergedPi0.EcalSpread INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Corrected Clusters: # cells " | 94 | 594 | 6.3191 | 1.7577 | 4.0000 | 9.0000 | | "Corrected Clusters: ET" | 94 | 103801.8 | 1104.3 | 1178.3 | 34.600 | 9841.2 | - | "Corrected Clusters: size ratio" | 94 | 32.53922 | 0.34616 | 0.27227 | 0.066570 | 1.8140 | + | "Corrected Clusters: size ratio" | 94 | 32.53921 | 0.34616 | 0.27227 | 0.066570 | 1.8140 | CaloFutureShowerOverlap INFO Number of counters : 5 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Delta(E)" | 19041 | -595002.2 | -31.248 | 906.20 | -16337.0 | 12389.0 | @@ -144,63 +142,63 @@ DownstreamProtonsFilter INFO Number of counters : 1 |*"Cut selection efficiency" | 1188 | 587 |( 49.41077 +- 1.450546)% | FilteredPIDElectrons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6493 | 1436 |( 22.11613 +- 0.5150574)% | + |*"Cut selection efficiency" | 6494 | 1437 |( 22.12812 +- 0.5151177)% | FilteredPIDMuons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6493 | 839 |( 12.92161 +- 0.4162850)% | + |*"Cut selection efficiency" | 6494 | 839 |( 12.91962 +- 0.4162257)% | FilteredPIDkaons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6493 | 2409 |( 37.10149 +- 0.5995055)% | + |*"Cut selection efficiency" | 6494 | 2409 |( 37.09578 +- 0.5994404)% | FunctionalChargedProtoParticleMaker INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "CreatedProtos" | 8667 | + | "CreatedProtos" | 8668 | FunctionalParticleMaker#1 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed ProtoParticle filter" | 1367 | 1188 |( 86.90563 +- 0.9123930)% | - |*"# passed Track filter" | 8667 | 1367 |( 15.77247 +- 0.3915097)% | + |*"# passed Track filter" | 8668 | 1367 |( 15.77065 +- 0.3914687)% | | "Nb created anti-particles" | 100 | 594 | 5.9400 | 4.8204 | 0.0000 | 22.000 | | "Nb created particles" | 100 | 594 | 5.9400 | 4.6772 | 0.0000 | 21.000 | FunctionalParticleMaker#2 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed ProtoParticle filter" | 1367 | 1188 |( 86.90563 +- 0.9123930)% | - |*"# passed Track filter" | 8667 | 1367 |( 15.77247 +- 0.3915097)% | + |*"# passed Track filter" | 8668 | 1367 |( 15.77065 +- 0.3914687)% | | "Nb created anti-particles" | 100 | 594 | 5.9400 | 4.8204 | 0.0000 | 22.000 | | "Nb created particles" | 100 | 594 | 5.9400 | 4.6772 | 0.0000 | 21.000 | FunctionalParticleMaker#3 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6493 | 6182 |( 95.21023 +- 0.2650187)% | - |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | + |*"# passed ProtoParticle filter" | 6494 | 6182 |( 95.19557 +- 0.2653832)% | + |*"# passed Track filter" | 8668 | 6494 |( 74.91924 +- 0.4655942)% | | "Nb created anti-particles" | 100 | 3083 | 30.830 | 19.299 | 0.0000 | 89.000 | | "Nb created particles" | 100 | 3099 | 30.990 | 19.358 | 0.0000 | 84.000 | FunctionalParticleMaker#4 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6493 | 6182 |( 95.21023 +- 0.2650187)% | - |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | + |*"# passed ProtoParticle filter" | 6494 | 6182 |( 95.19557 +- 0.2653832)% | + |*"# passed Track filter" | 8668 | 6494 |( 74.91924 +- 0.4655942)% | | "Nb created anti-particles" | 100 | 3083 | 30.830 | 19.299 | 0.0000 | 89.000 | | "Nb created particles" | 100 | 3099 | 30.990 | 19.358 | 0.0000 | 84.000 | FunctionalParticleMaker#5 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6493 | 6182 |( 95.21023 +- 0.2650187)% | - |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | + |*"# passed ProtoParticle filter" | 6494 | 6182 |( 95.19557 +- 0.2653832)% | + |*"# passed Track filter" | 8668 | 6494 |( 74.91924 +- 0.4655942)% | | "Nb created anti-particles" | 100 | 3083 | 30.830 | 19.299 | 0.0000 | 89.000 | | "Nb created particles" | 100 | 3099 | 30.990 | 19.358 | 0.0000 | 84.000 | FunctionalParticleMaker#6 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6493 | 6493 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | - | "Nb created anti-particles" | 100 | 3236 | 32.360 | 20.402 | 0.0000 | 93.000 | + |*"# passed ProtoParticle filter" | 6494 | 6494 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 8668 | 6494 |( 74.91924 +- 0.4655942)% | + | "Nb created anti-particles" | 100 | 3237 | 32.370 | 20.432 | 0.0000 | 94.000 | | "Nb created particles" | 100 | 3257 | 32.570 | 20.373 | 0.0000 | 87.000 | FunctionalParticleMaker#7 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6493 | 6493 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | - | "Nb created anti-particles" | 100 | 3236 | 32.360 | 20.402 | 0.0000 | 93.000 | + |*"# passed ProtoParticle filter" | 6494 | 6494 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 8668 | 6494 |( 74.91924 +- 0.4655942)% | + | "Nb created anti-particles" | 100 | 3237 | 32.370 | 20.432 | 0.0000 | 94.000 | | "Nb created particles" | 100 | 3257 | 32.570 | 20.373 | 0.0000 | 87.000 | FunctionalParticleMaker#8 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6493 | 6493 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 8667 | 6493 |( 74.91635 +- 0.4656389)% | - | "Nb created anti-particles" | 100 | 3236 | 32.360 | 20.402 | 0.0000 | 93.000 | + |*"# passed ProtoParticle filter" | 6494 | 6494 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 8668 | 6494 |( 74.91924 +- 0.4655942)% | + | "Nb created anti-particles" | 100 | 3237 | 32.370 | 20.432 | 0.0000 | 94.000 | | "Nb created particles" | 100 | 3257 | 32.570 | 20.373 | 0.0000 | 87.000 | FutureCellularAutomatonAlg INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | @@ -211,11 +209,11 @@ FutureCellularAutomatonAlg INFO Number of counters : 4 FutureClusChi22ID INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 11236 | 112.36 | 78.674 | 0.0000 | 577.00 | - | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | + | "#total tracks" | 100 | 28050 | 280.50 | 170.29 | 0.0000 | 1035.0 | FutureEcalChi22ID INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 11236 | 112.36 | 78.674 | 0.0000 | 577.00 | - | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | + | "#total tracks" | 100 | 28050 | 280.50 | 170.29 | 0.0000 | 1035.0 | FutureEcalPIDeAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Table Size" | 100 | 11236 | 112.36 | 78.674 | 0.0000 | 577.00 | @@ -227,10 +225,10 @@ FutureEcalZSup INFO Number of counters : 1 |*"No bank found" | 100 | 0 |( 0.000000 +- 0.000000)% | FutureElectronMatchAlg INFO Number of counters : 5 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#above threshold" | 100 | 1033460 | 10335.0 | 15491.0 | 0.0000 | 1.2964e+05 | - | "#chi2" | 122255 |5.397869e+08 | 4415.3 | 2938.4 | 0.024819 | 9999.9 | + | "#above threshold" | 100 | 1033458 | 10335.0 | 15491.0 | 0.0000 | 1.2964e+05 | + | "#chi2" | 122257 |5.397928e+08 | 4415.2 | 2938.4 | 0.024819 | 9999.9 | | "#good tracks" | 100 | 9390 | 93.900 | 67.117 | 0.0000 | 508.00 | - | "#links in table" | 100 | 122255 | 1222.5 | 1914.5 | 0.0000 | 17173.0 | + | "#links in table" | 100 | 122257 | 1222.6 | 1914.7 | 0.0000 | 17175.0 | | "#total calos" | 100 | 8589 | 85.890 | 54.779 | 0.0000 | 289.00 | FutureHcalPIDeAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | @@ -244,7 +242,7 @@ FutureHcalZSup INFO Number of counters : 1 FutureInBremFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 15937 | 159.37 | 96.598 | 0.0000 | 442.00 | - | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | + | "#total tracks" | 100 | 28050 | 280.50 | 170.29 | 0.0000 | 1035.0 | | "#tracks in acceptance" | 100 | 10493 | 104.93 | 65.073 | 0.0000 | 273.00 | FutureNeutralProtoPAlg INFO Number of counters : 30 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | @@ -263,7 +261,7 @@ FutureNeutralProtoPAlg INFO Number of counters : 30 | "CaloNeutralID for Photon" | 10298 |3.928134e+08 | 38145.0 | 3554.9 | 33152.0 | 44151.0 | | "CaloNeutralID for Pi0Merged" | 379 |1.417681e+07 | 37406.0 | 3420.6 | 33294.0 | 43862.0 | | "CaloTrMatch for Photon" | 9794 | 1406768 | 143.64 | 192.58 | 4.0040 | 999.38 | - | "CaloTrMatch for Pi0Merged" | 376 | 8833.667 | 23.494 | 88.821 | 0.00024249 | 940.45 | + | "CaloTrMatch for Pi0Merged" | 376 | 8833.668 | 23.494 | 88.821 | 0.00024249 | 940.45 | | "ClusterAsX for Photon" | 10295 | 27.04689 | 0.0026272 | 0.20124 | -0.67370 | 0.71369 | | "ClusterAsY for Photon" | 10291 | 58.6078 | 0.0056951 | 0.19823 | -0.72460 | 0.71418 | | "IsNotH for Photon" | 10298 | 3963.82 | 0.38491 | 0.35057 | -1.0000 | 0.99502 | @@ -284,7 +282,7 @@ FutureNeutralProtoPAlg.CaloFutur... INFO Number of counters : 1 FuturePhotonMatchAlg INFO Number of counters : 5 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#above threshold" | 100 | 1501812 | 15018.0 | 17356.0 | 0.0000 | 1.3396e+05 | - | "#chi2" | 462634 |2.131802e+08 | 460.80 | 291.00 | 0.00024249 | 1000.0 | + | "#chi2" | 462634 |2.131799e+08 | 460.80 | 291.00 | 0.00024249 | 1000.0 | | "#good tracks" | 100 | 9390 | 93.900 | 67.117 | 0.0000 | 508.00 | | "#links in table" | 100 | 462634 | 4626.3 | 6383.8 | 0.0000 | 51964.0 | | "#total calos" | 100 | 15868 | 158.68 | 79.052 | 0.0000 | 366.00 | @@ -292,27 +290,27 @@ FutureTrack2EcalEAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 9390 | 93.900 | 67.117 | 0.0000 | 508.00 | | "#total energy" | 9390 | 27391.21 | 2.9171 | 3.7713 | -0.093026 | 66.674 | - | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | + | "#total tracks" | 100 | 28050 | 280.50 | 170.29 | 0.0000 | 1035.0 | FutureTrack2HcalEAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 8823 | 88.230 | 63.651 | 0.0000 | 490.00 | - | "#total energy" | 8823 | 50485.09 | 5.7220 | 10.566 | 0.0000 | 202.25 | - | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | + | "#total energy" | 8823 | 50506.48 | 5.7244 | 10.574 | 0.0000 | 202.25 | + | "#total tracks" | 100 | 28050 | 280.50 | 170.29 | 0.0000 | 1035.0 | Hlt2PhotonFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"Cut selection efficiency" | 7967 | 38 |(0.4769675 +- 0.07718960)% | HltPackedDataWriter INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Size of serialized data" | 32 | 410066 | 12815.0 | 15784.0 | 1220.0 | 53572.0 | + | "Size of serialized data" | 37 | 763636 | 20639.0 | 22708.0 | 1336.0 | 82800.0 | InEcalFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 11236 | 112.36 | 78.674 | 0.0000 | 577.00 | - | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | + | "#total tracks" | 100 | 28050 | 280.50 | 170.29 | 0.0000 | 1035.0 | | "#tracks in acceptance" | 100 | 9390 | 93.900 | 67.117 | 0.0000 | 508.00 | InHcalFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 11236 | 112.36 | 78.674 | 0.0000 | 577.00 | - | "#total tracks" | 100 | 28051 | 280.51 | 170.34 | 0.0000 | 1036.0 | + | "#total tracks" | 100 | 28050 | 280.50 | 170.29 | 0.0000 | 1035.0 | | "#tracks in acceptance" | 100 | 8823 | 88.230 | 63.651 | 0.0000 | 490.00 | LHCb__MDF__IOAlg INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | @@ -348,33 +346,33 @@ LongProtonsFilter INFO Number of counters : 1 MassConstrJpsi2MuMuMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 41 |( 41.00000 +- 4.918333)% | - |*"# passed CombinationCut" | 38658 | 141 |(0.3647369 +- 0.03066032)% | + |*"# passed CombinationCut" | 38670 | 141 |(0.3646237 +- 0.03065082)% | |*"# passed CompositeCut" | 141 | 137 |( 97.16312 +- 1.398175)% | |*"# passed vertex fit" | 141 | 141 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6493 | 64.930 | + | "Input1 size" | 100 | 6494 | 64.940 | | "Input2 size" | 100 | 839 | 8.3900 | MassConstrJpsi2eeMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 58 |( 58.00000 +- 4.935585)% | - |*"# passed CombinationCut" | 66268 | 226 |(0.3410394 +- 0.02264689)% | + |*"# passed CombinationCut" | 66379 | 226 |(0.3404691 +- 0.02260908)% | |*"# passed CompositeCut" | 226 | 219 |( 96.90265 +- 1.152414)% | |*"# passed vertex fit" | 226 | 226 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6493 | 64.930 | - | "Input2 size" | 100 | 1436 | 14.360 | + | "Input1 size" | 100 | 6494 | 64.940 | + | "Input2 size" | 100 | 1437 | 14.370 | ParticleWithBremMaker INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of particles corrected with brem" | 6493 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | + | "Nb of particles corrected with brem" | 6494 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | ParticleWithBremMaker.Functional... INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Delta(E)" | 707 | 7179529 | 10155.0 | 12079.0 | 423.00 | 88750.0 | - | "Nb photons added to single electrons" | 6493 | 739 | 0.11381 | 0.33274 | 0.0000 | 2.0000 | + | "Nb photons added to single electrons" | 6494 | 739 | 0.11380 | 0.33272 | 0.0000 | 2.0000 | Phi2KKMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 62 |( 62.00000 +- 4.853864)% | - |*"# passed CombinationCut" | 111511 | 6260 |( 5.613796 +- 0.06893245)% | + |*"# passed CombinationCut" | 111551 | 6260 |( 5.611783 +- 0.06890847)% | |*"# passed CompositeCut" | 6260 | 270 |( 4.313099 +- 0.2567638)% | |*"# passed vertex fit" | 6260 | 6260 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6493 | 64.930 | + | "Input1 size" | 100 | 6494 | 64.940 | | "Input2 size" | 100 | 2409 | 24.090 | PrForwardTrackingVelo INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | @@ -390,13 +388,13 @@ PrLongLivedTracking INFO Number of counters : 1 | "#Downstream tracks made" | 100 | 7173 | 71.730 | PrMatchNN INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#MatchingChi2" | 19381 | 107686.7 | 5.5563 | - | "#MatchingTracks" | 99 | 6681 | 67.485 | - | "TracksMLP" | 19381 | 6573.57 | 0.33918 | + | "#MatchingChi2" | 19382 | 107701.7 | 5.5568 | + | "#MatchingTracks" | 99 | 6682 | 67.495 | + | "TracksMLP" | 19382 | 6573.627 | 0.33916 | PrMatchNN.PrAddUTHitsTool INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#UT hits added" | 5823 | 23249 | 3.9926 | - | "#tracks with hits added" | 5823 | + | "#UT hits added" | 5824 | 23253 | 3.9926 | + | "#tracks with hits added" | 5824 | PrStorePrUTHits INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#banks" | 100 | 18000 | 180.00 | @@ -440,36 +438,35 @@ ToolSvc.TrackFunctorFactory INFO Number of counters : 1 TrackBeamLineVertexFinderSoA INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb PVs" | 100 | 472 | 4.7200 | -TrackBestTrackCreator INFO Number of counters : 33 +TrackBestTrackCreator INFO Number of counters : 32 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 30925 | 0 |( 0.000000 +- 0.000000)% | + |*"BadInput" | 30924 | 0 |( 0.000000 +- 0.000000)% | |*"Downstream.badChisq" | 2302 | 1067 |( 46.35100 +- 1.039340)% | - | "Downstream.chisqProbSum" | 2302 | 392.0154 | 0.17029 | + | "Downstream.chisqProbSum" | 2302 | 392.0087 | 0.17029 | |*"Downstream.flipCharge" | 2302 | 0 |( 0.000000 +- 0.000000)% | - | "Downstream.ghostProbability" | 2302 | 1074.545 | 0.46679 | + | "Downstream.ghostProbability" | 2302 | 1074.548 | 0.46679 | | "Downstream.numOutliers" | 2302 | 2475 | 1.0752 | - |*"FitFailed" | 30925 | 2 |(0.006467259 +- 0.004572895)% | - | "Long.FitFailed" | 2 | 2 | 1.0000 | - |*"Long.badChisq" | 8255 | 2783 |( 33.71290 +- 0.5203002)% | - | "Long.chisqProbSum" | 8255 | 2055.67 | 0.24902 | - |*"Long.flipCharge" | 8255 | 1 |(0.01211387 +- 0.01211314)% | - | "Long.ghostProbability" | 8255 | 1473.899 | 0.17855 | - | "Long.numOutliers" | 8255 | 9149 | 1.1083 | - |*"Ttrack.badChisq" | 3376 | 96 |( 2.843602 +- 0.2860677)% | - | "Ttrack.chisqProbSum" | 3376 | 1287.203 | 0.38128 | - |*"Ttrack.flipCharge" | 3376 | 118 |( 3.495261 +- 0.3160916)% | - | "Ttrack.ghostProbability" | 3376 | 306.6537 | 0.090833 | - | "Ttrack.numOutliers" | 3376 | 1370 | 0.40581 | + |*"FitFailed" | 30924 | 0 |( 0.000000 +- 0.000000)% | + |*"Long.badChisq" | 8258 | 2786 |( 33.73698 +- 0.5202970)% | + | "Long.chisqProbSum" | 8258 | 2055.666 | 0.24893 | + |*"Long.flipCharge" | 8258 | 1 |(0.01210947 +- 0.01210874)% | + | "Long.ghostProbability" | 8258 | 1476.197 | 0.17876 | + | "Long.numOutliers" | 8258 | 9158 | 1.1090 | + |*"Ttrack.badChisq" | 3375 | 96 |( 2.844444 +- 0.2861513)% | + | "Ttrack.chisqProbSum" | 3375 | 1287.185 | 0.38139 | + |*"Ttrack.flipCharge" | 3375 | 118 |( 3.496296 +- 0.3161835)% | + | "Ttrack.ghostProbability" | 3375 | 306.3021 | 0.090756 | + | "Ttrack.numOutliers" | 3375 | 1370 | 0.40593 | |*"Upstream.badChisq" | 979 | 220 |( 22.47191 +- 1.334007)% | - | "Upstream.chisqProbSum" | 979 | 318.9529 | 0.32579 | + | "Upstream.chisqProbSum" | 979 | 318.9528 | 0.32579 | |*"Upstream.flipCharge" | 982 | 22 |( 2.240326 +- 0.4722584)% | | "Upstream.ghostProbability" | 982 | 235.0278 | 0.23934 | | "Upstream.numOutliers" | 982 | 857 | 0.87271 | - |*"Velo.badChisq" | 6973 | 1567 |( 22.47239 +- 0.4998538)% | - | "Velo.chisqProbSum" | 6973 | 2195.331 | 0.31483 | - |*"Velo.flipCharge" | 7270 | 0 |( 0.000000 +- 0.000000)% | - | "Velo.ghostProbability" | 7270 | 1698.515 | 0.23363 | - | "Velo.numOutliers" | 7270 | 9706 | 1.3351 | + |*"Velo.badChisq" | 6972 | 1567 |( 22.47562 +- 0.4999151)% | + | "Velo.chisqProbSum" | 6972 | 2194.844 | 0.31481 | + |*"Velo.flipCharge" | 7269 | 0 |( 0.000000 +- 0.000000)% | + | "Velo.ghostProbability" | 7269 | 1697.516 | 0.23353 | + | "Velo.numOutliers" | 7269 | 9706 | 1.3353 | |*"VeloBackward.badChisq" | 8552 | 379 |( 4.431712 +- 0.2225404)% | | "VeloBackward.chisqProbSum" | 8552 | 3964.336 | 0.46356 | |*"VeloBackward.flipCharge" | 8738 | 0 |( 0.000000 +- 0.000000)% | @@ -507,7 +504,7 @@ fromPrForwardTracksV1Tracks INFO Number of counters : 1 | "Nb of converted Tracks" | 100 | 6528 | 65.280 | fromPrMatchTracksV1Tracks INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of converted Tracks" | 100 | 6681 | 66.810 | + | "Nb of converted Tracks" | 100 | 6682 | 66.820 | fromPrSeedingTracksV1Tracks INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb of converted Tracks" | 100 | 10300 | 103.00 | diff --git a/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections_fastest.ref b/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections_fastest.ref index aed00690e91..d2cec960d1b 100644 --- a/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections_fastest.ref +++ b/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections_fastest.ref @@ -23,17 +23,17 @@ BremPIDeAlgFuture INFO Number of counters : 1 | "Table Size" | 100 | 6189 | 61.890 | 36.640 | 0.0000 | 148.00 | Bs2JPsiPhi_JPsi2MuMu_Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 0 |( 0.000000 +- 0.000000)% | + |*"# passed" | 100 | 10 |( 10.00000 +- 3.000000)% | |*"# passed CombinationCut" | 644 | 134 |( 20.80745 +- 1.599590)% | - |*"# passed CompositeCut" | 134 | 0 |( 0.000000 +- 0.000000)% | + |*"# passed CompositeCut" | 134 | 46 |( 34.32836 +- 4.101692)% | |*"# passed vertex fit" | 134 | 134 |( 100.0000 +- 0.000000)% | | "Input1 size" | 100 | 123 | 1.2300 | | "Input2 size" | 100 | 233 | 2.3300 | Bs2JPsiPhi_JPsi2ee_Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 0 |( 0.000000 +- 0.000000)% | + |*"# passed" | 100 | 14 |( 14.00000 +- 3.469870)% | |*"# passed CombinationCut" | 1205 | 238 |( 19.75104 +- 1.146888)% | - |*"# passed CompositeCut" | 238 | 0 |( 0.000000 +- 0.000000)% | + |*"# passed CompositeCut" | 238 | 94 |( 39.49580 +- 3.168690)% | |*"# passed vertex fit" | 238 | 238 |( 100.0000 +- 0.000000)% | | "Input1 size" | 100 | 226 | 2.2600 | | "Input2 size" | 100 | 233 | 2.3300 | @@ -46,7 +46,7 @@ CaloFutureClusterCovarianceAlg.E... INFO Number of counters : 1 CaloFutureClusterCovarianceAlg.E... INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Corrected Clusters: # cells " | 1174 | 5999 | 5.1099 | 1.7745 | 2.0000 | 14.000 | - | "Corrected Clusters: ET" | 1174 | 317801.2 | 270.70 | 284.59 | 35.600 | 4632.2 | + | "Corrected Clusters: ET" | 1174 | 317801.1 | 270.70 | 284.59 | 35.600 | 4632.2 | | "Corrected Clusters: size ratio" | 1174 | 444.1727 | 0.37834 | 0.29125 | -9.1809e-17 | 2.8281 | CaloFutureMergedPi0 INFO Number of counters : 12 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | @@ -281,7 +281,7 @@ Hlt2PhotonFilter INFO Number of counters : 1 |*"Cut selection efficiency" | 8595 | 40 |(0.4653869 +- 0.07341270)% | HltPackedDataWriter INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Size of serialized data" | 29 | 94898 | 3272.3 | 5894.4 | 1212.0 | 32242.0 | + | "Size of serialized data" | 35 | 481708 | 13763.0 | 16510.0 | 1212.0 | 65376.0 | InEcalFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 10890 | 108.90 | 74.310 | 0.0000 | 544.00 | @@ -438,11 +438,11 @@ SelectiveBremMatchAlg INFO Number of counters : 3 SelectiveElectronMatchAlg INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 7557 | 75.570 | 53.022 | 0.0000 | 371.00 | - | "average chi2" | 7557 | 28610.41 | 3.7859 | 10.342 | 3.6684e-06 | 242.64 | + | "average chi2" | 7557 | 28610.42 | 3.7859 | 10.342 | 3.6684e-06 | 242.64 | SelectiveTrackMatchAlg INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 7568 | 75.680 | 53.034 | 0.0000 | 371.00 | - | "average chi2" | 7568 | 625.8486 | 0.082697 | 0.13332 | 7.8550e-07 | 1.8176 | + | "average chi2" | 7568 | 625.8487 | 0.082697 | 0.13332 | 7.8550e-07 | 1.8176 | TBTCMatch INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"BadInput" | 5896 | 0 |( 0.000000 +- 0.000000)% | diff --git a/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections_fastest.ref.x86_64_v3-opt b/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections_fastest.ref.x86_64_v3-opt index e318e5f2dda..75ecb644e78 100644 --- a/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections_fastest.ref.x86_64_v3-opt +++ b/Hlt/Hlt2Conf/tests/refs/hlt2_reco_plus_thor_selections_fastest.ref.x86_64_v3-opt @@ -16,24 +16,24 @@ ApplicationMgr INFO Application Manager Finalized succes ApplicationMgr INFO Application Manager Terminated successfully BremChi22IDFuture INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 6187 | 61.870 | 36.643 | 0.0000 | 148.00 | + | "#links in table" | 100 | 6188 | 61.880 | 36.636 | 0.0000 | 148.00 | | "#total tracks" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | BremPIDeAlgFuture INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Table Size" | 100 | 6187 | 61.870 | 36.643 | 0.0000 | 148.00 | + | "Table Size" | 100 | 6188 | 61.880 | 36.636 | 0.0000 | 148.00 | Bs2JPsiPhi_JPsi2MuMu_Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 3 |( 3.000000 +- 1.705872)% | + |*"# passed" | 100 | 10 |( 10.00000 +- 3.000000)% | |*"# passed CombinationCut" | 665 | 138 |( 20.75188 +- 1.572579)% | - |*"# passed CompositeCut" | 138 | 14 |( 10.14493 +- 2.570137)% | + |*"# passed CompositeCut" | 138 | 48 |( 34.78261 +- 4.054369)% | |*"# passed vertex fit" | 138 | 138 |( 100.0000 +- 0.000000)% | | "Input1 size" | 100 | 125 | 1.2500 | | "Input2 size" | 100 | 237 | 2.3700 | Bs2JPsiPhi_JPsi2ee_Combiner INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed" | 100 | 8 |( 8.000000 +- 2.712932)% | + |*"# passed" | 100 | 14 |( 14.00000 +- 3.469870)% | |*"# passed CombinationCut" | 1250 | 258 |( 20.64000 +- 1.144724)% | - |*"# passed CompositeCut" | 258 | 37 |( 14.34109 +- 2.182064)% | + |*"# passed CompositeCut" | 258 | 107 |( 41.47287 +- 3.067262)% | |*"# passed vertex fit" | 258 | 258 |( 100.0000 +- 0.000000)% | | "Input1 size" | 100 | 229 | 2.2900 | | "Input2 size" | 100 | 237 | 2.3700 | @@ -87,13 +87,13 @@ CaloFutureShowerOverlap INFO Number of counters : 5 | "negative E clusters (removed)" | 100 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | ClassifyPhotonElectronAlg INFO Number of counters : 12 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Electron Delta(E)" | 5879 | 1155453 | 196.54 | 193.30 | -2313.6 | 2485.9 | + | "Electron Delta(E)" | 5879 | 1155449 | 196.54 | 193.29 | -2313.6 | 2485.9 | | "Electron Delta(X)" | 5879 | -2404.116 | -0.40893 | 12.096 | -22.782 | 22.326 | | "Electron Delta(Y)" | 5879 | -2610.63 | -0.44406 | 12.034 | -22.782 | 22.326 | | "Electron Delta(Z)" | 5879 | 400313.1 | 68.092 | 12.439 | 23.990 | 126.86 | - | "Electron corrected energy" | 5879 |4.041049e+07 | 6873.7 | 7119.8 | 397.46 | 91547.0 | + | "Electron corrected energy" | 5879 |4.041049e+07 | 6873.7 | 7119.8 | 397.47 | 91547.0 | | "Photon Delta(E)" | 10918 | 798539.6 | 73.140 | 145.88 | -2545.4 | 3183.9 | - | "Photon Delta(X)" | 10918 | -2082.637 | -0.19075 | 12.180 | -22.782 | 22.327 | + | "Photon Delta(X)" | 10918 | -2082.636 | -0.19075 | 12.180 | -22.782 | 22.327 | | "Photon Delta(Y)" | 10918 | -932.3072 | -0.085392 | 12.190 | -22.782 | 22.326 | | "Photon Delta(Z)" | 10918 | 644035.9 | 58.988 | 11.889 | 24.107 | 113.40 | | "Photon corrected energy" | 10918 |4.503741e+07 | 4125.1 | 5949.3 | 253.12 | 1.1665e+05 | @@ -109,7 +109,7 @@ ClassifyPhotonElectronAlg.CaloFu... INFO Number of counters : 6 | "Pileup subtracted ratio" | 16797 | 16797 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | CloneKillerMatch INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "nTracksSelected" | 100 | 6681 | 66.810 | + | "nTracksSelected" | 100 | 6682 | 66.820 | CopyParticlesWithPVRelations.Gen... INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "IP->(DI)GAMMA" | 249 | @@ -130,69 +130,69 @@ DeterministicPrescaler#4 INFO Number of counters : 1 |*"#accept" | 100 | 100 |( 100.0000 +- 0.000000)% | DownstreamPionsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 874 | 461 |( 52.74600 +- 1.688723)% | + |*"Cut selection efficiency" | 873 | 461 |( 52.80641 +- 1.689576)% | DownstreamProtonsFilter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 874 | 451 |( 51.60183 +- 1.690407)% | + |*"Cut selection efficiency" | 873 | 451 |( 51.66094 +- 1.691310)% | FilteredPIDElectrons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6187 | 1588 |( 25.66672 +- 0.5553116)% | + |*"Cut selection efficiency" | 6188 | 1589 |( 25.67873 +- 0.5553518)% | FilteredPIDMuons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6187 | 825 |( 13.33441 +- 0.4321855)% | + |*"Cut selection efficiency" | 6188 | 825 |( 13.33226 +- 0.4321210)% | FilteredPIDkaons INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Cut selection efficiency" | 6187 | 2287 |( 36.96460 +- 0.6136846)% | + |*"Cut selection efficiency" | 6188 | 2287 |( 36.95863 +- 0.6136145)% | FunctionalChargedProtoParticleMaker INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "CreatedProtos" | 7164 | + | "CreatedProtos" | 7163 | FunctionalParticleMaker#1 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 977 | 874 |( 89.45752 +- 0.9824998)% | - |*"# passed Track filter" | 7164 | 977 |( 13.63763 +- 0.4054656)% | - | "Nb created anti-particles" | 100 | 438 | 4.3800 | 3.1170 | 0.0000 | 16.000 | + |*"# passed ProtoParticle filter" | 975 | 873 |( 89.53846 +- 0.9801675)% | + |*"# passed Track filter" | 7163 | 975 |( 13.61162 +- 0.4051679)% | + | "Nb created anti-particles" | 100 | 437 | 4.3700 | 3.1102 | 0.0000 | 16.000 | | "Nb created particles" | 100 | 436 | 4.3600 | 3.4103 | 0.0000 | 14.000 | FunctionalParticleMaker#2 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 977 | 874 |( 89.45752 +- 0.9824998)% | - |*"# passed Track filter" | 7164 | 977 |( 13.63763 +- 0.4054656)% | - | "Nb created anti-particles" | 100 | 438 | 4.3800 | 3.1170 | 0.0000 | 16.000 | + |*"# passed ProtoParticle filter" | 975 | 873 |( 89.53846 +- 0.9801675)% | + |*"# passed Track filter" | 7163 | 975 |( 13.61162 +- 0.4051679)% | + | "Nb created anti-particles" | 100 | 437 | 4.3700 | 3.1102 | 0.0000 | 16.000 | | "Nb created particles" | 100 | 436 | 4.3600 | 3.4103 | 0.0000 | 14.000 | FunctionalParticleMaker#3 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6187 | 5900 |( 95.36124 +- 0.2673910)% | - |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | + |*"# passed ProtoParticle filter" | 6188 | 5900 |( 95.34583 +- 0.2677915)% | + |*"# passed Track filter" | 7163 | 6188 |( 86.38838 +- 0.4051679)% | | "Nb created anti-particles" | 100 | 2927 | 29.270 | 17.496 | 0.0000 | 69.000 | | "Nb created particles" | 100 | 2973 | 29.730 | 17.943 | 0.0000 | 70.000 | FunctionalParticleMaker#4 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6187 | 5900 |( 95.36124 +- 0.2673910)% | - |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | + |*"# passed ProtoParticle filter" | 6188 | 5900 |( 95.34583 +- 0.2677915)% | + |*"# passed Track filter" | 7163 | 6188 |( 86.38838 +- 0.4051679)% | | "Nb created anti-particles" | 100 | 2927 | 29.270 | 17.496 | 0.0000 | 69.000 | | "Nb created particles" | 100 | 2973 | 29.730 | 17.943 | 0.0000 | 70.000 | FunctionalParticleMaker#5 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6187 | 5900 |( 95.36124 +- 0.2673910)% | - |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | + |*"# passed ProtoParticle filter" | 6188 | 5900 |( 95.34583 +- 0.2677915)% | + |*"# passed Track filter" | 7163 | 6188 |( 86.38838 +- 0.4051679)% | | "Nb created anti-particles" | 100 | 2927 | 29.270 | 17.496 | 0.0000 | 69.000 | | "Nb created particles" | 100 | 2973 | 29.730 | 17.943 | 0.0000 | 70.000 | FunctionalParticleMaker#6 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6187 | 6187 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | - | "Nb created anti-particles" | 100 | 3064 | 30.640 | 18.435 | 0.0000 | 79.000 | + |*"# passed ProtoParticle filter" | 6188 | 6188 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 7163 | 6188 |( 86.38838 +- 0.4051679)% | + | "Nb created anti-particles" | 100 | 3065 | 30.650 | 18.429 | 0.0000 | 79.000 | | "Nb created particles" | 100 | 3123 | 31.230 | 18.901 | 0.0000 | 74.000 | FunctionalParticleMaker#7 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6187 | 6187 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | - | "Nb created anti-particles" | 100 | 3064 | 30.640 | 18.435 | 0.0000 | 79.000 | + |*"# passed ProtoParticle filter" | 6188 | 6188 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 7163 | 6188 |( 86.38838 +- 0.4051679)% | + | "Nb created anti-particles" | 100 | 3065 | 30.650 | 18.429 | 0.0000 | 79.000 | | "Nb created particles" | 100 | 3123 | 31.230 | 18.901 | 0.0000 | 74.000 | FunctionalParticleMaker#8 INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"# passed ProtoParticle filter" | 6187 | 6187 |( 100.0000 +- 0.000000)% | - |*"# passed Track filter" | 7164 | 6187 |( 86.36237 +- 0.4054656)% | - | "Nb created anti-particles" | 100 | 3064 | 30.640 | 18.435 | 0.0000 | 79.000 | + |*"# passed ProtoParticle filter" | 6188 | 6188 |( 100.0000 +- 0.000000)% | + |*"# passed Track filter" | 7163 | 6188 |( 86.38838 +- 0.4051679)% | + | "Nb created anti-particles" | 100 | 3065 | 30.650 | 18.429 | 0.0000 | 79.000 | | "Nb created particles" | 100 | 3123 | 31.230 | 18.901 | 0.0000 | 74.000 | FutureCellularAutomatonAlg INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | @@ -228,7 +228,7 @@ FutureHcalZSup INFO Number of counters : 1 |*"No bank found" | 100 | 0 |( 0.000000 +- 0.000000)% | FutureInBremFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 100 | 7164 | 71.640 | 41.677 | 0.0000 | 165.00 | + | "#links in table" | 100 | 7163 | 71.630 | 41.682 | 0.0000 | 165.00 | | "#total tracks" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | | "#tracks in acceptance" | 100 | 5140 | 51.400 | 30.599 | 0.0000 | 117.00 | FutureNeutralProtoPAlg INFO Number of counters : 30 @@ -248,7 +248,7 @@ FutureNeutralProtoPAlg INFO Number of counters : 30 | "CaloNeutralID for Photon" | 10918 |4.171283e+08 | 38206.0 | 3553.5 | 33152.0 | 44151.0 | | "CaloNeutralID for Pi0Merged" | 379 |1.417681e+07 | 37406.0 | 3420.6 | 33294.0 | 43862.0 | | "CaloTrMatch for Photon" | 953 | 18154.85 | 19.050 | 8.9416 | 10.007 | 75.811 | - | "CaloTrMatch for Pi0Merged" | 295 | 1096.958 | 3.7185 | 5.2229 | 0.011918 | 38.646 | + | "CaloTrMatch for Pi0Merged" | 295 | 1096.957 | 3.7185 | 5.2229 | 0.011918 | 38.646 | | "ClusterAsX for Photon" | 10915 | 19.38025 | 0.0017756 | 0.20296 | -0.67370 | 0.72299 | | "ClusterAsY for Photon" | 10911 | 60.95616 | 0.0055867 | 0.20018 | -0.72460 | 0.71418 | | "IsNotH for Photon" | 10918 | 4007.696 | 0.36707 | 0.34900 | -1.0000 | 0.99502 | @@ -269,7 +269,7 @@ FutureNeutralProtoPAlg.CaloFutur... INFO Number of counters : 1 FutureTrack2EcalEAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 9113 | 91.130 | 63.468 | 0.0000 | 479.00 | - | "#total energy" | 9113 | 26527.29 | 2.9109 | 3.7697 | -0.093026 | 66.674 | + | "#total energy" | 9113 | 26537.17 | 2.9120 | 3.7708 | -0.093026 | 66.674 | | "#total tracks" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | FutureTrack2HcalEAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | @@ -281,7 +281,7 @@ Hlt2PhotonFilter INFO Number of counters : 1 |*"Cut selection efficiency" | 8596 | 40 |(0.4653327 +- 0.07340418)% | HltPackedDataWriter INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Size of serialized data" | 33 | 250200 | 7581.8 | 10991.0 | 1212.0 | 41106.0 | + | "Size of serialized data" | 35 | 498238 | 14235.0 | 17816.0 | 1212.0 | 65376.0 | InEcalFutureAcceptanceAlg INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 10889 | 108.89 | 74.381 | 0.0000 | 545.00 | @@ -326,37 +326,37 @@ LongProtonsFilter INFO Number of counters : 1 MassConstrJpsi2MuMuMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 38 |( 38.00000 +- 4.853864)% | - |*"# passed CombinationCut" | 35102 | 129 |(0.3675004 +- 0.03229710)% | + |*"# passed CombinationCut" | 35104 | 129 |(0.3674795 +- 0.03229526)% | |*"# passed CompositeCut" | 129 | 125 |( 96.89922 +- 1.526161)% | |*"# passed vertex fit" | 129 | 129 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6187 | 61.870 | + | "Input1 size" | 100 | 6188 | 61.880 | | "Input2 size" | 100 | 825 | 8.2500 | MassConstrJpsi2eeMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 55 |( 55.00000 +- 4.974937)% | - |*"# passed CombinationCut" | 70296 | 237 |(0.3371458 +- 0.02186302)% | + |*"# passed CombinationCut" | 70316 | 237 |(0.3370499 +- 0.02185682)% | |*"# passed CompositeCut" | 237 | 229 |( 96.62447 +- 1.173114)% | |*"# passed vertex fit" | 237 | 237 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6187 | 61.870 | - | "Input2 size" | 100 | 1588 | 15.880 | + | "Input1 size" | 100 | 6188 | 61.880 | + | "Input2 size" | 100 | 1589 | 15.890 | ParticleWithBremMaker INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of particles corrected with brem" | 6187 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | + | "Nb of particles corrected with brem" | 6188 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | ParticleWithBremMaker.Functional... INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Delta(E)" | 711 | 7131602 | 10030.0 | 11808.0 | 423.00 | 87274.0 | - | "Nb photons added to single electrons" | 6187 | 746 | 0.12058 | 0.34257 | 0.0000 | 2.0000 | + | "Nb photons added to single electrons" | 6188 | 746 | 0.12056 | 0.34254 | 0.0000 | 2.0000 | Phi2KKMaker INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"# passed" | 100 | 60 |( 60.00000 +- 4.898979)% | - |*"# passed CombinationCut" | 97891 | 4845 |( 4.949382 +- 0.06932368)% | - |*"# passed CompositeCut" | 4845 | 237 |( 4.891641 +- 0.3098773)% | - |*"# passed vertex fit" | 4845 | 4845 |( 100.0000 +- 0.000000)% | - | "Input1 size" | 100 | 6187 | 61.870 | + |*"# passed CombinationCut" | 97899 | 4846 |( 4.949999 +- 0.06932494)% | + |*"# passed CompositeCut" | 4846 | 237 |( 4.890631 +- 0.3098150)% | + |*"# passed vertex fit" | 4846 | 4846 |( 100.0000 +- 0.000000)% | + | "Input1 size" | 100 | 6188 | 61.880 | | "Input2 size" | 100 | 2287 | 22.870 | PrCloneKillerDown INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "nTracksSelected" | 100 | 1454 | 14.540 | + | "nTracksSelected" | 100 | 1452 | 14.520 | PrForwardTrackingVelo INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Accepted input tracks" | 99 | 7404 | 74.788 | @@ -370,7 +370,7 @@ PrKalmanFilterForward INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Pre outlier chi2 cut" | 52 | | "chi2 cut" | 120 | - | "nIterations" | 466 | 1242 | 2.6652 | + | "nIterations" | 466 | 1245 | 2.6717 | | "nOutlierIterations" | 414 | 407 | 0.98309 | | "nTracksInput" | 100 | 466 | 4.6600 | | "nTracksOutput" | 100 | 294 | 2.9400 | @@ -378,30 +378,30 @@ PrKalmanFilterMatch INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Pre outlier chi2 cut" | 149 | | "chi2 cut" | 615 | - | "nIterations" | 6681 | 14513 | 2.1723 | - | "nOutlierIterations" | 6532 | 4127 | 0.63181 | - | "nTracksInput" | 100 | 6681 | 66.810 | - | "nTracksOutput" | 100 | 5917 | 59.170 | + | "nIterations" | 6682 | 14516 | 2.1724 | + | "nOutlierIterations" | 6533 | 4127 | 0.63172 | + | "nTracksInput" | 100 | 6682 | 66.820 | + | "nTracksOutput" | 100 | 5918 | 59.180 | PrKalmanFilter_Downstream INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Pre outlier chi2 cut" | 187 | | "chi2 cut" | 290 | - | "nIterations" | 1454 | 3766 | 2.5901 | - | "nOutlierIterations" | 1267 | 939 | 0.74112 | - | "nTracksInput" | 100 | 1454 | 14.540 | - | "nTracksOutput" | 100 | 977 | 9.7700 | + | "nIterations" | 1452 | 3763 | 2.5916 | + | "nOutlierIterations" | 1265 | 939 | 0.74229 | + | "nTracksInput" | 100 | 1452 | 14.520 | + | "nTracksOutput" | 100 | 975 | 9.7500 | PrLongLivedTracking INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#Downstream tracks made" | 100 | 1513 | 15.130 | + | "#Downstream tracks made" | 100 | 1511 | 15.110 | PrMatchNN INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#MatchingChi2" | 19381 | 107686.7 | 5.5563 | - | "#MatchingTracks" | 99 | 6681 | 67.485 | - | "TracksMLP" | 19381 | 6573.57 | 0.33918 | + | "#MatchingChi2" | 19382 | 107701.7 | 5.5568 | + | "#MatchingTracks" | 99 | 6682 | 67.495 | + | "TracksMLP" | 19382 | 6573.627 | 0.33916 | PrMatchNN.PrAddUTHitsTool INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#UT hits added" | 5823 | 23249 | 3.9926 | - | "#tracks with hits added" | 5823 | + | "#UT hits added" | 5824 | 23253 | 3.9926 | + | "#tracks with hits added" | 5824 | PrStorePrUTHits INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#banks" | 100 | 18000 | 180.00 | @@ -438,16 +438,16 @@ SelectiveBremMatchAlg INFO Number of counters : 3 SelectiveElectronMatchAlg INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 7557 | 75.570 | 53.094 | 0.0000 | 372.00 | - | "average chi2" | 7557 | 28611.21 | 3.7861 | 10.341 | 3.6590e-06 | 242.64 | + | "average chi2" | 7557 | 28610.24 | 3.7859 | 10.341 | 3.6590e-06 | 242.64 | SelectiveTrackMatchAlg INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 100 | 7568 | 75.680 | 53.107 | 0.0000 | 372.00 | - | "average chi2" | 7568 | 625.7106 | 0.082678 | 0.13337 | 7.8163e-07 | 1.8176 | + | "average chi2" | 7568 | 625.624 | 0.082667 | 0.13337 | 7.8163e-07 | 1.8176 | TBTCMatch INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 5893 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 5893 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 5893 | + |*"BadInput" | 5894 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 5894 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 5894 | TBTC_Forward INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"BadInput" | 294 | 0 |( 0.000000 +- 0.000000)% | @@ -455,9 +455,9 @@ TBTC_Forward INFO Number of counters : 3 | "FittedBefore" | 294 | TBTC_down INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 977 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 977 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 977 | + |*"BadInput" | 975 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 975 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 975 | ToolSvc.PPFactoryHybridFactory INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | ToolSvc.TrackFunctorFactory INFO Number of counters : 1 -- GitLab From e1db756ceaba0d771a816d868fd0f54a9181a5a5 Mon Sep 17 00:00:00 2001 From: Alexander Leon Gilman Date: Tue, 16 Nov 2021 10:47:19 +0100 Subject: [PATCH 15/22] Loosen lifetime cuts in generic_lines_thor bs_builder --- .../Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py index 77f86a32d3a..69a5828c136 100644 --- a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py +++ b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py @@ -95,7 +95,7 @@ def make_bs2jpsiphi(name="Bs2JPsiPhiCombiner", am_min_vtx=5100 * MeV, am_max_vtx=5600 * MeV, vtx_chi2pdof=20, - bpvltime_min=2 * ps): + bpvltime_min=0.2 * ps): phi = make_phi() jpsi = jpsi_maker() pvs = make_pvs() -- GitLab From 99cf847ecdec69afa10f6e1194d952ccb2d617b9 Mon Sep 17 00:00:00 2001 From: Alexander Leon Gilman Date: Tue, 16 Nov 2021 18:28:27 +0100 Subject: [PATCH 16/22] Comment out lifetime cuts in generic bs_builder --- .../lines/generic_lines_thor/builders/bs_builders.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py index 69a5828c136..5c9b37b5e70 100644 --- a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py +++ b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py @@ -95,14 +95,14 @@ def make_bs2jpsiphi(name="Bs2JPsiPhiCombiner", am_min_vtx=5100 * MeV, am_max_vtx=5600 * MeV, vtx_chi2pdof=20, - bpvltime_min=0.2 * ps): + #bpvltime_min=0.2 * ps) # maybe add later for BPVLTIME? phi = make_phi() jpsi = jpsi_maker() - pvs = make_pvs() + #pvs = make_pvs() # maybe add later for BPVLTIME? combination_code = require_all(in_range(am_min, F.MASS, am_max)) vertex_code = require_all( - in_range(am_min_vtx, F.MASS, am_max_vtx), F.CHI2DOF < vtx_chi2pdof, - F.BPVLTIME(pvs) > bpvltime_min) + in_range(am_min_vtx, F.MASS, am_max_vtx), F.CHI2DOF < vtx_chi2pdof) + #,F.BPVLTIME(pvs) > bpvltime_min) # maybe add later for BPVLTIME? return ParticleCombiner( name=name, Inputs=[jpsi, phi], -- GitLab From fef610194d0e425526c9a5bed464c0f3869af495 Mon Sep 17 00:00:00 2001 From: Alexander Leon Gilman Date: Tue, 16 Nov 2021 18:29:54 +0100 Subject: [PATCH 17/22] Comment out lifetime cuts in generic bs_builder --- .../Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py index 5c9b37b5e70..5ddbaa621ae 100644 --- a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py +++ b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py @@ -94,7 +94,7 @@ def make_bs2jpsiphi(name="Bs2JPsiPhiCombiner", am_max=5600 * MeV, am_min_vtx=5100 * MeV, am_max_vtx=5600 * MeV, - vtx_chi2pdof=20, + vtx_chi2pdof=20) #bpvltime_min=0.2 * ps) # maybe add later for BPVLTIME? phi = make_phi() jpsi = jpsi_maker() -- GitLab From ecb71b260e659c76c82cbef42d6b5d76e121b094 Mon Sep 17 00:00:00 2001 From: Alexander Leon Gilman Date: Tue, 16 Nov 2021 18:31:27 +0100 Subject: [PATCH 18/22] Comment out lifetime cuts in generic bs_builder --- .../Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py index 5ddbaa621ae..37d021b232f 100644 --- a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py +++ b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py @@ -94,7 +94,7 @@ def make_bs2jpsiphi(name="Bs2JPsiPhiCombiner", am_max=5600 * MeV, am_min_vtx=5100 * MeV, am_max_vtx=5600 * MeV, - vtx_chi2pdof=20) + vtx_chi2pdof=20): #bpvltime_min=0.2 * ps) # maybe add later for BPVLTIME? phi = make_phi() jpsi = jpsi_maker() -- GitLab From 7064fafc974a34f343ed129480100cd36874f61b Mon Sep 17 00:00:00 2001 From: Alexander Leon Gilman Date: Tue, 16 Nov 2021 18:34:52 +0100 Subject: [PATCH 19/22] Comment out lifetime cuts in generic bs_builder --- .../Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py index 37d021b232f..f21c32842f7 100644 --- a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py +++ b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py @@ -11,10 +11,10 @@ import Functors as F from Functors.math import in_range -from GaudiKernel.SystemOfUnits import GeV, MeV, ps +from GaudiKernel.SystemOfUnits import GeV, MeV#, ps # maybe add later for BPVLTIME? from Hlt2Conf.algorithms_thor import ParticleFilter, ParticleCombiner, require_all from Hlt2Conf.standard_particles import make_long_kaons, make_long_muons, make_long_electrons_with_brem -from RecoConf.reconstruction_objects import make_pvs_v2 as make_pvs +#from RecoConf.reconstruction_objects import make_pvs_v2 as make_pvs # maybe add later for BPVLTIME? def make_mass_constrained_jpsi2mumu(name='MassConstrJpsi2MuMuMaker', -- GitLab From 0f81b348d55e72dd30ea46043cd1e7a10183507c Mon Sep 17 00:00:00 2001 From: Gitlab CI Date: Tue, 16 Nov 2021 17:35:17 +0000 Subject: [PATCH 20/22] Fixed formatting patch generated by https://gitlab.cern.ch/lhcb/Moore/-/jobs/17648568 --- .../lines/generic_lines_thor/builders/bs_builders.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py index f21c32842f7..4032d56f1c8 100644 --- a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py +++ b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py @@ -11,9 +11,10 @@ import Functors as F from Functors.math import in_range -from GaudiKernel.SystemOfUnits import GeV, MeV#, ps # maybe add later for BPVLTIME? +from GaudiKernel.SystemOfUnits import GeV, MeV #, ps # maybe add later for BPVLTIME? from Hlt2Conf.algorithms_thor import ParticleFilter, ParticleCombiner, require_all from Hlt2Conf.standard_particles import make_long_kaons, make_long_muons, make_long_electrons_with_brem + #from RecoConf.reconstruction_objects import make_pvs_v2 as make_pvs # maybe add later for BPVLTIME? @@ -95,14 +96,14 @@ def make_bs2jpsiphi(name="Bs2JPsiPhiCombiner", am_min_vtx=5100 * MeV, am_max_vtx=5600 * MeV, vtx_chi2pdof=20): - #bpvltime_min=0.2 * ps) # maybe add later for BPVLTIME? + #bpvltime_min=0.2 * ps) # maybe add later for BPVLTIME? phi = make_phi() jpsi = jpsi_maker() #pvs = make_pvs() # maybe add later for BPVLTIME? combination_code = require_all(in_range(am_min, F.MASS, am_max)) vertex_code = require_all( in_range(am_min_vtx, F.MASS, am_max_vtx), F.CHI2DOF < vtx_chi2pdof) - #,F.BPVLTIME(pvs) > bpvltime_min) # maybe add later for BPVLTIME? + #,F.BPVLTIME(pvs) > bpvltime_min) # maybe add later for BPVLTIME? return ParticleCombiner( name=name, Inputs=[jpsi, phi], -- GitLab From 0f1f2e226d19a11311544a09203e2e3aef8bd16d Mon Sep 17 00:00:00 2001 From: Alexander Leon Gilman Date: Wed, 17 Nov 2021 11:15:03 +0100 Subject: [PATCH 21/22] Further loosen lifetime cut in generic Bs_builders --- .../generic_lines_thor/builders/bs_builders.py | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py index 4032d56f1c8..f002d4bdd3b 100644 --- a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py +++ b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py @@ -11,11 +11,10 @@ import Functors as F from Functors.math import in_range -from GaudiKernel.SystemOfUnits import GeV, MeV #, ps # maybe add later for BPVLTIME? +from GaudiKernel.SystemOfUnits import GeV, MeV, ps from Hlt2Conf.algorithms_thor import ParticleFilter, ParticleCombiner, require_all from Hlt2Conf.standard_particles import make_long_kaons, make_long_muons, make_long_electrons_with_brem - -#from RecoConf.reconstruction_objects import make_pvs_v2 as make_pvs # maybe add later for BPVLTIME? +from RecoConf.reconstruction_objects import make_pvs_v2 as make_pvs def make_mass_constrained_jpsi2mumu(name='MassConstrJpsi2MuMuMaker', @@ -95,15 +94,15 @@ def make_bs2jpsiphi(name="Bs2JPsiPhiCombiner", am_max=5600 * MeV, am_min_vtx=5100 * MeV, am_max_vtx=5600 * MeV, - vtx_chi2pdof=20): - #bpvltime_min=0.2 * ps) # maybe add later for BPVLTIME? + vtx_chi2pdof=20, + bpvltime_min=0.01 * ps): phi = make_phi() jpsi = jpsi_maker() - #pvs = make_pvs() # maybe add later for BPVLTIME? + pvs = make_pvs() combination_code = require_all(in_range(am_min, F.MASS, am_max)) vertex_code = require_all( - in_range(am_min_vtx, F.MASS, am_max_vtx), F.CHI2DOF < vtx_chi2pdof) - #,F.BPVLTIME(pvs) > bpvltime_min) # maybe add later for BPVLTIME? + in_range(am_min_vtx, F.MASS, am_max_vtx), F.CHI2DOF < vtx_chi2pdof, + F.BPVLTIME(pvs) > bpvltime_min) return ParticleCombiner( name=name, Inputs=[jpsi, phi], -- GitLab From 7ae412403f88a0533e598ad3a74d298905fb4ada Mon Sep 17 00:00:00 2001 From: Gitlab CI Date: Wed, 17 Nov 2021 10:15:31 +0000 Subject: [PATCH 22/22] Fixed formatting patch generated by https://gitlab.cern.ch/lhcb/Moore/-/jobs/17663849 --- .../Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py index f002d4bdd3b..955cf743270 100644 --- a/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py +++ b/Hlt/Hlt2Conf/python/Hlt2Conf/lines/generic_lines_thor/builders/bs_builders.py @@ -11,7 +11,7 @@ import Functors as F from Functors.math import in_range -from GaudiKernel.SystemOfUnits import GeV, MeV, ps +from GaudiKernel.SystemOfUnits import GeV, MeV, ps from Hlt2Conf.algorithms_thor import ParticleFilter, ParticleCombiner, require_all from Hlt2Conf.standard_particles import make_long_kaons, make_long_muons, make_long_electrons_with_brem from RecoConf.reconstruction_objects import make_pvs_v2 as make_pvs -- GitLab