From 875e901bbf7294e27d38ce2ab501ba8a800858ae Mon Sep 17 00:00:00 2001 From: Slava Krutelyov Date: Wed, 18 Jan 2023 07:05:18 -0800 Subject: [PATCH 1/4] add labeling for tracking --- categories_map.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/categories_map.py b/categories_map.py index 5c72c392c60a..1609d36eafea 100644 --- a/categories_map.py +++ b/categories_map.py @@ -1713,4 +1713,13 @@ #where cmssw_pkgX can be full or part of start of cmssw Package name # "jetmet" = [ "SubSystem1", "SubSystem2/Package"] CMSSW_LABELS = { + "tracking" = [ + "CUDADataFormats/Track", + "DataFormats/Track", + "RecoPixelVertexing", + "RecoTracker", + "RecoVertex", + "TrackPropagation", + "TrackingTools" + ] } From 847bb9c4c51f5154e8fb9c1de194072fb85c5901 Mon Sep 17 00:00:00 2001 From: Slava Krutelyov Date: Wed, 18 Jan 2023 07:16:18 -0800 Subject: [PATCH 2/4] syntax --- categories_map.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/categories_map.py b/categories_map.py index 1609d36eafea..615246082947 100644 --- a/categories_map.py +++ b/categories_map.py @@ -1711,9 +1711,9 @@ #explicit `type label`. Only valid dpg/pog groups can be added as labels #Format: label = [cmssw_pkg1, cmssw_pkgN] #where cmssw_pkgX can be full or part of start of cmssw Package name -# "jetmet" = [ "SubSystem1", "SubSystem2/Package"] +# "jetmet": [ "SubSystem1", "SubSystem2/Package"] CMSSW_LABELS = { - "tracking" = [ + "tracking": [ "CUDADataFormats/Track", "DataFormats/Track", "RecoPixelVertexing", From f2c36ccf5e1830c2bf128bf468acd7210492a79e Mon Sep 17 00:00:00 2001 From: Slava Krutelyov Date: Wed, 18 Jan 2023 07:44:26 -0800 Subject: [PATCH 3/4] not just reco --- categories_map.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/categories_map.py b/categories_map.py index 615246082947..8672b84652c5 100644 --- a/categories_map.py +++ b/categories_map.py @@ -1715,11 +1715,22 @@ CMSSW_LABELS = { "tracking": [ "CUDADataFormats/Track", + "CUDADataFormats/Vertex", "DataFormats/Track", + "DataFormats/VertexReco", + "DataFormats/V0Candidate", + "DataFormats/VZero", + "DQM/Tracking", + "FastSimulation/Tracking", + "Geometry/GlobalTracking", "RecoPixelVertexing", "RecoTracker", "RecoVertex", "TrackPropagation", - "TrackingTools" + "TrackingTools", + "Validation/RecoPixelVertexing", + "Validation/RecoTrack", + "Validation/RecoVertex", + "Validation/Tracking" ] } From 9d8c7665441e400e658e01e31c0a722ae5576d4c Mon Sep 17 00:00:00 2001 From: Slava Krutelyov Date: Wed, 18 Jan 2023 07:52:40 -0800 Subject: [PATCH 4/4] add BeamSpot and a few more to tracking, future-proof use just the beginning of the name --- categories_map.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/categories_map.py b/categories_map.py index 8672b84652c5..c3f1fae2c1f0 100644 --- a/categories_map.py +++ b/categories_map.py @@ -1714,12 +1714,17 @@ # "jetmet": [ "SubSystem1", "SubSystem2/Package"] CMSSW_LABELS = { "tracking": [ + "AnalysisDataFormats/TrackInfo", + "CondCore/BeamSpot", + "CondFormats/BeamSpot", + "CondTools/BeamSpot", "CUDADataFormats/Track", "CUDADataFormats/Vertex", "DataFormats/Track", "DataFormats/VertexReco", "DataFormats/V0Candidate", "DataFormats/VZero", + "DQM/BeamMonitor", "DQM/Tracking", "FastSimulation/Tracking", "Geometry/GlobalTracking",