From: Cahit Date: Tue, 8 Apr 2014 08:17:59 +0000 (+0200) Subject: html report generation is added X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=5144f41925abb00f0657a98ee87d0542d2415745;p=trb3.git html report generation is added --- diff --git a/cbmtof/compile_cbmtof_gsi.pl b/cbmtof/compile_cbmtof_gsi.pl index a32db13..7a4dd58 100755 --- a/cbmtof/compile_cbmtof_gsi.pl +++ b/cbmtof/compile_cbmtof_gsi.pl @@ -243,7 +243,7 @@ if($par==1 || $all==1){ } -if($timing==1){ +if($timing==1 || $all==1){ # IOR IO Timing Report $c=qq|iotiming -s "$TOPNAME.ncd" "$TOPNAME.prf"|; execute($c); @@ -261,12 +261,6 @@ if($timing==1){ my $c="cat $TOPNAME.par"; system($c); - $c=qq|htmlrpt -ptwr $TOPNAME.twr.setup $TOPNAME|; - execute($c); - - $c=qq|firefox $TOPNAME.html|; - execute($c); - } if($bitgen==1 || $all==1){ @@ -275,6 +269,12 @@ if($bitgen==1 || $all==1){ execute($c); } +$c=qq|htmlrpt -mrp $TOPNAME.mrp -ptwr $TOPNAME.twr.setup $TOPNAME|; +execute($c); + +$c=qq|firefox $TOPNAME.html|; +execute($c); + chdir ".."; exit; @@ -292,3 +292,4 @@ sub execute { } return $r; } +