-
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
ECAL : correction of a minor bug in a Ecal laser tool #36768
Conversation
…CII file in DB sqlite one
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-36768/27903
|
A new Pull Request was created by @depasse for master. It involves the following packages:
@cmsbuild, @malbouis, @tvami, @yuanchao, @francescobrivio can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
@@ -326,7 +326,7 @@ void EcalLaserCondTools::fillDb(CorrReader& r) { | |||
if (iIov <= skipIov_) { | |||
std::cout << "Skipping IOV " << iIov << "\n"; | |||
continue; | |||
} else if (processedIovs >= nIovs_) { | |||
} else if (processedIovs >= nIovs_ && nIovs_ >= 0) { | |||
std::cout << "Requested number of IOVs, " << nIovs_ << ", processed.\n"; |
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.
std::cout << "Requested number of IOVs, " << nIovs_ << ", processed.\n"; | |
edm::LogPrint("EcalLaserCondTools") << "Requested number of IOVs, " << nIovs_ << ", processed.\n"; |
@@ -326,7 +326,7 @@ void EcalLaserCondTools::fillDb(CorrReader& r) { | |||
if (iIov <= skipIov_) { | |||
std::cout << "Skipping IOV " << iIov << "\n"; |
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.
std::cout << "Skipping IOV " << iIov << "\n"; | |
edm::LogPrint("EcalLaserCondTools") << "Skipping IOV " << iIov << "\n"; |
type bug-fix |
…CII file in DB sqlite one
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-36768/27920
|
@cmsbuild , please test |
-1 Failed Tests: RelVals-INPUT RelVals-INPUT
Comparison SummarySummary:
|
+alca |
This pull request is fully signed and it will be integrated in one of the next master IBs (but tests are reportedly failing). This pull request will now be reviewed by the release team before it's merged. @perrotta, @dpiparo, @qliphy (and backports should be raised in the release meeting by the corresponding L2) |
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-36768/27962
|
please test |
+1 Summary: https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-b5c7fe/22021/summary.html Comparison SummarySummary:
|
+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, @qliphy (and backports should be raised in the release meeting by the corresponding L2) |
+1 |
Sorry, I removed the previous comment (that was intended for another PR instead): no backport is requested for this PR |
PR description:
In Ecal, this tool trasforms a transparency laser ASCII file (created in the laser farm) in a DB sqlite one.
PR validation:
The pgm failed before, in a given configuration. Now it perfectly works. Test done with different input files.