Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:32

0001 #!/bin/tcsh 
0002 set ohone = `(grep --count " 0\.0001" complines.out)`
0003 set wccnt = `(wc -l complines.out | awk '{print $1}')`
0004 if ( $ohone == $wccnt ) then
0005     echo All differences in position are less than 0.0001.  There are $ohone differences.
0006 else
0007     set ndifs = $ohone - $wccnt 
0008     echo Some ($ndifs) differences are not less than 0.0001.  Please check/verify.
0009 endif
0010