aboutsummaryrefslogtreecommitdiff
path: root/scripts/check-near-bragg
blob: 2834783115a8223d6e1532af62628ee9a84eb686 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/perl -w

use strict;

open(FH, $ARGV[0]);
open(TMP, "> list.tmp");

my $in_image = 0;
my $line;
my $filename;
while ( $line = <FH> ) {

	chomp $line;
	my $handled = 0;

	if ( $line =~ /^\s*[0-9\-]+\s+[0-9\-]+\s+[0-9\-]+\s+[0-9\.\-]+/ ) {
		printf(TMP "%s\n", $line);
		$handled = 1;
	}

	if ( $line =~ /^Reflections\ from\ indexing\ in\ (.+)$/ ) {
		$filename = $1;
		$handled = 1;
	}

	if ( $line =~ /^Peak statistics/ ) {
		close(TMP);
		system("hdfsee ".$filename." --peak-overlay=list.tmp --binning=1 --int-boost=10");
		if ( $? != 0 ) { exit; }
		unlink("list.tmp");
		open(TMP, "> list.tmp");
		$handled = 1;
	}

	if ( !$handled ) {
		printf(STDERR "Unhandled: '%s'\n", $line);
	}

}