From 8cad8896ff61795aa85d3f7c32a1efac3345c8c1 Mon Sep 17 00:00:00 2001 From: kalt_r Date: Fri, 1 Jul 2016 08:55:45 +0200 Subject: [PATCH] Script execution --- script/KR84_test.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/script/KR84_test.py b/script/KR84_test.py index 4b5a79f..8a287d5 100644 --- a/script/KR84_test.py +++ b/script/KR84_test.py @@ -11,7 +11,7 @@ class all_statistics_data (object): m5 = statistics_data() m10 = statistics_data() - def print(self): + def print_data(self): print "Statistics:\t\tmin\tmean\tmax\tstdev print "Saturation :" + str(self.sat.min) + "\t" + str(self.sat.mean) + "\t" + str(self.sat.max) + "\t" + str(self.sat.stdev) print "5% out of sat :" + str(self.m5.min) + "\t" + str(self.m5.mean) + "\t" + str(self.m5.max) + "\t" + str(self.m5.stdev) @@ -63,4 +63,6 @@ pre_jit_amplt = all_statistics_calc(scan_result.getReadable(4)) pre_jit_phase = all_statistics_calc(scan_result.getReadable(5)) kly_jit_amplt = all_statistics_calc(scan_result.getReadable(6)) -kly_jit_phase = all_statistics_calc(scan_result.getReadable(7)) \ No newline at end of file +kly_jit_phase = all_statistics_calc(scan_result.getReadable(7)) + +ref_jit_amplt.print_data