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

fix histogram HLT_Higgs_PhotonJet_trigvsnvtx #18258

Merged

Conversation

kpedro88
Copy link
Contributor

@kpedro88 kpedro88 commented Apr 7, 2017

There was a divide by zero problem in this histogram, which caused the PR comparisons to report it as a failure.

@cmsbuild
Copy link
Contributor

cmsbuild commented Apr 7, 2017

A new Pull Request was created by @kpedro88 (Kevin Pedro) for master.

It involves the following packages:

DQMOffline/Trigger

@cmsbuild, @dmitrijus, @vanbesien, @davidlange6 can you please review it and eventually sign? Thanks.
@battibass, @mtosi, @jhgoh, @calderona, @HuguesBrun, @trocino, @rociovilar this is something you requested to watch as well.
@Muzaffar, @davidlange6, @smuzaffar you are the release manager for this.

cms-bot commands are listed here #13028

@kpedro88
Copy link
Contributor Author

kpedro88 commented Apr 7, 2017

@cmsbuild please test

@cmsbuild
Copy link
Contributor

cmsbuild commented Apr 7, 2017

The tests are being triggered in jenkins.
https://cmssdt.cern.ch/jenkins/job/ib-any-integration/18995/console Started: 2017/04/07 13:52

@@ -322,7 +322,8 @@ HigPhotonJetHLTOfflineSource::endRun(const edm::Run & iRun,
{
// Normalize to the total number of events in the run
TH2F* h = trigvsnvtx_->getTH2F();
double norm = evtsrun_*hltPathsToCheck_.size()/h->Integral();
double integral = h->Integral();
double norm = (integral > 0.) ? evtsrun_*hltPathsToCheck_.size()/integral : 1.;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sorry, I'm confused
shouldn't such a computation be done in the HARVESTING step ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe; I'm just trying to fix the comparison plot.

@mtosi
Copy link
Contributor

mtosi commented Apr 7, 2017 via email

@kpedro88
Copy link
Contributor Author

kpedro88 commented Apr 7, 2017

@mtosi don't know what that is or where to add it, sorry

@mtosi
Copy link
Contributor

mtosi commented Apr 7, 2017 via email

@davidlange6
Copy link
Contributor

davidlange6 commented Apr 7, 2017 via email

@mtosi
Copy link
Contributor

mtosi commented Apr 7, 2017 via email

@cmsbuild
Copy link
Contributor

cmsbuild commented Apr 7, 2017

@cmsbuild
Copy link
Contributor

cmsbuild commented Apr 7, 2017

Comparison job queued.

@cmsbuild
Copy link
Contributor

cmsbuild commented Apr 7, 2017

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

Comparison Summary:

  • No significant changes to the logs found
  • Reco comparison results: 1571 differences found in the comparisons
  • DQMHistoTests: Total files compared: 23
  • DQMHistoTests: Total histograms compared: 1917243
  • DQMHistoTests: Total failures: 50877
  • DQMHistoTests: Total nulls: 0
  • DQMHistoTests: Total successes: 1866193
  • DQMHistoTests: Total skipped: 173
  • DQMHistoTests: Total Missing objects: 0
  • Checked 94 log files, 14 edm output root files, 23 DQM output files

@davidlange6 davidlange6 merged commit 3804d4a into cms-sw:master Apr 7, 2017
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

4 participants