Skip to content

Commit

Permalink
fix: index check
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks committed Oct 9, 2023
1 parent 3b8d239 commit 0a47f42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qa-physics/qaCut.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ useFT = false // if true, use FT electrons instead
qaBit = -1 // if positive, produce QA timeline based on manual QA results
inDir = args[0]
dataset = args[1]
if(args.length>=2) useFT = (args[2]=="FT") ? true : false
if(args.length>=3) qaBit = args[3].toInteger()
if(args.length>=3) useFT = (args[2]=="FT") ? true : false
if(args.length>=4) qaBit = args[3].toInteger()
//--------------------------------------------------------------------------

// vars and subroutines
Expand Down

0 comments on commit 0a47f42

Please sign in to comment.