Skip to content
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

CSC TP bugfixes for high PU running #18743

Merged
merged 3 commits into from May 18, 2017
Merged

CSC TP bugfixes for high PU running #18743

merged 3 commits into from May 18, 2017

Conversation

dildick
Copy link
Contributor

@dildick dildick commented May 15, 2017

Last week Stefan Piperov reported that the PU-samples with the D12 geometry crash with an error rate of 85% in the DIGI step with error

cmsRun1
Fatal Exception (Exit Code: 8001)
An exception of category 'InvalidDetId' occurred while
   [0] Processing  Event run: 1 lumi: 181 event: 9005 stream: 0
   [1] Running path 'L1simulation_step'
   [2] Calling method for module 
CSCTriggerPrimitivesProducer/'simCscTriggerPrimitiveDigis'
Exception Message:
GEMDetId ctor: det: 0 subdet: 0 is not a valid GEM id

After investigation it was found that the pad DetIds sometimes get corrupted. I put in place a few checks to ensure that the constructor is not called when the DetId is not a GEMDetId.

This update needs to be included in 91X and 92X.

@calabria

@dildick dildick changed the title From cmssw 9 1 0 pre3 bugfixes for high pu running CSC TP bugfixes for high PU running May 15, 2017
@cmsbuild cmsbuild added this to the CMSSW_9_2_X milestone May 15, 2017
@cmsbuild
Copy link
Contributor

A new Pull Request was created by @dildick (Sven Dildick) for master.

It involves the following packages:

L1Trigger/CSCTriggerPrimitives

@cmsbuild, @rekovic, @mulhearn, @davidlange6 can you please review it and eventually sign? Thanks.
@valuev, @ptcox, @kreczko, @Martin-Grunewald this is something you requested to watch as well.
@davidlange6 you are the release manager for this.

cms-bot commands are listed here

@calabria
Copy link
Contributor

@kpedro88 FYI
@dildick please send the same to 91X

@kpedro88
Copy link
Contributor

please test

@kpedro88
Copy link
Contributor

assign upgrade

@cmsbuild
Copy link
Contributor

New categories assigned: upgrade

@kpedro88 you have been requested to review this Pull request/Issue and eventually sign? Thanks

@cmsbuild
Copy link
Contributor

cmsbuild commented May 15, 2017

The tests are being triggered in jenkins.
https://cmssdt.cern.ch/jenkins/job/ib-any-integration/19840/console Started: 2017/05/15 21:26

@cmsbuild
Copy link
Contributor

@cmsbuild
Copy link
Contributor

Comparison job queued.

@cmsbuild
Copy link
Contributor

Comparison is ready
https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-18743/19840/summary.html

Comparison Summary:

  • You potentially added 1176 lines to the logs
  • Reco comparison results: 1713 differences found in the comparisons
  • DQMHistoTests: Total files compared: 24
  • DQMHistoTests: Total histograms compared: 1829394
  • DQMHistoTests: Total failures: 22842
  • DQMHistoTests: Total nulls: 0
  • DQMHistoTests: Total successes: 1806372
  • DQMHistoTests: Total skipped: 180
  • DQMHistoTests: Total Missing objects: 0
  • Checked 98 log files, 14 edm output root files, 24 DQM output files

@rekovic
Copy link
Contributor

rekovic commented May 16, 2017

+1

@rekovic
Copy link
Contributor

rekovic commented May 16, 2017

@dildick What does this mean for the events that did not crash? Was the DetID properly set?

@dildick
Copy link
Contributor Author

dildick commented May 16, 2017

I believe so. I have not yet found the root cause of the corruption. But this prevents the run functions in the CSC-GEM Motherboards from crashing unnecessarily.

@kpedro88
Copy link
Contributor

@dildick please reduce the number of messages printed; this PR added 1000+ lines to the log for 2023D8 step3, all like this:

%MSG-e GEMCoPadDigiValidation:  GEMCoPadDigiValidation:gemCoPadValidation  15-May-2017 22:11:02 CEST Run: 1 Event: 3
 Re 1 Ri 1 St 2 La 0 Ch 3 Ro 4  : This part can not load from GEMGeometry // Original Re 1 Ri 1 St 2 La 0 Ch 3 Ro 0  station : 2
%MSG

@dildick
Copy link
Contributor Author

dildick commented May 16, 2017

@kpedro88 The issue originates here:

GEMDetId roId = GEMDetId(re, id.ring(), st, la, chamber, digiItr->roll());
Short_t nroll = roId.roll();
LogDebug("GEMCoPadDigiValidation")<<"roId : "<<roId;
const GeomDet* gdet = GEMGeometry_->idToDet(roId);
if ( gdet == nullptr) {
edm::LogError("GEMCoPadDigiValidation")<<roId<<" : This part can not load from GEMGeometry // Original"<<id<<" station : "<<st;
edm::LogError("GEMCoPadDigiValidation")<<"Getting DetId failed. Discard this gem copad hit.Maybe it comes from unmatched geometry between GEN and DIGI.";
continue;
}
. I'll provide a fix later today.

@cmsbuild
Copy link
Contributor

Pull request #18743 was updated. @kpedro88, @dmitrijus, @cmsbuild, @rekovic, @vanbesien, @mulhearn, @davidlange6 can you please check and sign again.

@dildick
Copy link
Contributor Author

dildick commented May 16, 2017

This should address the issue.

@kpedro88
Copy link
Contributor

please test

@cmsbuild
Copy link
Contributor

cmsbuild commented May 16, 2017

The tests are being triggered in jenkins.
https://cmssdt.cern.ch/jenkins/job/ib-any-integration/19888/console Started: 2017/05/16 21:33

@cmsbuild
Copy link
Contributor

@cmsbuild
Copy link
Contributor

Comparison job queued.

@cmsbuild
Copy link
Contributor

Comparison is ready
https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-18743/19888/summary.html

Comparison Summary:

  • No significant changes to the logs found
  • Reco comparison results: 1716 differences found in the comparisons
  • DQMHistoTests: Total files compared: 24
  • DQMHistoTests: Total histograms compared: 1833858
  • DQMHistoTests: Total failures: 53626
  • DQMHistoTests: Total nulls: 0
  • DQMHistoTests: Total successes: 1780052
  • DQMHistoTests: Total skipped: 180
  • DQMHistoTests: Total Missing objects: 0
  • Checked 98 log files, 14 edm output root files, 24 DQM output files

@kpedro88
Copy link
Contributor

+1

@davidlange6 davidlange6 merged commit c7c87d8 into cms-sw:master May 18, 2017
@dildick dildick deleted the from-CMSSW_9_1_0_pre3-bugfixes-for-high-pu-running branch May 18, 2017 17:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants