File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
SiPixelDigiReProducers/plugins Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 88from RecoLocalTracker .SiStripZeroSuppression .SiStripZeroSuppression_cfi import *
99from RecoLocalTracker .SiStripClusterizer .SiStripClusterizer_cfi import *
1010from RecoLocalTracker .SiPixelClusterizer .siPixelClustersPreSplitting_cff import *
11- from RecoLocalTracker .SiPixelDigiReProducers .siPixelDigiMorphed_cfi import *
11+ from RecoLocalTracker .SiPixelDigiReProducers .siPixelDigisMorphed_cfi import *
1212from RecoLocalTracker .SiPixelRecHits .SiPixelRecHits_cfi import *
1313from RecoLocalTracker .SubCollectionProducers .clustersummaryproducer_cfi import *
1414
Original file line number Diff line number Diff line change @@ -59,14 +59,14 @@ SiPixelDigiMorphing::SiPixelDigiMorphing(edm::ParameterSet const& conf)
5959 << " number of ROCs\n " ;
6060 }
6161
62- if (ncols_r_ + 2 * iters_ <= int (sizeof (uint64_t ))) {
62+ if (ncols_r_ + 2 * iters_ <= int (sizeof (uint64_t )* 8 )) {
6363 ksize_ = 2 * iters_ + 1 ;
6464 } else {
6565 throw cms::Exception (" Configuration" ) << " [SiPixelDigiMorphing]:"
6666 << " too many columns per ROC"
6767 << " or too many iterations set\n "
6868 << " Ncol/Nrocs+2*iters should not be"
69- << " more than " << sizeof (uint64_t ) << " \n " ;
69+ << " more than " << sizeof (uint64_t )* 8 << " \n " ;
7070 }
7171
7272 std::vector<int32_t > k1 (conf.getParameter <std::vector<int32_t >>(" kernel1" ));
You can’t perform that action at this time.
0 commit comments