We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b4fe2f commit 52804f8Copy full SHA for 52804f8
PWGLF/Tasks/QC/hypertriton3bodyQa.cxx
@@ -266,7 +266,7 @@ struct Hypertriton3bodyQa {
266
registry.get<TH1>(HIST("hParticleCounter"))->GetXaxis()->SetBinLabel(7, "McisDeuteron");
267
268
std::vector<TString> trackCounterbinLabel = {"hasMom", "FromHypertriton"};
269
- for (auto i = 0; i < trackCounterbinLabel.size(); i++) {
+ for (size_t i = 0; i < trackCounterbinLabel.size(); i++) {
270
registry.get<TH1>(HIST("hProtonCounter"))->GetXaxis()->SetBinLabel(i + 1, trackCounterbinLabel[i]);
271
registry.get<TH1>(HIST("hPionCounter"))->GetXaxis()->SetBinLabel(i + 1, trackCounterbinLabel[i]);
272
registry.get<TH1>(HIST("hDeuteronCounter"))->GetXaxis()->SetBinLabel(i + 1, trackCounterbinLabel[i]);
0 commit comments