From 500bef66bfbb84129982e2f58f9ad4ad9157d335 Mon Sep 17 00:00:00 2001 From: Nikita Kazeev Date: Tue, 28 Apr 2020 20:51:12 +0200 Subject: [PATCH 1/7] Initial, barely working, implementation of MVA for HLT2 --- Hlt/RecoConf/python/RecoConf/standalone.py | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/Hlt/RecoConf/python/RecoConf/standalone.py b/Hlt/RecoConf/python/RecoConf/standalone.py index be2a2abc900..a8a828d77fd 100644 --- a/Hlt/RecoConf/python/RecoConf/standalone.py +++ b/Hlt/RecoConf/python/RecoConf/standalone.py @@ -17,7 +17,7 @@ from .hlt1_tracking import ( all_hlt1_forward_track_types, make_TrackEventFitter_fitted_tracks, make_hlt1_fitted_tracks) from RecoConf.hlt1_muonmatch import make_tracks_with_muonmatch_ipcut -from .hlt1_muonid import make_muon_id, make_tracks_with_muon_id +from .hlt1_muonid import make_muon_id, make_tracks_with_muon_id, make_muon_hits from .hlt2_tracking import make_hlt2_tracks, make_TrackBestTrackCreator_tracks from .calorimeter_reconstruction import make_calo from .mc_checking import get_track_checkers, get_best_tracks_checkers @@ -34,10 +34,19 @@ from PyConf.Algorithms import Rich__Future__Rec__TrackFilter as TrackFilter from GaudiKernel.SystemOfUnits import MeV, mm from Moore.config import Reconstruction +from PyConf.Algorithms import MuonIDAlgHLT2 +from Configurables import MVATool def reco_prefilters(): return [require_gec()] +from PyConf.Algorithms import ( + MuonRawToHits, + MuonIDHlt1AlgPr, + MakeZip__PrFittedForwardTracks__PrMuonPIDs, +) + +from PyConf.dataflow import DataHandle @configurable def standalone_hlt1_reco(do_mc_checking=False): @@ -157,13 +166,22 @@ def standalone_hlt2_reco(do_mc_checking=False, do_data_monitoring=False): best_tracks=best_tracks, do_mc_checking=do_mc_checking, do_data_monitoring=do_data_monitoring) + print(hlt2_tracks) + #muon_ids = make_muon_id(hlt2_tracks["ForwardFastFitted"]) # Passes DataHandle check + muon_ids = make_muon_id_alglite(hlt2_tracks["Forward"]["v2"]) + data += [muon_ids] + # Add monitoring if do_data_monitoring: data += add_clusters_moni(calo) return Reconstruction('hlt2_reco', data, reco_prefilters()) +@configurable +def make_muon_id_alglite(tracks): + MVATool().RunTMVA = False + return MuonIDAlgHLT2(TracksLocations=tracks, HitHandler=make_muon_hits()).MuonIDLocation def standalone_hlt2_reco_calo_from_dst(do_mc_checking=False): -- GitLab From 67218a4c071bb9b4b3a55c90fdeaa30dec1c4e79 Mon Sep 17 00:00:00 2001 From: Nikita Kazeev Date: Mon, 18 May 2020 02:33:10 +0200 Subject: [PATCH 2/7] HLT2 MuID to a separate file --- Hlt/RecoConf/python/RecoConf/hlt2_muonid.py | 8 +++++++ Hlt/RecoConf/python/RecoConf/standalone.py | 23 +++++---------------- 2 files changed, 13 insertions(+), 18 deletions(-) create mode 100644 Hlt/RecoConf/python/RecoConf/hlt2_muonid.py diff --git a/Hlt/RecoConf/python/RecoConf/hlt2_muonid.py b/Hlt/RecoConf/python/RecoConf/hlt2_muonid.py new file mode 100644 index 00000000000..0c4883c5668 --- /dev/null +++ b/Hlt/RecoConf/python/RecoConf/hlt2_muonid.py @@ -0,0 +1,8 @@ +from PyConf.Algorithms import MuonIDAlgHLT2 +from Configurables import MVATool +from .hlt1_muonid import make_muon_hits + +@configurable +def make_muon_id_hlt2(tracks): + MVATool().RunTMVA = False + return MuonIDAlgHLT2(TracksLocations=tracks, HitHandler=make_muon_hits()).MuonIDLocation diff --git a/Hlt/RecoConf/python/RecoConf/standalone.py b/Hlt/RecoConf/python/RecoConf/standalone.py index a8a828d77fd..70044150ef0 100644 --- a/Hlt/RecoConf/python/RecoConf/standalone.py +++ b/Hlt/RecoConf/python/RecoConf/standalone.py @@ -17,7 +17,8 @@ from .hlt1_tracking import ( all_hlt1_forward_track_types, make_TrackEventFitter_fitted_tracks, make_hlt1_fitted_tracks) from RecoConf.hlt1_muonmatch import make_tracks_with_muonmatch_ipcut -from .hlt1_muonid import make_muon_id, make_tracks_with_muon_id, make_muon_hits +from .hlt1_muonid import make_muon_id, make_tracks_with_muon_id, +from .hlt2_muonid import make_muon_id_hlt2 from .hlt2_tracking import make_hlt2_tracks, make_TrackBestTrackCreator_tracks from .calorimeter_reconstruction import make_calo from .mc_checking import get_track_checkers, get_best_tracks_checkers @@ -34,19 +35,10 @@ from PyConf.Algorithms import Rich__Future__Rec__TrackFilter as TrackFilter from GaudiKernel.SystemOfUnits import MeV, mm from Moore.config import Reconstruction -from PyConf.Algorithms import MuonIDAlgHLT2 -from Configurables import MVATool def reco_prefilters(): return [require_gec()] -from PyConf.Algorithms import ( - MuonRawToHits, - MuonIDHlt1AlgPr, - MakeZip__PrFittedForwardTracks__PrMuonPIDs, -) - -from PyConf.dataflow import DataHandle @configurable def standalone_hlt1_reco(do_mc_checking=False): @@ -166,11 +158,10 @@ def standalone_hlt2_reco(do_mc_checking=False, do_data_monitoring=False): best_tracks=best_tracks, do_mc_checking=do_mc_checking, do_data_monitoring=do_data_monitoring) - print(hlt2_tracks) - #muon_ids = make_muon_id(hlt2_tracks["ForwardFastFitted"]) # Passes DataHandle check - muon_ids = make_muon_id_alglite(hlt2_tracks["Forward"]["v2"]) - data += [muon_ids] + # Add MuID + muon_ids = make_muon_id_hlt2(hlt2_tracks["Forward"]["v2"]) + data += [muon_ids] # Add monitoring if do_data_monitoring: @@ -178,10 +169,6 @@ def standalone_hlt2_reco(do_mc_checking=False, do_data_monitoring=False): return Reconstruction('hlt2_reco', data, reco_prefilters()) -@configurable -def make_muon_id_alglite(tracks): - MVATool().RunTMVA = False - return MuonIDAlgHLT2(TracksLocations=tracks, HitHandler=make_muon_hits()).MuonIDLocation def standalone_hlt2_reco_calo_from_dst(do_mc_checking=False): -- GitLab From ec8642c04f935393e18623c008949c26cc498ff6 Mon Sep 17 00:00:00 2001 From: Nikita Kazeev Date: Mon, 18 May 2020 02:48:19 +0200 Subject: [PATCH 3/7] Syntax fix --- Hlt/RecoConf/python/RecoConf/hlt2_muonid.py | 1 + Hlt/RecoConf/python/RecoConf/standalone.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Hlt/RecoConf/python/RecoConf/hlt2_muonid.py b/Hlt/RecoConf/python/RecoConf/hlt2_muonid.py index 0c4883c5668..6c2d6f3e5c3 100644 --- a/Hlt/RecoConf/python/RecoConf/hlt2_muonid.py +++ b/Hlt/RecoConf/python/RecoConf/hlt2_muonid.py @@ -1,3 +1,4 @@ +from PyConf import configurable from PyConf.Algorithms import MuonIDAlgHLT2 from Configurables import MVATool from .hlt1_muonid import make_muon_hits diff --git a/Hlt/RecoConf/python/RecoConf/standalone.py b/Hlt/RecoConf/python/RecoConf/standalone.py index 70044150ef0..72eae8f4443 100644 --- a/Hlt/RecoConf/python/RecoConf/standalone.py +++ b/Hlt/RecoConf/python/RecoConf/standalone.py @@ -17,7 +17,7 @@ from .hlt1_tracking import ( all_hlt1_forward_track_types, make_TrackEventFitter_fitted_tracks, make_hlt1_fitted_tracks) from RecoConf.hlt1_muonmatch import make_tracks_with_muonmatch_ipcut -from .hlt1_muonid import make_muon_id, make_tracks_with_muon_id, +from .hlt1_muonid import make_muon_id, make_tracks_with_muon_id from .hlt2_muonid import make_muon_id_hlt2 from .hlt2_tracking import make_hlt2_tracks, make_TrackBestTrackCreator_tracks from .calorimeter_reconstruction import make_calo -- GitLab From 2ad925d33483717d41d05f141e6da381fa376814 Mon Sep 17 00:00:00 2001 From: Gitlab CI Date: Mon, 18 May 2020 00:49:00 +0000 Subject: [PATCH 4/7] Fixed formatting patch generated by https://gitlab.cern.ch/lhcb/Moore/-/jobs/8413138 --- Hlt/RecoConf/python/RecoConf/hlt2_muonid.py | 4 +++- Hlt/RecoConf/python/RecoConf/standalone.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Hlt/RecoConf/python/RecoConf/hlt2_muonid.py b/Hlt/RecoConf/python/RecoConf/hlt2_muonid.py index 6c2d6f3e5c3..a57437d740b 100644 --- a/Hlt/RecoConf/python/RecoConf/hlt2_muonid.py +++ b/Hlt/RecoConf/python/RecoConf/hlt2_muonid.py @@ -3,7 +3,9 @@ from PyConf.Algorithms import MuonIDAlgHLT2 from Configurables import MVATool from .hlt1_muonid import make_muon_hits + @configurable def make_muon_id_hlt2(tracks): MVATool().RunTMVA = False - return MuonIDAlgHLT2(TracksLocations=tracks, HitHandler=make_muon_hits()).MuonIDLocation + return MuonIDAlgHLT2( + TracksLocations=tracks, HitHandler=make_muon_hits()).MuonIDLocation diff --git a/Hlt/RecoConf/python/RecoConf/standalone.py b/Hlt/RecoConf/python/RecoConf/standalone.py index 72eae8f4443..c77918d82df 100644 --- a/Hlt/RecoConf/python/RecoConf/standalone.py +++ b/Hlt/RecoConf/python/RecoConf/standalone.py @@ -162,7 +162,7 @@ def standalone_hlt2_reco(do_mc_checking=False, do_data_monitoring=False): # Add MuID muon_ids = make_muon_id_hlt2(hlt2_tracks["Forward"]["v2"]) data += [muon_ids] - + # Add monitoring if do_data_monitoring: data += add_clusters_moni(calo) -- GitLab From 23bcde5fc2aa80f30e7a475c28b1e1d537bed6c8 Mon Sep 17 00:00:00 2001 From: Nikita Kazeev Date: Mon, 18 May 2020 03:00:39 +0200 Subject: [PATCH 5/7] Copyright --- Hlt/RecoConf/python/RecoConf/hlt2_muonid.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Hlt/RecoConf/python/RecoConf/hlt2_muonid.py b/Hlt/RecoConf/python/RecoConf/hlt2_muonid.py index a57437d740b..38401ddf070 100644 --- a/Hlt/RecoConf/python/RecoConf/hlt2_muonid.py +++ b/Hlt/RecoConf/python/RecoConf/hlt2_muonid.py @@ -1,3 +1,13 @@ +############################################################################### +# (c) Copyright 2020 CERN for the benefit of the LHCb Collaboration # +# # +# This software is distributed under the terms of the GNU General Public # +# Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". # +# # +# In applying this licence, CERN does not waive the privileges and immunities # +# granted to it by virtue of its status as an Intergovernmental Organization # +# or submit itself to any jurisdiction. # +############################################################################### from PyConf import configurable from PyConf.Algorithms import MuonIDAlgHLT2 from Configurables import MVATool -- GitLab From 498f80443d873abd6d20052e558683154e26a561 Mon Sep 17 00:00:00 2001 From: Nikita Kazeev Date: Mon, 25 May 2020 16:16:39 +0200 Subject: [PATCH 6/7] Updated reference from https://lhcb-nightlies.web.cern.ch/logs/tests/nightly/lhcb-master-mr/828/x86_64-centos7-gcc9-opt/Moore/ --- .../tests/refs/hlt2_reco_brunelesque.ref | 378 ++++++++++-------- 1 file changed, 204 insertions(+), 174 deletions(-) diff --git a/Hlt/RecoConf/tests/refs/hlt2_reco_brunelesque.ref b/Hlt/RecoConf/tests/refs/hlt2_reco_brunelesque.ref index 73bad4d83c2..2c09a3a764c 100644 --- a/Hlt/RecoConf/tests/refs/hlt2_reco_brunelesque.ref +++ b/Hlt/RecoConf/tests/refs/hlt2_reco_brunelesque.ref @@ -56,43 +56,43 @@ TracksFTConverter#1 SUCCESS Number of counters : 1 | "Nb of Produced Tracks" | 50 | 5146 | 102.92 | PrLongLivedTracking INFO Number of counters : 2 | Counter | - | "# Downstream tracks made" | 5314 | - | "#UT hits added" | 20841 | + | "# Downstream tracks made" | 5315 | + | "#UT hits added" | 20839 | PrMatchNN SUCCESS Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#MatchingChi2" | 14844 | 84165.86 | 5.6700 | - | "#MatchingTracks" | 50 | 4763 | 95.260 | - | "TracksMLP" | 14844 | 4694.791 | 0.31628 | + | "#MatchingChi2" | 14861 | 84309.7 | 5.6732 | + | "#MatchingTracks" | 50 | 4760 | 95.200 | + | "TracksMLP" | 14861 | 4695.125 | 0.31594 | TrackBestTrackCreator SUCCESS Number of counters : 33 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 23988 | 0 |( 0.000000 +- 0.000000)% | - |*"Downstream.badChisq" | 2085 | 1405 |( 67.38609 +- 1.026676)% | - | "Downstream.chisqProbSum" | 2085 | 170.8243 | 0.081930 | - |*"Downstream.flipCharge" | 2085 | 0 |( 0.000000 +- 0.000000)% | - | "Downstream.ghostProbability" | 2085 | 1283.675 | 0.61567 | - | "Downstream.numOutliers" | 2085 | 2841 | 1.3626 | - |*"FitFailed" | 23988 | 0 |( 0.000000 +- 0.000000)% | + |*"BadInput" | 23990 | 0 |( 0.000000 +- 0.000000)% | + |*"Downstream.badChisq" | 2086 | 1408 |( 67.49760 +- 1.025521)% | + | "Downstream.chisqProbSum" | 2086 | 170.3804 | 0.081678 | + |*"Downstream.flipCharge" | 2086 | 0 |( 0.000000 +- 0.000000)% | + | "Downstream.ghostProbability" | 2086 | 1287.317 | 0.61712 | + | "Downstream.numOutliers" | 2086 | 2844 | 1.3634 | + |*"FitFailed" | 23990 | 0 |( 0.000000 +- 0.000000)% | | "FittedBefore" | 1749 | - |*"Long.badChisq" | 5047 | 3219 |( 63.78046 +- 0.6765480)% | - | "Long.chisqProbSum" | 5047 | 500.0208 | 0.099073 | - |*"Long.flipCharge" | 5047 | 0 |( 0.000000 +- 0.000000)% | - | "Long.ghostProbability" | 5047 | 1397.954 | 0.27699 | - | "Long.numOutliers" | 5047 | 7117 | 1.4101 | - |*"Ttrack.badChisq" | 2676 | 201 |( 7.511211 +- 0.5095144)% | - | "Ttrack.chisqProbSum" | 2676 | 780.9287 | 0.29183 | - |*"Ttrack.flipCharge" | 2676 | 123 |( 4.596413 +- 0.4048077)% | - | "Ttrack.ghostProbability" | 2676 | 306.8766 | 0.11468 | - | "Ttrack.numOutliers" | 2676 | 1813 | 0.67750 | + |*"Long.badChisq" | 5044 | 3218 |( 63.79857 +- 0.6766760)% | + | "Long.chisqProbSum" | 5044 | 499.0472 | 0.098939 | + |*"Long.flipCharge" | 5044 | 0 |( 0.000000 +- 0.000000)% | + | "Long.ghostProbability" | 5044 | 1394.928 | 0.27655 | + | "Long.numOutliers" | 5044 | 7114 | 1.4104 | + |*"Ttrack.badChisq" | 2679 | 200 |( 7.465472 +- 0.5078017)% | + | "Ttrack.chisqProbSum" | 2679 | 781.5202 | 0.29172 | + |*"Ttrack.flipCharge" | 2679 | 121 |( 4.516611 +- 0.4012212)% | + | "Ttrack.ghostProbability" | 2679 | 305.5159 | 0.11404 | + | "Ttrack.numOutliers" | 2679 | 1825 | 0.68122 | |*"Upstream.badChisq" | 910 | 213 |( 23.40659 +- 1.403602)% | | "Upstream.chisqProbSum" | 910 | 309.1638 | 0.33974 | |*"Upstream.flipCharge" | 910 | 17 |( 1.868132 +- 0.4488364)% | | "Upstream.ghostProbability" | 910 | 202.2125 | 0.22221 | | "Upstream.numOutliers" | 910 | 444 | 0.48791 | - |*"Velo.badChisq" | 5495 | 1456 |( 26.49682 +- 0.5953414)% | - | "Velo.chisqProbSum" | 5495 | 1632.09 | 0.29701 | - |*"Velo.flipCharge" | 5495 | 0 |( 0.000000 +- 0.000000)% | - | "Velo.ghostProbability" | 5495 | 694.2345 | 0.12634 | - | "Velo.numOutliers" | 5495 | 3848 | 0.70027 | + |*"Velo.badChisq" | 5496 | 1457 |( 26.51019 +- 0.5953833)% | + | "Velo.chisqProbSum" | 5496 | 1632.09 | 0.29696 | + |*"Velo.flipCharge" | 5496 | 0 |( 0.000000 +- 0.000000)% | + | "Velo.ghostProbability" | 5496 | 694.2348 | 0.12632 | + | "Velo.numOutliers" | 5496 | 3848 | 0.70015 | |*"VeloBackward.badChisq" | 6026 | 342 |( 5.675407 +- 0.2980550)% | | "VeloBackward.chisqProbSum" | 6026 | 2787.624 | 0.46260 | |*"VeloBackward.flipCharge" | 6026 | 0 |( 0.000000 +- 0.000000)% | @@ -108,213 +108,243 @@ FutureCellularAutomatonAlg INFO Number of counters : 4 | Counter | | "# clusterization passes" | 50 | 181 | 3.6200 | 0.52498 | 3.0000 | 5.0000 | | "# clusters" | 50 | 10948 | 218.96 | 58.725 | 78.000 | 339.00 | - | "Cluster energy" | 10948 |6.035589e+07 | 5513.0 | 7764.8 | 128.06 | 2.7873e+05 | + | "Cluster energy" | 10948 |6.035593e+07 | 5513.0 | 7764.8 | 127.80 | 2.7873e+05 | | "Cluster size" | 10948 | 137443 | 12.554 | 3.6596 | 4.0000 | 33.000 | CaloFutureClusterCovarianceAlg SUCCESS Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# clusters" | 50 | -CaloFutureMergedPi0 INFO Number of counters : 9 +CaloFutureMergedPi0 INFO Number of counters : 14 | Counter | - |*"Fails to set covariance (1)" | 395 | 0 |( 0.000000 +- 0.000000)% | - |*"Fails to set covariance (2)" | 395 | 0 |( 0.000000 +- 0.000000)% | - |*"Fails to set spread (1)" | 395 | 0 |( 0.000000 +- 0.000000)% | - |*"Fails to set spread (2)" | 395 | 0 |( 0.000000 +- 0.000000)% | - |*"Fails to tag(E) cluster (1)" | 395 | 0 |( 0.000000 +- 0.000000)% | - |*"Fails to tag(E) cluster (2)" | 395 | 0 |( 0.000000 +- 0.000000)% | - | "clusters => mergedPi0s" | 50 | 395 | 7.9000 | - | "clusters => splitClusters" | 50 | 790 | 15.800 | - | "clusters => splitPhotons" | 50 | 790 | 15.800 | + | "Corrected energy" | 792 | 8684322 | 10965. | 12851. | 117.73 | 1.4794e+05 | + |*"Fails to set covariance (1)" | 396 | 0 |( 0.000000 +- 0.000000)% | + |*"Fails to set covariance (2)" | 396 | 0 |( 0.000000 +- 0.000000)% | + |*"Fails to set spread (1)" | 396 | 0 |( 0.000000 +- 0.000000)% | + |*"Fails to set spread (2)" | 396 | 0 |( 0.000000 +- 0.000000)% | + |*"Fails to tag(E) cluster (1)" | 396 | 0 |( 0.000000 +- 0.000000)% | + |*"Fails to tag(E) cluster (2)" | 396 | 0 |( 0.000000 +- 0.000000)% | + | "Photon Delta(E)" | 792 | -53644.86 | -67.733 | 364.17 | -3897.2 | 1442.9 | + | "Photon Delta(X)" | 792 | 725.3636 | 0.91586 | 13.167 | -24.000 | 29.450 | + | "Photon Delta(Y)" | 792 | 34.81036 | 0.043952 | 13.551 | -45.365 | 28.864 | + | "Photon Delta(Z)" | 792 | 61536.6 | 77.698 | 11.261 | 16.624 | 109.35 | + | "clusters => mergedPi0s" | 50 | 396 | 7.9200 | + | "clusters => splitClusters" | 50 | 792 | 15.840 | + | "clusters => splitPhotons" | 50 | 792 | 15.840 | InEcalFutureAcceptanceAlg SUCCESS Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 50 | 7908 | 158.16 | 61.283 | 52.000 | 296.00 | - | "#total tracks" | 50 | 20183 | 403.66 | 141.33 | 147.00 | 771.00 | - | "#tracks in acceptance" | 50 | 6586 | 131.72 | 51.331 | 41.000 | 242.00 | + | "#links in table" | 50 | 7911 | 158.22 | 61.316 | 52.000 | 296.00 | + | "#total tracks" | 50 | 20187 | 403.74 | 141.37 | 147.00 | 771.00 | + | "#tracks in acceptance" | 50 | 6589 | 131.78 | 51.365 | 41.000 | 242.00 | FutureEcalPIDmuAlg SUCCESS Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "/Event/FutureTrack2EcalEAlg/Output=>/Event/Futu| 50 | 6586 | 131.72 | 51.331 | 41.000 | 242.00 | + | "/Event/FutureTrack2EcalEAlg/Output=>/Event/Futu| 50 | 6589 | 131.78 | 51.365 | 41.000 | 242.00 | FutureHcalZSup INFO Number of counters : 1 | Counter | |*"No bank found" | 50 | 0 |( 0.000000 +- 0.000000)% | InHcalFutureAcceptanceAlg SUCCESS Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 50 | 7908 | 158.16 | 61.283 | 52.000 | 296.00 | - | "#total tracks" | 50 | 20183 | 403.66 | 141.33 | 147.00 | 771.00 | - | "#tracks in acceptance" | 50 | 6183 | 123.66 | 48.778 | 40.000 | 229.00 | + | "#links in table" | 50 | 7911 | 158.22 | 61.316 | 52.000 | 296.00 | + | "#total tracks" | 50 | 20187 | 403.74 | 141.37 | 147.00 | 771.00 | + | "#tracks in acceptance" | 50 | 6187 | 123.74 | 48.835 | 40.000 | 229.00 | FutureHcalPIDeAlg SUCCESS Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "/Event/FutureTrack2HcalEAlg/Output=>/Event/Futu| 50 | 6183 | 123.66 | 48.778 | 40.000 | 229.00 | + | "/Event/FutureTrack2HcalEAlg/Output=>/Event/Futu| 50 | 6187 | 123.74 | 48.835 | 40.000 | 229.00 | FutureHcalPIDmuAlg SUCCESS Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "/Event/FutureTrack2HcalEAlg/Output=>/Event/Futu| 50 | 6183 | 123.66 | 48.778 | 40.000 | 229.00 | + | "/Event/FutureTrack2HcalEAlg/Output=>/Event/Futu| 50 | 6187 | 123.74 | 48.835 | 40.000 | 229.00 | FuturePhotonMatchAlg SUCCESS Number of counters : 5 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#above threshold" | 50 | 1196833 | 23937. | 14013. | 2715.0 | 55270. | - | "#chi2" | 385293 |1.779564e+08 | 461.87 | 290.04 | 0.00022235 | 1000.0 | - | "#good tracks" | 50 | 6586 | 131.72 | 51.331 | 41.000 | 242.00 | - | "#links in table" | 50 | 385293 | 7705.9 | 5217.9 | 483.00 | 21005. | + | "#above threshold" | 50 | 1197078 | 23942. | 14017. | 2715.0 | 55235. | + | "#chi2" | 385774 |1.781565e+08 | 461.82 | 290.01 | 0.00022207 | 999.99 | + | "#good tracks" | 50 | 6589 | 131.78 | 51.365 | 41.000 | 242.00 | + | "#links in table" | 50 | 385774 | 7715.5 | 5225.8 | 483.00 | 21040. | | "#total calos" | 50 | 10948 | 218.96 | 58.725 | 78.000 | 339.00 | -ClassifyPhotonElectronAlg INFO Number of counters : 2 +ClassifyPhotonElectronAlg INFO Number of counters : 14 | Counter | - | "electronHypos" | 50 | 6236 | 124.72 | 48.220 | 27.000 | 218.00 | - | "photonHypos" | 50 | 7092 | 141.84 | 33.708 | 58.000 | 209.00 | + | "Electron Delta(E)" | 6239 | 1237887 | 198.41 | 223.23 | -3615.5 | 4037.2 | + | "Electron Delta(X)" | 6239 | -1149.683 | -0.18427 | 11.800 | -23.058 | 22.930 | + | "Electron Delta(Y)" | 6239 | -556.8842 | -0.089259 | 11.579 | -23.059 | 22.930 | + | "Electron Delta(Z)" | 6239 | 414932.2 | 66.506 | 12.679 | 28.269 | 116.11 | + | "Electron corrected energy" | 6239 |4.46777e+07 | 7161.0 | 8805.8 | 419.78 | 2.7815e+05 | + | "Electrons pT-rejected after correction" | 50 | + | "Photon Delta(E)" | 7087 | 518607.2 | 73.177 | 146.13 | -1316.9 | 2283.9 | + | "Photon Delta(X)" | 7087 | -502.1714 | -0.070858 | 12.666 | -23.059 | 22.930 | + | "Photon Delta(Y)" | 7087 | -494.072 | -0.069715 | 12.655 | -23.059 | 22.930 | + | "Photon Delta(Z)" | 7087 | 422984.4 | 59.685 | 11.888 | 23.821 | 110.98 | + | "Photon corrected energy" | 7087 |3.07108e+07 | 4333.4 | 6919.4 | 250.74 | 2.7800e+05 | + | "Photons pT-rejected after correction" | 50 | + | "electronHypos" | 50 | 6239 | 124.78 | 48.132 | 27.000 | 218.00 | + | "photonHypos" | 50 | 7087 | 141.74 | 33.677 | 58.000 | 209.00 | FutureElectronMatchAlg SUCCESS Number of counters : 5 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#above threshold" | 50 | 848189 | 16964. | 12100. | 981.00 | 44309. | - | "#chi2" | 92031 |4.126618e+08 | 4483.9 | 2932.8 | 0.085462 | 10000. | - | "#good tracks" | 50 | 6586 | 131.72 | 51.331 | 41.000 | 242.00 | - | "#links in table" | 50 | 92031 | 1840.6 | 1211.8 | 126.00 | 5196.0 | - | "#total calos" | 50 | 6236 | 124.72 | 48.220 | 27.000 | 218.00 | + | "#above threshold" | 50 | 847887 | 16958. | 12090. | 982.00 | 44287. | + | "#chi2" | 92920 |4.170064e+08 | 4487.8 | 2934.3 | 0.11563 | 9999.9 | + | "#good tracks" | 50 | 6589 | 131.78 | 51.365 | 41.000 | 242.00 | + | "#links in table" | 50 | 92920 | 1858.4 | 1226.1 | 125.00 | 5258.0 | + | "#total calos" | 50 | 6239 | 124.78 | 48.132 | 27.000 | 218.00 | FutureEcalChi22ID SUCCESS Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 50 | 7908 | 158.16 | 61.283 | 52.000 | 296.00 | - | "#total tracks" | 50 | 20183 | 403.66 | 141.33 | 147.00 | 771.00 | + | "#links in table" | 50 | 7911 | 158.22 | 61.316 | 52.000 | 296.00 | + | "#total tracks" | 50 | 20187 | 403.74 | 141.37 | 147.00 | 771.00 | FutureEcalPIDeAlg SUCCESS Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "/Event/FutureEcalChi22ID/Output=>/Event/FutureE| 50 | 7908 | 158.16 | 61.283 | 52.000 | 296.00 | + | "/Event/FutureEcalChi22ID/Output=>/Event/FutureE| 50 | 7911 | 158.22 | 61.316 | 52.000 | 296.00 | FutureInBremFutureAcceptanceAlg SUCCESS Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 50 | 10640 | 212.80 | 74.075 | 83.000 | 379.00 | - | "#total tracks" | 50 | 20183 | 403.66 | 141.33 | 147.00 | 771.00 | + | "#total tracks" | 50 | 20187 | 403.74 | 141.37 | 147.00 | 771.00 | | "#tracks in acceptance" | 50 | 7096 | 141.92 | 50.911 | 57.000 | 263.00 | BremMatchAlgFuture SUCCESS Number of counters : 5 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#above threshold" | 50 | 786479 | 15730. | 8924.9 | 2389.0 | 37683. | - | "#chi2" | 290230 |1.377531e+09 | 4746.3 | 2875.2 | 0.021232 | 10000. | + | "#above threshold" | 50 | 784607 | 15692. | 8903.7 | 2389.0 | 37651. | + | "#chi2" | 291403 |1.380902e+09 | 4738.8 | 2877.2 | 0.017019 | 10000. | | "#good tracks" | 50 | 7096 | 141.92 | 50.911 | 57.000 | 263.00 | - | "#links in table" | 50 | 290230 | 5804.6 | 2894.6 | 1024.0 | 14344. | - | "#total calos" | 50 | 7092 | 141.84 | 33.708 | 58.000 | 209.00 | + | "#links in table" | 50 | 291403 | 5828.1 | 2909.3 | 1023.0 | 14498. | + | "#total calos" | 50 | 7087 | 141.74 | 33.677 | 58.000 | 209.00 | BremChi22IDFuture SUCCESS Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#links in table" | 50 | 10640 | 212.80 | 74.075 | 83.000 | 379.00 | - | "#total tracks" | 50 | 20183 | 403.66 | 141.33 | 147.00 | 771.00 | + | "#total tracks" | 50 | 20187 | 403.74 | 141.37 | 147.00 | 771.00 | BremPIDeAlgFuture SUCCESS Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "/Event/BremChi22IDFuture/Output=>/Event/BremPID| 50 | 10640 | 212.80 | 74.075 | 83.000 | 379.00 | FutureClusChi22ID SUCCESS Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#links in table" | 50 | 7908 | 158.16 | 61.283 | 52.000 | 296.00 | - | "#total tracks" | 50 | 20183 | 403.66 | 141.33 | 147.00 | 771.00 | + | "#links in table" | 50 | 7911 | 158.22 | 61.316 | 52.000 | 296.00 | + | "#total tracks" | 50 | 20187 | 403.74 | 141.37 | 147.00 | 771.00 | +MuonIDAlgHLT2 SUCCESS Number of counters : 9 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "muonMVA2Stat" | 755 | -366.3258 | -0.48520 | 1.0953 | -3.0385 | 4.5001 | + | "nGoodOffline" | 5146 | + | "nInAcceptance" | 4438 | + | "nIsMuon" | 755 | + | "nIsMuonLoose" | 1259 | + | "nIsMuonTight" | 340 | + | "nMomentumCut" | 4590 | + | "nMuonPIDs" | 4438 | + | "nPreSelTrack" | 4257 | CaloFutureMergedPi0.EcalCovariance SUCCESS Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "parameter updated" | 2 | CaloFutureMergedPi0.SplitPhotonS... SUCCESS Number of counters : 10 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | " Inner" | 6468 | 525486.6 | 81.244 | 0.0000 | 81.241 | 81.241 | - | " Middle" | 6699 | 638466.1 | 95.308 | 0.0000 | 95.304 | 95.304 | - | " Outer" | 17248 | 1877878 | 108.88 | 1.3773 | 108.88 | 108.88 | - | " Inner" | 6468 | 95588.07 | 14.779 | 0.0000 | 14.778 | 14.778 | - | " Middle" | 6699 | 96702.61 | 14.435 | 0.0000 | 14.435 | 14.435 | - | " Outer" | 17248 | 252038.4 | 14.613 | 0.16808 | 14.614 | 14.614 | - | "Delta(Z)" | 30415 | 3819023 | 125.56 | 11.125 | 60.966 | 157.89 | - | "Delta(Z) Inner" | 6468 | 806418.8 | 124.68 | 9.2869 | 90.011 | 157.40 | - | "Delta(Z) Middle" | 6699 | 830757.8 | 124.01 | 12.552 | 60.966 | 157.46 | - | "Delta(Z) Outer" | 17248 | 2181845 | 126.50 | 11.074 | 70.841 | 157.89 | + | " Inner" | 6545 | 531723 | 81.241 | 0.0000 | 81.241 | 81.241 | + | " Middle" | 6699 | 638441.5 | 95.304 | 0.0000 | 95.304 | 95.304 | + | " Outer" | 17248 | 1877928 | 108.88 | 0.0000 | 108.88 | 108.88 | + | " Inner" | 6545 | 96720.75 | 14.778 | 0.0000 | 14.778 | 14.778 | + | " Middle" | 6699 | 96698.88 | 14.435 | 8.2114e-06 | 14.435 | 14.435 | + | " Outer" | 17248 | 252069 | 14.614 | 1.2520e-05 | 14.614 | 14.614 | + | "Delta(Z)" | 30492 | 3827982 | 125.54 | 11.117 | 61.004 | 157.89 | + | "Delta(Z) Inner" | 6545 | 815012.6 | 124.52 | 9.3656 | 90.016 | 157.40 | + | "Delta(Z) Middle" | 6699 | 830822.1 | 124.02 | 12.522 | 61.004 | 157.46 | + | "Delta(Z) Outer" | 17248 | 2182148 | 126.52 | 11.047 | 70.825 | 157.89 | CaloFutureMergedPi0.SplitPhotonS... SUCCESS Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Delta(X)" | 30415 | 25230.28 | 0.82953 | 13.268 | -23.994 | 29.882 | - | "Delta(Y)" | 30415 | 10847.73 | 0.35666 | 13.718 | -45.910 | 29.242 | -ToolSvc.LCorrectionElectron SUCCESS Number of counters : 10 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | " Inner" | 2121 | 172310.1 | 81.240 | 0.27293 | 81.241 | 81.241 | - | " Middle" | 1888 | 179931.1 | 95.302 | 0.60541 | 95.304 | 95.304 | - | " Outer" | 2227 | 242466.8 | 108.88 | 0.41308 | 108.88 | 108.88 | - | " Inner" | 2121 | 31343.02 | 14.777 | 0.089527 | 14.778 | 14.778 | - | " Middle" | 1888 | 27253.41 | 14.435 | 0.0000 | 14.435 | 14.435 | - | " Outer" | 2227 | 32547.08 | 14.615 | 0.0000 | 14.614 | 14.614 | - | "Delta(Z)" | 6236 | 726913.3 | 116.57 | 11.560 | 83.316 | 164.35 | - | "Delta(Z) Inner" | 2121 | 241251.4 | 113.74 | 11.120 | 83.316 | 164.35 | - | "Delta(Z) Middle" | 1888 | 217740.4 | 115.33 | 10.898 | 86.958 | 163.63 | - | "Delta(Z) Outer" | 2227 | 267922.2 | 120.31 | 11.521 | 94.359 | 160.94 | -ToolSvc.SCorrectionElectron SUCCESS Number of counters : 2 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Delta(X)" | 6236 | -1152.79 | -0.18486 | 11.796 | -23.059 | 22.930 | - | "Delta(Y)" | 6236 | -667.5034 | -0.10704 | 11.576 | -23.059 | 22.930 | -ToolSvc.ECorrectionElectron SUCCESS Number of counters : 8 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | " Inner" | 2121 | 2111.168 | 0.99536 | 0.019036 | 0.96458 | 1.1015 | - | " Middle" | 1888 | 1900.828 | 1.0068 | 0.019105 | 0.97713 | 1.1187 | - | " Outer" | 2227 | 2228.386 | 1.0006 | 0.014410 | 0.97356 | 1.0498 | - | "Corrected energy" | 6236 |4.46616e+07 | 7161.9 | 8805.0 | 419.77 | 2.7812e+05 | - | "Delta(E)" | 6236 | 1241962 | 199.16 | 222.96 | -3613.9 | 4037.2 | - | "Pileup offset" | 6236 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | - | "Pileup scale" | 6236 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | - | "Pileup subtracted ratio" | 6236 | 6236 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | -ToolSvc.LCorrectionPhoton SUCCESS Number of counters : 10 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | " Inner" | 1964 | 159556.3 | 81.240 | 0.050456 | 81.241 | 81.241 | - | " Middle" | 1761 | 167828.4 | 95.303 | 0.55427 | 95.304 | 95.304 | - | " Outer" | 3367 | 366584.3 | 108.88 | 0.71390 | 108.88 | 108.88 | - | " Inner" | 1964 | 29022.97 | 14.777 | 0.090786 | 14.778 | 14.778 | - | " Middle" | 1761 | 25420.1 | 14.435 | 0.0000 | 14.435 | 14.435 | - | " Outer" | 3367 | 49206.25 | 14.614 | 0.053984 | 14.614 | 14.614 | - | "Delta(Z)" | 7092 | 769657.6 | 108.52 | 11.879 | 76.221 | 164.33 | - | "Delta(Z) Inner" | 1964 | 213938.7 | 108.93 | 12.085 | 76.221 | 164.33 | - | "Delta(Z) Middle" | 1761 | 189420 | 107.56 | 10.920 | 81.830 | 150.49 | - | "Delta(Z) Outer" | 3367 | 366299.2 | 108.79 | 12.201 | 77.473 | 158.33 | -ToolSvc.SCorrectionPhoton SUCCESS Number of counters : 2 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Delta(X)" | 7092 | -460.9 | -0.064989 | 12.678 | -23.059 | 22.930 | - | "Delta(Y)" | 7092 | -516.1549 | -0.072780 | 12.645 | -23.059 | 22.930 | -ToolSvc.ECorrectionPhoton SUCCESS Number of counters : 8 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | " Inner" | 1964 | 1953.794 | 0.99480 | 0.019432 | 0.96458 | 1.1127 | - | " Middle" | 1761 | 1769.528 | 1.0048 | 0.019263 | 0.97708 | 1.1312 | - | " Outer" | 3367 | 3358.348 | 0.99743 | 0.015370 | 0.97356 | 1.0596 | - | "Corrected energy" | 7092 |3.012902e+07 | 4248.3 | 6900.5 | 165.95 | 2.7784e+05 | - | "Delta(E)" | 7092 | -75272.12 | -10.614 | 145.13 | -1430.4 | 2142.1 | - | "Pileup offset" | 7092 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | - | "Pileup scale" | 7092 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | - | "Pileup subtracted ratio" | 7092 | 7092 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | -ToolSvc.CaloFutureLCorrection SUCCESS Number of counters : 10 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | " Inner" | 168 | 13648.52 | 81.241 | 0.0000 | 81.241 | 81.241 | - | " Middle" | 174 | 16582.88 | 95.304 | 0.17576 | 95.304 | 95.304 | - | " Outer" | 448 | 48777.61 | 108.88 | 0.0000 | 108.88 | 108.88 | - | " Inner" | 168 | 2482.675 | 14.778 | 0.0000 | 14.778 | 14.778 | - | " Middle" | 174 | 2511.658 | 14.435 | 0.0000 | 14.435 | 14.435 | - | " Outer" | 448 | 6547.239 | 14.614 | 0.016173 | 14.614 | 14.614 | - | "Delta(Z)" | 790 | 100190.8 | 126.82 | 10.703 | 63.999 | 156.88 | - | "Delta(Z) Inner" | 168 | 21131.05 | 125.78 | 9.1391 | 94.166 | 155.01 | - | "Delta(Z) Middle" | 174 | 21910.89 | 125.92 | 12.225 | 63.999 | 156.88 | - | "Delta(Z) Outer" | 448 | 57148.86 | 127.56 | 10.551 | 75.071 | 155.60 | -ToolSvc.CaloFutureSCorrection SUCCESS Number of counters : 2 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Delta(X)" | 790 | 746.2674 | 0.94464 | 13.194 | -23.994 | 29.882 | - | "Delta(Y)" | 790 | 78.6675 | 0.099579 | 13.497 | -45.339 | 28.863 | -ToolSvc.CaloFutureECorrection SUCCESS Number of counters : 8 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | " Inner" | 168 | 166.6653 | 0.99206 | 0.023747 | 0.96564 | 1.1234 | - | " Middle" | 174 | 174.3698 | 1.0021 | 0.023683 | 0.97744 | 1.1156 | - | " Outer" | 448 | 448.2498 | 1.0006 | 0.021003 | 0.97391 | 1.0836 | - | "Corrected energy" | 790 | 8660312 | 10962. | 12867. | 113.17 | 1.4792e+05 | - | "Delta(E)" | 790 | -51234.64 | -64.854 | 366.19 | -3900.9 | 1442.9 | - | "Pileup offset" | 790 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | - | "Pileup scale" | 790 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | - | "Pileup subtracted ratio" | 790 | 790 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Delta(X)" | 30492 | 25601.49 | 0.83961 | 13.228 | -23.998 | 29.452 | + | "Delta(Y)" | 30492 | 9800.229 | 0.32140 | 13.729 | -45.961 | 29.253 | +RichTrackSegmentsUpstream.TrackS... SUCCESS Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Number of field calls" | 9157 | +RichTrackSegmentsLong.TrackSTEPE... SUCCESS Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Number of field calls" | 216098 | +RichTrackSegmentsDownstream.Trac... SUCCESS Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Number of field calls" | 46874 | +ClassifyPhotonElectronAlg.CaloFu... SUCCESS Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Number of field calls" | 37434 | +CaloFutureMergedPi0.CaloFutureLC... SUCCESS Number of counters : 10 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | " Inner" | 170 | 13810.99 | 81.241 | 1.1703e-06 | 81.241 | 81.241 | + | " Middle" | 174 | 16582.9 | 95.304 | 1.1568e-06 | 95.304 | 95.304 | + | " Outer" | 448 | 48777.36 | 108.88 | 0.0000 | 108.88 | 108.88 | + | " Inner" | 170 | 2512.227 | 14.778 | 0.0000 | 14.778 | 14.778 | + | " Middle" | 174 | 2511.659 | 14.435 | 0.0000 | 14.435 | 14.435 | + | " Outer" | 448 | 6547.247 | 14.614 | 0.0000 | 14.614 | 14.614 | + | "Delta(Z)" | 792 | 100429.2 | 126.80 | 10.664 | 64.021 | 156.88 | + | "Delta(Z) Inner" | 170 | 21362.04 | 125.66 | 9.1901 | 94.164 | 155.02 | + | "Delta(Z) Middle" | 174 | 21912.6 | 125.93 | 12.205 | 64.021 | 156.88 | + | "Delta(Z) Outer" | 448 | 57154.55 | 127.58 | 10.476 | 78.009 | 155.60 | +CaloFutureMergedPi0.CaloFutureSC... SUCCESS Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Delta(X)" | 792 | 725.3636 | 0.91586 | 13.167 | -24.000 | 29.450 | + | "Delta(Y)" | 792 | 34.81036 | 0.043952 | 13.551 | -45.365 | 28.864 | +CaloFutureMergedPi0.CaloFutureEC... SUCCESS Number of counters : 8 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | " Inner" | 170 | 168.5464 | 0.99145 | 0.023329 | 0.96564 | 1.1234 | + | " Middle" | 174 | 174.3744 | 1.0022 | 0.023734 | 0.97736 | 1.1156 | + | " Outer" | 448 | 448.2347 | 1.0005 | 0.020940 | 0.97391 | 1.0827 | + | "Corrected energy" | 792 | 8684322 | 10965. | 12851. | 117.73 | 1.4794e+05 | + | "Delta(E)" | 792 | -53644.86 | -67.733 | 364.17 | -3897.2 | 1442.9 | + | "Pileup offset" | 792 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | + | "Pileup scale" | 50 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | + | "Pileup subtracted ratio" | 792 | 792 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | CaloFutureClusterCovarianceAlg.E... SUCCESS Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "parameter updated" | 2 | CaloFutureShowerOverlap.PhotonSh... SUCCESS Number of counters : 10 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | " Inner" | 81209 | 6590796 | 81.158 | 3.3635 | 81.241 | 81.241 | - | " Middle" | 57936 | 5522536 | 95.321 | 0.46531 | 95.304 | 95.304 | - | " Outer" | 110483 |1.204024e+07 | 108.98 | 0.0000 | 108.88 | 108.88 | - | " Inner" | 81209 | 1198924 | 14.763 | 0.51250 | 14.778 | 14.778 | - | " Middle" | 57936 | 836436.8 | 14.437 | 0.0000 | 14.435 | 14.435 | - | " Outer" | 110483 | 1615589 | 14.623 | 0.0000 | 14.614 | 14.614 | - | "Delta(Z)" | 249628 |2.821964e+07 | 113.05 | 12.001 | 75.471 | 164.38 | - | "Delta(Z) Inner" | 81209 | 9111654 | 112.20 | 11.216 | 75.471 | 164.38 | - | "Delta(Z) Middle" | 57936 | 6487774 | 111.98 | 11.368 | 81.440 | 163.13 | - | "Delta(Z) Outer" | 110483 |1.262145e+07 | 114.24 | 12.665 | 78.307 | 161.09 | + | " Inner" | 9554 | 776177.5 | 81.241 | 0.0000 | 81.241 | 81.241 | + | " Middle" | 6816 | 649592.1 | 95.304 | 0.0000 | 95.304 | 95.304 | + | " Outer" | 12998 | 1415197 | 108.88 | 0.0000 | 108.88 | 108.88 | + | " Inner" | 9554 | 141187.2 | 14.778 | 0.0000 | 14.778 | 14.778 | + | " Middle" | 6816 | 98387.75 | 14.435 | 8.1783e-06 | 14.435 | 14.435 | + | " Outer" | 12998 | 189957.9 | 14.614 | 1.0315e-05 | 14.614 | 14.614 | + | "Delta(Z)" | 29368 | 3360689 | 114.43 | 12.270 | 75.475 | 164.38 | + | "Delta(Z) Inner" | 9554 | 1083243 | 113.38 | 11.435 | 75.475 | 164.38 | + | "Delta(Z) Middle" | 6816 | 772768.1 | 113.38 | 11.645 | 81.386 | 163.10 | + | "Delta(Z) Outer" | 12998 | 1504678 | 115.76 | 13.029 | 78.290 | 161.09 | CaloFutureShowerOverlap.PhotonSh... SUCCESS Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Delta(X)" | 249628 | -36181.93 | -0.14494 | 12.551 | -23.059 | 22.930 | - | "Delta(Y)" | 249628 | -24113.92 | -0.096599 | 12.477 | -23.059 | 23.424 | + | "Delta(X)" | 29368 | -4951.346 | -0.16860 | 12.586 | -23.059 | 22.930 | + | "Delta(Y)" | 29368 | -2297.971 | -0.078247 | 12.517 | -23.059 | 23.423 | +TrackBestTrackCreator.TrackMaste... SUCCESS Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Number of field calls" | 4359996 | +TrackBestTrackCreator.TrackMaste... SUCCESS Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Number of field calls" | 522824 | PrMatchNN.PrAddUTHitsTool SUCCESS Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#UT hits added" | 4189 | 26177 | 6.2490 | - | "#tracks with hits added" | 4189 | + | "#UT hits added" | 4190 | 26187 | 6.2499 | + | "#tracks with hits added" | 4190 | PrForwardTrackingVelo.PrAddUTHit... SUCCESS Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#UT hits added" | 4297 | 26993 | 6.2818 | | "#tracks with hits added" | 4297 | +TrackEventFitter.TrackMasterFitt... SUCCESS Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Number of field calls" | 891044 | +TrackEventFitter.TrackMasterFitt... SUCCESS Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Number of field calls" | 132822 | +ToolSvc.TrackRungeKuttaExtrapolator SUCCESS Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Number of field calls" | 6182 | +ClassifyPhotonElectronAlg.CaloFu... SUCCESS Number of counters : 10 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | " Inner" | 4084 | 331788.7 | 81.241 | 0.0000 | 81.241 | 81.241 | + | " Middle" | 3649 | 347764.3 | 95.304 | 0.0000 | 95.304 | 95.304 | + | " Outer" | 5593 | 608954.8 | 108.88 | 3.0537e-06 | 108.88 | 108.88 | + | " Inner" | 4084 | 60352.56 | 14.778 | 0.0000 | 14.778 | 14.778 | + | " Middle" | 3649 | 52672.67 | 14.435 | 3.0937e-07 | 14.435 | 14.435 | + | " Outer" | 5593 | 81738.29 | 14.614 | 6.4520e-07 | 14.614 | 14.614 | + | "Delta(Z)" | 13326 | 1501566 | 112.68 | 12.050 | 78.844 | 164.35 | + | "Delta(Z) Inner" | 4084 | 455917.1 | 111.63 | 11.663 | 78.844 | 164.35 | + | "Delta(Z) Middle" | 3649 | 407393.1 | 111.65 | 11.523 | 82.480 | 163.63 | + | "Delta(Z) Outer" | 5593 | 638255.5 | 114.12 | 12.509 | 83.133 | 160.94 | +ClassifyPhotonElectronAlg.CaloFu... SUCCESS Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Delta(X)" | 13326 | -1651.846 | -0.12396 | 12.268 | -23.059 | 22.930 | + | "Delta(Y)" | 13326 | -1050.947 | -0.078864 | 12.163 | -23.059 | 22.930 | +ClassifyPhotonElectronAlg.CaloFu... SUCCESS Number of counters : 8 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | " Inner" | 4084 | 4063.239 | 0.99492 | 0.019156 | 0.96468 | 1.1127 | + | " Middle" | 3649 | 3669.787 | 1.0057 | 0.019217 | 0.97678 | 1.1325 | + | " Outer" | 5593 | 5585.261 | 0.99862 | 0.015174 | 0.97356 | 1.0596 | + | "Corrected energy" | 13326 |7.53885e+07 | 5657.2 | 7984.8 | 250.74 | 2.7815e+05 | + | "Delta(E)" | 13326 | 1756494 | 131.81 | 196.45 | -3615.5 | 4037.2 | + | "Pileup offset" | 13326 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | + | "Pileup scale" | 100 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | + | "Pileup subtracted ratio" | 13326 | 13326 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + -- GitLab From 414f68e847bc959e946087dd6abbdf1b8df29870 Mon Sep 17 00:00:00 2001 From: Nikita Kazeev Date: Fri, 29 May 2020 18:03:59 +0200 Subject: [PATCH 7/7] Switched MuID tracks to Best --- Hlt/RecoConf/python/RecoConf/standalone.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Hlt/RecoConf/python/RecoConf/standalone.py b/Hlt/RecoConf/python/RecoConf/standalone.py index c77918d82df..fda9c5bcbac 100644 --- a/Hlt/RecoConf/python/RecoConf/standalone.py +++ b/Hlt/RecoConf/python/RecoConf/standalone.py @@ -160,7 +160,7 @@ def standalone_hlt2_reco(do_mc_checking=False, do_data_monitoring=False): do_data_monitoring=do_data_monitoring) # Add MuID - muon_ids = make_muon_id_hlt2(hlt2_tracks["Forward"]["v2"]) + muon_ids = make_muon_id_hlt2(hlt2_tracks["Best"]["v1"]) data += [muon_ids] # Add monitoring -- GitLab