diff options
-rwxr-xr-x | scripts/check-near-bragg | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/check-near-bragg b/scripts/check-near-bragg index 027dcbdd..6c46fde6 100755 --- a/scripts/check-near-bragg +++ b/scripts/check-near-bragg @@ -37,7 +37,9 @@ while ( $line = <FH> ) { if ( $line =~ /^$/ ) { close(TMP); #$filename = "images-old/".basename($filename); - system("hdfsee ".$filename." --peak-overlay=list.tmp --binning=1 --int-boost=10"); + printf(STDERR "Viewing %s\n", $filename); + system("hdfsee ".$filename. + " --peak-overlay=list.tmp --binning=1 --int-boost=10"); if ( $? != 0 ) { exit; } unlink("list.tmp"); open(TMP, "> list.tmp"); |