From . * [new ref] HEAD -> merge-attempt From https://github.com/cms-sw/cmssw * [new ref] refs/pull/47603/head -> cms-sw/refs/pull/47603/head Switched to branch 'merge-attempt' Merge made by the 'ort' strategy. PhysicsTools/BPHNano/BuildFile.xml | 5 + PhysicsTools/BPHNano/plugins/BToTrkLLBuilder.cc | 277 ++++++++++++++ PhysicsTools/BPHNano/plugins/BToTrkTrkLLBuilder.cc | 396 +++++++++++++++++++++ PhysicsTools/BPHNano/plugins/BToV0LLBuilder.cc | 277 ++++++++++++++ PhysicsTools/BPHNano/plugins/BuildFile.xml | 38 ++ .../BPHNano/plugins/CandMCMatchTableProducerBPH.cc | 256 +++++++++++++ PhysicsTools/BPHNano/plugins/DiLeptonBuilder.cc | 144 ++++++++ PhysicsTools/BPHNano/plugins/DiTrackBuilder.cc | 208 +++++++++++ PhysicsTools/BPHNano/plugins/KinVtxFitter.cc | 85 +++++ PhysicsTools/BPHNano/plugins/KinVtxFitter.h | 83 +++++ .../BPHNano/plugins/MCFinalStateSelector.cc | 251 +++++++++++++ PhysicsTools/BPHNano/plugins/MatchEmbedder.cc | 85 +++++ .../BPHNano/plugins/MuonTriggerSelector.cc | 236 ++++++++++++ PhysicsTools/BPHNano/plugins/PVertexBPHTable.cc | 176 +++++++++ .../plugins/SimpleFlatTableProducerBPHPlugins.cc | 13 + PhysicsTools/BPHNano/plugins/TrackMerger.cc | 292 +++++++++++++++ PhysicsTools/BPHNano/plugins/TriggerObjectTable.cc | 226 ++++++++++++ PhysicsTools/BPHNano/plugins/V0ReBuilder.cc | 223 ++++++++++++ PhysicsTools/BPHNano/plugins/helper.h | 225 ++++++++++++ PhysicsTools/BPHNano/production/README | 61 ++++ .../BPHNano/production/apply_crab_command.sh | 8 + PhysicsTools/BPHNano/production/samples.yml | 394 ++++++++++++++++++++ PhysicsTools/BPHNano/production/submit_on_crab.py | 189 ++++++++++ PhysicsTools/BPHNano/python/BToKLL_cff.py | 101 ++++++ PhysicsTools/BPHNano/python/BToTrkTrkLL_cff.py | 119 +++++++ PhysicsTools/BPHNano/python/BToV0LL_cff.py | 142 ++++++++ PhysicsTools/BPHNano/python/DiTrack_cff.py | 61 ++++ PhysicsTools/BPHNano/python/MuMu_cff.py | 46 +++ PhysicsTools/BPHNano/python/V0_cff.py | 153 ++++++++ PhysicsTools/BPHNano/python/common_cff.py | 12 + PhysicsTools/BPHNano/python/genparticlesBPH_cff.py | 31 ++ PhysicsTools/BPHNano/python/muons_cff.py | 112 ++++++ PhysicsTools/BPHNano/python/nanoBPH_cff.py | 121 +++++++ .../BPHNano/python/particlelevelBPH_cff.py | 4 + PhysicsTools/BPHNano/python/pverticesBPH_cff.py | 10 + PhysicsTools/BPHNano/python/tracks_cff.py | 87 +++++ PhysicsTools/BPHNano/python/trgbits_cff.py | 37 ++ PhysicsTools/BPHNano/python/vertices_cff.py | 40 +++ PhysicsTools/BPHNano/src/classes.h | 12 + PhysicsTools/BPHNano/src/classes_def.xml | 16 + PhysicsTools/BPHNano/test/run_bphNano_cfg.py | 248 +++++++++++++ PhysicsTools/BPHNano/test/time_analysis.py | 134 +++++++ PhysicsTools/BPHNano/test/validate_nano.py | 249 +++++++++++++ PhysicsTools/BPHNano/test/validate_pr.sh | 67 ++++ PhysicsTools/NanoAOD/python/autoNANO.py | 3 + 45 files changed, 5953 insertions(+) create mode 100644 PhysicsTools/BPHNano/BuildFile.xml create mode 100644 PhysicsTools/BPHNano/plugins/BToTrkLLBuilder.cc create mode 100644 PhysicsTools/BPHNano/plugins/BToTrkTrkLLBuilder.cc create mode 100644 PhysicsTools/BPHNano/plugins/BToV0LLBuilder.cc create mode 100644 PhysicsTools/BPHNano/plugins/BuildFile.xml create mode 100644 PhysicsTools/BPHNano/plugins/CandMCMatchTableProducerBPH.cc create mode 100644 PhysicsTools/BPHNano/plugins/DiLeptonBuilder.cc create mode 100644 PhysicsTools/BPHNano/plugins/DiTrackBuilder.cc create mode 100644 PhysicsTools/BPHNano/plugins/KinVtxFitter.cc create mode 100644 PhysicsTools/BPHNano/plugins/KinVtxFitter.h create mode 100644 PhysicsTools/BPHNano/plugins/MCFinalStateSelector.cc create mode 100644 PhysicsTools/BPHNano/plugins/MatchEmbedder.cc create mode 100644 PhysicsTools/BPHNano/plugins/MuonTriggerSelector.cc create mode 100644 PhysicsTools/BPHNano/plugins/PVertexBPHTable.cc create mode 100644 PhysicsTools/BPHNano/plugins/SimpleFlatTableProducerBPHPlugins.cc create mode 100644 PhysicsTools/BPHNano/plugins/TrackMerger.cc create mode 100644 PhysicsTools/BPHNano/plugins/TriggerObjectTable.cc create mode 100644 PhysicsTools/BPHNano/plugins/V0ReBuilder.cc create mode 100644 PhysicsTools/BPHNano/plugins/helper.h create mode 100644 PhysicsTools/BPHNano/production/README create mode 100644 PhysicsTools/BPHNano/production/apply_crab_command.sh create mode 100644 PhysicsTools/BPHNano/production/samples.yml create mode 100644 PhysicsTools/BPHNano/production/submit_on_crab.py create mode 100644 PhysicsTools/BPHNano/python/BToKLL_cff.py create mode 100644 PhysicsTools/BPHNano/python/BToTrkTrkLL_cff.py create mode 100644 PhysicsTools/BPHNano/python/BToV0LL_cff.py create mode 100644 PhysicsTools/BPHNano/python/DiTrack_cff.py create mode 100644 PhysicsTools/BPHNano/python/MuMu_cff.py create mode 100644 PhysicsTools/BPHNano/python/V0_cff.py create mode 100644 PhysicsTools/BPHNano/python/common_cff.py create mode 100644 PhysicsTools/BPHNano/python/genparticlesBPH_cff.py create mode 100644 PhysicsTools/BPHNano/python/muons_cff.py create mode 100644 PhysicsTools/BPHNano/python/nanoBPH_cff.py create mode 100644 PhysicsTools/BPHNano/python/particlelevelBPH_cff.py create mode 100644 PhysicsTools/BPHNano/python/pverticesBPH_cff.py create mode 100644 PhysicsTools/BPHNano/python/tracks_cff.py create mode 100644 PhysicsTools/BPHNano/python/trgbits_cff.py create mode 100644 PhysicsTools/BPHNano/python/vertices_cff.py create mode 100644 PhysicsTools/BPHNano/src/classes.h create mode 100644 PhysicsTools/BPHNano/src/classes_def.xml create mode 100644 PhysicsTools/BPHNano/test/run_bphNano_cfg.py create mode 100644 PhysicsTools/BPHNano/test/time_analysis.py create mode 100644 PhysicsTools/BPHNano/test/validate_nano.py create mode 100755 PhysicsTools/BPHNano/test/validate_pr.sh Switched to branch 'from-CMSSW_15_1_X_2025-03-19-1100'