Skip to content

Commit 15a8ab7

Browse files
authored
fixed cpplint problems
removed unnecessary casting into float
1 parent 1c644cf commit 15a8ab7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGEM/Tasks/phosElId.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ struct PhosElId {
667667
}
668668

669669
if (isTrueElectron) {
670-
mHistManager.fill(HIST("TrueEl/hTrueElInPhos"), trackPT, (float)module);
670+
mHistManager.fill(HIST("TrueEl/hTrueElInPhos"), trackPT, module);
671671
}
672672

673673
bool posTrack = track.sign() * bz > 0;
@@ -682,7 +682,7 @@ struct PhosElId {
682682
continue;
683683

684684
if (isTrueElectron) {
685-
mHistManager.fill(HIST("TrueEl/hTrueElWithCluster"), trackPT, (float)module);
685+
mHistManager.fill(HIST("TrueEl/hTrueElWithCluster"), trackPT, module);
686686
}
687687

688688
bool isDispOK = false;

0 commit comments

Comments
 (0)