Open iarspider opened 1 month ago
assign reconstruction
New categories assigned: reconstruction
@jfernan2,@mandrenguyen you have been requested to review this Pull request/Issue and eventually sign? Thanks
cms-bot internal usage
A new Issue was created by @iarspider.
@Dr15Jones, @antoniovilela, @makortel, @mandrenguyen, @rappoccio, @sextonkennedy, @smuzaffar can you please review it and eventually sign/assign? Thanks.
cms-bot commands are listed here
@felicepantaleo @rovere as HGCAL experts, could you please have a look and provide a fix? Thanks
Thanks for letting us know. Indeed this is not correct.
I'm not the expert nor the author of the code, but my guess is that maybe
uint8_t nbits_word1 = 32 - msb - nbits
should be replaced by:
uint8_t nbits_word1 = 32 - msb;
@pfs , what do you think?
LLVM Analyzer reports invalid bit-shift in
hgcal::econd::produceERxData
.Indeed, the value of
nbits_word1
calculated on line 69 https://github.com/cms-sw/cmssw/blob/master/EventFilter/HGCalRawToDigi/src/HGCalRawDataPackingTools.cc#L69 can overflow - if, e.g.nbits
is 32.@cms-sw/reconstruction-l2 could you please check the logic here? Thanks!