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 538b209 commit 3ca2ef8Copy full SHA for 3ca2ef8
Common/Tasks/qaMuon.cxx
@@ -2207,7 +2207,7 @@ struct muonQa {
2207
}
2208
2209
// Loop over attached clusters
2210
- for (static_cast<int> iCls = 0; iCls < int(fgValuesClsTmp.posClusters.size()); iCls++) {
+ for (int iCls = 0; iCls < static_cast<int>(fgValuesClsTmp.posClusters.size()); iCls++) {
2211
2212
double phiCls = std::atan2(fgValuesClsTmp.posClusters[iCls][1], fgValuesClsTmp.posClusters[iCls][0]) * 180 / TMath::Pi();
2213
int quadrantCls = GetQuadrantPhi(phiCls);
0 commit comments