-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix ZMu skimming code for 2024 PbPb data taking #46584
Conversation
cms-bot internal usage |
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-46584/42478 |
A new Pull Request was created by @flodamas for master. It involves the following packages:
@AdrianoDee, @cmsbuild, @DickyChant, @miquork can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
please test workflow 142.0 |
urgent |
is there a relval test that actually tests these skims? |
type bug-fix |
I had misinterpreted the modified to run the PbPbZMu skimming code, my bad. I think in general no, but let me tag @youyingli that should know better than me. To be honest I don't know why we don't have RelVals to test any skim and if this is something just missing or practically not doable. I suspect the former. |
wf 1000.0 runs skims for pp:
can we have something for PbPb too? |
FWIW the issue reported at #46458 (review) is reproducible with: #!/bin/bash -ex
scram p CMSSW CMSSW_14_1_4_patch4
cd CMSSW_14_1_4_patch4/src/
eval `scramv1 runtime -sh`
git cms-addpkg Configuration/DataProcessing
python3 Configuration/DataProcessing/test/RunPromptReco.py \
--scenario=ppEra_Run3_pp_on_PbPb_approxSiStripClusters_2024 \
--reco \
--global-tag 141X_dataRun3_Prompt_v3 \
--lfn=root://eoscms.cern.ch//eos/cms/tier0/store/backfill/1/hidata/Tier0_HIREPLAY_2024/HIPhysicsRawPrime15/RAW/v1194758/000/374/951/00000/cd04c2a1-c933-479b-9fbb-1db653fb6236.root \
--PhysicsSkims=@HIPhysicsRawPrime15 \
--dqmSeq=@commonSiStripZeroBias+@ecal+@hcal+@muon+@jetmet+@egamma
edmConfigDump RunPromptRecoCfg.py > dump.py
echo 'process.source.skipEvents=cms.untracked.uint32(407)' >> dump.py
cmsRun -e dump.py if I modify the recipe to cherry-pick this commit with: #!/bin/bash -ex
scram p CMSSW CMSSW_14_1_4_patch4
cd CMSSW_14_1_4_patch4/src/
eval `scramv1 runtime -sh`
git cms-addpkg Configuration/DataProcessing Configuration/Skimming
git cms-init; git remote add flodamas [email protected]:flodamas/cmssw.git; git fetch flodamas
git cherry-pick 3cfdab7cd9549e5b76fa68aadb97652ca4aa8a6f
scram b -j 20
eval `scramv1 runtime -sh`
python3 Configuration/DataProcessing/test/RunPromptReco.py \
--scenario=ppEra_Run3_pp_on_PbPb_approxSiStripClusters_2024 \
--reco \
--global-tag 141X_dataRun3_Prompt_v3 \
--lfn=root://eoscms.cern.ch//eos/cms/tier0/store/backfill/1/hidata/Tier0_HIREPLAY_2024/HIPhysicsRawPrime15/RAW/v1194758/000/374/951/00000/cd04c2a1-c933-479b-9fbb-1db653fb6236.root \
--PhysicsSkims=@HIPhysicsRawPrime15 \
--dqmSeq=@commonSiStripZeroBias+@ecal+@hcal+@muon+@jetmet+@egamma
edmConfigDump RunPromptRecoCfg.py > dump.py
echo 'process.source.skipEvents=cms.untracked.uint32(407)' >> dump.py
cmsRun -e dump.py the process runs fine. +1 from ORM. |
There is code to test the PbPb skims, but not yet with this years trigger menu. For this particular skim, the HLT path might have been the same, but for others the path was new. |
|
I opened #46586 - feel free to follow-up there. |
+1 |
+1 Size: This PR adds an extra 16KB to repository Comparison SummarySummary:
|
+pdmv |
This pull request is fully signed and it will be integrated in one of the next master IBs (tests are also fine). This pull request will be automatically merged. |
PR description:
Urgent fix of the
ZMu
skimming code which is responsible for the crashes observed during the Replay of the HIPhysicsRawPrime data withCMSSW_14_1_4_patch4
as documented in this post.PR validation:
Tested with
runTheMatrix.py -l 142.0 -n -e
modified to run thePbPbZMu
skimming code. No crash observed and output produced successfully.If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:
Will be backported urgently in
14_1_X
for PbPb data taking.