Skip to content

Commit 25d5155

Browse files
authored
Update UDFwdTracksExtraConverter.cxx
Correct errors spotted by cpplint
1 parent a637d82 commit 25d5155

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

PWGUD/TableProducer/Converters/UDFwdTracksExtraConverter.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ struct UDFwdTracksExtraConverter {
3838
void process(o2::aod::UDFwdTracksExtra_000 const& tracks)
3939
{
4040
int trkType = 3; // trackType of MCH-MID tracks is 3
41-
41+
4242
for (const auto& track : tracks) {
43-
43+
4444
if (track.chi2MatchMCHMID() > 0)
4545
trkType = 3; // trackType of MCH-MID tracks is 3
4646
if (track.chi2MatchMCHMID() < 0)
4747
trkType = 4; // trackType of MCH only tracks is 4
48-
48+
4949
udFwdTracksExtra_001(trkType,
5050
track.nClusters(),
5151
track.pDca(),

0 commit comments

Comments
 (0)