default_paths.pl
changeset 45 6d49c7420a6c
parent 42 f7690c7b92e0
child 47 2ccb81b7cea5
--- a/default_paths.pl	Thu May 12 10:54:28 2016 -0400
+++ b/default_paths.pl	Thu May 19 09:38:56 2016 -0400
@@ -1,13 +1,16 @@
 #======================================================================
 #                    D E F A U L T _ P A T H S . P L 
 #                    doc: Tue Mar 29 07:09:52 2016
-#                    dlm: Tue Mar 29 13:47:24 2016
+#                    dlm: Wed May 18 20:23:32 2016
 #                    (c) 2016 A.M. Thurnherr
-#                    uE-Info: 11 0 NIL 0 0 72 0 2 4 NIL ofnI
+#                    uE-Info: 13 44 NIL 0 0 72 0 2 4 NIL ofnI
 #======================================================================
 
 # HISTORY:
 #	Mar 29, 2016: - split from [defaults.pl]
+#	May 18, 2016: - added new attitude and acceleration residuals plots
+#				  - renamed mean_residual to bin_residuals plots
+#				  - added new residual_profs plot
 
 #======================================================================
 # ProcessingParams file selection
@@ -80,7 +83,7 @@
 			    "$data_dir/$out_basename.wprof");
 
 
-#----------------------------------------------------------------------
+#--------------------------------------------------------------------------------------------------
 # Vertical-velocity sample data output and plots:
 #
 # Data (in $data_dir):
@@ -91,8 +94,11 @@
 #	*_wsamp.ps						vertical velocity time-depth plot
 #	*_residuals.ps					residual vertical velocity time-depth plot
 #	*_backscatter.ps				volume scattering coefficient time-depth plot
+#	*_attitude_res.ps				residuals binned wrt. pitch/roll
+#	*_res_profs.ps					residuals binned in depth
+#	*_acceleration_res.ps			OPTIONAL: residuals binned wrt. package acceleration derivative
 #	*_correlation.ps				OPTIONAL: correlation time-depth plot
-#----------------------------------------------------------------------
+#--------------------------------------------------------------------------------------------------
 
 push(@out_wsamp,"$data_dir/$out_basename.wsamp");
 #push(@out_wsamp,sprintf('dump_residual_profiles(%s/residuals/%03d)',$data_dir,$PROF));
@@ -100,9 +106,11 @@
 push(@out_wsamp,"plot_residuals($plot_dir/${out_basename}_residuals.ps)");
 push(@out_wsamp,"plot_backscatter($plot_dir/${out_basename}_backscatter.ps)");
 push(@out_wsamp,"plot_wsamp($plot_dir/${out_basename}_wsamp.ps)");
+push(@out_wsamp,"plot_attitude_residuals($plot_dir/${out_basename}_attitude_res.ps)");
+push(@out_wsamp,"plot_residual_profs($plot_dir/${out_basename}_residual_profs.ps)");
+#push(@out_wsamp,"plot_acceleration_residuals($plot_dir/${out_basename}_acceleration_res.ps)");
 #push(@out_wsamp,"plot_correlation($plot_dir/${out_basename}_correlation.ps)");
 
-
 #----------------------------------------------------------------------
 # Time-series output
 #
@@ -116,7 +124,7 @@
 # Per-bin vertical-velocity residuals (plot only)
 #----------------------------------------------------------------------
 
-@out_BR	= ("plot_mean_residuals($plot_dir/${out_basename}_mean_residuals.ps)");
+@out_BR	= ("plot_mean_residuals($plot_dir/${out_basename}_bin_residuals.ps)");
 
 
 #----------------------------------------------------------------------