Skip to content

Commit 3ca2ef8

Browse files
committed
Fixed bug
1 parent 538b209 commit 3ca2ef8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Common/Tasks/qaMuon.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2207,7 +2207,7 @@ struct muonQa {
22072207
}
22082208

22092209
// Loop over attached clusters
2210-
for (static_cast<int> iCls = 0; iCls < int(fgValuesClsTmp.posClusters.size()); iCls++) {
2210+
for (int iCls = 0; iCls < static_cast<int>(fgValuesClsTmp.posClusters.size()); iCls++) {
22112211

22122212
double phiCls = std::atan2(fgValuesClsTmp.posClusters[iCls][1], fgValuesClsTmp.posClusters[iCls][0]) * 180 / TMath::Pi();
22132213
int quadrantCls = GetQuadrantPhi(phiCls);

0 commit comments

Comments
 (0)