Skip to content
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

ECAL DQM GpuTask add 2D comparison histograms and enable GPU validation on online DQM #38427

Merged
merged 8 commits into from
Jun 26, 2022
12 changes: 11 additions & 1 deletion DQM/EcalMonitorTasks/interface/GpuTask.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,17 @@ namespace ecaldqm {
void setParams(edm::ParameterSet const&) override;

bool runGpuTask_;
bool gpuOnlyPlots_;
bool enableDigi_;
bool enableUncalib_;
bool enableRecHit_;

bool digi1D_;
bool digi2D_;
bool uncalib1D_;
bool uncalib2D_;
bool rechit1D_;
bool rechit2D_;

std::vector<int> uncalibOOTAmps_;

EBDigiCollection const* EBCpuDigis_;
Expand Down
Loading