Skip to content

Commit

Permalink
Clean up the pixel local reconstruction code (#601)
Browse files Browse the repository at this point in the history
Address the pixel local reconstruction review comments:
  - update method names according to the coding rules.
  • Loading branch information
fwyzard committed Dec 29, 2020
1 parent e87a6b6 commit 7717f1b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ class SiPixelGainCalibrationForHLTGPU {
~SiPixelGainCalibrationForHLTGPU();

const SiPixelGainForHLTonGPU *getGPUProductAsync(cudaStream_t cudaStream) const;
const SiPixelGainForHLTonGPU *getCPUProduct() const { return gainForHLTonHost_; }
const SiPixelGainCalibrationForHLT *getOriginalProduct() { return gains_; }
const SiPixelGainForHLTonGPU *cpuProduct() const { return gainForHLTonHost_; }
const SiPixelGainCalibrationForHLT *originalProduct() { return gains_; }

private:
const SiPixelGainCalibrationForHLT *gains_ = nullptr;
Expand Down

0 comments on commit 7717f1b

Please sign in to comment.