LCOV - code coverage report
Current view: top level - binary/private - pgbinary_ctrls_io.f90 (source / functions) Coverage Total Hit
Test: coverage.info Lines: 0.0 % 1376 0
Test Date: 2025-10-14 06:41:40 Functions: 0.0 % 4 0

            Line data    Source code
       1              : ! ***********************************************************************
       2              : !
       3              : !   Copyright (C) 2010-2022  The MESA Team, Bill Paxton & Matthias Fabry
       4              : !
       5              : !   This program is free software: you can redistribute it and/or modify
       6              : !   it under the terms of the GNU Lesser General Public License
       7              : !   as published by the Free Software Foundation,
       8              : !   either version 3 of the License, or (at your option) any later version.
       9              : !
      10              : !   This program is distributed in the hope that it will be useful,
      11              : !   but WITHOUT ANY WARRANTY; without even the implied warranty of
      12              : !   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
      13              : !   See the GNU Lesser General Public License for more details.
      14              : !
      15              : !   You should have received a copy of the GNU Lesser General Public License
      16              : !   along with this program. If not, see <https://www.gnu.org/licenses/>.
      17              : !
      18              : ! ***********************************************************************
      19              : 
      20              : module pgbinary_ctrls_io
      21              : 
      22              :    use const_def, only: dp
      23              :    use binary_private_def
      24              : 
      25              :    implicit none
      26              : 
      27              :    include "pgbinary_controls.inc"
      28              : 
      29              :    namelist /pgbinary/ &
      30              : 
      31              :       file_device, &
      32              :       file_digits, &
      33              :       pgbinary_interval, &
      34              :       pause_flag, &
      35              :       pause_interval, &
      36              :       pgbinary_sleep, &
      37              :       clear_history, &
      38              : 
      39              :       file_white_on_black_flag, &
      40              :       win_white_on_black_flag, &
      41              :       pgbinary_show_model_number, &
      42              :       pgbinary_show_age, &
      43              :       pgbinary_show_age_in_seconds, &
      44              :       pgbinary_show_age_in_minutes, &
      45              :       pgbinary_show_age_in_hours, &
      46              :       pgbinary_show_age_in_days, &
      47              :       pgbinary_show_age_in_years, &
      48              :       pgbinary_show_log_age_in_years, &
      49              : 
      50              :       pgbinary_report_writing_files, &
      51              : 
      52              :       pgbinary_show_title, &
      53              :       pgbinary_title_scale, &
      54              :       pgbinary_title_disp, &
      55              :       pgbinary_title_coord, &
      56              :       pgbinary_title_fjust, &
      57              :       pgbinary_title_lw, &
      58              : 
      59              :       pgbinary_grid_show_title, &
      60              :       pgbinary_grid_title_scale, &
      61              :       pgbinary_grid_title_disp, &
      62              :       pgbinary_grid_title_coord, &
      63              :       pgbinary_grid_title_fjust, &
      64              :       pgbinary_grid_title_lw, &
      65              : 
      66              :       pgbinary_age_scale, &
      67              :       pgbinary_age_disp, &
      68              :       pgbinary_age_coord, &
      69              :       pgbinary_age_fjust, &
      70              :       pgbinary_age_lw, &
      71              : 
      72              :       pgbinary_model_scale, &
      73              :       pgbinary_model_disp, &
      74              :       pgbinary_model_coord, &
      75              :       pgbinary_model_fjust, &
      76              :       pgbinary_model_lw, &
      77              : 
      78              :       pgbinary_xaxis_label_scale, &
      79              :       pgbinary_left_yaxis_label_scale, &
      80              :       pgbinary_right_yaxis_label_scale, &
      81              :       pgbinary_xaxis_label_lw, &
      82              :       pgbinary_left_yaxis_label_lw, &
      83              :       pgbinary_right_yaxis_label_lw, &
      84              :       pgbinary_xaxis_label_disp, &
      85              :       pgbinary_left_yaxis_label_disp, &
      86              :       pgbinary_right_yaxis_label_disp, &
      87              :       pgbinary_num_scale, &
      88              :       pgbinary_lw, &
      89              :       pgbinary_model_lw, &
      90              :       pgbinary_box_lw, &
      91              : 
      92              : 
      93              :       Text_Summary1_win_flag, &
      94              :       Text_Summary1_file_flag, &
      95              :       Text_Summary1_file_interval, &
      96              :       Text_Summary1_file_dir, &
      97              :       Text_Summary1_file_prefix, &
      98              :       Text_Summary1_num_cols, Text_Summary1_num_rows, Text_Summary1_name, &
      99              :       Text_Summary1_win_width, &
     100              :       Text_Summary1_win_aspect_ratio, &
     101              :       Text_Summary1_file_width, &
     102              :       Text_Summary1_file_aspect_ratio, &
     103              :       Text_Summary1_title, Text_Summary1_xleft, Text_Summary1_xright, &
     104              :       Text_Summary1_ybot, Text_Summary1_ytop, Text_Summary1_txt_scale, &
     105              : 
     106              :       Text_Summary2_win_flag, &
     107              :       Text_Summary2_file_flag, &
     108              :       Text_Summary2_file_interval, &
     109              :       Text_Summary2_file_dir, &
     110              :       Text_Summary2_file_prefix, &
     111              :       Text_Summary2_num_cols, Text_Summary2_num_rows, Text_Summary2_name, &
     112              :       Text_Summary2_win_width, &
     113              :       Text_Summary2_win_aspect_ratio, &
     114              :       Text_Summary2_file_width, &
     115              :       Text_Summary2_file_aspect_ratio, &
     116              :       Text_Summary2_title, Text_Summary2_xleft, Text_Summary2_xright, &
     117              :       Text_Summary2_ybot, Text_Summary2_ytop, Text_Summary2_txt_scale, &
     118              : 
     119              :       Text_Summary3_win_flag, &
     120              :       Text_Summary3_file_flag, &
     121              :       Text_Summary3_file_interval, &
     122              :       Text_Summary3_file_dir, &
     123              :       Text_Summary3_file_prefix, &
     124              :       Text_Summary3_num_cols, Text_Summary3_num_rows, Text_Summary3_name, &
     125              :       Text_Summary3_win_width, &
     126              :       Text_Summary3_win_aspect_ratio, &
     127              :       Text_Summary3_file_width, &
     128              :       Text_Summary3_file_aspect_ratio, &
     129              :       Text_Summary3_title, Text_Summary3_xleft, Text_Summary3_xright, &
     130              :       Text_Summary3_ybot, Text_Summary3_ytop, Text_Summary3_txt_scale, &
     131              : 
     132              :       Text_Summary4_win_flag, &
     133              :       Text_Summary4_file_flag, &
     134              :       Text_Summary4_file_interval, &
     135              :       Text_Summary4_file_dir, &
     136              :       Text_Summary4_file_prefix, &
     137              :       Text_Summary4_num_cols, Text_Summary4_num_rows, Text_Summary4_name, &
     138              :       Text_Summary4_win_width, &
     139              :       Text_Summary4_win_aspect_ratio, &
     140              :       Text_Summary4_file_width, &
     141              :       Text_Summary4_file_aspect_ratio, &
     142              :       Text_Summary4_title, Text_Summary4_xleft, Text_Summary4_xright, &
     143              :       Text_Summary4_ybot, Text_Summary4_ytop, Text_Summary4_txt_scale, &
     144              : 
     145              :       Text_Summary5_win_flag, &
     146              :       Text_Summary5_file_flag, &
     147              :       Text_Summary5_file_interval, &
     148              :       Text_Summary5_file_dir, &
     149              :       Text_Summary5_file_prefix, &
     150              :       Text_Summary5_num_cols, Text_Summary5_num_rows, Text_Summary5_name, &
     151              :       Text_Summary5_win_width, &
     152              :       Text_Summary5_win_aspect_ratio, &
     153              :       Text_Summary5_file_width, &
     154              :       Text_Summary5_file_aspect_ratio, &
     155              :       Text_Summary5_title, Text_Summary5_xleft, Text_Summary5_xright, &
     156              :       Text_Summary5_ybot, Text_Summary5_ytop, Text_Summary5_txt_scale, &
     157              : 
     158              :       Text_Summary6_win_flag, &
     159              :       Text_Summary6_file_flag, &
     160              :       Text_Summary6_file_interval, &
     161              :       Text_Summary6_file_dir, &
     162              :       Text_Summary6_file_prefix, &
     163              :       Text_Summary6_num_cols, Text_Summary6_num_rows, Text_Summary6_name, &
     164              :       Text_Summary6_win_width, &
     165              :       Text_Summary6_win_aspect_ratio, &
     166              :       Text_Summary6_file_width, &
     167              :       Text_Summary6_file_aspect_ratio, &
     168              :       Text_Summary6_title, Text_Summary6_xleft, Text_Summary6_xright, &
     169              :       Text_Summary6_ybot, Text_Summary6_ytop, Text_Summary6_txt_scale, &
     170              : 
     171              :       Text_Summary7_win_flag, &
     172              :       Text_Summary7_file_flag, &
     173              :       Text_Summary7_file_interval, &
     174              :       Text_Summary7_file_dir, &
     175              :       Text_Summary7_file_prefix, &
     176              :       Text_Summary7_num_cols, Text_Summary7_num_rows, Text_Summary7_name, &
     177              :       Text_Summary7_win_width, &
     178              :       Text_Summary7_win_aspect_ratio, &
     179              :       Text_Summary7_file_width, &
     180              :       Text_Summary7_file_aspect_ratio, &
     181              :       Text_Summary7_title, Text_Summary7_xleft, Text_Summary7_xright, &
     182              :       Text_Summary7_ybot, Text_Summary7_ytop, Text_Summary7_txt_scale, &
     183              : 
     184              :       Text_Summary8_win_flag, &
     185              :       Text_Summary8_file_flag, &
     186              :       Text_Summary8_file_interval, &
     187              :       Text_Summary8_file_dir, &
     188              :       Text_Summary8_file_prefix, &
     189              :       Text_Summary8_num_cols, Text_Summary8_num_rows, Text_Summary8_name, &
     190              :       Text_Summary8_win_width, &
     191              :       Text_Summary8_win_aspect_ratio, &
     192              :       Text_Summary8_file_width, &
     193              :       Text_Summary8_file_aspect_ratio, &
     194              :       Text_Summary8_title, Text_Summary8_xleft, Text_Summary8_xright, &
     195              :       Text_Summary8_ybot, Text_Summary8_ytop, Text_Summary8_txt_scale, &
     196              : 
     197              :       Text_Summary9_win_flag, &
     198              :       Text_Summary9_file_flag, &
     199              :       Text_Summary9_file_interval, &
     200              :       Text_Summary9_file_dir, &
     201              :       Text_Summary9_file_prefix, &
     202              :       Text_Summary9_num_cols, Text_Summary9_num_rows, Text_Summary9_name, &
     203              :       Text_Summary9_win_width, &
     204              :       Text_Summary9_win_aspect_ratio, &
     205              :       Text_Summary9_file_width, &
     206              :       Text_Summary9_file_aspect_ratio, &
     207              :       Text_Summary9_title, Text_Summary9_xleft, Text_Summary9_xright, &
     208              :       Text_Summary9_ybot, Text_Summary9_ytop, Text_Summary9_txt_scale, &
     209              : 
     210              :       History_Track1_win_flag, &
     211              :       History_Track1_file_flag, &
     212              :       History_Track1_file_interval, &
     213              :       History_Track1_step_min, &
     214              :       History_Track1_step_max, &
     215              :       show_History_Track1_target_box, &
     216              :       History_Track1_n_sigma, &
     217              :       History_Track1_xtarget, &
     218              :       History_Track1_xsigma, &
     219              :       History_Track1_ytarget, &
     220              :       History_Track1_ysigma, &
     221              :       History_Track1_xname, &
     222              :       History_Track1_xaxis_label, &
     223              :       History_Track1_yname, &
     224              :       History_Track1_yaxis_label, &
     225              :       History_Track1_file_dir, &
     226              :       History_Track1_file_prefix, &
     227              :       show_History_Track1_annotation1, &
     228              :       show_History_Track1_annotation2, &
     229              :       show_History_Track1_annotation3, &
     230              :       History_Track1_fname, &
     231              :       History_Track1_reverse_xaxis, &
     232              :       History_Track1_reverse_yaxis, &
     233              :       History_Track1_log_xaxis, &
     234              :       History_Track1_log_yaxis, &
     235              :       History_Track1_xmin, &
     236              :       History_Track1_xmax, &
     237              :       History_Track1_ymin, &
     238              :       History_Track1_ymax, &
     239              :       History_Track1_xmargin, &
     240              :       History_Track1_ymargin, &
     241              :       History_Track1_dxmin, &
     242              :       History_Track1_dymin, &
     243              :       History_Track1_win_width, &
     244              :       History_Track1_win_aspect_ratio, &
     245              :       History_Track1_file_width, &
     246              :       History_Track1_file_aspect_ratio, &
     247              :       History_Track1_xleft, &
     248              :       History_Track1_xright, &
     249              :       History_Track1_ybot, &
     250              :       History_Track1_ytop, &
     251              :       History_Track1_txt_scale, &
     252              :       History_Track1_title, &
     253              :       History_Track1_use_decorator, &
     254              : 
     255              :       History_Track2_win_flag, &
     256              :       History_Track2_file_flag, &
     257              :       History_Track2_file_interval, &
     258              :       History_Track2_step_min, &
     259              :       History_Track2_step_max, &
     260              :       show_History_Track2_target_box, &
     261              :       History_Track2_n_sigma, &
     262              :       History_Track2_xtarget, &
     263              :       History_Track2_xsigma, &
     264              :       History_Track2_ytarget, &
     265              :       History_Track2_ysigma, &
     266              :       History_Track2_xname, &
     267              :       History_Track2_xaxis_label, &
     268              :       History_Track2_yname, &
     269              :       History_Track2_yaxis_label, &
     270              :       History_Track2_file_dir, &
     271              :       History_Track2_file_prefix, &
     272              :       show_History_Track2_annotation1, &
     273              :       show_History_Track2_annotation2, &
     274              :       show_History_Track2_annotation3, &
     275              :       History_Track2_fname, &
     276              :       History_Track2_reverse_xaxis, &
     277              :       History_Track2_reverse_yaxis, &
     278              :       History_Track2_log_xaxis, &
     279              :       History_Track2_log_yaxis, &
     280              :       History_Track2_xmin, &
     281              :       History_Track2_xmax, &
     282              :       History_Track2_ymin, &
     283              :       History_Track2_ymax, &
     284              :       History_Track2_xmargin, &
     285              :       History_Track2_ymargin, &
     286              :       History_Track2_dxmin, &
     287              :       History_Track2_dymin, &
     288              :       History_Track2_win_width, &
     289              :       History_Track2_win_aspect_ratio, &
     290              :       History_Track2_file_width, &
     291              :       History_Track2_file_aspect_ratio, &
     292              :       History_Track2_xleft, &
     293              :       History_Track2_xright, &
     294              :       History_Track2_ybot, &
     295              :       History_Track2_ytop, &
     296              :       History_Track2_txt_scale, &
     297              :       History_Track2_title, &
     298              :       History_Track2_use_decorator, &
     299              : 
     300              :       History_Track3_win_flag, &
     301              :       History_Track3_file_flag, &
     302              :       History_Track3_file_interval, &
     303              :       History_Track3_step_min, &
     304              :       History_Track3_step_max, &
     305              :       show_History_Track3_target_box, &
     306              :       History_Track3_n_sigma, &
     307              :       History_Track3_xtarget, &
     308              :       History_Track3_xsigma, &
     309              :       History_Track3_ytarget, &
     310              :       History_Track3_ysigma, &
     311              :       History_Track3_xname, &
     312              :       History_Track3_xaxis_label, &
     313              :       History_Track3_yname, &
     314              :       History_Track3_yaxis_label, &
     315              :       History_Track3_file_dir, &
     316              :       History_Track3_file_prefix, &
     317              :       show_History_Track3_annotation1, &
     318              :       show_History_Track3_annotation2, &
     319              :       show_History_Track3_annotation3, &
     320              :       History_Track3_fname, &
     321              :       History_Track3_reverse_xaxis, &
     322              :       History_Track3_reverse_yaxis, &
     323              :       History_Track3_log_xaxis, &
     324              :       History_Track3_log_yaxis, &
     325              :       History_Track3_xmin, &
     326              :       History_Track3_xmax, &
     327              :       History_Track3_ymin, &
     328              :       History_Track3_ymax, &
     329              :       History_Track3_xmargin, &
     330              :       History_Track3_ymargin, &
     331              :       History_Track3_dxmin, &
     332              :       History_Track3_dymin, &
     333              :       History_Track3_win_width, &
     334              :       History_Track3_win_aspect_ratio, &
     335              :       History_Track3_file_width, &
     336              :       History_Track3_file_aspect_ratio, &
     337              :       History_Track3_xleft, &
     338              :       History_Track3_xright, &
     339              :       History_Track3_ybot, &
     340              :       History_Track3_ytop, &
     341              :       History_Track3_txt_scale, &
     342              :       History_Track3_title, &
     343              :       History_Track3_use_decorator, &
     344              : 
     345              :       History_Track4_win_flag, &
     346              :       History_Track4_file_flag, &
     347              :       History_Track4_file_interval, &
     348              :       History_Track4_step_min, &
     349              :       History_Track4_step_max, &
     350              :       show_History_Track4_target_box, &
     351              :       History_Track4_n_sigma, &
     352              :       History_Track4_xtarget, &
     353              :       History_Track4_xsigma, &
     354              :       History_Track4_ytarget, &
     355              :       History_Track4_ysigma, &
     356              :       History_Track4_xname, &
     357              :       History_Track4_xaxis_label, &
     358              :       History_Track4_yname, &
     359              :       History_Track4_yaxis_label, &
     360              :       History_Track4_file_dir, &
     361              :       History_Track4_file_prefix, &
     362              :       show_History_Track4_annotation1, &
     363              :       show_History_Track4_annotation2, &
     364              :       show_History_Track4_annotation3, &
     365              :       History_Track4_fname, &
     366              :       History_Track4_reverse_xaxis, &
     367              :       History_Track4_reverse_yaxis, &
     368              :       History_Track4_log_xaxis, &
     369              :       History_Track4_log_yaxis, &
     370              :       History_Track4_xmin, &
     371              :       History_Track4_xmax, &
     372              :       History_Track4_ymin, &
     373              :       History_Track4_ymax, &
     374              :       History_Track4_xmargin, &
     375              :       History_Track4_ymargin, &
     376              :       History_Track4_dxmin, &
     377              :       History_Track4_dymin, &
     378              :       History_Track4_win_width, &
     379              :       History_Track4_win_aspect_ratio, &
     380              :       History_Track4_file_width, &
     381              :       History_Track4_file_aspect_ratio, &
     382              :       History_Track4_xleft, &
     383              :       History_Track4_xright, &
     384              :       History_Track4_ybot, &
     385              :       History_Track4_ytop, &
     386              :       History_Track4_txt_scale, &
     387              :       History_Track4_title, &
     388              :       History_Track4_use_decorator, &
     389              : 
     390              :       History_Track5_win_flag, &
     391              :       History_Track5_file_flag, &
     392              :       History_Track5_file_interval, &
     393              :       History_Track5_step_min, &
     394              :       History_Track5_step_max, &
     395              :       show_History_Track5_target_box, &
     396              :       History_Track5_n_sigma, &
     397              :       History_Track5_xtarget, &
     398              :       History_Track5_xsigma, &
     399              :       History_Track5_ytarget, &
     400              :       History_Track5_ysigma, &
     401              :       History_Track5_xname, &
     402              :       History_Track5_xaxis_label, &
     403              :       History_Track5_yname, &
     404              :       History_Track5_yaxis_label, &
     405              :       History_Track5_file_dir, &
     406              :       History_Track5_file_prefix, &
     407              :       show_History_Track5_annotation1, &
     408              :       show_History_Track5_annotation2, &
     409              :       show_History_Track5_annotation3, &
     410              :       History_Track5_fname, &
     411              :       History_Track5_reverse_xaxis, &
     412              :       History_Track5_reverse_yaxis, &
     413              :       History_Track5_log_xaxis, &
     414              :       History_Track5_log_yaxis, &
     415              :       History_Track5_xmin, &
     416              :       History_Track5_xmax, &
     417              :       History_Track5_ymin, &
     418              :       History_Track5_ymax, &
     419              :       History_Track5_xmargin, &
     420              :       History_Track5_ymargin, &
     421              :       History_Track5_dxmin, &
     422              :       History_Track5_dymin, &
     423              :       History_Track5_win_width, &
     424              :       History_Track5_win_aspect_ratio, &
     425              :       History_Track5_file_width, &
     426              :       History_Track5_file_aspect_ratio, &
     427              :       History_Track5_xleft, &
     428              :       History_Track5_xright, &
     429              :       History_Track5_ybot, &
     430              :       History_Track5_ytop, &
     431              :       History_Track5_txt_scale, &
     432              :       History_Track5_title, &
     433              :       History_Track5_use_decorator, &
     434              : 
     435              :       History_Track6_win_flag, &
     436              :       History_Track6_file_flag, &
     437              :       History_Track6_file_interval, &
     438              :       History_Track6_step_min, &
     439              :       History_Track6_step_max, &
     440              :       show_History_Track6_target_box, &
     441              :       History_Track6_n_sigma, &
     442              :       History_Track6_xtarget, &
     443              :       History_Track6_xsigma, &
     444              :       History_Track6_ytarget, &
     445              :       History_Track6_ysigma, &
     446              :       History_Track6_xname, &
     447              :       History_Track6_xaxis_label, &
     448              :       History_Track6_yname, &
     449              :       History_Track6_yaxis_label, &
     450              :       History_Track6_file_dir, &
     451              :       History_Track6_file_prefix, &
     452              :       show_History_Track6_annotation1, &
     453              :       show_History_Track6_annotation2, &
     454              :       show_History_Track6_annotation3, &
     455              :       History_Track6_fname, &
     456              :       History_Track6_reverse_xaxis, &
     457              :       History_Track6_reverse_yaxis, &
     458              :       History_Track6_log_xaxis, &
     459              :       History_Track6_log_yaxis, &
     460              :       History_Track6_xmin, &
     461              :       History_Track6_xmax, &
     462              :       History_Track6_ymin, &
     463              :       History_Track6_ymax, &
     464              :       History_Track6_xmargin, &
     465              :       History_Track6_ymargin, &
     466              :       History_Track6_dxmin, &
     467              :       History_Track6_dymin, &
     468              :       History_Track6_win_width, &
     469              :       History_Track6_win_aspect_ratio, &
     470              :       History_Track6_file_width, &
     471              :       History_Track6_file_aspect_ratio, &
     472              :       History_Track6_xleft, &
     473              :       History_Track6_xright, &
     474              :       History_Track6_ybot, &
     475              :       History_Track6_ytop, &
     476              :       History_Track6_txt_scale, &
     477              :       History_Track6_title, &
     478              :       History_Track6_use_decorator, &
     479              : 
     480              :       History_Track7_win_flag, &
     481              :       History_Track7_file_flag, &
     482              :       History_Track7_file_interval, &
     483              :       History_Track7_step_min, &
     484              :       History_Track7_step_max, &
     485              :       show_History_Track7_target_box, &
     486              :       History_Track7_n_sigma, &
     487              :       History_Track7_xtarget, &
     488              :       History_Track7_xsigma, &
     489              :       History_Track7_ytarget, &
     490              :       History_Track7_ysigma, &
     491              :       History_Track7_xname, &
     492              :       History_Track7_xaxis_label, &
     493              :       History_Track7_yname, &
     494              :       History_Track7_yaxis_label, &
     495              :       History_Track7_file_dir, &
     496              :       History_Track7_file_prefix, &
     497              :       show_History_Track7_annotation1, &
     498              :       show_History_Track7_annotation2, &
     499              :       show_History_Track7_annotation3, &
     500              :       History_Track7_fname, &
     501              :       History_Track7_reverse_xaxis, &
     502              :       History_Track7_reverse_yaxis, &
     503              :       History_Track7_log_xaxis, &
     504              :       History_Track7_log_yaxis, &
     505              :       History_Track7_xmin, &
     506              :       History_Track7_xmax, &
     507              :       History_Track7_ymin, &
     508              :       History_Track7_ymax, &
     509              :       History_Track7_xmargin, &
     510              :       History_Track7_ymargin, &
     511              :       History_Track7_dxmin, &
     512              :       History_Track7_dymin, &
     513              :       History_Track7_win_width, &
     514              :       History_Track7_win_aspect_ratio, &
     515              :       History_Track7_file_width, &
     516              :       History_Track7_file_aspect_ratio, &
     517              :       History_Track7_xleft, &
     518              :       History_Track7_xright, &
     519              :       History_Track7_ybot, &
     520              :       History_Track7_ytop, &
     521              :       History_Track7_txt_scale, &
     522              :       History_Track7_title, &
     523              :       History_Track7_use_decorator, &
     524              : 
     525              :       History_Track8_win_flag, &
     526              :       History_Track8_file_flag, &
     527              :       History_Track8_file_interval, &
     528              :       History_Track8_step_min, &
     529              :       History_Track8_step_max, &
     530              :       show_History_Track8_target_box, &
     531              :       History_Track8_n_sigma, &
     532              :       History_Track8_xtarget, &
     533              :       History_Track8_xsigma, &
     534              :       History_Track8_ytarget, &
     535              :       History_Track8_ysigma, &
     536              :       History_Track8_xname, &
     537              :       History_Track8_xaxis_label, &
     538              :       History_Track8_yname, &
     539              :       History_Track8_yaxis_label, &
     540              :       History_Track8_file_dir, &
     541              :       History_Track8_file_prefix, &
     542              :       show_History_Track8_annotation1, &
     543              :       show_History_Track8_annotation2, &
     544              :       show_History_Track8_annotation3, &
     545              :       History_Track8_fname, &
     546              :       History_Track8_reverse_xaxis, &
     547              :       History_Track8_reverse_yaxis, &
     548              :       History_Track8_log_xaxis, &
     549              :       History_Track8_log_yaxis, &
     550              :       History_Track8_xmin, &
     551              :       History_Track8_xmax, &
     552              :       History_Track8_ymin, &
     553              :       History_Track8_ymax, &
     554              :       History_Track8_xmargin, &
     555              :       History_Track8_ymargin, &
     556              :       History_Track8_dxmin, &
     557              :       History_Track8_dymin, &
     558              :       History_Track8_win_width, &
     559              :       History_Track8_win_aspect_ratio, &
     560              :       History_Track8_file_width, &
     561              :       History_Track8_file_aspect_ratio, &
     562              :       History_Track8_xleft, &
     563              :       History_Track8_xright, &
     564              :       History_Track8_ybot, &
     565              :       History_Track8_ytop, &
     566              :       History_Track8_txt_scale, &
     567              :       History_Track8_title, &
     568              :       History_Track8_use_decorator, &
     569              : 
     570              :       History_Track9_win_flag, &
     571              :       History_Track9_file_flag, &
     572              :       History_Track9_file_interval, &
     573              :       History_Track9_step_min, &
     574              :       History_Track9_step_max, &
     575              :       show_History_Track9_target_box, &
     576              :       History_Track9_n_sigma, &
     577              :       History_Track9_xtarget, &
     578              :       History_Track9_xsigma, &
     579              :       History_Track9_ytarget, &
     580              :       History_Track9_ysigma, &
     581              :       History_Track9_xname, &
     582              :       History_Track9_xaxis_label, &
     583              :       History_Track9_yname, &
     584              :       History_Track9_yaxis_label, &
     585              :       History_Track9_file_dir, &
     586              :       History_Track9_file_prefix, &
     587              :       show_History_Track9_annotation1, &
     588              :       show_History_Track9_annotation2, &
     589              :       show_History_Track9_annotation3, &
     590              :       History_Track9_fname, &
     591              :       History_Track9_reverse_xaxis, &
     592              :       History_Track9_reverse_yaxis, &
     593              :       History_Track9_log_xaxis, &
     594              :       History_Track9_log_yaxis, &
     595              :       History_Track9_xmin, &
     596              :       History_Track9_xmax, &
     597              :       History_Track9_ymin, &
     598              :       History_Track9_ymax, &
     599              :       History_Track9_xmargin, &
     600              :       History_Track9_ymargin, &
     601              :       History_Track9_dxmin, &
     602              :       History_Track9_dymin, &
     603              :       History_Track9_win_width, &
     604              :       History_Track9_win_aspect_ratio, &
     605              :       History_Track9_file_width, &
     606              :       History_Track9_file_aspect_ratio, &
     607              :       History_Track9_xleft, &
     608              :       History_Track9_xright, &
     609              :       History_Track9_ybot, &
     610              :       History_Track9_ytop, &
     611              :       History_Track9_txt_scale, &
     612              :       History_Track9_title, &
     613              :       History_Track9_use_decorator, &
     614              : 
     615              :       History_Panels1_win_flag, &
     616              :       History_Panels1_win_width, &
     617              :       History_Panels1_win_aspect_ratio, &
     618              :       History_Panels1_xleft, &
     619              :       History_Panels1_xright, &
     620              :       History_Panels1_ybot, &
     621              :       History_Panels1_ytop, &
     622              :       History_Panels1_txt_scale, &
     623              :       History_Panels1_title, &
     624              :       History_Panels1_xmax, &
     625              :       History_Panels1_xmin, &
     626              :       History_Panels1_dxmin, &
     627              :       History_Panels1_max_width, &
     628              :       History_Panels1_num_panels, &
     629              :       History_Panels1_xaxis_name, &
     630              :       History_Panels1_yaxis_name, &
     631              :       History_Panels1_xaxis_reversed, &
     632              :       History_Panels1_yaxis_reversed, &
     633              :       History_Panels1_yaxis_log, &
     634              :       History_Panels1_ymin, &
     635              :       History_Panels1_ymax, &
     636              :       History_Panels1_dymin, &
     637              :       History_Panels1_other_yaxis_name, &
     638              :       History_Panels1_other_yaxis_reversed, &
     639              :       History_Panels1_xaxis_log, &
     640              :       History_Panels1_other_yaxis_log, &
     641              :       History_Panels1_other_ymin, &
     642              :       History_Panels1_other_ymax, &
     643              :       History_Panels1_other_dymin, &
     644              :       History_Panels1_points_name, &
     645              :       History_Panels1_file_flag, &
     646              :       History_Panels1_file_dir, &
     647              :       History_Panels1_file_prefix, &
     648              :       History_Panels1_file_interval, &
     649              :       History_Panels1_file_width, &
     650              :       History_Panels1_file_aspect_ratio, &
     651              :       History_Panels1_xmargin, &
     652              :       History_Panels1_ymargin, &
     653              :       History_Panels1_other_ymargin, &
     654              :       History_Panels1_use_decorator, &
     655              : 
     656              :       History_Panels2_win_flag, &
     657              :       History_Panels2_win_width, &
     658              :       History_Panels2_win_aspect_ratio, &
     659              :       History_Panels2_xleft, &
     660              :       History_Panels2_xright, &
     661              :       History_Panels2_ybot, &
     662              :       History_Panels2_ytop, &
     663              :       History_Panels2_txt_scale, &
     664              :       History_Panels2_title, &
     665              :       History_Panels2_xmax, &
     666              :       History_Panels2_xmin, &
     667              :       History_Panels2_dxmin, &
     668              :       History_Panels2_max_width, &
     669              :       History_Panels2_num_panels, &
     670              :       History_Panels2_xaxis_name, &
     671              :       History_Panels2_yaxis_name, &
     672              :       History_Panels2_xaxis_reversed, &
     673              :       History_Panels2_yaxis_reversed, &
     674              :       History_Panels2_yaxis_log, &
     675              :       History_Panels2_ymin, &
     676              :       History_Panels2_ymax, &
     677              :       History_Panels2_dymin, &
     678              :       History_Panels2_other_yaxis_name, &
     679              :       History_Panels2_other_yaxis_reversed, &
     680              :       History_Panels2_xaxis_log, &
     681              :       History_Panels2_other_yaxis_log, &
     682              :       History_Panels2_other_ymin, &
     683              :       History_Panels2_other_ymax, &
     684              :       History_Panels2_other_dymin, &
     685              :       History_Panels2_points_name, &
     686              :       History_Panels2_file_flag, &
     687              :       History_Panels2_file_dir, &
     688              :       History_Panels2_file_prefix, &
     689              :       History_Panels2_file_interval, &
     690              :       History_Panels2_file_width, &
     691              :       History_Panels2_file_aspect_ratio, &
     692              :       History_Panels2_xmargin, &
     693              :       History_Panels2_ymargin, &
     694              :       History_Panels2_other_ymargin, &
     695              :       History_Panels2_use_decorator, &
     696              : 
     697              :       History_Panels3_win_flag, &
     698              :       History_Panels3_win_width, &
     699              :       History_Panels3_win_aspect_ratio, &
     700              :       History_Panels3_xleft, &
     701              :       History_Panels3_xright, &
     702              :       History_Panels3_ybot, &
     703              :       History_Panels3_ytop, &
     704              :       History_Panels3_txt_scale, &
     705              :       History_Panels3_title, &
     706              :       History_Panels3_xmax, &
     707              :       History_Panels3_xmin, &
     708              :       History_Panels3_dxmin, &
     709              :       History_Panels3_max_width, &
     710              :       History_Panels3_num_panels, &
     711              :       History_Panels3_xaxis_name, &
     712              :       History_Panels3_yaxis_name, &
     713              :       History_Panels3_xaxis_reversed, &
     714              :       History_Panels3_yaxis_reversed, &
     715              :       History_Panels3_yaxis_log, &
     716              :       History_Panels3_ymin, &
     717              :       History_Panels3_ymax, &
     718              :       History_Panels3_dymin, &
     719              :       History_Panels3_other_yaxis_name, &
     720              :       History_Panels3_other_yaxis_reversed, &
     721              :       History_Panels3_xaxis_log, &
     722              :       History_Panels3_other_yaxis_log, &
     723              :       History_Panels3_other_ymin, &
     724              :       History_Panels3_other_ymax, &
     725              :       History_Panels3_other_dymin, &
     726              :       History_Panels3_points_name, &
     727              :       History_Panels3_file_flag, &
     728              :       History_Panels3_file_dir, &
     729              :       History_Panels3_file_prefix, &
     730              :       History_Panels3_file_interval, &
     731              :       History_Panels3_file_width, &
     732              :       History_Panels3_file_aspect_ratio, &
     733              :       History_Panels3_xmargin, &
     734              :       History_Panels3_ymargin, &
     735              :       History_Panels3_other_ymargin, &
     736              :       History_Panels3_use_decorator, &
     737              : 
     738              :       History_Panels4_win_flag, &
     739              :       History_Panels4_win_width, &
     740              :       History_Panels4_win_aspect_ratio, &
     741              :       History_Panels4_xleft, &
     742              :       History_Panels4_xright, &
     743              :       History_Panels4_ybot, &
     744              :       History_Panels4_ytop, &
     745              :       History_Panels4_txt_scale, &
     746              :       History_Panels4_title, &
     747              :       History_Panels4_xmax, &
     748              :       History_Panels4_xmin, &
     749              :       History_Panels4_dxmin, &
     750              :       History_Panels4_max_width, &
     751              :       History_Panels4_num_panels, &
     752              :       History_Panels4_xaxis_name, &
     753              :       History_Panels4_yaxis_name, &
     754              :       History_Panels4_xaxis_reversed, &
     755              :       History_Panels4_yaxis_reversed, &
     756              :       History_Panels4_yaxis_log, &
     757              :       History_Panels4_ymin, &
     758              :       History_Panels4_ymax, &
     759              :       History_Panels4_dymin, &
     760              :       History_Panels4_other_yaxis_name, &
     761              :       History_Panels4_other_yaxis_reversed, &
     762              :       History_Panels4_xaxis_log, &
     763              :       History_Panels4_other_yaxis_log, &
     764              :       History_Panels4_other_ymin, &
     765              :       History_Panels4_other_ymax, &
     766              :       History_Panels4_other_dymin, &
     767              :       History_Panels4_points_name, &
     768              :       History_Panels4_file_flag, &
     769              :       History_Panels4_file_dir, &
     770              :       History_Panels4_file_prefix, &
     771              :       History_Panels4_file_interval, &
     772              :       History_Panels4_file_width, &
     773              :       History_Panels4_file_aspect_ratio, &
     774              :       History_Panels4_xmargin, &
     775              :       History_Panels4_ymargin, &
     776              :       History_Panels4_other_ymargin, &
     777              :       History_Panels4_use_decorator, &
     778              : 
     779              :       History_Panels5_win_flag, &
     780              :       History_Panels5_win_width, &
     781              :       History_Panels5_win_aspect_ratio, &
     782              :       History_Panels5_xleft, &
     783              :       History_Panels5_xright, &
     784              :       History_Panels5_ybot, &
     785              :       History_Panels5_ytop, &
     786              :       History_Panels5_txt_scale, &
     787              :       History_Panels5_title, &
     788              :       History_Panels5_xmax, &
     789              :       History_Panels5_xmin, &
     790              :       History_Panels5_dxmin, &
     791              :       History_Panels5_max_width, &
     792              :       History_Panels5_num_panels, &
     793              :       History_Panels5_xaxis_name, &
     794              :       History_Panels5_yaxis_name, &
     795              :       History_Panels5_xaxis_reversed, &
     796              :       History_Panels5_yaxis_reversed, &
     797              :       History_Panels5_yaxis_log, &
     798              :       History_Panels5_ymin, &
     799              :       History_Panels5_ymax, &
     800              :       History_Panels5_dymin, &
     801              :       History_Panels5_other_yaxis_name, &
     802              :       History_Panels5_other_yaxis_reversed, &
     803              :       History_Panels5_xaxis_log, &
     804              :       History_Panels5_other_yaxis_log, &
     805              :       History_Panels5_other_ymin, &
     806              :       History_Panels5_other_ymax, &
     807              :       History_Panels5_other_dymin, &
     808              :       History_Panels5_points_name, &
     809              :       History_Panels5_file_flag, &
     810              :       History_Panels5_file_dir, &
     811              :       History_Panels5_file_prefix, &
     812              :       History_Panels5_file_interval, &
     813              :       History_Panels5_file_width, &
     814              :       History_Panels5_file_aspect_ratio, &
     815              :       History_Panels5_xmargin, &
     816              :       History_Panels5_ymargin, &
     817              :       History_Panels5_other_ymargin, &
     818              :       History_Panels5_use_decorator, &
     819              : 
     820              :       History_Panels6_win_flag, &
     821              :       History_Panels6_win_width, &
     822              :       History_Panels6_win_aspect_ratio, &
     823              :       History_Panels6_xleft, &
     824              :       History_Panels6_xright, &
     825              :       History_Panels6_ybot, &
     826              :       History_Panels6_ytop, &
     827              :       History_Panels6_txt_scale, &
     828              :       History_Panels6_title, &
     829              :       History_Panels6_xmax, &
     830              :       History_Panels6_xmin, &
     831              :       History_Panels6_dxmin, &
     832              :       History_Panels6_max_width, &
     833              :       History_Panels6_num_panels, &
     834              :       History_Panels6_xaxis_name, &
     835              :       History_Panels6_yaxis_name, &
     836              :       History_Panels6_xaxis_reversed, &
     837              :       History_Panels6_yaxis_reversed, &
     838              :       History_Panels6_yaxis_log, &
     839              :       History_Panels6_ymin, &
     840              :       History_Panels6_ymax, &
     841              :       History_Panels6_dymin, &
     842              :       History_Panels6_other_yaxis_name, &
     843              :       History_Panels6_other_yaxis_reversed, &
     844              :       History_Panels6_xaxis_log, &
     845              :       History_Panels6_other_yaxis_log, &
     846              :       History_Panels6_other_ymin, &
     847              :       History_Panels6_other_ymax, &
     848              :       History_Panels6_other_dymin, &
     849              :       History_Panels6_points_name, &
     850              :       History_Panels6_file_flag, &
     851              :       History_Panels6_file_dir, &
     852              :       History_Panels6_file_prefix, &
     853              :       History_Panels6_file_interval, &
     854              :       History_Panels6_file_width, &
     855              :       History_Panels6_file_aspect_ratio, &
     856              :       History_Panels6_xmargin, &
     857              :       History_Panels6_ymargin, &
     858              :       History_Panels6_other_ymargin, &
     859              :       History_Panels6_use_decorator, &
     860              : 
     861              :       History_Panels7_win_flag, &
     862              :       History_Panels7_win_width, &
     863              :       History_Panels7_win_aspect_ratio, &
     864              :       History_Panels7_xleft, &
     865              :       History_Panels7_xright, &
     866              :       History_Panels7_ybot, &
     867              :       History_Panels7_ytop, &
     868              :       History_Panels7_txt_scale, &
     869              :       History_Panels7_title, &
     870              :       History_Panels7_xmax, &
     871              :       History_Panels7_xmin, &
     872              :       History_Panels7_dxmin, &
     873              :       History_Panels7_max_width, &
     874              :       History_Panels7_num_panels, &
     875              :       History_Panels7_xaxis_name, &
     876              :       History_Panels7_yaxis_name, &
     877              :       History_Panels7_xaxis_reversed, &
     878              :       History_Panels7_yaxis_reversed, &
     879              :       History_Panels7_yaxis_log, &
     880              :       History_Panels7_ymin, &
     881              :       History_Panels7_ymax, &
     882              :       History_Panels7_dymin, &
     883              :       History_Panels7_other_yaxis_name, &
     884              :       History_Panels7_other_yaxis_reversed, &
     885              :       History_Panels7_xaxis_log, &
     886              :       History_Panels7_other_yaxis_log, &
     887              :       History_Panels7_other_ymin, &
     888              :       History_Panels7_other_ymax, &
     889              :       History_Panels7_other_dymin, &
     890              :       History_Panels7_points_name, &
     891              :       History_Panels7_file_flag, &
     892              :       History_Panels7_file_dir, &
     893              :       History_Panels7_file_prefix, &
     894              :       History_Panels7_file_interval, &
     895              :       History_Panels7_file_width, &
     896              :       History_Panels7_file_aspect_ratio, &
     897              :       History_Panels7_xmargin, &
     898              :       History_Panels7_ymargin, &
     899              :       History_Panels7_other_ymargin, &
     900              :       History_Panels7_use_decorator, &
     901              : 
     902              :       History_Panels8_win_flag, &
     903              :       History_Panels8_win_width, &
     904              :       History_Panels8_win_aspect_ratio, &
     905              :       History_Panels8_xleft, &
     906              :       History_Panels8_xright, &
     907              :       History_Panels8_ybot, &
     908              :       History_Panels8_ytop, &
     909              :       History_Panels8_txt_scale, &
     910              :       History_Panels8_title, &
     911              :       History_Panels8_xmax, &
     912              :       History_Panels8_xmin, &
     913              :       History_Panels8_dxmin, &
     914              :       History_Panels8_max_width, &
     915              :       History_Panels8_num_panels, &
     916              :       History_Panels8_xaxis_name, &
     917              :       History_Panels8_yaxis_name, &
     918              :       History_Panels8_xaxis_reversed, &
     919              :       History_Panels8_yaxis_reversed, &
     920              :       History_Panels8_yaxis_log, &
     921              :       History_Panels8_ymin, &
     922              :       History_Panels8_ymax, &
     923              :       History_Panels8_dymin, &
     924              :       History_Panels8_other_yaxis_name, &
     925              :       History_Panels8_other_yaxis_reversed, &
     926              :       History_Panels8_xaxis_log, &
     927              :       History_Panels8_other_yaxis_log, &
     928              :       History_Panels8_other_ymin, &
     929              :       History_Panels8_other_ymax, &
     930              :       History_Panels8_other_dymin, &
     931              :       History_Panels8_points_name, &
     932              :       History_Panels8_file_flag, &
     933              :       History_Panels8_file_dir, &
     934              :       History_Panels8_file_prefix, &
     935              :       History_Panels8_file_interval, &
     936              :       History_Panels8_file_width, &
     937              :       History_Panels8_file_aspect_ratio, &
     938              :       History_Panels8_xmargin, &
     939              :       History_Panels8_ymargin, &
     940              :       History_Panels8_other_ymargin, &
     941              :       History_Panels8_use_decorator, &
     942              : 
     943              :       History_Panels9_win_flag, &
     944              :       History_Panels9_win_width, &
     945              :       History_Panels9_win_aspect_ratio, &
     946              :       History_Panels9_xleft, &
     947              :       History_Panels9_xright, &
     948              :       History_Panels9_ybot, &
     949              :       History_Panels9_ytop, &
     950              :       History_Panels9_txt_scale, &
     951              :       History_Panels9_title, &
     952              :       History_Panels9_xmax, &
     953              :       History_Panels9_xmin, &
     954              :       History_Panels9_dxmin, &
     955              :       History_Panels9_max_width, &
     956              :       History_Panels9_num_panels, &
     957              :       History_Panels9_xaxis_name, &
     958              :       History_Panels9_yaxis_name, &
     959              :       History_Panels9_xaxis_reversed, &
     960              :       History_Panels9_yaxis_reversed, &
     961              :       History_Panels9_yaxis_log, &
     962              :       History_Panels9_ymin, &
     963              :       History_Panels9_ymax, &
     964              :       History_Panels9_dymin, &
     965              :       History_Panels9_other_yaxis_name, &
     966              :       History_Panels9_other_yaxis_reversed, &
     967              :       History_Panels9_xaxis_log, &
     968              :       History_Panels9_other_yaxis_log, &
     969              :       History_Panels9_other_ymin, &
     970              :       History_Panels9_other_ymax, &
     971              :       History_Panels9_other_dymin, &
     972              :       History_Panels9_points_name, &
     973              :       History_Panels9_file_flag, &
     974              :       History_Panels9_file_dir, &
     975              :       History_Panels9_file_prefix, &
     976              :       History_Panels9_file_interval, &
     977              :       History_Panels9_file_width, &
     978              :       History_Panels9_file_aspect_ratio, &
     979              :       History_Panels9_xmargin, &
     980              :       History_Panels9_ymargin, &
     981              :       History_Panels9_other_ymargin, &
     982              :       History_Panels9_use_decorator, &
     983              : 
     984              :       History_Panel_points_error_bars, &
     985              :       History_Panel_points_interval, &
     986              :       History_Panel_points_marker, &
     987              :       History_Panel_points_ci, &
     988              :       History_Panel_points_lw, &
     989              :       History_Panel_points_ch, &
     990              : 
     991              :       Summary_History_win_flag, &
     992              :       Summary_History_file_flag, &
     993              :       Summary_History_file_interval, &
     994              :       Summary_History_file_dir, &
     995              :       Summary_History_file_prefix, &
     996              :       Summary_History_scaled_value, &
     997              :       Summary_History_xmin, &
     998              :       Summary_History_xmax, &
     999              :       Summary_History_max_width, &
    1000              :       Summary_History_win_width, &
    1001              :       Summary_History_win_aspect_ratio, &
    1002              :       Summary_History_file_width, &
    1003              :       Summary_History_file_aspect_ratio, &
    1004              :       Summary_History_xleft, &
    1005              :       Summary_History_xright, &
    1006              :       Summary_History_ybot, &
    1007              :       Summary_History_ytop, &
    1008              :       Summary_History_txt_scale, &
    1009              :       Summary_History_title, &
    1010              :       Summary_History_name, &
    1011              :       Summary_History_legend, &
    1012              :       Summary_History_num_lines, &
    1013              :       Summary_History_use_decorator, &
    1014              : 
    1015              :       Grid1_win_flag, &
    1016              :       Grid1_win_width, &
    1017              :       Grid1_win_aspect_ratio, &
    1018              :       Grid1_xleft, &
    1019              :       Grid1_xright, &
    1020              :       Grid1_ybot, &
    1021              :       Grid1_ytop, &
    1022              :       Grid1_title, &
    1023              :       Grid1_txt_scale_factor, &
    1024              :       Grid1_num_cols, &
    1025              :       Grid1_num_rows, &
    1026              :       Grid1_num_plots, &
    1027              :       Grid1_plot_name, &
    1028              :       Grid1_plot_row, &
    1029              :       Grid1_plot_rowspan, &
    1030              :       Grid1_plot_col, &
    1031              :       Grid1_plot_colspan, &
    1032              :       Grid1_plot_pad_left, &
    1033              :       Grid1_plot_pad_right, &
    1034              :       Grid1_plot_pad_top, &
    1035              :       Grid1_plot_pad_bot, &
    1036              :       Grid1_file_flag, &
    1037              :       Grid1_file_dir, &
    1038              :       Grid1_file_prefix, &
    1039              :       Grid1_file_interval, &
    1040              :       Grid1_file_width, &
    1041              :       Grid1_file_aspect_ratio, &
    1042              : 
    1043              :       Grid2_win_flag, &
    1044              :       Grid2_win_width, &
    1045              :       Grid2_win_aspect_ratio, &
    1046              :       Grid2_xleft, &
    1047              :       Grid2_xright, &
    1048              :       Grid2_ybot, &
    1049              :       Grid2_ytop, &
    1050              :       Grid2_title, &
    1051              :       Grid2_txt_scale_factor, &
    1052              :       Grid2_num_cols, &
    1053              :       Grid2_num_rows, &
    1054              :       Grid2_num_plots, &
    1055              :       Grid2_plot_name, &
    1056              :       Grid2_plot_row, &
    1057              :       Grid2_plot_rowspan, &
    1058              :       Grid2_plot_col, &
    1059              :       Grid2_plot_colspan, &
    1060              :       Grid2_plot_pad_left, &
    1061              :       Grid2_plot_pad_right, &
    1062              :       Grid2_plot_pad_top, &
    1063              :       Grid2_plot_pad_bot, &
    1064              :       Grid2_file_flag, &
    1065              :       Grid2_file_dir, &
    1066              :       Grid2_file_prefix, &
    1067              :       Grid2_file_interval, &
    1068              :       Grid2_file_width, &
    1069              :       Grid2_file_aspect_ratio, &
    1070              : 
    1071              :       Grid3_win_flag, &
    1072              :       Grid3_win_width, &
    1073              :       Grid3_win_aspect_ratio, &
    1074              :       Grid3_xleft, &
    1075              :       Grid3_xright, &
    1076              :       Grid3_ybot, &
    1077              :       Grid3_ytop, &
    1078              :       Grid3_title, &
    1079              :       Grid3_txt_scale_factor, &
    1080              :       Grid3_num_cols, &
    1081              :       Grid3_num_rows, &
    1082              :       Grid3_num_plots, &
    1083              :       Grid3_plot_name, &
    1084              :       Grid3_plot_row, &
    1085              :       Grid3_plot_rowspan, &
    1086              :       Grid3_plot_col, &
    1087              :       Grid3_plot_colspan, &
    1088              :       Grid3_plot_pad_left, &
    1089              :       Grid3_plot_pad_right, &
    1090              :       Grid3_plot_pad_top, &
    1091              :       Grid3_plot_pad_bot, &
    1092              :       Grid3_file_flag, &
    1093              :       Grid3_file_dir, &
    1094              :       Grid3_file_prefix, &
    1095              :       Grid3_file_interval, &
    1096              :       Grid3_file_width, &
    1097              :       Grid3_file_aspect_ratio, &
    1098              : 
    1099              :       Grid4_win_flag, &
    1100              :       Grid4_win_width, &
    1101              :       Grid4_win_aspect_ratio, &
    1102              :       Grid4_xleft, &
    1103              :       Grid4_xright, &
    1104              :       Grid4_ybot, &
    1105              :       Grid4_ytop, &
    1106              :       Grid4_title, &
    1107              :       Grid4_txt_scale_factor, &
    1108              :       Grid4_num_cols, &
    1109              :       Grid4_num_rows, &
    1110              :       Grid4_num_plots, &
    1111              :       Grid4_plot_name, &
    1112              :       Grid4_plot_row, &
    1113              :       Grid4_plot_rowspan, &
    1114              :       Grid4_plot_col, &
    1115              :       Grid4_plot_colspan, &
    1116              :       Grid4_plot_pad_left, &
    1117              :       Grid4_plot_pad_right, &
    1118              :       Grid4_plot_pad_top, &
    1119              :       Grid4_plot_pad_bot, &
    1120              :       Grid4_file_flag, &
    1121              :       Grid4_file_dir, &
    1122              :       Grid4_file_prefix, &
    1123              :       Grid4_file_interval, &
    1124              :       Grid4_file_width, &
    1125              :       Grid4_file_aspect_ratio, &
    1126              : 
    1127              :       Grid5_win_flag, &
    1128              :       Grid5_win_width, &
    1129              :       Grid5_win_aspect_ratio, &
    1130              :       Grid5_xleft, &
    1131              :       Grid5_xright, &
    1132              :       Grid5_ybot, &
    1133              :       Grid5_ytop, &
    1134              :       Grid5_title, &
    1135              :       Grid5_txt_scale_factor, &
    1136              :       Grid5_num_cols, &
    1137              :       Grid5_num_rows, &
    1138              :       Grid5_num_plots, &
    1139              :       Grid5_plot_name, &
    1140              :       Grid5_plot_row, &
    1141              :       Grid5_plot_rowspan, &
    1142              :       Grid5_plot_col, &
    1143              :       Grid5_plot_colspan, &
    1144              :       Grid5_plot_pad_left, &
    1145              :       Grid5_plot_pad_right, &
    1146              :       Grid5_plot_pad_top, &
    1147              :       Grid5_plot_pad_bot, &
    1148              :       Grid5_file_flag, &
    1149              :       Grid5_file_dir, &
    1150              :       Grid5_file_prefix, &
    1151              :       Grid5_file_interval, &
    1152              :       Grid5_file_width, &
    1153              :       Grid5_file_aspect_ratio, &
    1154              : 
    1155              :       Grid6_win_flag, &
    1156              :       Grid6_win_width, &
    1157              :       Grid6_win_aspect_ratio, &
    1158              :       Grid6_xleft, &
    1159              :       Grid6_xright, &
    1160              :       Grid6_ybot, &
    1161              :       Grid6_ytop, &
    1162              :       Grid6_title, &
    1163              :       Grid6_txt_scale_factor, &
    1164              :       Grid6_num_cols, &
    1165              :       Grid6_num_rows, &
    1166              :       Grid6_num_plots, &
    1167              :       Grid6_plot_name, &
    1168              :       Grid6_plot_row, &
    1169              :       Grid6_plot_rowspan, &
    1170              :       Grid6_plot_col, &
    1171              :       Grid6_plot_colspan, &
    1172              :       Grid6_plot_pad_left, &
    1173              :       Grid6_plot_pad_right, &
    1174              :       Grid6_plot_pad_top, &
    1175              :       Grid6_plot_pad_bot, &
    1176              :       Grid6_file_flag, &
    1177              :       Grid6_file_dir, &
    1178              :       Grid6_file_prefix, &
    1179              :       Grid6_file_interval, &
    1180              :       Grid6_file_width, &
    1181              :       Grid6_file_aspect_ratio, &
    1182              : 
    1183              :       Grid7_win_flag, &
    1184              :       Grid7_win_width, &
    1185              :       Grid7_win_aspect_ratio, &
    1186              :       Grid7_xleft, &
    1187              :       Grid7_xright, &
    1188              :       Grid7_ybot, &
    1189              :       Grid7_ytop, &
    1190              :       Grid7_title, &
    1191              :       Grid7_txt_scale_factor, &
    1192              :       Grid7_num_cols, &
    1193              :       Grid7_num_rows, &
    1194              :       Grid7_num_plots, &
    1195              :       Grid7_plot_name, &
    1196              :       Grid7_plot_row, &
    1197              :       Grid7_plot_rowspan, &
    1198              :       Grid7_plot_col, &
    1199              :       Grid7_plot_colspan, &
    1200              :       Grid7_plot_pad_left, &
    1201              :       Grid7_plot_pad_right, &
    1202              :       Grid7_plot_pad_top, &
    1203              :       Grid7_plot_pad_bot, &
    1204              :       Grid7_file_flag, &
    1205              :       Grid7_file_dir, &
    1206              :       Grid7_file_prefix, &
    1207              :       Grid7_file_interval, &
    1208              :       Grid7_file_width, &
    1209              :       Grid7_file_aspect_ratio, &
    1210              : 
    1211              :       Grid8_win_flag, &
    1212              :       Grid8_win_width, &
    1213              :       Grid8_win_aspect_ratio, &
    1214              :       Grid8_xleft, &
    1215              :       Grid8_xright, &
    1216              :       Grid8_ybot, &
    1217              :       Grid8_ytop, &
    1218              :       Grid8_title, &
    1219              :       Grid8_txt_scale_factor, &
    1220              :       Grid8_num_cols, &
    1221              :       Grid8_num_rows, &
    1222              :       Grid8_num_plots, &
    1223              :       Grid8_plot_name, &
    1224              :       Grid8_plot_row, &
    1225              :       Grid8_plot_rowspan, &
    1226              :       Grid8_plot_col, &
    1227              :       Grid8_plot_colspan, &
    1228              :       Grid8_plot_pad_left, &
    1229              :       Grid8_plot_pad_right, &
    1230              :       Grid8_plot_pad_top, &
    1231              :       Grid8_plot_pad_bot, &
    1232              :       Grid8_file_flag, &
    1233              :       Grid8_file_dir, &
    1234              :       Grid8_file_prefix, &
    1235              :       Grid8_file_interval, &
    1236              :       Grid8_file_width, &
    1237              :       Grid8_file_aspect_ratio, &
    1238              : 
    1239              :       Grid9_win_flag, &
    1240              :       Grid9_win_width, &
    1241              :       Grid9_win_aspect_ratio, &
    1242              :       Grid9_xleft, &
    1243              :       Grid9_xright, &
    1244              :       Grid9_ybot, &
    1245              :       Grid9_ytop, &
    1246              :       Grid9_title, &
    1247              :       Grid9_txt_scale_factor, &
    1248              :       Grid9_num_cols, &
    1249              :       Grid9_num_rows, &
    1250              :       Grid9_num_plots, &
    1251              :       Grid9_plot_name, &
    1252              :       Grid9_plot_row, &
    1253              :       Grid9_plot_rowspan, &
    1254              :       Grid9_plot_col, &
    1255              :       Grid9_plot_colspan, &
    1256              :       Grid9_plot_pad_left, &
    1257              :       Grid9_plot_pad_right, &
    1258              :       Grid9_plot_pad_top, &
    1259              :       Grid9_plot_pad_bot, &
    1260              :       Grid9_file_flag, &
    1261              :       Grid9_file_dir, &
    1262              :       Grid9_file_prefix, &
    1263              :       Grid9_file_interval, &
    1264              :       Grid9_file_width, &
    1265              :       Grid9_file_aspect_ratio, &
    1266              : 
    1267              :       Star1_win_flag, &
    1268              :       Star1_file_flag, &
    1269              :       Star1_file_interval, &
    1270              :       Star1_file_dir, &
    1271              :       Star1_file_prefix, &
    1272              :       Star1_win_width, &
    1273              :       Star1_win_aspect_ratio, &
    1274              :       Star1_xleft, &
    1275              :       Star1_xright, &
    1276              :       Star1_ybot, &
    1277              :       Star1_ytop, &
    1278              :       Star1_file_width, &
    1279              :       Star1_file_aspect_ratio, &
    1280              :       Star1_txt_scale_factor, &
    1281              :       Star1_title, &
    1282              :       Star1_plot_name, &
    1283              :       do_star1_box, &
    1284              :       star1_box_pad_left, &
    1285              :       star1_box_pad_right, &
    1286              :       star1_box_pad_bot, &
    1287              :       star1_box_pad_top, &
    1288              : 
    1289              :       Star2_win_flag, &
    1290              :       Star2_file_flag, &
    1291              :       Star2_file_interval, &
    1292              :       Star2_file_dir, &
    1293              :       Star2_file_prefix, &
    1294              :       Star2_win_width, &
    1295              :       Star2_win_aspect_ratio, &
    1296              :       Star2_xleft, &
    1297              :       Star2_xright, &
    1298              :       Star2_ybot, &
    1299              :       Star2_ytop, &
    1300              :       Star2_file_width, &
    1301              :       Star2_file_aspect_ratio, &
    1302              :       Star2_txt_scale_factor, &
    1303              :       Star2_title, &
    1304              :       Star2_plot_name, &
    1305              :       do_star2_box, &
    1306              :       star2_box_pad_left, &
    1307              :       star2_box_pad_right, &
    1308              :       star2_box_pad_bot, &
    1309              :       star2_box_pad_top, &
    1310              : 
    1311              :       show_mtrans_status, &
    1312              : 
    1313              :       Orbit_win_flag, &
    1314              :       Orbit_file_flag, &
    1315              :       Orbit_file_interval, &
    1316              :       Orbit_file_dir, &
    1317              :       Orbit_file_prefix, &
    1318              :       Orbit_title, &
    1319              :       Orbit_win_width, &
    1320              :       Orbit_win_aspect_ratio, &
    1321              :       Orbit_xleft, &
    1322              :       Orbit_xright, &
    1323              :       Orbit_ybot, &
    1324              :       Orbit_ytop, &
    1325              :       Orbit_file_width, &
    1326              :       Orbit_file_aspect_ratio, &
    1327              :       Orbit_txt_scale_factor, &
    1328              :       Orbit_show_stars, &
    1329              : 
    1330              :       annotation1_ci, &
    1331              :       annotation1_ch, &
    1332              :       annotation1_lw, &
    1333              :       annotation1_cf, &
    1334              :       annotation1_text, &
    1335              :       annotation1_side, &
    1336              :       annotation1_disp, &
    1337              :       annotation1_coord, &
    1338              :       annotation1_fjust, &
    1339              : 
    1340              :       annotation2_ci, &
    1341              :       annotation2_ch, &
    1342              :       annotation2_lw, &
    1343              :       annotation2_cf, &
    1344              :       annotation2_text, &
    1345              :       annotation2_side, &
    1346              :       annotation2_disp, &
    1347              :       annotation2_coord, &
    1348              :       annotation2_fjust, &
    1349              : 
    1350              :       annotation3_ci, &
    1351              :       annotation3_ch, &
    1352              :       annotation3_lw, &
    1353              :       annotation3_cf, &
    1354              :       annotation3_text, &
    1355              :       annotation3_side, &
    1356              :       annotation3_disp, &
    1357              :       annotation3_coord, &
    1358              :       annotation3_fjust, &
    1359              : 
    1360              :       read_extra_pgbinary_inlist, &
    1361              :       extra_pgbinary_inlist_name
    1362              : 
    1363              : 
    1364              : contains
    1365              : 
    1366              : 
    1367            0 :    subroutine read_pgbinary(b, filename, ierr)
    1368              :       use binary_private_def
    1369              :       use utils_lib
    1370              :       type (binary_info), pointer :: b
    1371              :       character(*), intent(in) :: filename
    1372              :       integer, intent(out) :: ierr
    1373              :       !      character (len = strlen) :: pgbinary_namelist_name
    1374              :       !      pgbinary_namelist_name = ''
    1375            0 :       ierr = 0
    1376            0 :       call set_default_pgbinary_controls
    1377            0 :       call read_pgbinary_file(b, filename, 1, ierr)
    1378            0 :    end subroutine read_pgbinary
    1379              : 
    1380              : 
    1381            0 :    recursive subroutine read_pgbinary_file(b, filename, level, ierr)
    1382            0 :       use binary_private_def
    1383              :       use utils_lib
    1384              :       character(*), intent(in) :: filename
    1385              :       type (binary_info), pointer :: b
    1386              :       integer, intent(in) :: level
    1387              :       integer, intent(out) :: ierr
    1388              :       logical, dimension(max_extra_inlists) :: read_extra
    1389              :       character (len=strlen), dimension(max_extra_inlists) :: extra
    1390              :       integer :: unit, i
    1391              : 
    1392            0 :       ierr = 0
    1393              : 
    1394            0 :       if (level >= 10) then
    1395            0 :          write(*, *) 'ERROR: too many levels of nested extra pgbinary inlist files'
    1396            0 :          ierr = -1
    1397            0 :          return
    1398              :       end if
    1399            0 :       if (len_trim(filename) > 0) then
    1400            0 :          open(newunit = unit, file = trim(filename), action = 'read', delim = 'quote', status = 'old', iostat = ierr)
    1401            0 :          if (ierr /= 0) then
    1402            0 :             write(*, *) 'Failed to open pgbinary namelist file ', trim(filename)
    1403            0 :             return
    1404              :          end if
    1405            0 :          read(unit, nml = pgbinary, iostat = ierr)
    1406            0 :          close(unit)
    1407            0 :          if (ierr /= 0) then
    1408            0 :             write(*, *)
    1409            0 :             write(*, *)
    1410              :             write(*, '(a)') &
    1411            0 :                'Failed while trying to read pgbinary namelist file: ' // trim(filename)
    1412              :             write(*, '(a)') &
    1413            0 :                'Perhaps the following runtime error message will help you find the problem.'
    1414            0 :             write(*, *)
    1415            0 :             open(newunit = unit, file = trim(filename), action = 'read', delim = 'quote', status = 'old', iostat = ierr)
    1416            0 :             read(unit, nml = pgbinary)
    1417            0 :             close(unit)
    1418            0 :             return
    1419              :          end if
    1420              :       end if
    1421              : 
    1422            0 :       call store_pgbinary_controls(b, ierr)
    1423              : 
    1424              :  ! recursive calls to read other inlists
    1425            0 :          do i=1, max_extra_inlists
    1426            0 :             read_extra(i) = read_extra_pgbinary_inlist(i)
    1427            0 :             read_extra_pgbinary_inlist(i) = .false.
    1428            0 :             extra(i) = extra_pgbinary_inlist_name(i)
    1429            0 :             extra_pgbinary_inlist_name(i) = 'undefined'
    1430              : 
    1431            0 :             if (read_extra(i)) then
    1432            0 :                call read_pgbinary_file(b, extra(i), level+1, ierr)
    1433            0 :                if (ierr /= 0) return
    1434              :             end if
    1435              :          end do
    1436              : 
    1437            0 :    end subroutine read_pgbinary_file
    1438              : 
    1439              : 
    1440            0 :    subroutine store_pgbinary_controls(b, ierr)
    1441            0 :       use binary_private_def
    1442              :       type (binary_info), pointer :: b
    1443              :       type (pgbinary_controls), pointer :: pg
    1444              :       integer, intent(out) :: ierr
    1445              : 
    1446            0 :       ierr = 0
    1447            0 :       pg => b% pg
    1448              : 
    1449            0 :       pg% file_device = file_device
    1450            0 :       pg% file_digits = file_digits
    1451            0 :       pg% pgbinary_interval = pgbinary_interval
    1452            0 :       pg% pause_flag = pause_flag
    1453            0 :       pg% pause_interval = pause_interval
    1454            0 :       pg% pgbinary_sleep = pgbinary_sleep
    1455            0 :       pg% clear_history = clear_history
    1456              : 
    1457            0 :       pg% file_white_on_black_flag = file_white_on_black_flag
    1458            0 :       pg% win_white_on_black_flag = win_white_on_black_flag
    1459            0 :       pg% pgbinary_show_model_number = pgbinary_show_model_number
    1460            0 :       pg% pgbinary_show_age = pgbinary_show_age
    1461            0 :       pg% pgbinary_show_age_in_seconds = pgbinary_show_age_in_seconds
    1462            0 :       pg% pgbinary_show_age_in_minutes = pgbinary_show_age_in_minutes
    1463            0 :       pg% pgbinary_show_age_in_hours = pgbinary_show_age_in_hours
    1464            0 :       pg% pgbinary_show_age_in_days = pgbinary_show_age_in_days
    1465            0 :       pg% pgbinary_show_age_in_years = pgbinary_show_age_in_years
    1466            0 :       pg% pgbinary_show_log_age_in_years = pgbinary_show_log_age_in_years
    1467              : 
    1468            0 :       pg% pgbinary_report_writing_files = pgbinary_report_writing_files
    1469              : 
    1470            0 :       pg% pgbinary_show_title = pgbinary_show_title
    1471            0 :       pg% pgbinary_title_scale = pgbinary_title_scale
    1472            0 :       pg% pgbinary_title_disp = pgbinary_title_disp
    1473            0 :       pg% pgbinary_title_coord = pgbinary_title_coord
    1474            0 :       pg% pgbinary_title_fjust = pgbinary_title_fjust
    1475            0 :       pg% pgbinary_title_lw = pgbinary_title_lw
    1476              : 
    1477            0 :       pg% pgbinary_grid_show_title = pgbinary_grid_show_title
    1478            0 :       pg% pgbinary_grid_title_scale = pgbinary_grid_title_scale
    1479            0 :       pg% pgbinary_grid_title_disp = pgbinary_grid_title_disp
    1480            0 :       pg% pgbinary_grid_title_coord = pgbinary_grid_title_coord
    1481            0 :       pg% pgbinary_grid_title_fjust = pgbinary_grid_title_fjust
    1482            0 :       pg% pgbinary_grid_title_lw = pgbinary_grid_title_lw
    1483              : 
    1484            0 :       pg% pgbinary_age_scale = pgbinary_age_scale
    1485            0 :       pg% pgbinary_age_disp = pgbinary_age_disp
    1486            0 :       pg% pgbinary_age_coord = pgbinary_age_coord
    1487            0 :       pg% pgbinary_age_fjust = pgbinary_age_fjust
    1488            0 :       pg% pgbinary_age_lw = pgbinary_age_lw
    1489              : 
    1490            0 :       pg% pgbinary_model_scale = pgbinary_model_scale
    1491            0 :       pg% pgbinary_model_disp = pgbinary_model_disp
    1492            0 :       pg% pgbinary_model_coord = pgbinary_model_coord
    1493            0 :       pg% pgbinary_model_fjust = pgbinary_model_fjust
    1494            0 :       pg% pgbinary_model_lw = pgbinary_model_lw
    1495              : 
    1496            0 :       pg% pgbinary_xaxis_label_scale = pgbinary_xaxis_label_scale
    1497            0 :       pg% pgbinary_left_yaxis_label_scale = pgbinary_left_yaxis_label_scale
    1498            0 :       pg% pgbinary_right_yaxis_label_scale = pgbinary_right_yaxis_label_scale
    1499            0 :       pg% pgbinary_xaxis_label_lw = pgbinary_xaxis_label_lw
    1500            0 :       pg% pgbinary_left_yaxis_label_lw = pgbinary_left_yaxis_label_lw
    1501            0 :       pg% pgbinary_right_yaxis_label_lw = pgbinary_right_yaxis_label_lw
    1502            0 :       pg% pgbinary_xaxis_label_disp = pgbinary_xaxis_label_disp
    1503            0 :       pg% pgbinary_left_yaxis_label_disp = pgbinary_left_yaxis_label_disp
    1504            0 :       pg% pgbinary_right_yaxis_label_disp = pgbinary_right_yaxis_label_disp
    1505            0 :       pg% pgbinary_num_scale = pgbinary_num_scale
    1506            0 :       pg% pgbinary_lw = pgbinary_lw
    1507              :       pg% pgbinary_model_lw = pgbinary_model_lw
    1508            0 :       pg% pgbinary_box_lw = pgbinary_box_lw
    1509              : 
    1510            0 :       pg% Text_Summary1_win_flag = Text_Summary1_win_flag
    1511            0 :       pg% Text_Summary1_file_flag = Text_Summary1_file_flag
    1512            0 :       pg% Text_Summary1_file_interval = Text_Summary1_file_interval
    1513            0 :       pg% Text_Summary1_file_dir = Text_Summary1_file_dir
    1514            0 :       pg% Text_Summary1_file_prefix = Text_Summary1_file_prefix
    1515            0 :       pg% Text_Summary1_num_cols = Text_Summary1_num_cols
    1516            0 :       pg% Text_Summary1_num_rows = Text_Summary1_num_rows
    1517            0 :       pg% Text_Summary1_name = Text_Summary1_name
    1518            0 :       pg% Text_Summary1_win_width = Text_Summary1_win_width
    1519            0 :       pg% Text_Summary1_win_aspect_ratio = Text_Summary1_win_aspect_ratio
    1520            0 :       pg% Text_Summary1_file_width = Text_Summary1_file_width
    1521            0 :       pg% Text_Summary1_file_aspect_ratio = Text_Summary1_file_aspect_ratio
    1522            0 :       pg% Text_Summary1_title = Text_Summary1_title
    1523            0 :       pg% Text_Summary1_xleft = Text_Summary1_xleft
    1524            0 :       pg% Text_Summary1_xright = Text_Summary1_xright
    1525            0 :       pg% Text_Summary1_ybot = Text_Summary1_ybot
    1526            0 :       pg% Text_Summary1_ytop = Text_Summary1_ytop
    1527            0 :       pg% Text_Summary1_txt_scale = Text_Summary1_txt_scale
    1528              : 
    1529            0 :       pg% Text_Summary2_win_flag = Text_Summary2_win_flag
    1530            0 :       pg% Text_Summary2_file_flag = Text_Summary2_file_flag
    1531            0 :       pg% Text_Summary2_file_interval = Text_Summary2_file_interval
    1532            0 :       pg% Text_Summary2_file_dir = Text_Summary2_file_dir
    1533            0 :       pg% Text_Summary2_file_prefix = Text_Summary2_file_prefix
    1534            0 :       pg% Text_Summary2_num_cols = Text_Summary2_num_cols
    1535            0 :       pg% Text_Summary2_num_rows = Text_Summary2_num_rows
    1536            0 :       pg% Text_Summary2_name = Text_Summary2_name
    1537            0 :       pg% Text_Summary2_win_width = Text_Summary2_win_width
    1538            0 :       pg% Text_Summary2_win_aspect_ratio = Text_Summary2_win_aspect_ratio
    1539            0 :       pg% Text_Summary2_file_width = Text_Summary2_file_width
    1540            0 :       pg% Text_Summary2_file_aspect_ratio = Text_Summary2_file_aspect_ratio
    1541            0 :       pg% Text_Summary2_title = Text_Summary2_title
    1542            0 :       pg% Text_Summary2_xleft = Text_Summary2_xleft
    1543            0 :       pg% Text_Summary2_xright = Text_Summary2_xright
    1544            0 :       pg% Text_Summary2_ybot = Text_Summary2_ybot
    1545            0 :       pg% Text_Summary2_ytop = Text_Summary2_ytop
    1546            0 :       pg% Text_Summary2_txt_scale = Text_Summary2_txt_scale
    1547              : 
    1548            0 :       pg% Text_Summary3_win_flag = Text_Summary3_win_flag
    1549            0 :       pg% Text_Summary3_file_flag = Text_Summary3_file_flag
    1550            0 :       pg% Text_Summary3_file_interval = Text_Summary3_file_interval
    1551            0 :       pg% Text_Summary3_file_dir = Text_Summary3_file_dir
    1552            0 :       pg% Text_Summary3_file_prefix = Text_Summary3_file_prefix
    1553            0 :       pg% Text_Summary3_num_cols = Text_Summary3_num_cols
    1554            0 :       pg% Text_Summary3_num_rows = Text_Summary3_num_rows
    1555            0 :       pg% Text_Summary3_name = Text_Summary3_name
    1556            0 :       pg% Text_Summary3_win_width = Text_Summary3_win_width
    1557            0 :       pg% Text_Summary3_win_aspect_ratio = Text_Summary3_win_aspect_ratio
    1558            0 :       pg% Text_Summary3_file_width = Text_Summary3_file_width
    1559            0 :       pg% Text_Summary3_file_aspect_ratio = Text_Summary3_file_aspect_ratio
    1560            0 :       pg% Text_Summary3_title = Text_Summary3_title
    1561            0 :       pg% Text_Summary3_xleft = Text_Summary3_xleft
    1562            0 :       pg% Text_Summary3_xright = Text_Summary3_xright
    1563            0 :       pg% Text_Summary3_ybot = Text_Summary3_ybot
    1564            0 :       pg% Text_Summary3_ytop = Text_Summary3_ytop
    1565            0 :       pg% Text_Summary3_txt_scale = Text_Summary3_txt_scale
    1566              : 
    1567            0 :       pg% Text_Summary4_win_flag = Text_Summary4_win_flag
    1568            0 :       pg% Text_Summary4_file_flag = Text_Summary4_file_flag
    1569            0 :       pg% Text_Summary4_file_interval = Text_Summary4_file_interval
    1570            0 :       pg% Text_Summary4_file_dir = Text_Summary4_file_dir
    1571            0 :       pg% Text_Summary4_file_prefix = Text_Summary4_file_prefix
    1572            0 :       pg% Text_Summary4_num_cols = Text_Summary4_num_cols
    1573            0 :       pg% Text_Summary4_num_rows = Text_Summary4_num_rows
    1574            0 :       pg% Text_Summary4_name = Text_Summary4_name
    1575            0 :       pg% Text_Summary4_win_width = Text_Summary4_win_width
    1576            0 :       pg% Text_Summary4_win_aspect_ratio = Text_Summary4_win_aspect_ratio
    1577            0 :       pg% Text_Summary4_file_width = Text_Summary4_file_width
    1578            0 :       pg% Text_Summary4_file_aspect_ratio = Text_Summary4_file_aspect_ratio
    1579            0 :       pg% Text_Summary4_title = Text_Summary4_title
    1580            0 :       pg% Text_Summary4_xleft = Text_Summary4_xleft
    1581            0 :       pg% Text_Summary4_xright = Text_Summary4_xright
    1582            0 :       pg% Text_Summary4_ybot = Text_Summary4_ybot
    1583            0 :       pg% Text_Summary4_ytop = Text_Summary4_ytop
    1584            0 :       pg% Text_Summary4_txt_scale = Text_Summary4_txt_scale
    1585              : 
    1586            0 :       pg% Text_Summary5_win_flag = Text_Summary5_win_flag
    1587            0 :       pg% Text_Summary5_file_flag = Text_Summary5_file_flag
    1588            0 :       pg% Text_Summary5_file_interval = Text_Summary5_file_interval
    1589            0 :       pg% Text_Summary5_file_dir = Text_Summary5_file_dir
    1590            0 :       pg% Text_Summary5_file_prefix = Text_Summary5_file_prefix
    1591            0 :       pg% Text_Summary5_num_cols = Text_Summary5_num_cols
    1592            0 :       pg% Text_Summary5_num_rows = Text_Summary5_num_rows
    1593            0 :       pg% Text_Summary5_name = Text_Summary5_name
    1594            0 :       pg% Text_Summary5_win_width = Text_Summary5_win_width
    1595            0 :       pg% Text_Summary5_win_aspect_ratio = Text_Summary5_win_aspect_ratio
    1596            0 :       pg% Text_Summary5_file_width = Text_Summary5_file_width
    1597            0 :       pg% Text_Summary5_file_aspect_ratio = Text_Summary5_file_aspect_ratio
    1598            0 :       pg% Text_Summary5_title = Text_Summary5_title
    1599            0 :       pg% Text_Summary5_xleft = Text_Summary5_xleft
    1600            0 :       pg% Text_Summary5_xright = Text_Summary5_xright
    1601            0 :       pg% Text_Summary5_ybot = Text_Summary5_ybot
    1602            0 :       pg% Text_Summary5_ytop = Text_Summary5_ytop
    1603            0 :       pg% Text_Summary5_txt_scale = Text_Summary5_txt_scale
    1604              : 
    1605            0 :       pg% Text_Summary6_win_flag = Text_Summary6_win_flag
    1606            0 :       pg% Text_Summary6_file_flag = Text_Summary6_file_flag
    1607            0 :       pg% Text_Summary6_file_interval = Text_Summary6_file_interval
    1608            0 :       pg% Text_Summary6_file_dir = Text_Summary6_file_dir
    1609            0 :       pg% Text_Summary6_file_prefix = Text_Summary6_file_prefix
    1610            0 :       pg% Text_Summary6_num_cols = Text_Summary6_num_cols
    1611            0 :       pg% Text_Summary6_num_rows = Text_Summary6_num_rows
    1612            0 :       pg% Text_Summary6_name = Text_Summary6_name
    1613            0 :       pg% Text_Summary6_win_width = Text_Summary6_win_width
    1614            0 :       pg% Text_Summary6_win_aspect_ratio = Text_Summary6_win_aspect_ratio
    1615            0 :       pg% Text_Summary6_file_width = Text_Summary6_file_width
    1616            0 :       pg% Text_Summary6_file_aspect_ratio = Text_Summary6_file_aspect_ratio
    1617            0 :       pg% Text_Summary6_title = Text_Summary6_title
    1618            0 :       pg% Text_Summary6_xleft = Text_Summary6_xleft
    1619            0 :       pg% Text_Summary6_xright = Text_Summary6_xright
    1620            0 :       pg% Text_Summary6_ybot = Text_Summary6_ybot
    1621            0 :       pg% Text_Summary6_ytop = Text_Summary6_ytop
    1622            0 :       pg% Text_Summary6_txt_scale = Text_Summary6_txt_scale
    1623              : 
    1624            0 :       pg% Text_Summary7_win_flag = Text_Summary7_win_flag
    1625            0 :       pg% Text_Summary7_file_flag = Text_Summary7_file_flag
    1626            0 :       pg% Text_Summary7_file_interval = Text_Summary7_file_interval
    1627            0 :       pg% Text_Summary7_file_dir = Text_Summary7_file_dir
    1628            0 :       pg% Text_Summary7_file_prefix = Text_Summary7_file_prefix
    1629            0 :       pg% Text_Summary7_num_cols = Text_Summary7_num_cols
    1630            0 :       pg% Text_Summary7_num_rows = Text_Summary7_num_rows
    1631            0 :       pg% Text_Summary7_name = Text_Summary7_name
    1632            0 :       pg% Text_Summary7_win_width = Text_Summary7_win_width
    1633            0 :       pg% Text_Summary7_win_aspect_ratio = Text_Summary7_win_aspect_ratio
    1634            0 :       pg% Text_Summary7_file_width = Text_Summary7_file_width
    1635            0 :       pg% Text_Summary7_file_aspect_ratio = Text_Summary7_file_aspect_ratio
    1636            0 :       pg% Text_Summary7_title = Text_Summary7_title
    1637            0 :       pg% Text_Summary7_xleft = Text_Summary7_xleft
    1638            0 :       pg% Text_Summary7_xright = Text_Summary7_xright
    1639            0 :       pg% Text_Summary7_ybot = Text_Summary7_ybot
    1640            0 :       pg% Text_Summary7_ytop = Text_Summary7_ytop
    1641            0 :       pg% Text_Summary7_txt_scale = Text_Summary7_txt_scale
    1642              : 
    1643            0 :       pg% Text_Summary8_win_flag = Text_Summary8_win_flag
    1644            0 :       pg% Text_Summary8_file_flag = Text_Summary8_file_flag
    1645            0 :       pg% Text_Summary8_file_interval = Text_Summary8_file_interval
    1646            0 :       pg% Text_Summary8_file_dir = Text_Summary8_file_dir
    1647            0 :       pg% Text_Summary8_file_prefix = Text_Summary8_file_prefix
    1648            0 :       pg% Text_Summary8_num_cols = Text_Summary8_num_cols
    1649            0 :       pg% Text_Summary8_num_rows = Text_Summary8_num_rows
    1650            0 :       pg% Text_Summary8_name = Text_Summary8_name
    1651            0 :       pg% Text_Summary8_win_width = Text_Summary8_win_width
    1652            0 :       pg% Text_Summary8_win_aspect_ratio = Text_Summary8_win_aspect_ratio
    1653            0 :       pg% Text_Summary8_file_width = Text_Summary8_file_width
    1654            0 :       pg% Text_Summary8_file_aspect_ratio = Text_Summary8_file_aspect_ratio
    1655            0 :       pg% Text_Summary8_title = Text_Summary8_title
    1656            0 :       pg% Text_Summary8_xleft = Text_Summary8_xleft
    1657            0 :       pg% Text_Summary8_xright = Text_Summary8_xright
    1658            0 :       pg% Text_Summary8_ybot = Text_Summary8_ybot
    1659            0 :       pg% Text_Summary8_ytop = Text_Summary8_ytop
    1660            0 :       pg% Text_Summary8_txt_scale = Text_Summary8_txt_scale
    1661              : 
    1662            0 :       pg% Text_Summary9_win_flag = Text_Summary9_win_flag
    1663            0 :       pg% Text_Summary9_file_flag = Text_Summary9_file_flag
    1664            0 :       pg% Text_Summary9_file_interval = Text_Summary9_file_interval
    1665            0 :       pg% Text_Summary9_file_dir = Text_Summary9_file_dir
    1666            0 :       pg% Text_Summary9_file_prefix = Text_Summary9_file_prefix
    1667            0 :       pg% Text_Summary9_num_cols = Text_Summary9_num_cols
    1668            0 :       pg% Text_Summary9_num_rows = Text_Summary9_num_rows
    1669            0 :       pg% Text_Summary9_name = Text_Summary9_name
    1670            0 :       pg% Text_Summary9_win_width = Text_Summary9_win_width
    1671            0 :       pg% Text_Summary9_win_aspect_ratio = Text_Summary9_win_aspect_ratio
    1672            0 :       pg% Text_Summary9_file_width = Text_Summary9_file_width
    1673            0 :       pg% Text_Summary9_file_aspect_ratio = Text_Summary9_file_aspect_ratio
    1674            0 :       pg% Text_Summary9_title = Text_Summary9_title
    1675            0 :       pg% Text_Summary9_xleft = Text_Summary9_xleft
    1676            0 :       pg% Text_Summary9_xright = Text_Summary9_xright
    1677            0 :       pg% Text_Summary9_ybot = Text_Summary9_ybot
    1678            0 :       pg% Text_Summary9_ytop = Text_Summary9_ytop
    1679            0 :       pg% Text_Summary9_txt_scale = Text_Summary9_txt_scale
    1680              : 
    1681            0 :       pg% History_Track1_win_flag = History_Track1_win_flag
    1682            0 :       pg% History_Track1_file_flag = History_Track1_file_flag
    1683            0 :       pg% History_Track1_file_interval = History_Track1_file_interval
    1684            0 :       pg% History_Track1_step_min = History_Track1_step_min
    1685            0 :       pg% History_Track1_step_max = History_Track1_step_max
    1686            0 :       pg% show_History_Track1_target_box = show_History_Track1_target_box
    1687            0 :       pg% History_Track1_n_sigma = History_Track1_n_sigma
    1688            0 :       pg% History_Track1_xtarget = History_Track1_xtarget
    1689            0 :       pg% History_Track1_xsigma = History_Track1_xsigma
    1690            0 :       pg% History_Track1_ytarget = History_Track1_ytarget
    1691            0 :       pg% History_Track1_ysigma = History_Track1_ysigma
    1692            0 :       pg% History_Track1_file_dir = History_Track1_file_dir
    1693            0 :       pg% History_Track1_file_prefix = History_Track1_file_prefix
    1694            0 :       pg% show_History_Track1_annotation1 = show_History_Track1_annotation1
    1695            0 :       pg% show_History_Track1_annotation2 = show_History_Track1_annotation2
    1696            0 :       pg% show_History_Track1_annotation3 = show_History_Track1_annotation3
    1697            0 :       pg% History_Track1_fname = History_Track1_fname
    1698            0 :       pg% History_Track1_xname = History_Track1_xname
    1699            0 :       pg% History_Track1_xaxis_label = History_Track1_xaxis_label
    1700            0 :       pg% History_Track1_yname = History_Track1_yname
    1701            0 :       pg% History_Track1_yaxis_label = History_Track1_yaxis_label
    1702            0 :       pg% History_Track1_reverse_xaxis = History_Track1_reverse_xaxis
    1703            0 :       pg% History_Track1_reverse_yaxis = History_Track1_reverse_yaxis
    1704            0 :       pg% History_Track1_log_xaxis = History_Track1_log_xaxis
    1705            0 :       pg% History_Track1_log_yaxis = History_Track1_log_yaxis
    1706            0 :       pg% History_Track1_xmin = History_Track1_xmin
    1707            0 :       pg% History_Track1_xmax = History_Track1_xmax
    1708            0 :       pg% History_Track1_ymin = History_Track1_ymin
    1709            0 :       pg% History_Track1_ymax = History_Track1_ymax
    1710            0 :       pg% History_Track1_xmargin = History_Track1_xmargin
    1711            0 :       pg% History_Track1_ymargin = History_Track1_ymargin
    1712            0 :       pg% History_Track1_dxmin = History_Track1_dxmin
    1713            0 :       pg% History_Track1_dymin = History_Track1_dymin
    1714            0 :       pg% History_Track1_win_width = History_Track1_win_width
    1715            0 :       pg% History_Track1_win_aspect_ratio = History_Track1_win_aspect_ratio
    1716            0 :       pg% History_Track1_file_width = History_Track1_file_width
    1717            0 :       pg% History_Track1_file_aspect_ratio = History_Track1_file_aspect_ratio
    1718            0 :       pg% History_Track1_xleft = History_Track1_xleft
    1719            0 :       pg% History_Track1_xright = History_Track1_xright
    1720            0 :       pg% History_Track1_ybot = History_Track1_ybot
    1721            0 :       pg% History_Track1_ytop = History_Track1_ytop
    1722            0 :       pg% History_Track1_txt_scale = History_Track1_txt_scale
    1723            0 :       pg% History_Track1_title = History_Track1_title
    1724            0 :       pg% History_Track1_use_decorator = History_Track1_use_decorator
    1725              : 
    1726            0 :       pg% History_Track2_win_flag = History_Track2_win_flag
    1727            0 :       pg% History_Track2_file_flag = History_Track2_file_flag
    1728            0 :       pg% History_Track2_file_interval = History_Track2_file_interval
    1729            0 :       pg% History_Track2_step_min = History_Track2_step_min
    1730            0 :       pg% History_Track2_step_max = History_Track2_step_max
    1731            0 :       pg% show_History_Track2_target_box = show_History_Track2_target_box
    1732            0 :       pg% History_Track2_n_sigma = History_Track2_n_sigma
    1733            0 :       pg% History_Track2_xtarget = History_Track2_xtarget
    1734            0 :       pg% History_Track2_xsigma = History_Track2_xsigma
    1735            0 :       pg% History_Track2_ytarget = History_Track2_ytarget
    1736            0 :       pg% History_Track2_ysigma = History_Track2_ysigma
    1737            0 :       pg% History_Track2_xname = History_Track2_xname
    1738            0 :       pg% History_Track2_xaxis_label = History_Track2_xaxis_label
    1739            0 :       pg% History_Track2_yname = History_Track2_yname
    1740            0 :       pg% History_Track2_yaxis_label = History_Track2_yaxis_label
    1741            0 :       pg% History_Track2_file_dir = History_Track2_file_dir
    1742            0 :       pg% History_Track2_file_prefix = History_Track2_file_prefix
    1743            0 :       pg% show_History_Track2_annotation1 = show_History_Track2_annotation1
    1744            0 :       pg% show_History_Track2_annotation2 = show_History_Track2_annotation2
    1745            0 :       pg% show_History_Track2_annotation3 = show_History_Track2_annotation3
    1746            0 :       pg% History_Track2_fname = History_Track2_fname
    1747            0 :       pg% History_Track2_reverse_xaxis = History_Track2_reverse_xaxis
    1748            0 :       pg% History_Track2_reverse_yaxis = History_Track2_reverse_yaxis
    1749            0 :       pg% History_Track2_log_xaxis = History_Track2_log_xaxis
    1750            0 :       pg% History_Track2_log_yaxis = History_Track2_log_yaxis
    1751            0 :       pg% History_Track2_xmin = History_Track2_xmin
    1752            0 :       pg% History_Track2_xmax = History_Track2_xmax
    1753            0 :       pg% History_Track2_ymin = History_Track2_ymin
    1754            0 :       pg% History_Track2_ymax = History_Track2_ymax
    1755            0 :       pg% History_Track2_xmargin = History_Track2_xmargin
    1756            0 :       pg% History_Track2_ymargin = History_Track2_ymargin
    1757            0 :       pg% History_Track2_dxmin = History_Track2_dxmin
    1758            0 :       pg% History_Track2_dymin = History_Track2_dymin
    1759            0 :       pg% History_Track2_win_width = History_Track2_win_width
    1760            0 :       pg% History_Track2_win_aspect_ratio = History_Track2_win_aspect_ratio
    1761            0 :       pg% History_Track2_file_width = History_Track2_file_width
    1762            0 :       pg% History_Track2_file_aspect_ratio = History_Track2_file_aspect_ratio
    1763            0 :       pg% History_Track2_xleft = History_Track2_xleft
    1764            0 :       pg% History_Track2_xright = History_Track2_xright
    1765            0 :       pg% History_Track2_ybot = History_Track2_ybot
    1766            0 :       pg% History_Track2_ytop = History_Track2_ytop
    1767            0 :       pg% History_Track2_txt_scale = History_Track2_txt_scale
    1768            0 :       pg% History_Track2_title = History_Track2_title
    1769            0 :       pg% History_Track2_use_decorator = History_Track2_use_decorator
    1770              : 
    1771            0 :       pg% History_Track3_win_flag = History_Track3_win_flag
    1772            0 :       pg% History_Track3_file_flag = History_Track3_file_flag
    1773            0 :       pg% History_Track3_file_interval = History_Track3_file_interval
    1774            0 :       pg% History_Track3_step_min = History_Track3_step_min
    1775            0 :       pg% History_Track3_step_max = History_Track3_step_max
    1776            0 :       pg% show_History_Track3_target_box = show_History_Track3_target_box
    1777            0 :       pg% History_Track3_n_sigma = History_Track3_n_sigma
    1778            0 :       pg% History_Track3_xtarget = History_Track3_xtarget
    1779            0 :       pg% History_Track3_xsigma = History_Track3_xsigma
    1780            0 :       pg% History_Track3_ytarget = History_Track3_ytarget
    1781            0 :       pg% History_Track3_ysigma = History_Track3_ysigma
    1782            0 :       pg% History_Track3_xname = History_Track3_xname
    1783            0 :       pg% History_Track3_xaxis_label = History_Track3_xaxis_label
    1784            0 :       pg% History_Track3_yname = History_Track3_yname
    1785            0 :       pg% History_Track3_yaxis_label = History_Track3_yaxis_label
    1786            0 :       pg% History_Track3_file_dir = History_Track3_file_dir
    1787            0 :       pg% History_Track3_file_prefix = History_Track3_file_prefix
    1788            0 :       pg% show_History_Track3_annotation1 = show_History_Track3_annotation1
    1789            0 :       pg% show_History_Track3_annotation2 = show_History_Track3_annotation2
    1790            0 :       pg% show_History_Track3_annotation3 = show_History_Track3_annotation3
    1791            0 :       pg% History_Track3_fname = History_Track3_fname
    1792            0 :       pg% History_Track3_reverse_xaxis = History_Track3_reverse_xaxis
    1793            0 :       pg% History_Track3_reverse_yaxis = History_Track3_reverse_yaxis
    1794            0 :       pg% History_Track3_log_xaxis = History_Track3_log_xaxis
    1795            0 :       pg% History_Track3_log_yaxis = History_Track3_log_yaxis
    1796            0 :       pg% History_Track3_xmin = History_Track3_xmin
    1797            0 :       pg% History_Track3_xmax = History_Track3_xmax
    1798            0 :       pg% History_Track3_ymin = History_Track3_ymin
    1799            0 :       pg% History_Track3_ymax = History_Track3_ymax
    1800            0 :       pg% History_Track3_xmargin = History_Track3_xmargin
    1801            0 :       pg% History_Track3_ymargin = History_Track3_ymargin
    1802            0 :       pg% History_Track3_dxmin = History_Track3_dxmin
    1803            0 :       pg% History_Track3_dymin = History_Track3_dymin
    1804            0 :       pg% History_Track3_win_width = History_Track3_win_width
    1805            0 :       pg% History_Track3_win_aspect_ratio = History_Track3_win_aspect_ratio
    1806            0 :       pg% History_Track3_file_width = History_Track3_file_width
    1807            0 :       pg% History_Track3_file_aspect_ratio = History_Track3_file_aspect_ratio
    1808            0 :       pg% History_Track3_xleft = History_Track3_xleft
    1809            0 :       pg% History_Track3_xright = History_Track3_xright
    1810            0 :       pg% History_Track3_ybot = History_Track3_ybot
    1811            0 :       pg% History_Track3_ytop = History_Track3_ytop
    1812            0 :       pg% History_Track3_txt_scale = History_Track3_txt_scale
    1813            0 :       pg% History_Track3_title = History_Track3_title
    1814            0 :       pg% History_Track3_use_decorator = History_Track3_use_decorator
    1815              : 
    1816            0 :       pg% History_Track4_win_flag = History_Track4_win_flag
    1817            0 :       pg% History_Track4_file_flag = History_Track4_file_flag
    1818            0 :       pg% History_Track4_file_interval = History_Track4_file_interval
    1819            0 :       pg% History_Track4_step_min = History_Track4_step_min
    1820            0 :       pg% History_Track4_step_max = History_Track4_step_max
    1821            0 :       pg% show_History_Track4_target_box = show_History_Track4_target_box
    1822            0 :       pg% History_Track4_n_sigma = History_Track4_n_sigma
    1823            0 :       pg% History_Track4_xtarget = History_Track4_xtarget
    1824            0 :       pg% History_Track4_xsigma = History_Track4_xsigma
    1825            0 :       pg% History_Track4_ytarget = History_Track4_ytarget
    1826            0 :       pg% History_Track4_ysigma = History_Track4_ysigma
    1827            0 :       pg% History_Track4_xname = History_Track4_xname
    1828            0 :       pg% History_Track4_xaxis_label = History_Track4_xaxis_label
    1829            0 :       pg% History_Track4_yname = History_Track4_yname
    1830            0 :       pg% History_Track4_yaxis_label = History_Track4_yaxis_label
    1831            0 :       pg% History_Track4_file_dir = History_Track4_file_dir
    1832            0 :       pg% History_Track4_file_prefix = History_Track4_file_prefix
    1833            0 :       pg% show_History_Track4_annotation1 = show_History_Track4_annotation1
    1834            0 :       pg% show_History_Track4_annotation2 = show_History_Track4_annotation2
    1835            0 :       pg% show_History_Track4_annotation3 = show_History_Track4_annotation3
    1836            0 :       pg% History_Track4_fname = History_Track4_fname
    1837            0 :       pg% History_Track4_reverse_xaxis = History_Track4_reverse_xaxis
    1838            0 :       pg% History_Track4_reverse_yaxis = History_Track4_reverse_yaxis
    1839            0 :       pg% History_Track4_log_xaxis = History_Track4_log_xaxis
    1840            0 :       pg% History_Track4_log_yaxis = History_Track4_log_yaxis
    1841            0 :       pg% History_Track4_xmin = History_Track4_xmin
    1842            0 :       pg% History_Track4_xmax = History_Track4_xmax
    1843            0 :       pg% History_Track4_ymin = History_Track4_ymin
    1844            0 :       pg% History_Track4_ymax = History_Track4_ymax
    1845            0 :       pg% History_Track4_xmargin = History_Track4_xmargin
    1846            0 :       pg% History_Track4_ymargin = History_Track4_ymargin
    1847            0 :       pg% History_Track4_dxmin = History_Track4_dxmin
    1848            0 :       pg% History_Track4_dymin = History_Track4_dymin
    1849            0 :       pg% History_Track4_win_width = History_Track4_win_width
    1850            0 :       pg% History_Track4_win_aspect_ratio = History_Track4_win_aspect_ratio
    1851            0 :       pg% History_Track4_file_width = History_Track4_file_width
    1852            0 :       pg% History_Track4_file_aspect_ratio = History_Track4_file_aspect_ratio
    1853            0 :       pg% History_Track4_xleft = History_Track4_xleft
    1854            0 :       pg% History_Track4_xright = History_Track4_xright
    1855            0 :       pg% History_Track4_ybot = History_Track4_ybot
    1856            0 :       pg% History_Track4_ytop = History_Track4_ytop
    1857            0 :       pg% History_Track4_txt_scale = History_Track4_txt_scale
    1858            0 :       pg% History_Track4_title = History_Track4_title
    1859            0 :       pg% History_Track4_use_decorator = History_Track4_use_decorator
    1860              : 
    1861            0 :       pg% History_Track5_win_flag = History_Track5_win_flag
    1862            0 :       pg% History_Track5_file_flag = History_Track5_file_flag
    1863            0 :       pg% History_Track5_file_interval = History_Track5_file_interval
    1864            0 :       pg% History_Track5_step_min = History_Track5_step_min
    1865            0 :       pg% History_Track5_step_max = History_Track5_step_max
    1866            0 :       pg% show_History_Track5_target_box = show_History_Track5_target_box
    1867            0 :       pg% History_Track5_n_sigma = History_Track5_n_sigma
    1868            0 :       pg% History_Track5_xtarget = History_Track5_xtarget
    1869            0 :       pg% History_Track5_xsigma = History_Track5_xsigma
    1870            0 :       pg% History_Track5_ytarget = History_Track5_ytarget
    1871            0 :       pg% History_Track5_ysigma = History_Track5_ysigma
    1872            0 :       pg% History_Track5_xname = History_Track5_xname
    1873            0 :       pg% History_Track5_xaxis_label = History_Track5_xaxis_label
    1874            0 :       pg% History_Track5_yname = History_Track5_yname
    1875            0 :       pg% History_Track5_yaxis_label = History_Track5_yaxis_label
    1876            0 :       pg% History_Track5_file_dir = History_Track5_file_dir
    1877            0 :       pg% History_Track5_file_prefix = History_Track5_file_prefix
    1878            0 :       pg% show_History_Track5_annotation1 = show_History_Track5_annotation1
    1879            0 :       pg% show_History_Track5_annotation2 = show_History_Track5_annotation2
    1880            0 :       pg% show_History_Track5_annotation3 = show_History_Track5_annotation3
    1881            0 :       pg% History_Track5_fname = History_Track5_fname
    1882            0 :       pg% History_Track5_reverse_xaxis = History_Track5_reverse_xaxis
    1883            0 :       pg% History_Track5_reverse_yaxis = History_Track5_reverse_yaxis
    1884            0 :       pg% History_Track5_log_xaxis = History_Track5_log_xaxis
    1885            0 :       pg% History_Track5_log_yaxis = History_Track5_log_yaxis
    1886            0 :       pg% History_Track5_xmin = History_Track5_xmin
    1887            0 :       pg% History_Track5_xmax = History_Track5_xmax
    1888            0 :       pg% History_Track5_ymin = History_Track5_ymin
    1889            0 :       pg% History_Track5_ymax = History_Track5_ymax
    1890            0 :       pg% History_Track5_xmargin = History_Track5_xmargin
    1891            0 :       pg% History_Track5_ymargin = History_Track5_ymargin
    1892            0 :       pg% History_Track5_dxmin = History_Track5_dxmin
    1893            0 :       pg% History_Track5_dymin = History_Track5_dymin
    1894            0 :       pg% History_Track5_win_width = History_Track5_win_width
    1895            0 :       pg% History_Track5_win_aspect_ratio = History_Track5_win_aspect_ratio
    1896            0 :       pg% History_Track5_file_width = History_Track5_file_width
    1897            0 :       pg% History_Track5_file_aspect_ratio = History_Track5_file_aspect_ratio
    1898            0 :       pg% History_Track5_xleft = History_Track5_xleft
    1899            0 :       pg% History_Track5_xright = History_Track5_xright
    1900            0 :       pg% History_Track5_ybot = History_Track5_ybot
    1901            0 :       pg% History_Track5_ytop = History_Track5_ytop
    1902            0 :       pg% History_Track5_txt_scale = History_Track5_txt_scale
    1903            0 :       pg% History_Track5_title = History_Track5_title
    1904            0 :       pg% History_Track5_use_decorator = History_Track5_use_decorator
    1905              : 
    1906            0 :       pg% History_Track6_win_flag = History_Track6_win_flag
    1907            0 :       pg% History_Track6_file_flag = History_Track6_file_flag
    1908            0 :       pg% History_Track6_file_interval = History_Track6_file_interval
    1909            0 :       pg% History_Track6_step_min = History_Track6_step_min
    1910            0 :       pg% History_Track6_step_max = History_Track6_step_max
    1911            0 :       pg% show_History_Track6_target_box = show_History_Track6_target_box
    1912            0 :       pg% History_Track6_n_sigma = History_Track6_n_sigma
    1913            0 :       pg% History_Track6_xtarget = History_Track6_xtarget
    1914            0 :       pg% History_Track6_xsigma = History_Track6_xsigma
    1915            0 :       pg% History_Track6_ytarget = History_Track6_ytarget
    1916            0 :       pg% History_Track6_ysigma = History_Track6_ysigma
    1917            0 :       pg% History_Track6_xname = History_Track6_xname
    1918            0 :       pg% History_Track6_xaxis_label = History_Track6_xaxis_label
    1919            0 :       pg% History_Track6_yname = History_Track6_yname
    1920            0 :       pg% History_Track6_yaxis_label = History_Track6_yaxis_label
    1921            0 :       pg% History_Track6_file_dir = History_Track6_file_dir
    1922            0 :       pg% History_Track6_file_prefix = History_Track6_file_prefix
    1923            0 :       pg% show_History_Track6_annotation1 = show_History_Track6_annotation1
    1924            0 :       pg% show_History_Track6_annotation2 = show_History_Track6_annotation2
    1925            0 :       pg% show_History_Track6_annotation3 = show_History_Track6_annotation3
    1926            0 :       pg% History_Track6_fname = History_Track6_fname
    1927            0 :       pg% History_Track6_reverse_xaxis = History_Track6_reverse_xaxis
    1928            0 :       pg% History_Track6_reverse_yaxis = History_Track6_reverse_yaxis
    1929            0 :       pg% History_Track6_log_xaxis = History_Track6_log_xaxis
    1930            0 :       pg% History_Track6_log_yaxis = History_Track6_log_yaxis
    1931            0 :       pg% History_Track6_xmin = History_Track6_xmin
    1932            0 :       pg% History_Track6_xmax = History_Track6_xmax
    1933            0 :       pg% History_Track6_ymin = History_Track6_ymin
    1934            0 :       pg% History_Track6_ymax = History_Track6_ymax
    1935            0 :       pg% History_Track6_xmargin = History_Track6_xmargin
    1936            0 :       pg% History_Track6_ymargin = History_Track6_ymargin
    1937            0 :       pg% History_Track6_dxmin = History_Track6_dxmin
    1938            0 :       pg% History_Track6_dymin = History_Track6_dymin
    1939            0 :       pg% History_Track6_win_width = History_Track6_win_width
    1940            0 :       pg% History_Track6_win_aspect_ratio = History_Track6_win_aspect_ratio
    1941            0 :       pg% History_Track6_file_width = History_Track6_file_width
    1942            0 :       pg% History_Track6_file_aspect_ratio = History_Track6_file_aspect_ratio
    1943            0 :       pg% History_Track6_xleft = History_Track6_xleft
    1944            0 :       pg% History_Track6_xright = History_Track6_xright
    1945            0 :       pg% History_Track6_ybot = History_Track6_ybot
    1946            0 :       pg% History_Track6_ytop = History_Track6_ytop
    1947            0 :       pg% History_Track6_txt_scale = History_Track6_txt_scale
    1948            0 :       pg% History_Track6_title = History_Track6_title
    1949            0 :       pg% History_Track6_use_decorator = History_Track6_use_decorator
    1950              : 
    1951            0 :       pg% History_Track7_win_flag = History_Track7_win_flag
    1952            0 :       pg% History_Track7_file_flag = History_Track7_file_flag
    1953            0 :       pg% History_Track7_file_interval = History_Track7_file_interval
    1954            0 :       pg% History_Track7_step_min = History_Track7_step_min
    1955            0 :       pg% History_Track7_step_max = History_Track7_step_max
    1956            0 :       pg% show_History_Track7_target_box = show_History_Track7_target_box
    1957            0 :       pg% History_Track7_n_sigma = History_Track7_n_sigma
    1958            0 :       pg% History_Track7_xtarget = History_Track7_xtarget
    1959            0 :       pg% History_Track7_xsigma = History_Track7_xsigma
    1960            0 :       pg% History_Track7_ytarget = History_Track7_ytarget
    1961            0 :       pg% History_Track7_ysigma = History_Track7_ysigma
    1962            0 :       pg% History_Track7_xname = History_Track7_xname
    1963            0 :       pg% History_Track7_xaxis_label = History_Track7_xaxis_label
    1964            0 :       pg% History_Track7_yname = History_Track7_yname
    1965            0 :       pg% History_Track7_yaxis_label = History_Track7_yaxis_label
    1966            0 :       pg% History_Track7_file_dir = History_Track7_file_dir
    1967            0 :       pg% History_Track7_file_prefix = History_Track7_file_prefix
    1968            0 :       pg% show_History_Track7_annotation1 = show_History_Track7_annotation1
    1969            0 :       pg% show_History_Track7_annotation2 = show_History_Track7_annotation2
    1970            0 :       pg% show_History_Track7_annotation3 = show_History_Track7_annotation3
    1971            0 :       pg% History_Track7_fname = History_Track7_fname
    1972            0 :       pg% History_Track7_reverse_xaxis = History_Track7_reverse_xaxis
    1973            0 :       pg% History_Track7_reverse_yaxis = History_Track7_reverse_yaxis
    1974            0 :       pg% History_Track7_log_xaxis = History_Track7_log_xaxis
    1975            0 :       pg% History_Track7_log_yaxis = History_Track7_log_yaxis
    1976            0 :       pg% History_Track7_xmin = History_Track7_xmin
    1977            0 :       pg% History_Track7_xmax = History_Track7_xmax
    1978            0 :       pg% History_Track7_ymin = History_Track7_ymin
    1979            0 :       pg% History_Track7_ymax = History_Track7_ymax
    1980            0 :       pg% History_Track7_xmargin = History_Track7_xmargin
    1981            0 :       pg% History_Track7_ymargin = History_Track7_ymargin
    1982            0 :       pg% History_Track7_dxmin = History_Track7_dxmin
    1983            0 :       pg% History_Track7_dymin = History_Track7_dymin
    1984            0 :       pg% History_Track7_win_width = History_Track7_win_width
    1985            0 :       pg% History_Track7_win_aspect_ratio = History_Track7_win_aspect_ratio
    1986            0 :       pg% History_Track7_file_width = History_Track7_file_width
    1987            0 :       pg% History_Track7_file_aspect_ratio = History_Track7_file_aspect_ratio
    1988            0 :       pg% History_Track7_xleft = History_Track7_xleft
    1989            0 :       pg% History_Track7_xright = History_Track7_xright
    1990            0 :       pg% History_Track7_ybot = History_Track7_ybot
    1991            0 :       pg% History_Track7_ytop = History_Track7_ytop
    1992            0 :       pg% History_Track7_txt_scale = History_Track7_txt_scale
    1993            0 :       pg% History_Track7_title = History_Track7_title
    1994            0 :       pg% History_Track7_use_decorator = History_Track7_use_decorator
    1995              : 
    1996            0 :       pg% History_Track8_win_flag = History_Track8_win_flag
    1997            0 :       pg% History_Track8_file_flag = History_Track8_file_flag
    1998            0 :       pg% History_Track8_file_interval = History_Track8_file_interval
    1999            0 :       pg% History_Track8_step_min = History_Track8_step_min
    2000            0 :       pg% History_Track8_step_max = History_Track8_step_max
    2001            0 :       pg% show_History_Track8_target_box = show_History_Track8_target_box
    2002            0 :       pg% History_Track8_n_sigma = History_Track8_n_sigma
    2003            0 :       pg% History_Track8_xtarget = History_Track8_xtarget
    2004            0 :       pg% History_Track8_xsigma = History_Track8_xsigma
    2005            0 :       pg% History_Track8_ytarget = History_Track8_ytarget
    2006            0 :       pg% History_Track8_ysigma = History_Track8_ysigma
    2007            0 :       pg% History_Track8_xname = History_Track8_xname
    2008            0 :       pg% History_Track8_xaxis_label = History_Track8_xaxis_label
    2009            0 :       pg% History_Track8_yname = History_Track8_yname
    2010            0 :       pg% History_Track8_yaxis_label = History_Track8_yaxis_label
    2011            0 :       pg% History_Track8_file_dir = History_Track8_file_dir
    2012            0 :       pg% History_Track8_file_prefix = History_Track8_file_prefix
    2013            0 :       pg% show_History_Track8_annotation1 = show_History_Track8_annotation1
    2014            0 :       pg% show_History_Track8_annotation2 = show_History_Track8_annotation2
    2015            0 :       pg% show_History_Track8_annotation3 = show_History_Track8_annotation3
    2016            0 :       pg% History_Track8_fname = History_Track8_fname
    2017            0 :       pg% History_Track8_reverse_xaxis = History_Track8_reverse_xaxis
    2018            0 :       pg% History_Track8_reverse_yaxis = History_Track8_reverse_yaxis
    2019            0 :       pg% History_Track8_log_xaxis = History_Track8_log_xaxis
    2020            0 :       pg% History_Track8_log_yaxis = History_Track8_log_yaxis
    2021            0 :       pg% History_Track8_xmin = History_Track8_xmin
    2022            0 :       pg% History_Track8_xmax = History_Track8_xmax
    2023            0 :       pg% History_Track8_ymin = History_Track8_ymin
    2024            0 :       pg% History_Track8_ymax = History_Track8_ymax
    2025            0 :       pg% History_Track8_xmargin = History_Track8_xmargin
    2026            0 :       pg% History_Track8_ymargin = History_Track8_ymargin
    2027            0 :       pg% History_Track8_dxmin = History_Track8_dxmin
    2028            0 :       pg% History_Track8_dymin = History_Track8_dymin
    2029            0 :       pg% History_Track8_win_width = History_Track8_win_width
    2030            0 :       pg% History_Track8_win_aspect_ratio = History_Track8_win_aspect_ratio
    2031            0 :       pg% History_Track8_file_width = History_Track8_file_width
    2032            0 :       pg% History_Track8_file_aspect_ratio = History_Track8_file_aspect_ratio
    2033            0 :       pg% History_Track8_xleft = History_Track8_xleft
    2034            0 :       pg% History_Track8_xright = History_Track8_xright
    2035            0 :       pg% History_Track8_ybot = History_Track8_ybot
    2036            0 :       pg% History_Track8_ytop = History_Track8_ytop
    2037            0 :       pg% History_Track8_txt_scale = History_Track8_txt_scale
    2038            0 :       pg% History_Track8_title = History_Track8_title
    2039            0 :       pg% History_Track8_use_decorator = History_Track8_use_decorator
    2040              : 
    2041            0 :       pg% History_Track9_win_flag = History_Track9_win_flag
    2042            0 :       pg% History_Track9_file_flag = History_Track9_file_flag
    2043            0 :       pg% History_Track9_file_interval = History_Track9_file_interval
    2044            0 :       pg% History_Track9_step_min = History_Track9_step_min
    2045            0 :       pg% History_Track9_step_max = History_Track9_step_max
    2046            0 :       pg% show_History_Track9_target_box = show_History_Track9_target_box
    2047            0 :       pg% History_Track9_n_sigma = History_Track9_n_sigma
    2048            0 :       pg% History_Track9_xtarget = History_Track9_xtarget
    2049            0 :       pg% History_Track9_xsigma = History_Track9_xsigma
    2050            0 :       pg% History_Track9_ytarget = History_Track9_ytarget
    2051            0 :       pg% History_Track9_ysigma = History_Track9_ysigma
    2052            0 :       pg% History_Track9_xname = History_Track9_xname
    2053            0 :       pg% History_Track9_xaxis_label = History_Track9_xaxis_label
    2054            0 :       pg% History_Track9_yname = History_Track9_yname
    2055            0 :       pg% History_Track9_yaxis_label = History_Track9_yaxis_label
    2056            0 :       pg% History_Track9_file_dir = History_Track9_file_dir
    2057            0 :       pg% History_Track9_file_prefix = History_Track9_file_prefix
    2058            0 :       pg% show_History_Track9_annotation1 = show_History_Track9_annotation1
    2059            0 :       pg% show_History_Track9_annotation2 = show_History_Track9_annotation2
    2060            0 :       pg% show_History_Track9_annotation3 = show_History_Track9_annotation3
    2061            0 :       pg% History_Track9_fname = History_Track9_fname
    2062            0 :       pg% History_Track9_reverse_xaxis = History_Track9_reverse_xaxis
    2063            0 :       pg% History_Track9_reverse_yaxis = History_Track9_reverse_yaxis
    2064            0 :       pg% History_Track9_log_xaxis = History_Track9_log_xaxis
    2065            0 :       pg% History_Track9_log_yaxis = History_Track9_log_yaxis
    2066            0 :       pg% History_Track9_xmin = History_Track9_xmin
    2067            0 :       pg% History_Track9_xmax = History_Track9_xmax
    2068            0 :       pg% History_Track9_ymin = History_Track9_ymin
    2069            0 :       pg% History_Track9_ymax = History_Track9_ymax
    2070            0 :       pg% History_Track9_xmargin = History_Track9_xmargin
    2071            0 :       pg% History_Track9_ymargin = History_Track9_ymargin
    2072            0 :       pg% History_Track9_dxmin = History_Track9_dxmin
    2073            0 :       pg% History_Track9_dymin = History_Track9_dymin
    2074            0 :       pg% History_Track9_win_width = History_Track9_win_width
    2075            0 :       pg% History_Track9_win_aspect_ratio = History_Track9_win_aspect_ratio
    2076            0 :       pg% History_Track9_file_width = History_Track9_file_width
    2077            0 :       pg% History_Track9_file_aspect_ratio = History_Track9_file_aspect_ratio
    2078            0 :       pg% History_Track9_xleft = History_Track9_xleft
    2079            0 :       pg% History_Track9_xright = History_Track9_xright
    2080            0 :       pg% History_Track9_ybot = History_Track9_ybot
    2081            0 :       pg% History_Track9_ytop = History_Track9_ytop
    2082            0 :       pg% History_Track9_txt_scale = History_Track9_txt_scale
    2083            0 :       pg% History_Track9_title = History_Track9_title
    2084            0 :       pg% History_Track9_use_decorator = History_Track9_use_decorator
    2085              : 
    2086            0 :       pg% History_Panels1_win_flag = History_Panels1_win_flag
    2087            0 :       pg% History_Panels1_win_width = History_Panels1_win_width
    2088            0 :       pg% History_Panels1_win_aspect_ratio = History_Panels1_win_aspect_ratio
    2089            0 :       pg% History_Panels1_xleft = History_Panels1_xleft
    2090            0 :       pg% History_Panels1_xright = History_Panels1_xright
    2091            0 :       pg% History_Panels1_ybot = History_Panels1_ybot
    2092            0 :       pg% History_Panels1_ytop = History_Panels1_ytop
    2093            0 :       pg% History_Panels1_txt_scale = History_Panels1_txt_scale
    2094            0 :       pg% History_Panels1_title = History_Panels1_title
    2095            0 :       pg% History_Panels1_xmax = History_Panels1_xmax
    2096            0 :       pg% History_Panels1_xmin = History_Panels1_xmin
    2097            0 :       pg% History_Panels1_dxmin = History_Panels1_dxmin
    2098            0 :       pg% History_Panels1_max_width = History_Panels1_max_width
    2099            0 :       pg% History_Panels1_num_panels = History_Panels1_num_panels
    2100            0 :       pg% History_Panels1_xaxis_name = History_Panels1_xaxis_name
    2101            0 :       pg% History_Panels1_yaxis_name = History_Panels1_yaxis_name
    2102            0 :       pg% History_Panels1_xaxis_reversed = History_Panels1_xaxis_reversed
    2103            0 :       pg% History_Panels1_yaxis_reversed = History_Panels1_yaxis_reversed
    2104            0 :       pg% History_Panels1_xaxis_log = History_Panels1_xaxis_log
    2105            0 :       pg% History_Panels1_yaxis_log = History_Panels1_yaxis_log
    2106            0 :       pg% History_Panels1_ymin = History_Panels1_ymin
    2107            0 :       pg% History_Panels1_ymax = History_Panels1_ymax
    2108            0 :       pg% History_Panels1_dymin = History_Panels1_dymin
    2109            0 :       pg% History_Panels1_other_yaxis_name = History_Panels1_other_yaxis_name
    2110            0 :       pg% History_Panels1_other_yaxis_reversed = History_Panels1_other_yaxis_reversed
    2111            0 :       pg% History_Panels1_other_yaxis_log = History_Panels1_other_yaxis_log
    2112            0 :       pg% History_Panels1_other_ymin = History_Panels1_other_ymin
    2113            0 :       pg% History_Panels1_other_ymax = History_Panels1_other_ymax
    2114            0 :       pg% History_Panels1_other_dymin = History_Panels1_other_dymin
    2115            0 :       pg% History_Panels1_file_flag = History_Panels1_file_flag
    2116            0 :       pg% History_Panels1_points_name = History_Panels1_points_name
    2117            0 :       pg% History_Panels1_file_dir = History_Panels1_file_dir
    2118            0 :       pg% History_Panels1_file_prefix = History_Panels1_file_prefix
    2119            0 :       pg% History_Panels1_file_interval = History_Panels1_file_interval
    2120            0 :       pg% History_Panels1_file_width = History_Panels1_file_width
    2121            0 :       pg% History_Panels1_file_aspect_ratio = History_Panels1_file_aspect_ratio
    2122            0 :       pg% History_Panels1_xmargin = History_Panels1_xmargin
    2123            0 :       pg% History_Panels1_ymargin = History_Panels1_ymargin
    2124            0 :       pg% History_Panels1_other_ymargin = History_Panels1_other_ymargin
    2125            0 :       pg% History_Panels1_use_decorator = History_Panels1_use_decorator
    2126              : 
    2127            0 :       pg% History_Panels2_win_flag = History_Panels2_win_flag
    2128            0 :       pg% History_Panels2_win_width = History_Panels2_win_width
    2129            0 :       pg% History_Panels2_win_aspect_ratio = History_Panels2_win_aspect_ratio
    2130            0 :       pg% History_Panels2_xleft = History_Panels2_xleft
    2131            0 :       pg% History_Panels2_xright = History_Panels2_xright
    2132            0 :       pg% History_Panels2_ybot = History_Panels2_ybot
    2133            0 :       pg% History_Panels2_ytop = History_Panels2_ytop
    2134            0 :       pg% History_Panels2_txt_scale = History_Panels2_txt_scale
    2135            0 :       pg% History_Panels2_title = History_Panels2_title
    2136            0 :       pg% History_Panels2_xmax = History_Panels2_xmax
    2137            0 :       pg% History_Panels2_xmin = History_Panels2_xmin
    2138            0 :       pg% History_Panels2_dxmin = History_Panels2_dxmin
    2139            0 :       pg% History_Panels2_max_width = History_Panels2_max_width
    2140            0 :       pg% History_Panels2_num_panels = History_Panels2_num_panels
    2141            0 :       pg% History_Panels2_xaxis_name = History_Panels2_xaxis_name
    2142            0 :       pg% History_Panels2_yaxis_name = History_Panels2_yaxis_name
    2143            0 :       pg% History_Panels2_xaxis_reversed = History_Panels2_xaxis_reversed
    2144            0 :       pg% History_Panels2_yaxis_reversed = History_Panels2_yaxis_reversed
    2145            0 :       pg% History_Panels2_xaxis_log = History_Panels2_xaxis_log
    2146            0 :       pg% History_Panels2_yaxis_log = History_Panels2_yaxis_log
    2147            0 :       pg% History_Panels2_ymin = History_Panels2_ymin
    2148            0 :       pg% History_Panels2_ymax = History_Panels2_ymax
    2149            0 :       pg% History_Panels2_dymin = History_Panels2_dymin
    2150            0 :       pg% History_Panels2_other_yaxis_name = History_Panels2_other_yaxis_name
    2151            0 :       pg% History_Panels2_other_yaxis_reversed = History_Panels2_other_yaxis_reversed
    2152            0 :       pg% History_Panels2_other_yaxis_log = History_Panels2_other_yaxis_log
    2153            0 :       pg% History_Panels2_other_ymin = History_Panels2_other_ymin
    2154            0 :       pg% History_Panels2_other_ymax = History_Panels2_other_ymax
    2155            0 :       pg% History_Panels2_other_dymin = History_Panels2_other_dymin
    2156            0 :       pg% History_Panels2_file_flag = History_Panels2_file_flag
    2157            0 :       pg% History_Panels2_points_name = History_Panels2_points_name
    2158            0 :       pg% History_Panels2_file_dir = History_Panels2_file_dir
    2159            0 :       pg% History_Panels2_file_prefix = History_Panels2_file_prefix
    2160            0 :       pg% History_Panels2_file_interval = History_Panels2_file_interval
    2161            0 :       pg% History_Panels2_file_width = History_Panels2_file_width
    2162            0 :       pg% History_Panels2_file_aspect_ratio = History_Panels2_file_aspect_ratio
    2163            0 :       pg% History_Panels2_xmargin = History_Panels2_xmargin
    2164            0 :       pg% History_Panels2_ymargin = History_Panels2_ymargin
    2165            0 :       pg% History_Panels2_other_ymargin = History_Panels2_other_ymargin
    2166            0 :       pg% History_Panels2_use_decorator = History_Panels2_use_decorator
    2167              : 
    2168            0 :       pg% History_Panels3_win_flag = History_Panels3_win_flag
    2169            0 :       pg% History_Panels3_win_width = History_Panels3_win_width
    2170            0 :       pg% History_Panels3_win_aspect_ratio = History_Panels3_win_aspect_ratio
    2171            0 :       pg% History_Panels3_xleft = History_Panels3_xleft
    2172            0 :       pg% History_Panels3_xright = History_Panels3_xright
    2173            0 :       pg% History_Panels3_ybot = History_Panels3_ybot
    2174            0 :       pg% History_Panels3_ytop = History_Panels3_ytop
    2175            0 :       pg% History_Panels3_txt_scale = History_Panels3_txt_scale
    2176            0 :       pg% History_Panels3_title = History_Panels3_title
    2177            0 :       pg% History_Panels3_xmax = History_Panels3_xmax
    2178            0 :       pg% History_Panels3_xmin = History_Panels3_xmin
    2179            0 :       pg% History_Panels3_dxmin = History_Panels3_dxmin
    2180            0 :       pg% History_Panels3_max_width = History_Panels3_max_width
    2181            0 :       pg% History_Panels3_num_panels = History_Panels3_num_panels
    2182            0 :       pg% History_Panels3_xaxis_name = History_Panels3_xaxis_name
    2183            0 :       pg% History_Panels3_yaxis_name = History_Panels3_yaxis_name
    2184            0 :       pg% History_Panels3_xaxis_reversed = History_Panels3_xaxis_reversed
    2185            0 :       pg% History_Panels3_yaxis_reversed = History_Panels3_yaxis_reversed
    2186            0 :       pg% History_Panels3_xaxis_log = History_Panels3_xaxis_log
    2187            0 :       pg% History_Panels3_yaxis_log = History_Panels3_yaxis_log
    2188            0 :       pg% History_Panels3_ymin = History_Panels3_ymin
    2189            0 :       pg% History_Panels3_ymax = History_Panels3_ymax
    2190            0 :       pg% History_Panels3_dymin = History_Panels3_dymin
    2191            0 :       pg% History_Panels3_other_yaxis_name = History_Panels3_other_yaxis_name
    2192            0 :       pg% History_Panels3_other_yaxis_reversed = History_Panels3_other_yaxis_reversed
    2193            0 :       pg% History_Panels3_other_yaxis_log = History_Panels3_other_yaxis_log
    2194            0 :       pg% History_Panels3_other_ymin = History_Panels3_other_ymin
    2195            0 :       pg% History_Panels3_other_ymax = History_Panels3_other_ymax
    2196            0 :       pg% History_Panels3_other_dymin = History_Panels3_other_dymin
    2197            0 :       pg% History_Panels3_file_flag = History_Panels3_file_flag
    2198            0 :       pg% History_Panels3_points_name = History_Panels3_points_name
    2199            0 :       pg% History_Panels3_file_dir = History_Panels3_file_dir
    2200            0 :       pg% History_Panels3_file_prefix = History_Panels3_file_prefix
    2201            0 :       pg% History_Panels3_file_interval = History_Panels3_file_interval
    2202            0 :       pg% History_Panels3_file_width = History_Panels3_file_width
    2203            0 :       pg% History_Panels3_file_aspect_ratio = History_Panels3_file_aspect_ratio
    2204            0 :       pg% History_Panels3_xmargin = History_Panels3_xmargin
    2205            0 :       pg% History_Panels3_ymargin = History_Panels3_ymargin
    2206            0 :       pg% History_Panels3_other_ymargin = History_Panels3_other_ymargin
    2207            0 :       pg% History_Panels3_use_decorator = History_Panels3_use_decorator
    2208              : 
    2209            0 :       pg% History_Panels4_win_flag = History_Panels4_win_flag
    2210            0 :       pg% History_Panels4_win_width = History_Panels4_win_width
    2211            0 :       pg% History_Panels4_win_aspect_ratio = History_Panels4_win_aspect_ratio
    2212            0 :       pg% History_Panels4_xleft = History_Panels4_xleft
    2213            0 :       pg% History_Panels4_xright = History_Panels4_xright
    2214            0 :       pg% History_Panels4_ybot = History_Panels4_ybot
    2215            0 :       pg% History_Panels4_ytop = History_Panels4_ytop
    2216            0 :       pg% History_Panels4_txt_scale = History_Panels4_txt_scale
    2217            0 :       pg% History_Panels4_title = History_Panels4_title
    2218            0 :       pg% History_Panels4_xmax = History_Panels4_xmax
    2219            0 :       pg% History_Panels4_xmin = History_Panels4_xmin
    2220            0 :       pg% History_Panels4_dxmin = History_Panels4_dxmin
    2221            0 :       pg% History_Panels4_max_width = History_Panels4_max_width
    2222            0 :       pg% History_Panels4_num_panels = History_Panels4_num_panels
    2223            0 :       pg% History_Panels4_xaxis_name = History_Panels4_xaxis_name
    2224            0 :       pg% History_Panels4_yaxis_name = History_Panels4_yaxis_name
    2225            0 :       pg% History_Panels4_xaxis_reversed = History_Panels4_xaxis_reversed
    2226            0 :       pg% History_Panels4_yaxis_reversed = History_Panels4_yaxis_reversed
    2227            0 :       pg% History_Panels4_xaxis_log = History_Panels4_xaxis_log
    2228            0 :       pg% History_Panels4_yaxis_log = History_Panels4_yaxis_log
    2229            0 :       pg% History_Panels4_ymin = History_Panels4_ymin
    2230            0 :       pg% History_Panels4_ymax = History_Panels4_ymax
    2231            0 :       pg% History_Panels4_dymin = History_Panels4_dymin
    2232            0 :       pg% History_Panels4_other_yaxis_name = History_Panels4_other_yaxis_name
    2233            0 :       pg% History_Panels4_other_yaxis_reversed = History_Panels4_other_yaxis_reversed
    2234            0 :       pg% History_Panels4_other_yaxis_log = History_Panels4_other_yaxis_log
    2235            0 :       pg% History_Panels4_other_ymin = History_Panels4_other_ymin
    2236            0 :       pg% History_Panels4_other_ymax = History_Panels4_other_ymax
    2237            0 :       pg% History_Panels4_other_dymin = History_Panels4_other_dymin
    2238            0 :       pg% History_Panels4_file_flag = History_Panels4_file_flag
    2239            0 :       pg% History_Panels4_points_name = History_Panels4_points_name
    2240            0 :       pg% History_Panels4_file_dir = History_Panels4_file_dir
    2241            0 :       pg% History_Panels4_file_prefix = History_Panels4_file_prefix
    2242            0 :       pg% History_Panels4_file_interval = History_Panels4_file_interval
    2243            0 :       pg% History_Panels4_file_width = History_Panels4_file_width
    2244            0 :       pg% History_Panels4_file_aspect_ratio = History_Panels4_file_aspect_ratio
    2245            0 :       pg% History_Panels4_xmargin = History_Panels4_xmargin
    2246            0 :       pg% History_Panels4_ymargin = History_Panels4_ymargin
    2247            0 :       pg% History_Panels4_other_ymargin = History_Panels4_other_ymargin
    2248            0 :       pg% History_Panels4_use_decorator = History_Panels4_use_decorator
    2249              : 
    2250            0 :       pg% History_Panels5_win_flag = History_Panels5_win_flag
    2251            0 :       pg% History_Panels5_win_width = History_Panels5_win_width
    2252            0 :       pg% History_Panels5_win_aspect_ratio = History_Panels5_win_aspect_ratio
    2253            0 :       pg% History_Panels5_xleft = History_Panels5_xleft
    2254            0 :       pg% History_Panels5_xright = History_Panels5_xright
    2255            0 :       pg% History_Panels5_ybot = History_Panels5_ybot
    2256            0 :       pg% History_Panels5_ytop = History_Panels5_ytop
    2257            0 :       pg% History_Panels5_txt_scale = History_Panels5_txt_scale
    2258            0 :       pg% History_Panels5_title = History_Panels5_title
    2259            0 :       pg% History_Panels5_xmax = History_Panels5_xmax
    2260            0 :       pg% History_Panels5_xmin = History_Panels5_xmin
    2261            0 :       pg% History_Panels5_dxmin = History_Panels5_dxmin
    2262            0 :       pg% History_Panels5_max_width = History_Panels5_max_width
    2263            0 :       pg% History_Panels5_num_panels = History_Panels5_num_panels
    2264            0 :       pg% History_Panels5_xaxis_name = History_Panels5_xaxis_name
    2265            0 :       pg% History_Panels5_yaxis_name = History_Panels5_yaxis_name
    2266            0 :       pg% History_Panels5_xaxis_reversed = History_Panels5_xaxis_reversed
    2267            0 :       pg% History_Panels5_yaxis_reversed = History_Panels5_yaxis_reversed
    2268            0 :       pg% History_Panels5_xaxis_log = History_Panels5_xaxis_log
    2269            0 :       pg% History_Panels5_yaxis_log = History_Panels5_yaxis_log
    2270            0 :       pg% History_Panels5_ymin = History_Panels5_ymin
    2271            0 :       pg% History_Panels5_ymax = History_Panels5_ymax
    2272            0 :       pg% History_Panels5_dymin = History_Panels5_dymin
    2273            0 :       pg% History_Panels5_other_yaxis_name = History_Panels5_other_yaxis_name
    2274            0 :       pg% History_Panels5_other_yaxis_reversed = History_Panels5_other_yaxis_reversed
    2275            0 :       pg% History_Panels5_other_yaxis_log = History_Panels5_other_yaxis_log
    2276            0 :       pg% History_Panels5_other_ymin = History_Panels5_other_ymin
    2277            0 :       pg% History_Panels5_other_ymax = History_Panels5_other_ymax
    2278            0 :       pg% History_Panels5_other_dymin = History_Panels5_other_dymin
    2279            0 :       pg% History_Panels5_file_flag = History_Panels5_file_flag
    2280            0 :       pg% History_Panels5_points_name = History_Panels5_points_name
    2281            0 :       pg% History_Panels5_file_dir = History_Panels5_file_dir
    2282            0 :       pg% History_Panels5_file_prefix = History_Panels5_file_prefix
    2283            0 :       pg% History_Panels5_file_interval = History_Panels5_file_interval
    2284            0 :       pg% History_Panels5_file_width = History_Panels5_file_width
    2285            0 :       pg% History_Panels5_file_aspect_ratio = History_Panels5_file_aspect_ratio
    2286            0 :       pg% History_Panels5_xmargin = History_Panels5_xmargin
    2287            0 :       pg% History_Panels5_ymargin = History_Panels5_ymargin
    2288            0 :       pg% History_Panels5_other_ymargin = History_Panels5_other_ymargin
    2289            0 :       pg% History_Panels5_use_decorator = History_Panels5_use_decorator
    2290              : 
    2291            0 :       pg% History_Panels6_win_flag = History_Panels6_win_flag
    2292            0 :       pg% History_Panels6_win_width = History_Panels6_win_width
    2293            0 :       pg% History_Panels6_win_aspect_ratio = History_Panels6_win_aspect_ratio
    2294            0 :       pg% History_Panels6_xleft = History_Panels6_xleft
    2295            0 :       pg% History_Panels6_xright = History_Panels6_xright
    2296            0 :       pg% History_Panels6_ybot = History_Panels6_ybot
    2297            0 :       pg% History_Panels6_ytop = History_Panels6_ytop
    2298            0 :       pg% History_Panels6_txt_scale = History_Panels6_txt_scale
    2299            0 :       pg% History_Panels6_title = History_Panels6_title
    2300            0 :       pg% History_Panels6_xmax = History_Panels6_xmax
    2301            0 :       pg% History_Panels6_xmin = History_Panels6_xmin
    2302            0 :       pg% History_Panels6_dxmin = History_Panels6_dxmin
    2303            0 :       pg% History_Panels6_max_width = History_Panels6_max_width
    2304            0 :       pg% History_Panels6_num_panels = History_Panels6_num_panels
    2305            0 :       pg% History_Panels6_xaxis_name = History_Panels6_xaxis_name
    2306            0 :       pg% History_Panels6_yaxis_name = History_Panels6_yaxis_name
    2307            0 :       pg% History_Panels6_xaxis_reversed = History_Panels6_xaxis_reversed
    2308            0 :       pg% History_Panels6_yaxis_reversed = History_Panels6_yaxis_reversed
    2309            0 :       pg% History_Panels6_xaxis_log = History_Panels6_xaxis_log
    2310            0 :       pg% History_Panels6_yaxis_log = History_Panels6_yaxis_log
    2311            0 :       pg% History_Panels6_ymin = History_Panels6_ymin
    2312            0 :       pg% History_Panels6_ymax = History_Panels6_ymax
    2313            0 :       pg% History_Panels6_dymin = History_Panels6_dymin
    2314            0 :       pg% History_Panels6_other_yaxis_name = History_Panels6_other_yaxis_name
    2315            0 :       pg% History_Panels6_other_yaxis_reversed = History_Panels6_other_yaxis_reversed
    2316            0 :       pg% History_Panels6_other_yaxis_log = History_Panels6_other_yaxis_log
    2317            0 :       pg% History_Panels6_other_ymin = History_Panels6_other_ymin
    2318            0 :       pg% History_Panels6_other_ymax = History_Panels6_other_ymax
    2319            0 :       pg% History_Panels6_other_dymin = History_Panels6_other_dymin
    2320            0 :       pg% History_Panels6_file_flag = History_Panels6_file_flag
    2321            0 :       pg% History_Panels6_points_name = History_Panels6_points_name
    2322            0 :       pg% History_Panels6_file_dir = History_Panels6_file_dir
    2323            0 :       pg% History_Panels6_file_prefix = History_Panels6_file_prefix
    2324            0 :       pg% History_Panels6_file_interval = History_Panels6_file_interval
    2325            0 :       pg% History_Panels6_file_width = History_Panels6_file_width
    2326            0 :       pg% History_Panels6_file_aspect_ratio = History_Panels6_file_aspect_ratio
    2327            0 :       pg% History_Panels6_xmargin = History_Panels6_xmargin
    2328            0 :       pg% History_Panels6_ymargin = History_Panels6_ymargin
    2329            0 :       pg% History_Panels6_other_ymargin = History_Panels6_other_ymargin
    2330            0 :       pg% History_Panels6_use_decorator = History_Panels6_use_decorator
    2331              : 
    2332            0 :       pg% History_Panels7_win_flag = History_Panels7_win_flag
    2333            0 :       pg% History_Panels7_win_width = History_Panels7_win_width
    2334            0 :       pg% History_Panels7_win_aspect_ratio = History_Panels7_win_aspect_ratio
    2335            0 :       pg% History_Panels7_xleft = History_Panels7_xleft
    2336            0 :       pg% History_Panels7_xright = History_Panels7_xright
    2337            0 :       pg% History_Panels7_ybot = History_Panels7_ybot
    2338            0 :       pg% History_Panels7_ytop = History_Panels7_ytop
    2339            0 :       pg% History_Panels7_txt_scale = History_Panels7_txt_scale
    2340            0 :       pg% History_Panels7_title = History_Panels7_title
    2341            0 :       pg% History_Panels7_xmax = History_Panels7_xmax
    2342            0 :       pg% History_Panels7_xmin = History_Panels7_xmin
    2343            0 :       pg% History_Panels7_dxmin = History_Panels7_dxmin
    2344            0 :       pg% History_Panels7_max_width = History_Panels7_max_width
    2345            0 :       pg% History_Panels7_num_panels = History_Panels7_num_panels
    2346            0 :       pg% History_Panels7_xaxis_name = History_Panels7_xaxis_name
    2347            0 :       pg% History_Panels7_yaxis_name = History_Panels7_yaxis_name
    2348            0 :       pg% History_Panels7_xaxis_reversed = History_Panels7_xaxis_reversed
    2349            0 :       pg% History_Panels7_yaxis_reversed = History_Panels7_yaxis_reversed
    2350            0 :       pg% History_Panels7_xaxis_log = History_Panels7_xaxis_log
    2351            0 :       pg% History_Panels7_yaxis_log = History_Panels7_yaxis_log
    2352            0 :       pg% History_Panels7_ymin = History_Panels7_ymin
    2353            0 :       pg% History_Panels7_ymax = History_Panels7_ymax
    2354            0 :       pg% History_Panels7_dymin = History_Panels7_dymin
    2355            0 :       pg% History_Panels7_other_yaxis_name = History_Panels7_other_yaxis_name
    2356            0 :       pg% History_Panels7_other_yaxis_reversed = History_Panels7_other_yaxis_reversed
    2357            0 :       pg% History_Panels7_other_yaxis_log = History_Panels7_other_yaxis_log
    2358            0 :       pg% History_Panels7_other_ymin = History_Panels7_other_ymin
    2359            0 :       pg% History_Panels7_other_ymax = History_Panels7_other_ymax
    2360            0 :       pg% History_Panels7_other_dymin = History_Panels7_other_dymin
    2361            0 :       pg% History_Panels7_file_flag = History_Panels7_file_flag
    2362            0 :       pg% History_Panels7_points_name = History_Panels7_points_name
    2363            0 :       pg% History_Panels7_file_dir = History_Panels7_file_dir
    2364            0 :       pg% History_Panels7_file_prefix = History_Panels7_file_prefix
    2365            0 :       pg% History_Panels7_file_interval = History_Panels7_file_interval
    2366            0 :       pg% History_Panels7_file_width = History_Panels7_file_width
    2367            0 :       pg% History_Panels7_file_aspect_ratio = History_Panels7_file_aspect_ratio
    2368            0 :       pg% History_Panels7_xmargin = History_Panels7_xmargin
    2369            0 :       pg% History_Panels7_ymargin = History_Panels7_ymargin
    2370            0 :       pg% History_Panels7_other_ymargin = History_Panels7_other_ymargin
    2371            0 :       pg% History_Panels7_use_decorator = History_Panels7_use_decorator
    2372              : 
    2373            0 :       pg% History_Panels8_win_flag = History_Panels8_win_flag
    2374            0 :       pg% History_Panels8_win_width = History_Panels8_win_width
    2375            0 :       pg% History_Panels8_win_aspect_ratio = History_Panels8_win_aspect_ratio
    2376            0 :       pg% History_Panels8_xleft = History_Panels8_xleft
    2377            0 :       pg% History_Panels8_xright = History_Panels8_xright
    2378            0 :       pg% History_Panels8_ybot = History_Panels8_ybot
    2379            0 :       pg% History_Panels8_ytop = History_Panels8_ytop
    2380            0 :       pg% History_Panels8_txt_scale = History_Panels8_txt_scale
    2381            0 :       pg% History_Panels8_title = History_Panels8_title
    2382            0 :       pg% History_Panels8_xmax = History_Panels8_xmax
    2383            0 :       pg% History_Panels8_xmin = History_Panels8_xmin
    2384            0 :       pg% History_Panels8_dxmin = History_Panels8_dxmin
    2385            0 :       pg% History_Panels8_max_width = History_Panels8_max_width
    2386            0 :       pg% History_Panels8_num_panels = History_Panels8_num_panels
    2387            0 :       pg% History_Panels8_xaxis_name = History_Panels8_xaxis_name
    2388            0 :       pg% History_Panels8_yaxis_name = History_Panels8_yaxis_name
    2389            0 :       pg% History_Panels8_xaxis_reversed = History_Panels8_xaxis_reversed
    2390            0 :       pg% History_Panels8_yaxis_reversed = History_Panels8_yaxis_reversed
    2391            0 :       pg% History_Panels8_xaxis_log = History_Panels8_xaxis_log
    2392            0 :       pg% History_Panels8_yaxis_log = History_Panels8_yaxis_log
    2393            0 :       pg% History_Panels8_ymin = History_Panels8_ymin
    2394            0 :       pg% History_Panels8_ymax = History_Panels8_ymax
    2395            0 :       pg% History_Panels8_dymin = History_Panels8_dymin
    2396            0 :       pg% History_Panels8_other_yaxis_name = History_Panels8_other_yaxis_name
    2397            0 :       pg% History_Panels8_other_yaxis_reversed = History_Panels8_other_yaxis_reversed
    2398            0 :       pg% History_Panels8_other_yaxis_log = History_Panels8_other_yaxis_log
    2399            0 :       pg% History_Panels8_other_ymin = History_Panels8_other_ymin
    2400            0 :       pg% History_Panels8_other_ymax = History_Panels8_other_ymax
    2401            0 :       pg% History_Panels8_other_dymin = History_Panels8_other_dymin
    2402            0 :       pg% History_Panels8_file_flag = History_Panels8_file_flag
    2403            0 :       pg% History_Panels8_points_name = History_Panels8_points_name
    2404            0 :       pg% History_Panels8_file_dir = History_Panels8_file_dir
    2405            0 :       pg% History_Panels8_file_prefix = History_Panels8_file_prefix
    2406            0 :       pg% History_Panels8_file_interval = History_Panels8_file_interval
    2407            0 :       pg% History_Panels8_file_width = History_Panels8_file_width
    2408            0 :       pg% History_Panels8_file_aspect_ratio = History_Panels8_file_aspect_ratio
    2409            0 :       pg% History_Panels8_xmargin = History_Panels8_xmargin
    2410            0 :       pg% History_Panels8_ymargin = History_Panels8_ymargin
    2411            0 :       pg% History_Panels8_other_ymargin = History_Panels8_other_ymargin
    2412            0 :       pg% History_Panels8_use_decorator = History_Panels8_use_decorator
    2413              : 
    2414            0 :       pg% History_Panels9_win_flag = History_Panels9_win_flag
    2415            0 :       pg% History_Panels9_win_width = History_Panels9_win_width
    2416            0 :       pg% History_Panels9_win_aspect_ratio = History_Panels9_win_aspect_ratio
    2417            0 :       pg% History_Panels9_xleft = History_Panels9_xleft
    2418            0 :       pg% History_Panels9_xright = History_Panels9_xright
    2419            0 :       pg% History_Panels9_ybot = History_Panels9_ybot
    2420            0 :       pg% History_Panels9_ytop = History_Panels9_ytop
    2421            0 :       pg% History_Panels9_txt_scale = History_Panels9_txt_scale
    2422            0 :       pg% History_Panels9_title = History_Panels9_title
    2423            0 :       pg% History_Panels9_xmax = History_Panels9_xmax
    2424            0 :       pg% History_Panels9_xmin = History_Panels9_xmin
    2425            0 :       pg% History_Panels9_dxmin = History_Panels9_dxmin
    2426            0 :       pg% History_Panels9_max_width = History_Panels9_max_width
    2427            0 :       pg% History_Panels9_num_panels = History_Panels9_num_panels
    2428            0 :       pg% History_Panels9_xaxis_name = History_Panels9_xaxis_name
    2429            0 :       pg% History_Panels9_yaxis_name = History_Panels9_yaxis_name
    2430            0 :       pg% History_Panels9_xaxis_reversed = History_Panels9_xaxis_reversed
    2431            0 :       pg% History_Panels9_yaxis_reversed = History_Panels9_yaxis_reversed
    2432            0 :       pg% History_Panels9_xaxis_log = History_Panels9_xaxis_log
    2433            0 :       pg% History_Panels9_yaxis_log = History_Panels9_yaxis_log
    2434            0 :       pg% History_Panels9_ymin = History_Panels9_ymin
    2435            0 :       pg% History_Panels9_ymax = History_Panels9_ymax
    2436            0 :       pg% History_Panels9_dymin = History_Panels9_dymin
    2437            0 :       pg% History_Panels9_other_yaxis_name = History_Panels9_other_yaxis_name
    2438            0 :       pg% History_Panels9_other_yaxis_reversed = History_Panels9_other_yaxis_reversed
    2439            0 :       pg% History_Panels9_other_yaxis_log = History_Panels9_other_yaxis_log
    2440            0 :       pg% History_Panels9_other_ymin = History_Panels9_other_ymin
    2441            0 :       pg% History_Panels9_other_ymax = History_Panels9_other_ymax
    2442            0 :       pg% History_Panels9_other_dymin = History_Panels9_other_dymin
    2443            0 :       pg% History_Panels9_file_flag = History_Panels9_file_flag
    2444            0 :       pg% History_Panels9_points_name = History_Panels9_points_name
    2445              :       pg% History_Panels9_file_flag = History_Panels9_file_flag
    2446            0 :       pg% History_Panels9_file_dir = History_Panels9_file_dir
    2447            0 :       pg% History_Panels9_file_prefix = History_Panels9_file_prefix
    2448            0 :       pg% History_Panels9_file_interval = History_Panels9_file_interval
    2449            0 :       pg% History_Panels9_file_width = History_Panels9_file_width
    2450            0 :       pg% History_Panels9_file_aspect_ratio = History_Panels9_file_aspect_ratio
    2451            0 :       pg% History_Panels9_xmargin = History_Panels9_xmargin
    2452            0 :       pg% History_Panels9_ymargin = History_Panels9_ymargin
    2453            0 :       pg% History_Panels9_other_ymargin = History_Panels9_other_ymargin
    2454            0 :       pg% History_Panels9_use_decorator = History_Panels9_use_decorator
    2455              : 
    2456            0 :       pg% History_Panel_points_error_bars = History_Panel_points_error_bars
    2457            0 :       pg% History_Panel_points_interval = History_Panel_points_interval
    2458            0 :       pg% History_Panel_points_marker = History_Panel_points_marker
    2459            0 :       pg% History_Panel_points_ci = History_Panel_points_ci
    2460            0 :       pg% History_Panel_points_lw = History_Panel_points_lw
    2461            0 :       pg% History_Panel_points_ch = History_Panel_points_ch
    2462              : 
    2463            0 :       pg% Summary_History_win_flag = Summary_History_win_flag
    2464            0 :       pg% Summary_History_file_flag = Summary_History_file_flag
    2465            0 :       pg% Summary_History_file_interval = Summary_History_file_interval
    2466            0 :       pg% Summary_History_file_dir = Summary_History_file_dir
    2467            0 :       pg% Summary_History_file_prefix = Summary_History_file_prefix
    2468            0 :       pg% Summary_History_scaled_value = Summary_History_scaled_value
    2469            0 :       pg% Summary_History_xmin = Summary_History_xmin
    2470            0 :       pg% Summary_History_xmax = Summary_History_xmax
    2471            0 :       pg% Summary_History_max_width = Summary_History_max_width
    2472            0 :       pg% Summary_History_win_width = Summary_History_win_width
    2473            0 :       pg% Summary_History_win_aspect_ratio = Summary_History_win_aspect_ratio
    2474            0 :       pg% Summary_History_file_width = Summary_History_file_width
    2475            0 :       pg% Summary_History_file_aspect_ratio = Summary_History_file_aspect_ratio
    2476            0 :       pg% Summary_History_xleft = Summary_History_xleft
    2477            0 :       pg% Summary_History_xright = Summary_History_xright
    2478            0 :       pg% Summary_History_ybot = Summary_History_ybot
    2479            0 :       pg% Summary_History_ytop = Summary_History_ytop
    2480            0 :       pg% Summary_History_txt_scale = Summary_History_txt_scale
    2481            0 :       pg% Summary_History_title = Summary_History_title
    2482            0 :       pg% Summary_History_name = Summary_History_name
    2483            0 :       pg% Summary_History_legend = Summary_History_legend
    2484            0 :       pg% Summary_History_num_lines = Summary_History_num_lines
    2485            0 :       pg% Summary_History_use_decorator = Summary_History_use_decorator
    2486              : 
    2487            0 :       pg% Grid1_win_flag = Grid1_win_flag
    2488            0 :       pg% Grid1_win_width = Grid1_win_width
    2489            0 :       pg% Grid1_win_aspect_ratio = Grid1_win_aspect_ratio
    2490            0 :       pg% Grid1_xleft = Grid1_xleft
    2491            0 :       pg% Grid1_xright = Grid1_xright
    2492            0 :       pg% Grid1_ybot = Grid1_ybot
    2493            0 :       pg% Grid1_ytop = Grid1_ytop
    2494            0 :       pg% Grid1_title = Grid1_title
    2495            0 :       pg% Grid1_txt_scale_factor = Grid1_txt_scale_factor
    2496            0 :       pg% Grid1_num_cols = Grid1_num_cols
    2497            0 :       pg% Grid1_num_rows = Grid1_num_rows
    2498            0 :       pg% Grid1_num_plots = Grid1_num_plots
    2499            0 :       pg% Grid1_plot_name = Grid1_plot_name
    2500            0 :       pg% Grid1_plot_row = Grid1_plot_row
    2501            0 :       pg% Grid1_plot_rowspan = Grid1_plot_rowspan
    2502            0 :       pg% Grid1_plot_col = Grid1_plot_col
    2503            0 :       pg% Grid1_plot_colspan = Grid1_plot_colspan
    2504            0 :       pg% Grid1_plot_pad_left = Grid1_plot_pad_left
    2505            0 :       pg% Grid1_plot_pad_right = Grid1_plot_pad_right
    2506            0 :       pg% Grid1_plot_pad_top = Grid1_plot_pad_top
    2507            0 :       pg% Grid1_plot_pad_bot = Grid1_plot_pad_bot
    2508            0 :       pg% Grid1_file_flag = Grid1_file_flag
    2509            0 :       pg% Grid1_file_dir = Grid1_file_dir
    2510            0 :       pg% Grid1_file_prefix = Grid1_file_prefix
    2511            0 :       pg% Grid1_file_interval = Grid1_file_interval
    2512            0 :       pg% Grid1_file_width = Grid1_file_width
    2513            0 :       pg% Grid1_file_aspect_ratio = Grid1_file_aspect_ratio
    2514              : 
    2515            0 :       pg% Grid2_win_flag = Grid2_win_flag
    2516            0 :       pg% Grid2_win_width = Grid2_win_width
    2517            0 :       pg% Grid2_win_aspect_ratio = Grid2_win_aspect_ratio
    2518            0 :       pg% Grid2_xleft = Grid2_xleft
    2519            0 :       pg% Grid2_xright = Grid2_xright
    2520            0 :       pg% Grid2_ybot = Grid2_ybot
    2521            0 :       pg% Grid2_ytop = Grid2_ytop
    2522            0 :       pg% Grid2_title = Grid2_title
    2523            0 :       pg% Grid2_txt_scale_factor = Grid2_txt_scale_factor
    2524            0 :       pg% Grid2_num_cols = Grid2_num_cols
    2525            0 :       pg% Grid2_num_rows = Grid2_num_rows
    2526            0 :       pg% Grid2_num_plots = Grid2_num_plots
    2527            0 :       pg% Grid2_plot_name = Grid2_plot_name
    2528            0 :       pg% Grid2_plot_row = Grid2_plot_row
    2529            0 :       pg% Grid2_plot_rowspan = Grid2_plot_rowspan
    2530            0 :       pg% Grid2_plot_col = Grid2_plot_col
    2531            0 :       pg% Grid2_plot_colspan = Grid2_plot_colspan
    2532            0 :       pg% Grid2_plot_pad_left = Grid2_plot_pad_left
    2533            0 :       pg% Grid2_plot_pad_right = Grid2_plot_pad_right
    2534            0 :       pg% Grid2_plot_pad_top = Grid2_plot_pad_top
    2535            0 :       pg% Grid2_plot_pad_bot = Grid2_plot_pad_bot
    2536            0 :       pg% Grid2_file_flag = Grid2_file_flag
    2537            0 :       pg% Grid2_file_dir = Grid2_file_dir
    2538            0 :       pg% Grid2_file_prefix = Grid2_file_prefix
    2539            0 :       pg% Grid2_file_interval = Grid2_file_interval
    2540            0 :       pg% Grid2_file_width = Grid2_file_width
    2541            0 :       pg% Grid2_file_aspect_ratio = Grid2_file_aspect_ratio
    2542              : 
    2543            0 :       pg% Grid3_win_flag = Grid3_win_flag
    2544            0 :       pg% Grid3_win_width = Grid3_win_width
    2545            0 :       pg% Grid3_win_aspect_ratio = Grid3_win_aspect_ratio
    2546            0 :       pg% Grid3_xleft = Grid3_xleft
    2547            0 :       pg% Grid3_xright = Grid3_xright
    2548            0 :       pg% Grid3_ybot = Grid3_ybot
    2549            0 :       pg% Grid3_ytop = Grid3_ytop
    2550            0 :       pg% Grid3_title = Grid3_title
    2551            0 :       pg% Grid3_txt_scale_factor = Grid3_txt_scale_factor
    2552            0 :       pg% Grid3_num_cols = Grid3_num_cols
    2553            0 :       pg% Grid3_num_rows = Grid3_num_rows
    2554            0 :       pg% Grid3_num_plots = Grid3_num_plots
    2555            0 :       pg% Grid3_plot_name = Grid3_plot_name
    2556            0 :       pg% Grid3_plot_row = Grid3_plot_row
    2557            0 :       pg% Grid3_plot_rowspan = Grid3_plot_rowspan
    2558            0 :       pg% Grid3_plot_col = Grid3_plot_col
    2559            0 :       pg% Grid3_plot_colspan = Grid3_plot_colspan
    2560            0 :       pg% Grid3_plot_pad_left = Grid3_plot_pad_left
    2561            0 :       pg% Grid3_plot_pad_right = Grid3_plot_pad_right
    2562            0 :       pg% Grid3_plot_pad_top = Grid3_plot_pad_top
    2563            0 :       pg% Grid3_plot_pad_bot = Grid3_plot_pad_bot
    2564            0 :       pg% Grid3_file_flag = Grid3_file_flag
    2565            0 :       pg% Grid3_file_dir = Grid3_file_dir
    2566            0 :       pg% Grid3_file_prefix = Grid3_file_prefix
    2567            0 :       pg% Grid3_file_interval = Grid3_file_interval
    2568            0 :       pg% Grid3_file_width = Grid3_file_width
    2569            0 :       pg% Grid3_file_aspect_ratio = Grid3_file_aspect_ratio
    2570              : 
    2571            0 :       pg% Grid4_win_flag = Grid4_win_flag
    2572            0 :       pg% Grid4_win_width = Grid4_win_width
    2573            0 :       pg% Grid4_win_aspect_ratio = Grid4_win_aspect_ratio
    2574            0 :       pg% Grid4_xleft = Grid4_xleft
    2575            0 :       pg% Grid4_xright = Grid4_xright
    2576            0 :       pg% Grid4_ybot = Grid4_ybot
    2577            0 :       pg% Grid4_ytop = Grid4_ytop
    2578            0 :       pg% Grid4_title = Grid4_title
    2579            0 :       pg% Grid4_txt_scale_factor = Grid4_txt_scale_factor
    2580            0 :       pg% Grid4_num_cols = Grid4_num_cols
    2581            0 :       pg% Grid4_num_rows = Grid4_num_rows
    2582            0 :       pg% Grid4_num_plots = Grid4_num_plots
    2583            0 :       pg% Grid4_plot_name = Grid4_plot_name
    2584            0 :       pg% Grid4_plot_row = Grid4_plot_row
    2585            0 :       pg% Grid4_plot_rowspan = Grid4_plot_rowspan
    2586            0 :       pg% Grid4_plot_col = Grid4_plot_col
    2587            0 :       pg% Grid4_plot_colspan = Grid4_plot_colspan
    2588            0 :       pg% Grid4_plot_pad_left = Grid4_plot_pad_left
    2589            0 :       pg% Grid4_plot_pad_right = Grid4_plot_pad_right
    2590            0 :       pg% Grid4_plot_pad_top = Grid4_plot_pad_top
    2591            0 :       pg% Grid4_plot_pad_bot = Grid4_plot_pad_bot
    2592            0 :       pg% Grid4_file_flag = Grid4_file_flag
    2593            0 :       pg% Grid4_file_dir = Grid4_file_dir
    2594            0 :       pg% Grid4_file_prefix = Grid4_file_prefix
    2595            0 :       pg% Grid4_file_interval = Grid4_file_interval
    2596            0 :       pg% Grid4_file_width = Grid4_file_width
    2597            0 :       pg% Grid4_file_aspect_ratio = Grid4_file_aspect_ratio
    2598              : 
    2599            0 :       pg% Grid5_win_flag = Grid5_win_flag
    2600            0 :       pg% Grid5_win_width = Grid5_win_width
    2601            0 :       pg% Grid5_win_aspect_ratio = Grid5_win_aspect_ratio
    2602            0 :       pg% Grid5_xleft = Grid5_xleft
    2603            0 :       pg% Grid5_xright = Grid5_xright
    2604            0 :       pg% Grid5_ybot = Grid5_ybot
    2605            0 :       pg% Grid5_ytop = Grid5_ytop
    2606            0 :       pg% Grid5_title = Grid5_title
    2607            0 :       pg% Grid5_txt_scale_factor = Grid5_txt_scale_factor
    2608            0 :       pg% Grid5_num_cols = Grid5_num_cols
    2609            0 :       pg% Grid5_num_rows = Grid5_num_rows
    2610            0 :       pg% Grid5_num_plots = Grid5_num_plots
    2611            0 :       pg% Grid5_plot_name = Grid5_plot_name
    2612            0 :       pg% Grid5_plot_row = Grid5_plot_row
    2613            0 :       pg% Grid5_plot_rowspan = Grid5_plot_rowspan
    2614            0 :       pg% Grid5_plot_col = Grid5_plot_col
    2615            0 :       pg% Grid5_plot_colspan = Grid5_plot_colspan
    2616            0 :       pg% Grid5_plot_pad_left = Grid5_plot_pad_left
    2617            0 :       pg% Grid5_plot_pad_right = Grid5_plot_pad_right
    2618            0 :       pg% Grid5_plot_pad_top = Grid5_plot_pad_top
    2619            0 :       pg% Grid5_plot_pad_bot = Grid5_plot_pad_bot
    2620            0 :       pg% Grid5_file_flag = Grid5_file_flag
    2621            0 :       pg% Grid5_file_dir = Grid5_file_dir
    2622            0 :       pg% Grid5_file_prefix = Grid5_file_prefix
    2623            0 :       pg% Grid5_file_interval = Grid5_file_interval
    2624            0 :       pg% Grid5_file_width = Grid5_file_width
    2625            0 :       pg% Grid5_file_aspect_ratio = Grid5_file_aspect_ratio
    2626              : 
    2627            0 :       pg% Grid6_win_flag = Grid6_win_flag
    2628            0 :       pg% Grid6_win_width = Grid6_win_width
    2629            0 :       pg% Grid6_win_aspect_ratio = Grid6_win_aspect_ratio
    2630            0 :       pg% Grid6_xleft = Grid6_xleft
    2631            0 :       pg% Grid6_xright = Grid6_xright
    2632            0 :       pg% Grid6_ybot = Grid6_ybot
    2633            0 :       pg% Grid6_ytop = Grid6_ytop
    2634            0 :       pg% Grid6_title = Grid6_title
    2635            0 :       pg% Grid6_txt_scale_factor = Grid6_txt_scale_factor
    2636            0 :       pg% Grid6_num_cols = Grid6_num_cols
    2637            0 :       pg% Grid6_num_rows = Grid6_num_rows
    2638            0 :       pg% Grid6_num_plots = Grid6_num_plots
    2639            0 :       pg% Grid6_plot_name = Grid6_plot_name
    2640            0 :       pg% Grid6_plot_row = Grid6_plot_row
    2641            0 :       pg% Grid6_plot_rowspan = Grid6_plot_rowspan
    2642            0 :       pg% Grid6_plot_col = Grid6_plot_col
    2643            0 :       pg% Grid6_plot_colspan = Grid6_plot_colspan
    2644            0 :       pg% Grid6_plot_pad_left = Grid6_plot_pad_left
    2645            0 :       pg% Grid6_plot_pad_right = Grid6_plot_pad_right
    2646            0 :       pg% Grid6_plot_pad_top = Grid6_plot_pad_top
    2647            0 :       pg% Grid6_plot_pad_bot = Grid6_plot_pad_bot
    2648            0 :       pg% Grid6_file_flag = Grid6_file_flag
    2649            0 :       pg% Grid6_file_dir = Grid6_file_dir
    2650            0 :       pg% Grid6_file_prefix = Grid6_file_prefix
    2651            0 :       pg% Grid6_file_interval = Grid6_file_interval
    2652            0 :       pg% Grid6_file_width = Grid6_file_width
    2653            0 :       pg% Grid6_file_aspect_ratio = Grid6_file_aspect_ratio
    2654              : 
    2655            0 :       pg% Grid7_win_flag = Grid7_win_flag
    2656            0 :       pg% Grid7_win_width = Grid7_win_width
    2657            0 :       pg% Grid7_win_aspect_ratio = Grid7_win_aspect_ratio
    2658            0 :       pg% Grid7_xleft = Grid7_xleft
    2659            0 :       pg% Grid7_xright = Grid7_xright
    2660            0 :       pg% Grid7_ybot = Grid7_ybot
    2661            0 :       pg% Grid7_ytop = Grid7_ytop
    2662            0 :       pg% Grid7_title = Grid7_title
    2663            0 :       pg% Grid7_txt_scale_factor = Grid7_txt_scale_factor
    2664            0 :       pg% Grid7_num_cols = Grid7_num_cols
    2665            0 :       pg% Grid7_num_rows = Grid7_num_rows
    2666            0 :       pg% Grid7_num_plots = Grid7_num_plots
    2667            0 :       pg% Grid7_plot_name = Grid7_plot_name
    2668            0 :       pg% Grid7_plot_row = Grid7_plot_row
    2669            0 :       pg% Grid7_plot_rowspan = Grid7_plot_rowspan
    2670            0 :       pg% Grid7_plot_col = Grid7_plot_col
    2671            0 :       pg% Grid7_plot_colspan = Grid7_plot_colspan
    2672            0 :       pg% Grid7_plot_pad_left = Grid7_plot_pad_left
    2673            0 :       pg% Grid7_plot_pad_right = Grid7_plot_pad_right
    2674            0 :       pg% Grid7_plot_pad_top = Grid7_plot_pad_top
    2675            0 :       pg% Grid7_plot_pad_bot = Grid7_plot_pad_bot
    2676            0 :       pg% Grid7_file_flag = Grid7_file_flag
    2677            0 :       pg% Grid7_file_dir = Grid7_file_dir
    2678            0 :       pg% Grid7_file_prefix = Grid7_file_prefix
    2679            0 :       pg% Grid7_file_interval = Grid7_file_interval
    2680            0 :       pg% Grid7_file_width = Grid7_file_width
    2681            0 :       pg% Grid7_file_aspect_ratio = Grid7_file_aspect_ratio
    2682              : 
    2683            0 :       pg% Grid8_win_flag = Grid8_win_flag
    2684            0 :       pg% Grid8_win_width = Grid8_win_width
    2685            0 :       pg% Grid8_win_aspect_ratio = Grid8_win_aspect_ratio
    2686            0 :       pg% Grid8_xleft = Grid8_xleft
    2687            0 :       pg% Grid8_xright = Grid8_xright
    2688            0 :       pg% Grid8_ybot = Grid8_ybot
    2689            0 :       pg% Grid8_ytop = Grid8_ytop
    2690            0 :       pg% Grid8_title = Grid8_title
    2691            0 :       pg% Grid8_txt_scale_factor = Grid8_txt_scale_factor
    2692            0 :       pg% Grid8_num_cols = Grid8_num_cols
    2693            0 :       pg% Grid8_num_rows = Grid8_num_rows
    2694            0 :       pg% Grid8_num_plots = Grid8_num_plots
    2695            0 :       pg% Grid8_plot_name = Grid8_plot_name
    2696            0 :       pg% Grid8_plot_row = Grid8_plot_row
    2697            0 :       pg% Grid8_plot_rowspan = Grid8_plot_rowspan
    2698            0 :       pg% Grid8_plot_col = Grid8_plot_col
    2699            0 :       pg% Grid8_plot_colspan = Grid8_plot_colspan
    2700            0 :       pg% Grid8_plot_pad_left = Grid8_plot_pad_left
    2701            0 :       pg% Grid8_plot_pad_right = Grid8_plot_pad_right
    2702            0 :       pg% Grid8_plot_pad_top = Grid8_plot_pad_top
    2703            0 :       pg% Grid8_plot_pad_bot = Grid8_plot_pad_bot
    2704            0 :       pg% Grid8_file_flag = Grid8_file_flag
    2705            0 :       pg% Grid8_file_dir = Grid8_file_dir
    2706            0 :       pg% Grid8_file_prefix = Grid8_file_prefix
    2707            0 :       pg% Grid8_file_interval = Grid8_file_interval
    2708            0 :       pg% Grid8_file_width = Grid8_file_width
    2709            0 :       pg% Grid8_file_aspect_ratio = Grid8_file_aspect_ratio
    2710              : 
    2711            0 :       pg% Grid9_win_flag = Grid9_win_flag
    2712            0 :       pg% Grid9_win_width = Grid9_win_width
    2713            0 :       pg% Grid9_win_aspect_ratio = Grid9_win_aspect_ratio
    2714            0 :       pg% Grid9_xleft = Grid9_xleft
    2715            0 :       pg% Grid9_xright = Grid9_xright
    2716            0 :       pg% Grid9_ybot = Grid9_ybot
    2717            0 :       pg% Grid9_ytop = Grid9_ytop
    2718            0 :       pg% Grid9_title = Grid9_title
    2719            0 :       pg% Grid9_txt_scale_factor = Grid9_txt_scale_factor
    2720            0 :       pg% Grid9_num_cols = Grid9_num_cols
    2721            0 :       pg% Grid9_num_rows = Grid9_num_rows
    2722            0 :       pg% Grid9_num_plots = Grid9_num_plots
    2723            0 :       pg% Grid9_plot_name = Grid9_plot_name
    2724            0 :       pg% Grid9_plot_row = Grid9_plot_row
    2725            0 :       pg% Grid9_plot_rowspan = Grid9_plot_rowspan
    2726            0 :       pg% Grid9_plot_col = Grid9_plot_col
    2727            0 :       pg% Grid9_plot_colspan = Grid9_plot_colspan
    2728            0 :       pg% Grid9_plot_pad_left = Grid9_plot_pad_left
    2729            0 :       pg% Grid9_plot_pad_right = Grid9_plot_pad_right
    2730            0 :       pg% Grid9_plot_pad_top = Grid9_plot_pad_top
    2731            0 :       pg% Grid9_plot_pad_bot = Grid9_plot_pad_bot
    2732            0 :       pg% Grid9_file_flag = Grid9_file_flag
    2733            0 :       pg% Grid9_file_dir = Grid9_file_dir
    2734            0 :       pg% Grid9_file_prefix = Grid9_file_prefix
    2735            0 :       pg% Grid9_file_interval = Grid9_file_interval
    2736            0 :       pg% Grid9_file_width = Grid9_file_width
    2737            0 :       pg% Grid9_file_aspect_ratio = Grid9_file_aspect_ratio
    2738              : 
    2739            0 :       pg% Star1_win_flag = Star1_win_flag
    2740            0 :       pg% Star1_file_flag = Star1_file_flag
    2741            0 :       pg% Star1_file_interval = Star1_file_interval
    2742            0 :       pg% Star1_file_dir = Star1_file_dir
    2743            0 :       pg% Star1_file_prefix = Star1_file_prefix
    2744            0 :       pg% Star1_win_width = Star1_win_width
    2745            0 :       pg% Star1_win_aspect_ratio = Star1_win_aspect_ratio
    2746            0 :       pg% Star1_xleft = Star1_xleft
    2747            0 :       pg% Star1_xright = Star1_xright
    2748            0 :       pg% Star1_ybot = Star1_ybot
    2749            0 :       pg% Star1_ytop = Star1_ytop
    2750            0 :       pg% Star1_file_width = Star1_file_width
    2751            0 :       pg% Star1_file_aspect_ratio = Star1_file_aspect_ratio
    2752            0 :       pg% Star1_txt_scale_factor = Star1_txt_scale_factor
    2753            0 :       pg% Star1_title = Star1_title
    2754            0 :       pg% Star1_plot_name = Star1_plot_name
    2755            0 :       pg% do_star1_box = do_star1_box
    2756            0 :       pg% star1_box_pad_left = star1_box_pad_left
    2757            0 :       pg% star1_box_pad_right = star1_box_pad_right
    2758            0 :       pg% star1_box_pad_bot = star1_box_pad_bot
    2759            0 :       pg% star1_box_pad_top = star1_box_pad_top
    2760              : 
    2761            0 :       pg% Star2_win_flag = Star2_win_flag
    2762            0 :       pg% Star2_file_flag = Star2_file_flag
    2763            0 :       pg% Star2_file_interval = Star2_file_interval
    2764            0 :       pg% Star2_file_dir = Star2_file_dir
    2765            0 :       pg% Star2_file_prefix = Star2_file_prefix
    2766            0 :       pg% Star2_win_width = Star2_win_width
    2767            0 :       pg% Star2_win_aspect_ratio = Star2_win_aspect_ratio
    2768            0 :       pg% Star2_xleft = Star2_xleft
    2769            0 :       pg% Star2_xright = Star2_xright
    2770            0 :       pg% Star2_ybot = Star2_ybot
    2771            0 :       pg% Star2_ytop = Star2_ytop
    2772            0 :       pg% Star2_file_width = Star2_file_width
    2773            0 :       pg% Star2_file_aspect_ratio = Star2_file_aspect_ratio
    2774            0 :       pg% Star2_txt_scale_factor = Star2_txt_scale_factor
    2775            0 :       pg% Star2_title = Star2_title
    2776            0 :       pg% Star2_plot_name = Star2_plot_name
    2777            0 :       pg% do_star2_box = do_star2_box
    2778            0 :       pg% star2_box_pad_left = star2_box_pad_left
    2779            0 :       pg% star2_box_pad_right = star2_box_pad_right
    2780            0 :       pg% star2_box_pad_bot = star2_box_pad_bot
    2781            0 :       pg% star2_box_pad_top = star2_box_pad_top
    2782              : 
    2783            0 :       pg% show_mtrans_status = show_mtrans_status
    2784              : 
    2785            0 :       pg% Orbit_win_flag = Orbit_win_flag
    2786            0 :       pg% Orbit_file_flag = Orbit_file_flag
    2787            0 :       pg% Orbit_file_interval = Orbit_file_interval
    2788            0 :       pg% Orbit_file_dir = Orbit_file_dir
    2789            0 :       pg% Orbit_file_prefix = Orbit_file_prefix
    2790            0 :       pg% Orbit_title = Orbit_title
    2791            0 :       pg% Orbit_win_width = Orbit_win_width
    2792            0 :       pg% Orbit_win_aspect_ratio = Orbit_win_aspect_ratio
    2793            0 :       pg% Orbit_xleft = Orbit_xleft
    2794            0 :       pg% Orbit_xright = Orbit_xright
    2795            0 :       pg% Orbit_ybot = Orbit_ybot
    2796            0 :       pg% Orbit_ytop = Orbit_ytop
    2797            0 :       pg% Orbit_file_width = Orbit_file_width
    2798            0 :       pg% Orbit_file_aspect_ratio = Orbit_file_aspect_ratio
    2799            0 :       pg% Orbit_txt_scale_factor = Orbit_txt_scale_factor
    2800            0 :       pg% Orbit_show_stars = Orbit_show_stars
    2801              : 
    2802            0 :       pg% annotation1_ci = annotation1_ci
    2803            0 :       pg% annotation1_ch = annotation1_ch
    2804            0 :       pg% annotation1_lw = annotation1_lw
    2805            0 :       pg% annotation1_cf = annotation1_cf
    2806            0 :       pg% annotation1_text = annotation1_text
    2807            0 :       pg% annotation1_side = annotation1_side
    2808            0 :       pg% annotation1_disp = annotation1_disp
    2809            0 :       pg% annotation1_coord = annotation1_coord
    2810            0 :       pg% annotation1_fjust = annotation1_fjust
    2811              : 
    2812            0 :       pg% annotation2_ci = annotation2_ci
    2813            0 :       pg% annotation2_ch = annotation2_ch
    2814            0 :       pg% annotation2_lw = annotation2_lw
    2815            0 :       pg% annotation2_cf = annotation2_cf
    2816            0 :       pg% annotation2_text = annotation2_text
    2817            0 :       pg% annotation2_side = annotation2_side
    2818            0 :       pg% annotation2_disp = annotation2_disp
    2819            0 :       pg% annotation2_coord = annotation2_coord
    2820            0 :       pg% annotation2_fjust = annotation2_fjust
    2821              : 
    2822            0 :       pg% annotation3_ci = annotation3_ci
    2823            0 :       pg% annotation3_ch = annotation3_ch
    2824            0 :       pg% annotation3_lw = annotation3_lw
    2825            0 :       pg% annotation3_cf = annotation3_cf
    2826            0 :       pg% annotation3_text = annotation3_text
    2827            0 :       pg% annotation3_side = annotation3_side
    2828            0 :       pg% annotation3_disp = annotation3_disp
    2829            0 :       pg% annotation3_coord = annotation3_coord
    2830            0 :       pg% annotation3_fjust = annotation3_fjust
    2831              : 
    2832            0 :       pg% read_extra_pgbinary_inlist = read_extra_pgbinary_inlist
    2833            0 :       pg% extra_pgbinary_inlist_name = extra_pgbinary_inlist_name
    2834              : 
    2835            0 :    end subroutine store_pgbinary_controls
    2836              : 
    2837              : 
    2838            0 :    subroutine set_default_pgbinary_controls
    2839              : 
    2840              :       include 'pgbinary.defaults'
    2841              : 
    2842            0 :    end subroutine set_default_pgbinary_controls
    2843              : 
    2844              : 
    2845              : end module pgbinary_ctrls_io
    2846              : 
        

Generated by: LCOV version 2.0-1