aboutsummaryrefslogtreecommitdiff
path: root/scripts/i0-analysis
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-05-27 15:36:45 +0200
committerThomas White <taw@physics.org>2010-05-27 15:36:45 +0200
commitfcc8e11f426ef2888513d00b71784115a3aaa0ef (patch)
tree9662b1d9053e8028b9a21b176e56b06f484b296a /scripts/i0-analysis
parent421ed8c2ed2a3de6c3dcb79da9a25e50ea4193f6 (diff)
Add scripts/i0-analysis
Diffstat (limited to 'scripts/i0-analysis')
-rwxr-xr-xscripts/i0-analysis106
1 files changed, 106 insertions, 0 deletions
diff --git a/scripts/i0-analysis b/scripts/i0-analysis
new file mode 100755
index 00000000..1c797139
--- /dev/null
+++ b/scripts/i0-analysis
@@ -0,0 +1,106 @@
+#!/usr/bin/perl -w
+
+use strict;
+use File::Basename;
+
+open(FH, $ARGV[0]);
+
+my $line;
+my $filename;
+my $full_filename;
+
+my $hsteps = 128;
+my @hist;
+
+open(GP, "| gnuplot");
+print(GP "set term postscript enhanced font \"Helvetica,20\"\n");
+print(GP "set output \"i0.ps\"\n");
+print(GP "unset key\n");
+print(GP "set xtics nomirror out rotate by 0\n");
+print(GP "unset xdata\n");
+print(GP "set format x \"% g\"\n");
+print(GP "unset key\n");
+
+
+# First graph: distribution of scaling factors
+my $hmin = -0.1;
+my $hmax = 1.5;
+my $hstep = ($hmax - $hmin)/$hsteps;
+for ( my $i=0; $i<$hsteps; $i++ ) {
+ $hist[$i] = 0;
+}
+while ( $line = <FH> ) {
+ if ( $line =~ /^([\d\.]+)\ ([\d\.]+)$/ ) {
+ my $scale = $1;
+ my $i0 = $2;
+ my $bin = int(($scale-$hmin)/$hstep);
+ $hist[$bin]++;
+ }
+}
+close(FH);
+open(OFH, "> i0-scale-hist.dat");
+for ( my $i=0; $i<$hsteps; $i++ ) {
+ printf(OFH "%f %f\n", $hmin+$hstep*$i+($hstep/2), $hist[$i]);
+}
+close(OFH);
+print(GP "set title \"Distribution of Scaling Factors\"\n");
+print(GP "plot [] [] \"i0-scale-hist.dat\" u 1:2 w histeps\n");
+
+
+# Second graph: distribution of gas detector values
+$hmin = -0.5;
+$hmax = 3.0;
+$hstep = ($hmax - $hmin)/$hsteps;
+open(FH, $ARGV[0]);
+for ( my $i=0; $i<$hsteps; $i++ ) {
+ $hist[$i] = 0;
+}
+while ( $line = <FH> ) {
+ if ( $line =~ /^([\d\.]+)\ ([\d\.]+)$/ ) {
+ my $scale = $1;
+ my $i0 = $2;
+ my $bin = int(($i0-$hmin)/$hstep);
+ $hist[$bin]++;
+ }
+}
+close(FH);
+open(OFH, "> i0-hist.dat");
+for ( my $i=0; $i<$hsteps; $i++ ) {
+ printf(OFH "%f %f\n", $hmin+$hstep*$i+($hstep/2), $hist[$i]);
+}
+close(OFH);
+print(GP "set title \"Distribution of Gas Detector Values\"\n");
+print(GP "plot [] [] \"i0-hist.dat\" u 1:2 w histeps\n");
+
+
+# Third graph: distribution of scale factors after scaling i0=1
+$hmin = -0.1;
+$hmax = 1.5;
+$hstep = ($hmax - $hmin)/$hsteps;
+open(FH, $ARGV[0]);
+for ( my $i=0; $i<$hsteps; $i++ ) {
+ $hist[$i] = 0;
+}
+while ( $line = <FH> ) {
+ if ( $line =~ /^([\d\.]+)\ ([\d\.]+)$/ ) {
+ my $scale = $1;
+ my $i0 = $2;
+ my $bin = int((($scale/$i0)-$hmin)/$hstep);
+ $hist[$bin]++;
+ }
+}
+close(FH);
+open(OFH, "> i0-prior-hist.dat");
+for ( my $i=0; $i<$hsteps; $i++ ) {
+ printf(OFH "%f %f\n", $hmin+$hstep*$i+($hstep/2), $hist[$i]);
+}
+close(OFH);
+print(GP "set title \"Distribution of Scaling Factors with I0=1\"\n");
+print(GP "plot [] [] \"i0-prior-hist.dat\" u 1:2 w histeps\n");
+
+
+close(GP);
+
+system("ps2pdf i0.ps");
+unlink("i0.dat");
+unlink("i0.ps");