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

Include dedx collections in fastsim output #28257

Merged
merged 3 commits into from Oct 27, 2019

Conversation

kpedro88
Copy link
Contributor

@kpedro88 kpedro88 commented Oct 24, 2019

PR description:

The FastTrackDeDxProducer is now included in the FastSim reconstruction sequence with two versions (strip tracker and pixel).

The sizes of the new output collections from a test config are (using edmEventSize):

Branch Name | Average Uncompressed Size (Bytes/Event) | Average Compressed Size (Bytes/Event) 
recoDeDxDataedmValueMap_dedxHarmonic2__RECO. 11165.7 1507.67
recoDeDxDataedmValueMap_dedxPixelHarmonic2__RECO. 11192.3 1399.33

Similar collections are already included in regular RECO/AOD output, so this should be an acceptable increase for FastSim RECO/AOD output.

This PR also fixes a condition in the producer that was modified in the backport PR #28235, but erroneously not modified in master.

PR validation:

Ran a private test config without errors and observed the desired collections in the output.

attn: @sbein @ssekmen @scarletnorberg

@cmsbuild
Copy link
Contributor

The code-checks are being triggered in jenkins.

@kpedro88
Copy link
Contributor Author

please test

@cmsbuild
Copy link
Contributor

+code-checks

Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-28257/12417

  • This PR adds an extra 20KB to repository

@cmsbuild
Copy link
Contributor

cmsbuild commented Oct 24, 2019

The tests are being triggered in jenkins.
https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/3137/console Started: 2019/10/24 17:27

@cmsbuild
Copy link
Contributor

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

It involves the following packages:

FastSimulation/SimplifiedGeometryPropagator
RecoTracker/Configuration
RecoTracker/DeDx

@perrotta, @ssekmen, @lveldere, @sbein, @civanch, @mdhildreth, @cmsbuild, @slava77 can you please review it and eventually sign? Thanks.
@makortel, @felicepantaleo, @GiacomoSguazzoni, @rovere, @VinInn, @mschrode, @gpetruc, @matt-komm, @ebrondol, @dgulhan this is something you requested to watch as well.
@davidlange6, @slava77, @fabiocos you are the release manager for this.

cms-bot commands are listed here

@@ -38,5 +38,6 @@
trackingGlobalReco = cms.Sequence(trackingGlobalRecoTask)

from Configuration.Eras.Modifier_fastSim_cff import fastSim
_fastSim_trackingGlobalReco = cms.Sequence(trackExtrapolator)
ckftracks_fast = cms.Sequence(doAlldEdXEstimators)
_fastSim_trackingGlobalReco = cms.Sequence(ckftracks_fast*trackExtrapolator)
fastSim.toReplaceWith(trackingGlobalReco,_fastSim_trackingGlobalReco)
Copy link
Contributor

Choose a reason for hiding this comment

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

How about the following?

fastSim.toReplaceWith(trackingGlobalRecoTask, cms.Task(doAlldEdXEstimators, trackExtrapolator))

Copy link
Contributor Author

Choose a reason for hiding this comment

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

It actually needs to be doAlldEdXEstimatorsTask since sequences can't be added to tasks

doFastdEdXEstimators = cms.Sequence(doFastdEdXEstimatorsTask)

fastSim.toReplaceWith(doAlldEdXEstimatorsTask, doFastdEdXEstimatorsTask)
fastSim.toReplaceWith(doAlldEdXEstimators, doFastdEdXEstimators)
Copy link
Contributor

Choose a reason for hiding this comment

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

To me doFastdEdXEstimators Sequence looks redundant as the necessary replacement is done already with doFastdEdXEstimatorsTask (which could be further simplified to

fastSim.toReplaceWith(doAlldEdXEstimatorsTask, cms.Task(dedxHarmonic2, dedxPixelHarmonic2))

)

@cmsbuild
Copy link
Contributor

The code-checks are being triggered in jenkins.

@cmsbuild
Copy link
Contributor

+code-checks

Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-28257/12426

  • This PR adds an extra 20KB to repository

@cmsbuild
Copy link
Contributor

Pull request #28257 was updated. @perrotta, @ssekmen, @lveldere, @sbein, @civanch, @mdhildreth, @cmsbuild, @slava77 can you please check and sign again.

@kpedro88
Copy link
Contributor Author

please test

@cmsbuild
Copy link
Contributor

cmsbuild commented Oct 24, 2019

The tests are being triggered in jenkins.
https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/3143/console Started: 2019/10/24 19:13

@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-456a5f/3143/summary.html

Comparison Summary:

  • No significant changes to the logs found
  • Reco comparison results: 0 differences found in the comparisons
  • DQMHistoTests: Total files compared: 34
  • DQMHistoTests: Total histograms compared: 2961036
  • DQMHistoTests: Total failures: 1
  • DQMHistoTests: Total nulls: 0
  • DQMHistoTests: Total successes: 2960694
  • DQMHistoTests: Total skipped: 341
  • DQMHistoTests: Total Missing objects: 0
  • DQMHistoSizes: Histogram memory added: 0.0 KiB( 33 files compared)
  • Checked 147 log files, 16 edm output root files, 34 DQM output files

@sbein
Copy link
Contributor

sbein commented Oct 25, 2019

+1

@perrotta
Copy link
Contributor

+1

  • Changes in the reco configs only refer to fastsim customizations
  • Jenkins tests pass and show no changes in reco outputs

@cmsbuild
Copy link
Contributor

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 now be reviewed by the release team before it's merged. @davidlange6, @slava77, @smuzaffar, @fabiocos (and backports should be raised in the release meeting by the corresponding L2)

@fabiocos
Copy link
Contributor

+1

@cmsbuild cmsbuild merged commit 5723015 into cms-sw:master Oct 27, 2019
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