Skip to content

Commit

Permalink
Merge pull request #38476 from fwyzard/fix_SiPixelDigiErrorsSoAFromCU…
Browse files Browse the repository at this point in the history
…DA_12.5.x

Initialise the errors_ data member of SiPixelDigiErrorsSoAFromCUDA
  • Loading branch information
cmsbuild committed Jun 24, 2022
2 parents 1a8e19c + 532c257 commit a2029cb
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -28,7 +28,7 @@ class SiPixelDigiErrorsSoAFromCUDA : public edm::stream::EDProducer<edm::Externa
edm::EDPutTokenT<SiPixelErrorsSoA> digiErrorPutToken_;

cms::cuda::host::unique_ptr<SiPixelErrorCompact[]> data_;
cms::cuda::SimpleVector<SiPixelErrorCompact> error_;
cms::cuda::SimpleVector<SiPixelErrorCompact> error_ = cms::cuda::make_SimpleVector<SiPixelErrorCompact>(0, nullptr);
const SiPixelFormatterErrors* formatterErrors_ = nullptr;
};

Expand Down

0 comments on commit a2029cb

Please sign in to comment.