-
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
update number/names of layers/disks for phase 1 upgrade #19118
update number/names of layers/disks for phase 1 upgrade #19118
Conversation
A new Pull Request was created by @capalmer85 for master. It involves the following packages: DQM/PixelLumi @cmsbuild, @dmitrijus, @vanbesien, @davidlange6 can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
If I say "please test", will the bot comply? |
@cmsbuild please test |
@dmitrijus, @vanbesien... ok... so I can't ask @cmsbuild to do anything. |
please test |
The tests are being triggered in jenkins. |
Using std::cout/cerr is not allowed, please replace those with edm::LogWarning |
Comparison job queued. |
Pull request #19118 was updated. @cmsbuild, @dmitrijus, @vanbesien, @davidlange6 can you please check and sign again. |
@dmitrijus I changed the std::cout's. Sorry about that. |
Comparison is ready Comparison Summary:
|
+1 |
The tests are being triggered in jenkins. |
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 requires discussion in the ORP meeting before it's merged. @davidlange6, @smuzaffar |
Comparison job queued. |
Comparison is ready Comparison Summary:
|
Still not merged? |
Why is this not merge? @davidlange6 Is this not running online? @dmitrijus |
@capalmer85 This PR should be running on the online DQM. I don't know why it has not been merged. The change seems trivial and should only affect the online DQM. |
+1 |
@davidlange6 if that feedback was given any time between mid-june and now, I would have worked on tried. |
It appears this pull request is causing the gcc7 builds to have linking problems:https://cmssdt.cern.ch/SDT/cgi-bin/buildlogs/slc6_amd64_gcc700/CMSSW_9_3_X_2017-08-29-1100/DQM/PixelLumi I believe the easiest fix would be to change static size_t const kNumLayers = 5;
static size_t const kNumDisks = 12;
static size_t const kOffsetLayers = 0;
static size_t const kOffsetDisks = 4; to static size_t constexpr const kNumLayers = 5;
static size_t constexpr const kNumDisks = 12;
static size_t constexpr const kOffsetLayers = 0;
static size_t constexpr const kOffsetDisks = 4; |
@Dr15Jones , https://github.com/cms-sw/cmssw/pull/20293/files fixes this. Should we use |
From http://en.cppreference.com/w/cpp/language/constexpr
so no need to change the other pull request. |
No description provided.