aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2013-03-21 12:20:11 +0100
committerThomas White <taw@physics.org>2013-03-21 12:20:11 +0100
commit5586bde15ca4b023816f37b53c6d173c1ab50b7b (patch)
treec9ddf11dd97240250b7be527cdab98c2a6a5cf21 /scripts
parente170dd8566db74784b457114ba8090982939411a (diff)
scripts/check-{near-bragg,peak-detection}: Improve option processing
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/check-near-bragg11
-rwxr-xr-xscripts/check-peak-detection6
2 files changed, 15 insertions, 2 deletions
diff --git a/scripts/check-near-bragg b/scripts/check-near-bragg
index 5ebae9b1..27a1d61c 100755
--- a/scripts/check-near-bragg
+++ b/scripts/check-near-bragg
@@ -3,6 +3,15 @@
use strict;
use File::Basename;
+my $args = join(" ", splice(@ARGV, 1, scalar(@ARGV)-1));
+if ( !($args eq "") ) {
+ printf("Extra arguments for hdfsee: %s\n", $args);
+} else {
+ # Default arguments - feel free to override!
+ $args = "--binning=2 --int-boost=10";
+ printf("Using default arguments for hdfsee: %s\n", $args);
+}
+
open(FH, $ARGV[0]);
open(TMP, "> list.tmp");
@@ -38,7 +47,7 @@ while ( $line = <FH> ) {
printf(STDERR "Viewing %s\n", $filename);
system("hdfsee ".$filename.
- " --peak-overlay=list.tmp --binning=2 --int-boost=10");
+ " --peak-overlay=list.tmp ".$args);
if ( $? != 0 ) { exit; }
unlink("list.tmp");
open(TMP, "> list.tmp");
diff --git a/scripts/check-peak-detection b/scripts/check-peak-detection
index e55bfdf8..7d9b6660 100755
--- a/scripts/check-peak-detection
+++ b/scripts/check-peak-detection
@@ -5,19 +5,23 @@ use File::Basename;
my $only;
my $file;
+my $start;
# Horrible option processing
if ( $ARGV[0] eq "--indexed" ) {
$only = "indexed";
$file = $ARGV[1];
+ $start = 2;
} elsif ( $ARGV[0] eq "--not-indexed" ) {
$only = "notindexed";
$file = $ARGV[1];
+ $start = 2;
} else {
$only = "";
$file = $ARGV[0];
+ $start = 1;
}
-my $args = join(" ", splice(@ARGV, 2, scalar(@ARGV)-1));
+my $args = join(" ", splice(@ARGV, $start, scalar(@ARGV)-1));
if ( !($args eq "") ) {
printf("Extra arguments for hdfsee: %s\n", $args);
} else {