-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
L1TRawToDigi Fixes #13607
L1TRawToDigi Fixes #13607
Conversation
A new Pull Request was created by @Martin-Grunewald (Martin Grunewald) for CMSSW_8_0_X. It involves the following packages: EventFilter/L1TRawToDigi @cmsbuild, @mulhearn, @davidlange6 can you please review it and eventually sign? Thanks. cms-bot commands are list here #13028 |
please test |
The tests are being triggered in jenkins. |
-1 >> Compiling /build/cmsbuild/jenkins-workarea/workspace/ib-any-integration/CMSSW_8_0_X_2016-03-04-2300/src/EventFilter/L1TRawToDigi/src/implementations_stage2/GlobalExtBlkPacker.cc >> Compiling /build/cmsbuild/jenkins-workarea/workspace/ib-any-integration/CMSSW_8_0_X_2016-03-04-2300/src/EventFilter/L1TRawToDigi/src/implementations_stage2/GlobalExtBlkUnpacker.cc >> Compiling /build/cmsbuild/jenkins-workarea/workspace/ib-any-integration/CMSSW_8_0_X_2016-03-04-2300/src/EventFilter/L1TRawToDigi/src/implementations_stage2/JetPacker.cc >> Compiling /build/cmsbuild/jenkins-workarea/workspace/ib-any-integration/CMSSW_8_0_X_2016-03-04-2300/src/EventFilter/L1TRawToDigi/src/implementations_stage2/JetUnpacker.cc >> Compiling /build/cmsbuild/jenkins-workarea/workspace/ib-any-integration/CMSSW_8_0_X_2016-03-04-2300/src/EventFilter/L1TRawToDigi/src/implementations_stage2/L1TObjectCollections.cc /build/cmsbuild/jenkins-workarea/workspace/ib-any-integration/CMSSW_8_0_X_2016-03-04-2300/src/DataFormats/L1TGlobal/src/GlobalAlgBlk.cc:27:27: error: unused variable 'maxPhysicsTriggers' [-Werror,-Wunused-const-variable] const static unsigned int maxPhysicsTriggers = 512; //TO DO Move this to a standard parameter area. ^ 1 error generated. >> Compiling /build/cmsbuild/jenkins-workarea/workspace/ib-any-integration/CMSSW_8_0_X_2016-03-04-2300/src/EventFilter/L1TRawToDigi/src/implementations_stage2/L1TStage2Layer2Constants.cc Selected class -> edm::Wrapper > for ROOT: edm::Wrapper > you can see the results of the tests here: The following merge commits were also included on top of IB + this PR after doing git cms-merge-topic: |
Pull request #13607 was updated. @cmsbuild, @mulhearn, @davidlange6 can you please check and sign again. |
please test |
The tests are being triggered in jenkins. |
+1 The following merge commits were also included on top of IB + this PR after doing git cms-merge-topic: |
+1 |
This pull request is fully signed and it will be integrated in one of the next CMSSW_8_0_X IBs (tests are also fine). This pull request requires discussion in the ORP meeting before it's merged. @slava77, @davidlange6, @Degano, @smuzaffar |
int algBit = bt+wd*32+algOffset; | ||
if(val==1 && algBit < 128) { //FIX ME...get dimension from object | ||
unsigned int algBit = bt+wd*32+algOffset; | ||
if(val==1 && algBit < alg.maxPhysicsTriggers) { //FIX ME...get dimension from object |
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.
will this affect the behaviour of the HLTL1TSeed modules when we run over data with CMSSW_8_0_1 ?
Yes, in 801 (until it is patched) the HLTL1TSeed filter will be rejecting events in paths that require triggers above bit 128... -Mike |
+1 |
@Martin-Grunewald @mulhearn - I just notice the data format changes - are they really required? makes a patch impossible |
What do you mean? Data member variables are unchanged! |
its changing headers in data formats
|
I'm afraid this one
is needed. |
You have to options:
|
Ah, I see |
L1TRawToDigi Fixes
Includes a fixed version of @mulhearn 's #13549
and thus replaces that PR; and a fix by @blwiner on the number of algos being unpacked.