Skip to content

Commit

Permalink
fix: parentheses in SIOTrack.java
Browse files Browse the repository at this point in the history
  • Loading branch information
wdconinc authored Jun 21, 2024
1 parent 384e6dc commit 8301fc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/java/hep/lcio/implementation/sio/SIOTrack.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class SIOTrack extends ITrack
ndf = in.readInt() ;
dEdx = in.readFloat();
dEdxError = in.readFloat();
if (SIOVersion.encode(major,minor) > SIOVersion.encode(2,21) {
if (SIOVersion.encode(major,minor) > SIOVersion.encode(2,21)) {
nholes = in.readInt() ;
}
radiusOfInnermostHit = in.readFloat() ;
Expand All @@ -89,7 +89,7 @@ class SIOTrack extends ITrack
hitNumbers[i] = in.readInt() ;
}
setSubdetectorHitNumbers(hitNumbers) ;
if (SIOVersion.encode(major,minor) > SIOVersion.encode(2,21) {
if (SIOVersion.encode(major,minor) > SIOVersion.encode(2,21)) {
int nHoleNumbers = in.readInt() ;
int[] holeNumbers = new int[nHoleNumbers] ;
for (int i = 0; i < nHoleNumbers; i++)
Expand Down

0 comments on commit 8301fc5

Please sign in to comment.