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

[QC-1092] Fix FT0 postprocessing crash when deleting unitialized pointers #2107

Merged
merged 1 commit into from
Jan 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Modules/FIT/FT0/include/FT0/PostProcTask.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ class PostProcTask final : public quality_control::postprocessing::PostProcessin
std::unique_ptr<TH1F> mHistTrgValidation;

std::unique_ptr<TCanvas> mRatesCanv;
TProfile* mAmpl;
TProfile* mTime;
TProfile* mAmpl = nullptr;
TProfile* mTime = nullptr;

// if storage size matters it can be replaced with TH1
// and TH2 can be created based on it on the fly, but only TH1 would be stored
Expand Down