-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Run3-alca239 Add a file which is used for phi-symmetry calibration using local runs of HCAL #40969
Conversation
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-40969/34469
|
A new Pull Request was created by @bsunanda (Sunanda Banerjee) for master. It involves the following packages:
@malbouis, @yuanchao, @cmsbuild, @saumyaphor4252, @francescobrivio, @ChrisMisan, @tvami can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
@cmsbuild Please test |
+1 Summary: https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-344755/31111/summary.html Comparison SummarySummary:
|
@bsunanda this makes no sense, how can you use any |
@tvami You are right. It was tested externally in the context of phi symmetry studies |
@tvami I have edited the main section. Please approve this PR |
+alca
|
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. @perrotta, @dpiparo, @rappoccio (and backports should be raised in the release meeting by the corresponding L2) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since you are adding a new file, please make the configurations in it more clean, as suggested
hfrecoMBNZS = RecoLocalCalo.HcalRecProducers.hfsimplereco_cfi.hfsimplereco.clone() | ||
|
||
hfrecoMBNZS.firstSample = 2 # Run 2 default before 2017 | ||
hfrecoMBNZS.samplesToAdd = 2 | ||
hfrecoMBNZS.digiLabel = 'hcalDigiAlCaMB' | ||
hfrecoMBNZS.tsFromDB = cms.bool(False) | ||
hfrecoMBNZS.dropZSmarkedPassed = cms.bool(False) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hfrecoMBNZS = RecoLocalCalo.HcalRecProducers.hfsimplereco_cfi.hfsimplereco.clone() | |
hfrecoMBNZS.firstSample = 2 # Run 2 default before 2017 | |
hfrecoMBNZS.samplesToAdd = 2 | |
hfrecoMBNZS.digiLabel = 'hcalDigiAlCaMB' | |
hfrecoMBNZS.tsFromDB = cms.bool(False) | |
hfrecoMBNZS.dropZSmarkedPassed = cms.bool(False) | |
hfrecoMBNZS = RecoLocalCalo.HcalRecProducers.hfsimplereco_cfi.hfsimplereco.clone( | |
hfrecoMBNZS.firstSample = 2, # Run 2 default before 2017 | |
hfrecoMBNZS.samplesToAdd = 2, | |
hfrecoMBNZS.digiLabel = 'hcalDigiAlCaMB', | |
hfrecoMBNZS.tsFromDB = False, | |
hfrecoMBNZS.dropZSmarkedPassed = False | |
) |
horecoMBNZS = RecoLocalCalo.HcalRecProducers.hosimplereco_cfi.hosimplereco.clone() | ||
|
||
horecoMBNZS.firstSample = 4 | ||
horecoMBNZS.samplesToAdd = 4 | ||
horecoMBNZS.digiLabel = 'hcalDigiAlCaMB' | ||
horecoMBNZS.tsFromDB = cms.bool(False) | ||
horecoMBNZS.dropZSmarkedPassed = cms.bool(False) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
horecoMBNZS = RecoLocalCalo.HcalRecProducers.hosimplereco_cfi.hosimplereco.clone() | |
horecoMBNZS.firstSample = 4 | |
horecoMBNZS.samplesToAdd = 4 | |
horecoMBNZS.digiLabel = 'hcalDigiAlCaMB' | |
horecoMBNZS.tsFromDB = cms.bool(False) | |
horecoMBNZS.dropZSmarkedPassed = cms.bool(False) | |
horecoMBNZS = RecoLocalCalo.HcalRecProducers.hosimplereco_cfi.hosimplereco.clone( | |
horecoMBNZS.firstSample = 4, | |
horecoMBNZS.samplesToAdd = 4, | |
horecoMBNZS.digiLabel = 'hcalDigiAlCaMB', | |
horecoMBNZS.tsFromDB = False, | |
horecoMBNZS.dropZSmarkedPassed = False | |
) |
|
||
import RecoLocalCalo.HcalRecProducers.HBHEPhase1Reconstructor_cfi | ||
hbherecoMBNZS = RecoLocalCalo.HcalRecProducers.HBHEPhase1Reconstructor_cfi.hbheprereco.clone( | ||
digiLabelQIE8 = cms.InputTag("hcalDigiAlCaMB"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove type specifications in this cloned configuration
|
||
from Configuration.Eras.Modifier_run2_HCAL_2017_cff import run2_HCAL_2017 | ||
run2_HCAL_2017.toModify( hbherecoMBNZS, | ||
processQIE11 = cms.bool(True), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
processQIE11 = cms.bool(True), | |
processQIE11 = True, |
run2_HCAL_2017.toModify( hbherecoMBNZS, | ||
processQIE11 = cms.bool(True), | ||
# temporarily disabled until RecoLocalCalo/HcalRecProducers/python/HBHEPhase1Reconstructor_cfi.py:flagParametersQIE11 is filled | ||
# setNoiseFlagsQIE11 = cms.bool(True), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# setNoiseFlagsQIE11 = cms.bool(True), | |
# setNoiseFlagsQIE11 = True, |
# setNoiseFlagsQIE11 = cms.bool(True), | ||
) | ||
run2_HCAL_2017.toModify( hbherecoNoise, | ||
processQIE11 = cms.bool(True), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
processQIE11 = cms.bool(True), | |
processQIE11 = True, |
run2_HCAL_2017.toModify( hbherecoNoise, | ||
processQIE11 = cms.bool(True), | ||
# temporarily disabled until RecoLocalCalo/HcalRecProducers/python/HBHEPhase1Reconstructor_cfi.py:flagParametersQIE11 is filled | ||
# setNoiseFlagsQIE11 = cms.bool(True), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# setNoiseFlagsQIE11 = cms.bool(True), | |
# setNoiseFlagsQIE11 = True, |
ping @bsunanda |
…s of HCAL As suggested by Andrea
@cmsbuild Please test |
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-40969/34651
|
Pull request #40969 was updated. @tvami, @saumyaphor4252, @francescobrivio can you please check and sign again. |
+alca
|
This pull request is fully signed and it will be integrated in one of the next master IBs after it passes the integration tests. This pull request will now be reviewed by the release team before it's merged. @perrotta, @dpiparo, @rappoccio (and backports should be raised in the release meeting by the corresponding L2) |
-1 Failed Tests: RelVals-INPUT RelVals-INPUTThe relvals timed out after 4 hours. Comparison SummarySummary:
|
@cmsbuild Please test |
+1 Summary: https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-344755/31295/summary.html Comparison SummarySummary:
|
+1 |
PR description:
Add a file which is used for phi-symmetry calibration using local runs of HCAL. Also. used in several DPG analysis codes. Strange that it was not in the repository for so long
PR validation:
The added chi file has been tested externally in the context of phi symmetry studies. Then use the runTheMatrix test workflows to see that it does not interfere with any of the existing workflow.
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:
Nothing special