Line data Source code
1 : ! ***********************************************************************
2 : !
3 : ! Copyright (C) 2010 The MESA Team
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 pgstar_ctrls_io
21 :
22 : use const_def, only: dp
23 : use star_private_def
24 : use star_pgstar
25 :
26 : implicit none
27 :
28 : include "pgstar_controls.inc"
29 :
30 : namelist /pgstar/ &
31 :
32 : file_device, &
33 : file_digits, &
34 : pgstar_interval, &
35 : pause_flag, &
36 : pause_interval, &
37 : pgstar_sleep, &
38 : clear_history, &
39 :
40 : delta_HR_limit_for_file_output, &
41 : file_white_on_black_flag, &
42 : win_white_on_black_flag, &
43 : pgstar_show_model_number, &
44 : pgstar_show_age, &
45 : pgstar_show_age_in_seconds, &
46 : pgstar_show_age_in_minutes, &
47 : pgstar_show_age_in_hours, &
48 : pgstar_show_age_in_days, &
49 : pgstar_show_age_in_years, &
50 : pgstar_show_log_age_in_years, &
51 :
52 : pgstar_report_writing_files, &
53 :
54 : pgstar_show_title, &
55 : pgstar_title_scale, &
56 : pgstar_title_disp, &
57 : pgstar_title_coord, &
58 : pgstar_title_fjust, &
59 : pgstar_title_lw, &
60 :
61 : pgstar_grid_show_title, &
62 : pgstar_grid_title_scale, &
63 : pgstar_grid_title_disp, &
64 : pgstar_grid_title_coord, &
65 : pgstar_grid_title_fjust, &
66 : pgstar_grid_title_lw, &
67 :
68 : pgstar_age_scale, &
69 : pgstar_age_disp, &
70 : pgstar_age_coord, &
71 : pgstar_age_fjust, &
72 : pgstar_age_lw, &
73 :
74 : pgstar_model_scale, &
75 : pgstar_model_disp, &
76 : pgstar_model_coord, &
77 : pgstar_model_fjust, &
78 : pgstar_model_lw, &
79 :
80 : pgstar_xaxis_label_scale, &
81 : pgstar_left_yaxis_label_scale, &
82 : pgstar_right_yaxis_label_scale, &
83 : pgstar_xaxis_label_lw, &
84 : pgstar_left_yaxis_label_lw, &
85 : pgstar_right_yaxis_label_lw, &
86 : pgstar_xaxis_label_disp, &
87 : pgstar_left_yaxis_label_disp, &
88 : pgstar_right_yaxis_label_disp, &
89 : pgstar_num_scale, &
90 : pgstar_lw, &
91 : pgstar_profile_line_style, &
92 : pgstar_history_line_style, &
93 : pgstar_model_lw, &
94 : pgstar_box_lw, &
95 :
96 : Profile_Panels_show_Mach_1_location, &
97 : Profile_Panels_show_photosphere_location, &
98 : Profile_Panels_xwidth_left_div_shock_value, &
99 : Profile_Panels_xwidth_right_div_shock_value, &
100 : Profile_Panels_xwidth_left_of_shock, &
101 : Profile_Panels_xwidth_right_of_shock, &
102 :
103 : Profile_Panels1_win_flag, &
104 : Profile_Panels1_file_flag, &
105 : do_Profile_Panels1_win, &
106 : do_Profile_Panels1_file, &
107 : id_Profile_Panels1_win, &
108 : id_Profile_Panels1_file, &
109 : Profile_Panels1_file_interval, &
110 : Profile_Panels1_file_dir, &
111 : Profile_Panels1_file_prefix, &
112 : Profile_Panels1_xaxis_reversed, &
113 : Profile_Panels1_xaxis_name, &
114 : Profile_Panels1_title, &
115 : Profile_Panels1_xmin, &
116 : Profile_Panels1_xmax, &
117 : Profile_Panels1_xmargin, &
118 : Profile_Panels1_show_mix_regions_on_xaxis, &
119 : Profile_Panels1_win_width, &
120 : Profile_Panels1_win_aspect_ratio, &
121 : Profile_Panels1_xleft, &
122 : Profile_Panels1_xright, &
123 : Profile_Panels1_ybot, &
124 : Profile_Panels1_ytop, &
125 : Profile_Panels1_txt_scale, &
126 : prev_Profile_Panels1_win_width, &
127 : prev_Profile_Panels1_win_ratio, &
128 : Profile_Panels1_file_width, &
129 : Profile_Panels1_file_aspect_ratio, &
130 : prev_Profile_Panels1_file_width, &
131 : prev_Profile_Panels1_file_ratio, &
132 : Profile_Panels1_num_panels, &
133 : Profile_Panels1_yaxis_name, &
134 : Profile_Panels1_other_yaxis_name, &
135 : Profile_Panels1_yaxis_reversed, &
136 : Profile_Panels1_other_yaxis_reversed, &
137 : Profile_Panels1_yaxis_log, &
138 : Profile_Panels1_other_yaxis_log, &
139 : Profile_Panels1_same_yaxis_range, &
140 : Profile_Panels1_ymin, &
141 : Profile_Panels1_other_ymin, &
142 : Profile_Panels1_ymax, &
143 : Profile_Panels1_other_ymax, &
144 : Profile_Panels1_ycenter, &
145 : Profile_Panels1_other_ycenter, &
146 : Profile_Panels1_ymargin, &
147 : Profile_Panels1_other_ymargin, &
148 : Profile_Panels1_dymin, &
149 : Profile_Panels1_other_dymin, &
150 : Profile_Panels1_show_grid, &
151 : Profile_Panels1_use_decorator, &
152 :
153 : Profile_Panels2_win_flag, &
154 : Profile_Panels2_file_flag, &
155 : do_Profile_Panels2_win, &
156 : do_Profile_Panels2_file, &
157 : id_Profile_Panels2_win, &
158 : id_Profile_Panels2_file, &
159 : Profile_Panels2_file_interval, &
160 : Profile_Panels2_file_dir, &
161 : Profile_Panels2_file_prefix, &
162 : Profile_Panels2_xaxis_reversed, &
163 : Profile_Panels2_xaxis_name, &
164 : Profile_Panels2_title, &
165 : Profile_Panels2_xmin, &
166 : Profile_Panels2_xmax, &
167 : Profile_Panels2_xmargin, &
168 : Profile_Panels2_show_mix_regions_on_xaxis, &
169 : Profile_Panels2_win_width, &
170 : Profile_Panels2_win_aspect_ratio, &
171 : Profile_Panels2_xleft, &
172 : Profile_Panels2_xright, &
173 : Profile_Panels2_ybot, &
174 : Profile_Panels2_ytop, &
175 : Profile_Panels2_txt_scale, &
176 : prev_Profile_Panels2_win_width, &
177 : prev_Profile_Panels2_win_ratio, &
178 : Profile_Panels2_file_width, &
179 : Profile_Panels2_file_aspect_ratio, &
180 : prev_Profile_Panels2_file_width, &
181 : prev_Profile_Panels2_file_ratio, &
182 : Profile_Panels2_num_panels, &
183 : Profile_Panels2_yaxis_name, &
184 : Profile_Panels2_other_yaxis_name, &
185 : Profile_Panels2_yaxis_reversed, &
186 : Profile_Panels2_other_yaxis_reversed, &
187 : Profile_Panels2_yaxis_log, &
188 : Profile_Panels2_other_yaxis_log, &
189 : Profile_Panels2_same_yaxis_range, &
190 : Profile_Panels2_ymin, &
191 : Profile_Panels2_other_ymin, &
192 : Profile_Panels2_ymax, &
193 : Profile_Panels2_other_ymax, &
194 : Profile_Panels2_ycenter, &
195 : Profile_Panels2_other_ycenter, &
196 : Profile_Panels2_ymargin, &
197 : Profile_Panels2_other_ymargin, &
198 : Profile_Panels2_dymin, &
199 : Profile_Panels2_other_dymin, &
200 : Profile_Panels2_show_grid, &
201 : Profile_Panels2_use_decorator, &
202 :
203 : Profile_Panels3_win_flag, &
204 : Profile_Panels3_file_flag, &
205 : do_Profile_Panels3_win, &
206 : do_Profile_Panels3_file, &
207 : id_Profile_Panels3_win, &
208 : id_Profile_Panels3_file, &
209 : Profile_Panels3_file_interval, &
210 : Profile_Panels3_file_dir, &
211 : Profile_Panels3_file_prefix, &
212 : Profile_Panels3_xaxis_reversed, &
213 : Profile_Panels3_xaxis_name, &
214 : Profile_Panels3_title, &
215 : Profile_Panels3_xmin, &
216 : Profile_Panels3_xmax, &
217 : Profile_Panels3_xmargin, &
218 : Profile_Panels3_show_mix_regions_on_xaxis, &
219 : Profile_Panels3_win_width, &
220 : Profile_Panels3_win_aspect_ratio, &
221 : Profile_Panels3_xleft, &
222 : Profile_Panels3_xright, &
223 : Profile_Panels3_ybot, &
224 : Profile_Panels3_ytop, &
225 : Profile_Panels3_txt_scale, &
226 : prev_Profile_Panels3_win_width, &
227 : prev_Profile_Panels3_win_ratio, &
228 : Profile_Panels3_file_width, &
229 : Profile_Panels3_file_aspect_ratio, &
230 : prev_Profile_Panels3_file_width, &
231 : prev_Profile_Panels3_file_ratio, &
232 : Profile_Panels3_num_panels, &
233 : Profile_Panels3_yaxis_name, &
234 : Profile_Panels3_other_yaxis_name, &
235 : Profile_Panels3_yaxis_reversed, &
236 : Profile_Panels3_other_yaxis_reversed, &
237 : Profile_Panels3_yaxis_log, &
238 : Profile_Panels3_other_yaxis_log, &
239 : Profile_Panels3_same_yaxis_range, &
240 : Profile_Panels3_ymin, &
241 : Profile_Panels3_other_ymin, &
242 : Profile_Panels3_ymax, &
243 : Profile_Panels3_other_ymax, &
244 : Profile_Panels3_ycenter, &
245 : Profile_Panels3_other_ycenter, &
246 : Profile_Panels3_ymargin, &
247 : Profile_Panels3_other_ymargin, &
248 : Profile_Panels3_dymin, &
249 : Profile_Panels3_other_dymin, &
250 : Profile_Panels3_show_grid, &
251 : Profile_Panels3_use_decorator, &
252 :
253 : Profile_Panels4_win_flag, &
254 : Profile_Panels4_file_flag, &
255 : do_Profile_Panels4_win, &
256 : do_Profile_Panels4_file, &
257 : id_Profile_Panels4_win, &
258 : id_Profile_Panels4_file, &
259 : Profile_Panels4_file_interval, &
260 : Profile_Panels4_file_dir, &
261 : Profile_Panels4_file_prefix, &
262 : Profile_Panels4_xaxis_reversed, &
263 : Profile_Panels4_xaxis_name, &
264 : Profile_Panels4_title, &
265 : Profile_Panels4_xmin, &
266 : Profile_Panels4_xmax, &
267 : Profile_Panels4_xmargin, &
268 : Profile_Panels4_show_mix_regions_on_xaxis, &
269 : Profile_Panels4_win_width, &
270 : Profile_Panels4_win_aspect_ratio, &
271 : Profile_Panels4_xleft, &
272 : Profile_Panels4_xright, &
273 : Profile_Panels4_ybot, &
274 : Profile_Panels4_ytop, &
275 : Profile_Panels4_txt_scale, &
276 : prev_Profile_Panels4_win_width, &
277 : prev_Profile_Panels4_win_ratio, &
278 : Profile_Panels4_file_width, &
279 : Profile_Panels4_file_aspect_ratio, &
280 : prev_Profile_Panels4_file_width, &
281 : prev_Profile_Panels4_file_ratio, &
282 : Profile_Panels4_num_panels, &
283 : Profile_Panels4_yaxis_name, &
284 : Profile_Panels4_other_yaxis_name, &
285 : Profile_Panels4_yaxis_reversed, &
286 : Profile_Panels4_other_yaxis_reversed, &
287 : Profile_Panels4_yaxis_log, &
288 : Profile_Panels4_other_yaxis_log, &
289 : Profile_Panels4_same_yaxis_range, &
290 : Profile_Panels4_ymin, &
291 : Profile_Panels4_other_ymin, &
292 : Profile_Panels4_ymax, &
293 : Profile_Panels4_other_ymax, &
294 : Profile_Panels4_ycenter, &
295 : Profile_Panels4_other_ycenter, &
296 : Profile_Panels4_ymargin, &
297 : Profile_Panels4_other_ymargin, &
298 : Profile_Panels4_dymin, &
299 : Profile_Panels4_other_dymin, &
300 : Profile_Panels4_show_grid, &
301 : Profile_Panels4_use_decorator, &
302 :
303 :
304 : Profile_Panels5_win_flag, &
305 : Profile_Panels5_file_flag, &
306 : do_Profile_Panels5_win, &
307 : do_Profile_Panels5_file, &
308 : id_Profile_Panels5_win, &
309 : id_Profile_Panels5_file, &
310 : Profile_Panels5_file_interval, &
311 : Profile_Panels5_file_dir, &
312 : Profile_Panels5_file_prefix, &
313 : Profile_Panels5_xaxis_reversed, &
314 : Profile_Panels5_xaxis_name, &
315 : Profile_Panels5_title, &
316 : Profile_Panels5_xmin, &
317 : Profile_Panels5_xmax, &
318 : Profile_Panels5_xmargin, &
319 : Profile_Panels5_show_mix_regions_on_xaxis, &
320 : Profile_Panels5_win_width, &
321 : Profile_Panels5_win_aspect_ratio, &
322 : Profile_Panels5_xleft, &
323 : Profile_Panels5_xright, &
324 : Profile_Panels5_ybot, &
325 : Profile_Panels5_ytop, &
326 : Profile_Panels5_txt_scale, &
327 : prev_Profile_Panels5_win_width, &
328 : prev_Profile_Panels5_win_ratio, &
329 : Profile_Panels5_file_width, &
330 : Profile_Panels5_file_aspect_ratio, &
331 : prev_Profile_Panels5_file_width, &
332 : prev_Profile_Panels5_file_ratio, &
333 : Profile_Panels5_num_panels, &
334 : Profile_Panels5_yaxis_name, &
335 : Profile_Panels5_other_yaxis_name, &
336 : Profile_Panels5_yaxis_reversed, &
337 : Profile_Panels5_other_yaxis_reversed, &
338 : Profile_Panels5_yaxis_log, &
339 : Profile_Panels5_other_yaxis_log, &
340 : Profile_Panels5_same_yaxis_range, &
341 : Profile_Panels5_ymin, &
342 : Profile_Panels5_other_ymin, &
343 : Profile_Panels5_ymax, &
344 : Profile_Panels5_other_ymax, &
345 : Profile_Panels5_ycenter, &
346 : Profile_Panels5_other_ycenter, &
347 : Profile_Panels5_ymargin, &
348 : Profile_Panels5_other_ymargin, &
349 : Profile_Panels5_dymin, &
350 : Profile_Panels5_other_dymin, &
351 : Profile_Panels5_show_grid, &
352 : Profile_Panels5_use_decorator, &
353 :
354 :
355 : Profile_Panels6_win_flag, &
356 : Profile_Panels6_file_flag, &
357 : do_Profile_Panels6_win, &
358 : do_Profile_Panels6_file, &
359 : id_Profile_Panels6_win, &
360 : id_Profile_Panels6_file, &
361 : Profile_Panels6_file_interval, &
362 : Profile_Panels6_file_dir, &
363 : Profile_Panels6_file_prefix, &
364 : Profile_Panels6_xaxis_reversed, &
365 : Profile_Panels6_xaxis_name, &
366 : Profile_Panels6_title, &
367 : Profile_Panels6_xmin, &
368 : Profile_Panels6_xmax, &
369 : Profile_Panels6_xmargin, &
370 : Profile_Panels6_show_mix_regions_on_xaxis, &
371 : Profile_Panels6_win_width, &
372 : Profile_Panels6_win_aspect_ratio, &
373 : Profile_Panels6_xleft, &
374 : Profile_Panels6_xright, &
375 : Profile_Panels6_ybot, &
376 : Profile_Panels6_ytop, &
377 : Profile_Panels6_txt_scale, &
378 : prev_Profile_Panels6_win_width, &
379 : prev_Profile_Panels6_win_ratio, &
380 : Profile_Panels6_file_width, &
381 : Profile_Panels6_file_aspect_ratio, &
382 : prev_Profile_Panels6_file_width, &
383 : prev_Profile_Panels6_file_ratio, &
384 : Profile_Panels6_num_panels, &
385 : Profile_Panels6_yaxis_name, &
386 : Profile_Panels6_other_yaxis_name, &
387 : Profile_Panels6_yaxis_reversed, &
388 : Profile_Panels6_other_yaxis_reversed, &
389 : Profile_Panels6_yaxis_log, &
390 : Profile_Panels6_other_yaxis_log, &
391 : Profile_Panels6_same_yaxis_range, &
392 : Profile_Panels6_ymin, &
393 : Profile_Panels6_other_ymin, &
394 : Profile_Panels6_ymax, &
395 : Profile_Panels6_other_ymax, &
396 : Profile_Panels6_ycenter, &
397 : Profile_Panels6_other_ycenter, &
398 : Profile_Panels6_ymargin, &
399 : Profile_Panels6_other_ymargin, &
400 : Profile_Panels6_dymin, &
401 : Profile_Panels6_other_dymin, &
402 : Profile_Panels6_show_grid, &
403 : Profile_Panels6_use_decorator, &
404 :
405 :
406 : Profile_Panels7_win_flag, &
407 : Profile_Panels7_file_flag, &
408 : do_Profile_Panels7_win, &
409 : do_Profile_Panels7_file, &
410 : id_Profile_Panels7_win, &
411 : id_Profile_Panels7_file, &
412 : Profile_Panels7_file_interval, &
413 : Profile_Panels7_file_dir, &
414 : Profile_Panels7_file_prefix, &
415 : Profile_Panels7_xaxis_reversed, &
416 : Profile_Panels7_xaxis_name, &
417 : Profile_Panels7_title, &
418 : Profile_Panels7_xmin, &
419 : Profile_Panels7_xmax, &
420 : Profile_Panels7_xmargin, &
421 : Profile_Panels7_show_mix_regions_on_xaxis, &
422 : Profile_Panels7_win_width, &
423 : Profile_Panels7_win_aspect_ratio, &
424 : Profile_Panels7_xleft, &
425 : Profile_Panels7_xright, &
426 : Profile_Panels7_ybot, &
427 : Profile_Panels7_ytop, &
428 : Profile_Panels7_txt_scale, &
429 : prev_Profile_Panels7_win_width, &
430 : prev_Profile_Panels7_win_ratio, &
431 : Profile_Panels7_file_width, &
432 : Profile_Panels7_file_aspect_ratio, &
433 : prev_Profile_Panels7_file_width, &
434 : prev_Profile_Panels7_file_ratio, &
435 : Profile_Panels7_num_panels, &
436 : Profile_Panels7_yaxis_name, &
437 : Profile_Panels7_other_yaxis_name, &
438 : Profile_Panels7_yaxis_reversed, &
439 : Profile_Panels7_other_yaxis_reversed, &
440 : Profile_Panels7_yaxis_log, &
441 : Profile_Panels7_other_yaxis_log, &
442 : Profile_Panels7_same_yaxis_range, &
443 : Profile_Panels7_ymin, &
444 : Profile_Panels7_other_ymin, &
445 : Profile_Panels7_ymax, &
446 : Profile_Panels7_other_ymax, &
447 : Profile_Panels7_ycenter, &
448 : Profile_Panels7_other_ycenter, &
449 : Profile_Panels7_ymargin, &
450 : Profile_Panels7_other_ymargin, &
451 : Profile_Panels7_dymin, &
452 : Profile_Panels7_other_dymin, &
453 : Profile_Panels7_show_grid, &
454 : Profile_Panels7_use_decorator, &
455 :
456 :
457 : Profile_Panels8_win_flag, &
458 : Profile_Panels8_file_flag, &
459 : do_Profile_Panels8_win, &
460 : do_Profile_Panels8_file, &
461 : id_Profile_Panels8_win, &
462 : id_Profile_Panels8_file, &
463 : Profile_Panels8_file_interval, &
464 : Profile_Panels8_file_dir, &
465 : Profile_Panels8_file_prefix, &
466 : Profile_Panels8_xaxis_reversed, &
467 : Profile_Panels8_xaxis_name, &
468 : Profile_Panels8_title, &
469 : Profile_Panels8_xmin, &
470 : Profile_Panels8_xmax, &
471 : Profile_Panels8_xmargin, &
472 : Profile_Panels8_show_mix_regions_on_xaxis, &
473 : Profile_Panels8_win_width, &
474 : Profile_Panels8_win_aspect_ratio, &
475 : Profile_Panels8_xleft, &
476 : Profile_Panels8_xright, &
477 : Profile_Panels8_ybot, &
478 : Profile_Panels8_ytop, &
479 : Profile_Panels8_txt_scale, &
480 : prev_Profile_Panels8_win_width, &
481 : prev_Profile_Panels8_win_ratio, &
482 : Profile_Panels8_file_width, &
483 : Profile_Panels8_file_aspect_ratio, &
484 : prev_Profile_Panels8_file_width, &
485 : prev_Profile_Panels8_file_ratio, &
486 : Profile_Panels8_num_panels, &
487 : Profile_Panels8_yaxis_name, &
488 : Profile_Panels8_other_yaxis_name, &
489 : Profile_Panels8_yaxis_reversed, &
490 : Profile_Panels8_other_yaxis_reversed, &
491 : Profile_Panels8_yaxis_log, &
492 : Profile_Panels8_other_yaxis_log, &
493 : Profile_Panels8_same_yaxis_range, &
494 : Profile_Panels8_ymin, &
495 : Profile_Panels8_other_ymin, &
496 : Profile_Panels8_ymax, &
497 : Profile_Panels8_other_ymax, &
498 : Profile_Panels8_ycenter, &
499 : Profile_Panels8_other_ycenter, &
500 : Profile_Panels8_ymargin, &
501 : Profile_Panels8_other_ymargin, &
502 : Profile_Panels8_dymin, &
503 : Profile_Panels8_other_dymin, &
504 : Profile_Panels8_show_grid, &
505 : Profile_Panels8_use_decorator, &
506 :
507 :
508 : Profile_Panels9_win_flag, &
509 : Profile_Panels9_file_flag, &
510 : do_Profile_Panels9_win, &
511 : do_Profile_Panels9_file, &
512 : id_Profile_Panels9_win, &
513 : id_Profile_Panels9_file, &
514 : Profile_Panels9_file_interval, &
515 : Profile_Panels9_file_dir, &
516 : Profile_Panels9_file_prefix, &
517 : Profile_Panels9_xaxis_reversed, &
518 : Profile_Panels9_xaxis_name, &
519 : Profile_Panels9_title, &
520 : Profile_Panels9_xmin, &
521 : Profile_Panels9_xmax, &
522 : Profile_Panels9_xmargin, &
523 : Profile_Panels9_show_mix_regions_on_xaxis, &
524 : Profile_Panels9_win_width, &
525 : Profile_Panels9_win_aspect_ratio, &
526 : Profile_Panels9_xleft, &
527 : Profile_Panels9_xright, &
528 : Profile_Panels9_ybot, &
529 : Profile_Panels9_ytop, &
530 : Profile_Panels9_txt_scale, &
531 : prev_Profile_Panels9_win_width, &
532 : prev_Profile_Panels9_win_ratio, &
533 : Profile_Panels9_file_width, &
534 : Profile_Panels9_file_aspect_ratio, &
535 : prev_Profile_Panels9_file_width, &
536 : prev_Profile_Panels9_file_ratio, &
537 : Profile_Panels9_num_panels, &
538 : Profile_Panels9_yaxis_name, &
539 : Profile_Panels9_other_yaxis_name, &
540 : Profile_Panels9_yaxis_reversed, &
541 : Profile_Panels9_other_yaxis_reversed, &
542 : Profile_Panels9_yaxis_log, &
543 : Profile_Panels9_other_yaxis_log, &
544 : Profile_Panels9_same_yaxis_range, &
545 : Profile_Panels9_ymin, &
546 : Profile_Panels9_other_ymin, &
547 : Profile_Panels9_ymax, &
548 : Profile_Panels9_other_ymax, &
549 : Profile_Panels9_ycenter, &
550 : Profile_Panels9_other_ycenter, &
551 : Profile_Panels9_ymargin, &
552 : Profile_Panels9_other_ymargin, &
553 : Profile_Panels9_dymin, &
554 : Profile_Panels9_other_dymin, &
555 : Profile_Panels9_show_grid, &
556 : Profile_Panels9_use_decorator, &
557 :
558 :
559 : Text_Summary1_win_flag, &
560 : Text_Summary1_file_flag, &
561 : Text_Summary1_file_interval, &
562 : Text_Summary1_file_dir, &
563 : Text_Summary1_file_prefix, &
564 : Text_Summary1_num_cols, Text_Summary1_num_rows, Text_Summary1_name, &
565 : Text_Summary1_win_width, &
566 : Text_Summary1_win_aspect_ratio, &
567 : Text_Summary1_file_width, &
568 : Text_Summary1_file_aspect_ratio, &
569 : Text_Summary1_title, Text_Summary1_xleft, Text_Summary1_xright, &
570 : Text_Summary1_ybot, Text_Summary1_ytop, Text_Summary1_txt_scale, Text_Summary1_dxval, &
571 :
572 : Text_Summary2_win_flag, &
573 : Text_Summary2_file_flag, &
574 : Text_Summary2_file_interval, &
575 : Text_Summary2_file_dir, &
576 : Text_Summary2_file_prefix, &
577 : Text_Summary2_num_cols, Text_Summary2_num_rows, Text_Summary2_name, &
578 : Text_Summary2_win_width, &
579 : Text_Summary2_win_aspect_ratio, &
580 : Text_Summary2_file_width, &
581 : Text_Summary2_file_aspect_ratio, &
582 : Text_Summary2_title, Text_Summary2_xleft, Text_Summary2_xright, &
583 : Text_Summary2_ybot, Text_Summary2_ytop, Text_Summary2_txt_scale, Text_Summary2_dxval, &
584 :
585 : Text_Summary3_win_flag, &
586 : Text_Summary3_file_flag, &
587 : Text_Summary3_file_interval, &
588 : Text_Summary3_file_dir, &
589 : Text_Summary3_file_prefix, &
590 : Text_Summary3_num_cols, Text_Summary3_num_rows, Text_Summary3_name, &
591 : Text_Summary3_win_width, &
592 : Text_Summary3_win_aspect_ratio, &
593 : Text_Summary3_file_width, &
594 : Text_Summary3_file_aspect_ratio, &
595 : Text_Summary3_title, Text_Summary3_xleft, Text_Summary3_xright, &
596 : Text_Summary3_ybot, Text_Summary3_ytop, Text_Summary3_txt_scale, Text_Summary3_dxval, &
597 :
598 : Text_Summary4_win_flag, &
599 : Text_Summary4_file_flag, &
600 : Text_Summary4_file_interval, &
601 : Text_Summary4_file_dir, &
602 : Text_Summary4_file_prefix, &
603 : Text_Summary4_num_cols, Text_Summary4_num_rows, Text_Summary4_name, &
604 : Text_Summary4_win_width, &
605 : Text_Summary4_win_aspect_ratio, &
606 : Text_Summary4_file_width, &
607 : Text_Summary4_file_aspect_ratio, &
608 : Text_Summary4_title, Text_Summary4_xleft, Text_Summary4_xright, &
609 : Text_Summary4_ybot, Text_Summary4_ytop, Text_Summary4_txt_scale, Text_Summary4_dxval, &
610 :
611 : Text_Summary5_win_flag, &
612 : Text_Summary5_file_flag, &
613 : Text_Summary5_file_interval, &
614 : Text_Summary5_file_dir, &
615 : Text_Summary5_file_prefix, &
616 : Text_Summary5_num_cols, Text_Summary5_num_rows, Text_Summary5_name, &
617 : Text_Summary5_win_width, &
618 : Text_Summary5_win_aspect_ratio, &
619 : Text_Summary5_file_width, &
620 : Text_Summary5_file_aspect_ratio, &
621 : Text_Summary5_title, Text_Summary5_xleft, Text_Summary5_xright, &
622 : Text_Summary5_ybot, Text_Summary5_ytop, Text_Summary5_txt_scale, Text_Summary5_dxval, &
623 :
624 : Text_Summary6_win_flag, &
625 : Text_Summary6_file_flag, &
626 : Text_Summary6_file_interval, &
627 : Text_Summary6_file_dir, &
628 : Text_Summary6_file_prefix, &
629 : Text_Summary6_num_cols, Text_Summary6_num_rows, Text_Summary6_name, &
630 : Text_Summary6_win_width, &
631 : Text_Summary6_win_aspect_ratio, &
632 : Text_Summary6_file_width, &
633 : Text_Summary6_file_aspect_ratio, &
634 : Text_Summary6_title, Text_Summary6_xleft, Text_Summary6_xright, &
635 : Text_Summary6_ybot, Text_Summary6_ytop, Text_Summary6_txt_scale, Text_Summary6_dxval, &
636 :
637 : Text_Summary7_win_flag, &
638 : Text_Summary7_file_flag, &
639 : Text_Summary7_file_interval, &
640 : Text_Summary7_file_dir, &
641 : Text_Summary7_file_prefix, &
642 : Text_Summary7_num_cols, Text_Summary7_num_rows, Text_Summary7_name, &
643 : Text_Summary7_win_width, &
644 : Text_Summary7_win_aspect_ratio, &
645 : Text_Summary7_file_width, &
646 : Text_Summary7_file_aspect_ratio, &
647 : Text_Summary7_title, Text_Summary7_xleft, Text_Summary7_xright, &
648 : Text_Summary7_ybot, Text_Summary7_ytop, Text_Summary7_txt_scale, Text_Summary7_dxval, &
649 :
650 : Text_Summary8_win_flag, &
651 : Text_Summary8_file_flag, &
652 : Text_Summary8_file_interval, &
653 : Text_Summary8_file_dir, &
654 : Text_Summary8_file_prefix, &
655 : Text_Summary8_num_cols, Text_Summary8_num_rows, Text_Summary8_name, &
656 : Text_Summary8_win_width, &
657 : Text_Summary8_win_aspect_ratio, &
658 : Text_Summary8_file_width, &
659 : Text_Summary8_file_aspect_ratio, &
660 : Text_Summary8_title, Text_Summary8_xleft, Text_Summary8_xright, &
661 : Text_Summary8_ybot, Text_Summary8_ytop, Text_Summary8_txt_scale, Text_Summary8_dxval, &
662 :
663 : Text_Summary9_win_flag, &
664 : Text_Summary9_file_flag, &
665 : Text_Summary9_file_interval, &
666 : Text_Summary9_file_dir, &
667 : Text_Summary9_file_prefix, &
668 : Text_Summary9_num_cols, Text_Summary9_num_rows, Text_Summary9_name, &
669 : Text_Summary9_win_width, &
670 : Text_Summary9_win_aspect_ratio, &
671 : Text_Summary9_file_width, &
672 : Text_Summary9_file_aspect_ratio, &
673 : Text_Summary9_title, Text_Summary9_xleft, Text_Summary9_xright, &
674 : Text_Summary9_ybot, Text_Summary9_ytop, Text_Summary9_txt_scale, Text_Summary9_dxval, &
675 :
676 : logg_Teff_win_flag, &
677 : logg_Teff_file_flag, &
678 : show_logg_Teff_target_box, &
679 : logg_Teff_target_n_sigma, &
680 : logg_Teff_target_logg, &
681 : logg_Teff_target_logg_sigma, &
682 : logg_Teff_target_Teff, &
683 : logg_Teff_target_Teff_sigma, &
684 : logg_Teff_file_interval, &
685 : logg_Teff_step_min, &
686 : logg_Teff_step_max, &
687 : logg_Teff_file_dir, &
688 : logg_Teff_file_prefix, &
689 : show_logg_Teff_annotation1, &
690 : show_logg_Teff_annotation2, &
691 : show_logg_Teff_annotation3, &
692 : logg_Teff_fname, &
693 : logg_Teff_title, &
694 : logg_Teff_logg_min, &
695 : logg_Teff_logg_max, &
696 : logg_Teff_Teff_min, &
697 : logg_Teff_Teff_max, &
698 : logg_Teff_Teff_margin, &
699 : logg_Teff_logg_margin, &
700 : logg_Teff_dTeff_min, &
701 : logg_Teff_dlogg_min, &
702 : logg_Teff_win_width, &
703 : logg_Teff_xleft, &
704 : logg_Teff_xright, &
705 : logg_Teff_ybot, &
706 : logg_Teff_ytop, &
707 : logg_Teff_txt_scale, &
708 : logg_Teff_win_aspect_ratio, &
709 : logg_Teff_file_width, &
710 : logg_Teff_file_aspect_ratio, &
711 : logg_Teff_use_decorator, &
712 :
713 : logL_Teff_win_flag, &
714 : logL_Teff_file_flag, &
715 : show_logL_Teff_target_box, &
716 : logL_Teff_target_n_sigma, &
717 : logL_Teff_target_logL, &
718 : logL_Teff_target_logL_sigma, &
719 : logL_Teff_target_Teff, &
720 : logL_Teff_target_Teff_sigma, &
721 : logL_Teff_file_interval, &
722 : logL_Teff_step_min, &
723 : logL_Teff_step_max, &
724 : logL_Teff_file_dir, &
725 : logL_Teff_file_prefix, &
726 : show_logL_Teff_annotation1, &
727 : show_logL_Teff_annotation2, &
728 : show_logL_Teff_annotation3, &
729 : logL_Teff_fname, &
730 : logL_Teff_title, &
731 : logL_Teff_logL_min, &
732 : logL_Teff_logL_max, &
733 : logL_Teff_Teff_min, &
734 : logL_Teff_Teff_max, &
735 : logL_Teff_Teff_margin, &
736 : logL_Teff_logL_margin, &
737 : logL_Teff_dTeff_min, &
738 : logL_Teff_dlogL_min, &
739 : logL_Teff_win_width, &
740 : logL_Teff_xleft, &
741 : logL_Teff_xright, &
742 : logL_Teff_ybot, &
743 : logL_Teff_ytop, &
744 : logL_Teff_txt_scale, &
745 : logL_Teff_win_aspect_ratio, &
746 : logL_Teff_file_width, &
747 : logL_Teff_file_aspect_ratio, &
748 : logL_Teff_use_decorator, &
749 :
750 : logL_R_win_flag, &
751 : logL_R_file_flag, &
752 : show_logL_R_target_box, &
753 : logL_R_target_n_sigma, &
754 : logL_R_target_logL, &
755 : logL_R_target_logL_sigma, &
756 : logL_R_target_R, &
757 : logL_R_target_R_sigma, &
758 : logL_R_file_interval, &
759 : logL_R_step_min, &
760 : logL_R_step_max, &
761 : logL_R_file_dir, &
762 : logL_R_file_prefix, &
763 : show_logL_R_annotation1, &
764 : show_logL_R_annotation2, &
765 : show_logL_R_annotation3, &
766 : logL_R_fname, &
767 : logL_R_title, &
768 : show_logL_photosphere_r, &
769 : logL_R_logL_min, &
770 : logL_R_logL_max, &
771 : logL_R_R_min, &
772 : logL_R_R_max, &
773 : logL_R_R_margin, &
774 : logL_R_logL_margin, &
775 : logL_R_dR_min, &
776 : logL_R_dlogL_min, &
777 : logL_R_win_width, &
778 : logL_R_xleft, &
779 : logL_R_xright, &
780 : logL_R_ybot, &
781 : logL_R_ytop, &
782 : logL_R_txt_scale, &
783 : logL_R_win_aspect_ratio, &
784 : logL_R_file_width, &
785 : logL_R_file_aspect_ratio, &
786 : logL_R_use_decorator, &
787 :
788 : logL_v_win_flag, &
789 : logL_v_file_flag, &
790 : show_logL_v_target_box, &
791 : logL_v_target_n_sigma, &
792 : logL_v_target_logL, &
793 : logL_v_target_logL_sigma, &
794 : logL_v_target_v, &
795 : logL_v_target_v_sigma, &
796 : logL_v_file_interval, &
797 : logL_v_step_min, &
798 : logL_v_step_max, &
799 : logL_v_file_dir, &
800 : logL_v_file_prefix, &
801 : show_logL_v_annotation1, &
802 : show_logL_v_annotation2, &
803 : show_logL_v_annotation3, &
804 : logL_v_fname, &
805 : logL_v_title, &
806 : show_logL_photosphere_v, &
807 : logL_v_logL_min, &
808 : logL_v_logL_max, &
809 : logL_v_v_min, &
810 : logL_v_v_max, &
811 : logL_v_v_margin, &
812 : logL_v_logL_margin, &
813 : logL_v_dv_min, &
814 : logL_v_dlogL_min, &
815 : logL_v_win_width, &
816 : logL_v_xleft, &
817 : logL_v_xright, &
818 : logL_v_ybot, &
819 : logL_v_ytop, &
820 : logL_v_txt_scale, &
821 : logL_v_win_aspect_ratio, &
822 : logL_v_file_width, &
823 : logL_v_file_aspect_ratio, &
824 : logL_v_use_decorator, &
825 :
826 : L_Teff_win_flag, &
827 : L_Teff_file_flag, &
828 : show_L_Teff_target_box, &
829 : L_Teff_target_n_sigma, &
830 : L_Teff_target_L, &
831 : L_Teff_target_L_sigma, &
832 : L_Teff_target_Teff, &
833 : L_Teff_target_Teff_sigma, &
834 : L_Teff_file_interval, &
835 : L_Teff_step_min, &
836 : L_Teff_step_max, &
837 : L_Teff_file_dir, &
838 : L_Teff_file_prefix, &
839 : show_L_Teff_annotation1, &
840 : show_L_Teff_annotation2, &
841 : show_L_Teff_annotation3, &
842 : L_Teff_fname, &
843 : L_Teff_title, &
844 : L_Teff_L_min, &
845 : L_Teff_L_max, &
846 : L_Teff_Teff_min, &
847 : L_Teff_Teff_max, &
848 : L_Teff_Teff_margin, &
849 : L_Teff_L_margin, &
850 : L_Teff_dTeff_min, &
851 : L_Teff_dL_min, &
852 : L_Teff_win_width, &
853 : L_Teff_xleft, &
854 : L_Teff_xright, &
855 : L_Teff_ybot, &
856 : L_Teff_ytop, &
857 : L_Teff_txt_scale, &
858 : L_Teff_win_aspect_ratio, &
859 : L_Teff_file_width, &
860 : L_Teff_file_aspect_ratio, &
861 : L_Teff_use_decorator, &
862 :
863 : L_v_win_flag, &
864 : L_v_file_flag, &
865 : show_L_v_target_box, &
866 : L_v_target_n_sigma, &
867 : L_v_target_L, &
868 : L_v_target_L_sigma, &
869 : L_v_target_v, &
870 : L_v_target_v_sigma, &
871 : L_v_file_interval, &
872 : L_v_step_min, &
873 : L_v_step_max, &
874 : L_v_file_dir, &
875 : L_v_file_prefix, &
876 : show_L_v_annotation1, &
877 : show_L_v_annotation2, &
878 : show_L_v_annotation3, &
879 : L_v_fname, &
880 : L_v_title, &
881 : L_v_L_min, &
882 : L_v_L_max, &
883 : L_v_v_min, &
884 : L_v_v_max, &
885 : L_v_v_margin, &
886 : L_v_L_margin, &
887 : L_v_dv_min, &
888 : L_v_dL_min, &
889 : L_v_win_width, &
890 : L_v_xleft, &
891 : L_v_xright, &
892 : L_v_ybot, &
893 : L_v_ytop, &
894 : L_v_txt_scale, &
895 : L_v_win_aspect_ratio, &
896 : L_v_file_width, &
897 : L_v_file_aspect_ratio, &
898 : L_V_use_decorator, &
899 :
900 : L_R_win_flag, &
901 : L_R_file_flag, &
902 : show_L_R_target_box, &
903 : L_R_target_n_sigma, &
904 : L_R_target_L, &
905 : L_R_target_L_sigma, &
906 : L_R_target_R, &
907 : L_R_target_R_sigma, &
908 : L_R_file_interval, &
909 : L_R_step_min, &
910 : L_R_step_max, &
911 : L_R_file_dir, &
912 : L_R_file_prefix, &
913 : show_L_R_annotation1, &
914 : show_L_R_annotation2, &
915 : show_L_R_annotation3, &
916 : L_R_fname, &
917 : L_R_title, &
918 : L_R_L_min, &
919 : L_R_L_max, &
920 : L_R_R_min, &
921 : L_R_R_max, &
922 : L_R_R_margin, &
923 : L_R_L_margin, &
924 : L_R_dR_min, &
925 : L_R_dL_min, &
926 : L_R_win_width, &
927 : L_R_xleft, &
928 : L_R_xright, &
929 : L_R_ybot, &
930 : L_R_ytop, &
931 : L_R_txt_scale, &
932 : L_R_win_aspect_ratio, &
933 : L_R_file_width, &
934 : L_R_file_aspect_ratio, &
935 : L_R_use_decorator, &
936 :
937 : R_Teff_win_flag, &
938 : R_Teff_file_flag, &
939 : show_R_Teff_target_box, &
940 : R_Teff_target_n_sigma, &
941 : R_Teff_target_R, &
942 : R_Teff_target_R_sigma, &
943 : R_Teff_target_Teff, &
944 : R_Teff_target_Teff_sigma, &
945 : R_Teff_file_interval, &
946 : R_Teff_step_min, &
947 : R_Teff_step_max, &
948 : R_Teff_file_dir, &
949 : R_Teff_file_prefix, &
950 : show_R_Teff_annotation1, &
951 : show_R_Teff_annotation2, &
952 : show_R_Teff_annotation3, &
953 : R_Teff_fname, &
954 : R_Teff_title, &
955 : R_Teff_R_min, &
956 : R_Teff_R_max, &
957 : R_Teff_Teff_min, &
958 : R_Teff_Teff_max, &
959 : R_Teff_Teff_margin, &
960 : R_Teff_R_margin, &
961 : R_Teff_dTeff_min, &
962 : R_Teff_dR_min, &
963 : R_Teff_win_width, &
964 : R_Teff_xleft, &
965 : R_Teff_xright, &
966 : R_Teff_ybot, &
967 : R_Teff_ytop, &
968 : R_Teff_txt_scale, &
969 : R_Teff_win_aspect_ratio, &
970 : R_Teff_file_width, &
971 : R_Teff_file_aspect_ratio, &
972 : R_Teff_use_decorator, &
973 :
974 : R_L_win_flag, &
975 : R_L_file_flag, &
976 : show_R_L_target_box, &
977 : R_L_target_n_sigma, &
978 : R_L_target_R, &
979 : R_L_target_R_sigma, &
980 : R_L_target_L, &
981 : R_L_target_L_sigma, &
982 : R_L_file_interval, &
983 : R_L_step_min, &
984 : R_L_step_max, &
985 : R_L_file_dir, &
986 : R_L_file_prefix, &
987 : show_R_L_annotation1, &
988 : show_R_L_annotation2, &
989 : show_R_L_annotation3, &
990 : R_L_fname, &
991 : R_L_title, &
992 : R_L_R_min, &
993 : R_L_R_max, &
994 : R_L_L_min, &
995 : R_L_L_max, &
996 : R_L_L_margin, &
997 : R_L_R_margin, &
998 : R_L_dL_min, &
999 : R_L_dR_min, &
1000 : R_L_win_width, &
1001 : R_L_xleft, &
1002 : R_L_xright, &
1003 : R_L_ybot, &
1004 : R_L_ytop, &
1005 : R_L_txt_scale, &
1006 : R_L_win_aspect_ratio, &
1007 : R_L_file_width, &
1008 : R_L_file_aspect_ratio, &
1009 : R_L_use_decorator, &
1010 :
1011 : logg_logT_win_flag, &
1012 : logg_logT_file_flag, &
1013 : show_logg_logT_target_box, &
1014 : logg_logT_target_n_sigma, &
1015 : logg_logT_target_logg, &
1016 : logg_logT_target_logg_sigma, &
1017 : logg_logT_target_logT, &
1018 : logg_logT_target_logT_sigma, &
1019 : logg_logT_file_interval, &
1020 : logg_logT_step_min, &
1021 : logg_logT_step_max, &
1022 : logg_logT_file_dir, &
1023 : logg_logT_file_prefix, &
1024 : show_logg_logT_annotation1, &
1025 : show_logg_logT_annotation2, &
1026 : show_logg_logT_annotation3, &
1027 : logg_logT_fname, &
1028 : logg_logT_logg_min, &
1029 : logg_logT_logg_max, &
1030 : logg_logT_logT_min, &
1031 : logg_logT_logT_max, &
1032 : logg_logT_logg_margin, &
1033 : logg_logT_logT_margin, &
1034 : logg_logT_dlogT_min, &
1035 : logg_logT_dlogg_min, &
1036 : logg_logT_win_width, &
1037 : logg_logT_win_aspect_ratio, &
1038 : logg_logT_file_width, &
1039 : logg_logT_file_aspect_ratio, &
1040 : logg_logT_xleft, &
1041 : logg_logT_xright, &
1042 : logg_logT_ybot, &
1043 : logg_logT_ytop, &
1044 : logg_logT_txt_scale, &
1045 : logg_logT_title, &
1046 : logg_logT_use_decorator, &
1047 :
1048 : HR_win_flag, &
1049 : HR_file_flag, &
1050 : HR_file_interval, &
1051 : HR_step_min, &
1052 : HR_step_max, &
1053 : show_HR_classical_instability_strip, &
1054 : show_HR_Mira_instability_region, &
1055 : show_HR_WD_instabilities, &
1056 : show_HR_target_box, &
1057 : HR_target_n_sigma, &
1058 : HR_target_logL, &
1059 : HR_target_logL_sigma, &
1060 : HR_target_logT, &
1061 : HR_target_logT_sigma, &
1062 : HR_file_dir, &
1063 : HR_file_prefix, &
1064 : show_HR_annotation1, &
1065 : show_HR_annotation2, &
1066 : show_HR_annotation3, &
1067 : HR_fname, &
1068 : HR_logT_min, &
1069 : HR_logT_max, &
1070 : HR_logL_min, &
1071 : HR_logL_max, &
1072 : HR_logL_margin, &
1073 : HR_logT_margin, &
1074 : HR_dlogT_min, &
1075 : HR_dlogL_min, &
1076 : HR_win_width, &
1077 : HR_win_aspect_ratio, &
1078 : HR_file_width, &
1079 : HR_file_aspect_ratio, &
1080 : HR_xleft, &
1081 : HR_xright, &
1082 : HR_ybot, &
1083 : HR_ytop, &
1084 : HR_txt_scale, &
1085 : HR_title, &
1086 : HR_use_decorator, &
1087 :
1088 : TRho_win_flag, &
1089 : TRho_file_flag, &
1090 : TRho_file_interval, &
1091 : TRho_step_max, &
1092 : TRho_step_min, &
1093 : TRho_file_dir, &
1094 : TRho_file_prefix, &
1095 : show_TRho_annotation1, &
1096 : show_TRho_annotation2, &
1097 : show_TRho_annotation3, &
1098 : show_TRho_degeneracy_line, &
1099 : TRho_fname, &
1100 : TRho_logT_min, &
1101 : TRho_logT_max, &
1102 : TRho_logRho_min, &
1103 : TRho_logRho_max, &
1104 : TRho_logT_margin, &
1105 : TRho_logRho_margin, &
1106 : TRho_logRho_dlogRho_min, &
1107 : TRho_logT_dlogT_min, &
1108 : TRho_win_width, &
1109 : TRho_win_aspect_ratio, &
1110 : TRho_file_width, &
1111 : TRho_file_aspect_ratio, &
1112 : TRho_xleft, &
1113 : TRho_xright, &
1114 : TRho_ybot, &
1115 : TRho_ytop, &
1116 : TRho_txt_scale, &
1117 : TRho_title, &
1118 : TRho_use_decorator, &
1119 :
1120 : TmaxRho_win_flag, &
1121 : TmaxRho_file_flag, &
1122 : TmaxRho_file_interval, &
1123 : TmaxRho_step_max, &
1124 : TmaxRho_step_min, &
1125 : TmaxRho_file_dir, &
1126 : TmaxRho_file_prefix, &
1127 : show_TmaxRho_annotation1, &
1128 : show_TmaxRho_annotation2, &
1129 : show_TmaxRho_annotation3, &
1130 : show_TmaxRho_degeneracy_line, &
1131 : TmaxRho_fname, &
1132 : TmaxRho_logT_min, &
1133 : TmaxRho_logT_max, &
1134 : TmaxRho_logRho_min, &
1135 : TmaxRho_logRho_max, &
1136 : TmaxRho_logT_margin, &
1137 : TmaxRho_logRho_margin, &
1138 : TmaxRho_logRho_dlogRho_min, &
1139 : TmaxRho_logT_dlogT_min, &
1140 : TmaxRho_win_width, &
1141 : TmaxRho_win_aspect_ratio, &
1142 : TmaxRho_file_width, &
1143 : TmaxRho_file_aspect_ratio, &
1144 : TmaxRho_xleft, &
1145 : TmaxRho_xright, &
1146 : TmaxRho_ybot, &
1147 : TmaxRho_ytop, &
1148 : TmaxRho_txt_scale, &
1149 : TmaxRho_title, &
1150 : TmaxRho_use_decorator, &
1151 :
1152 : History_Track1_win_flag, &
1153 : History_Track1_file_flag, &
1154 : History_Track1_file_interval, &
1155 : History_Track1_step_min, &
1156 : History_Track1_step_max, &
1157 : show_History_Track1_target_box, &
1158 : History_Track1_n_sigma, &
1159 : History_Track1_xtarget, &
1160 : History_Track1_xsigma, &
1161 : History_Track1_ytarget, &
1162 : History_Track1_ysigma, &
1163 : History_Track1_xname, &
1164 : History_Track1_xaxis_label, &
1165 : History_Track1_yname, &
1166 : History_Track1_yaxis_label, &
1167 : History_Track1_file_dir, &
1168 : History_Track1_file_prefix, &
1169 : show_History_Track1_annotation1, &
1170 : show_History_Track1_annotation2, &
1171 : show_History_Track1_annotation3, &
1172 : History_Track1_fname, &
1173 : History_Track1_reverse_xaxis, &
1174 : History_Track1_reverse_yaxis, &
1175 : History_Track1_log_xaxis, &
1176 : History_Track1_log_yaxis, &
1177 : History_Track1_xmin, &
1178 : History_Track1_xmax, &
1179 : History_Track1_ymin, &
1180 : History_Track1_ymax, &
1181 : History_Track1_xmargin, &
1182 : History_Track1_ymargin, &
1183 : History_Track1_dxmin, &
1184 : History_Track1_dymin, &
1185 : History_Track1_win_width, &
1186 : History_Track1_win_aspect_ratio, &
1187 : History_Track1_file_width, &
1188 : History_Track1_file_aspect_ratio, &
1189 : History_Track1_xleft, &
1190 : History_Track1_xright, &
1191 : History_Track1_ybot, &
1192 : History_Track1_ytop, &
1193 : History_Track1_txt_scale, &
1194 : History_Track1_title, &
1195 : History_Track1_use_decorator, &
1196 :
1197 : History_Track2_win_flag, &
1198 : History_Track2_file_flag, &
1199 : History_Track2_file_interval, &
1200 : History_Track2_step_min, &
1201 : History_Track2_step_max, &
1202 : show_History_Track2_target_box, &
1203 : History_Track2_n_sigma, &
1204 : History_Track2_xtarget, &
1205 : History_Track2_xsigma, &
1206 : History_Track2_ytarget, &
1207 : History_Track2_ysigma, &
1208 : History_Track2_xname, &
1209 : History_Track2_xaxis_label, &
1210 : History_Track2_yname, &
1211 : History_Track2_yaxis_label, &
1212 : History_Track2_file_dir, &
1213 : History_Track2_file_prefix, &
1214 : show_History_Track2_annotation1, &
1215 : show_History_Track2_annotation2, &
1216 : show_History_Track2_annotation3, &
1217 : History_Track2_fname, &
1218 : History_Track2_reverse_xaxis, &
1219 : History_Track2_reverse_yaxis, &
1220 : History_Track2_log_xaxis, &
1221 : History_Track2_log_yaxis, &
1222 : History_Track2_xmin, &
1223 : History_Track2_xmax, &
1224 : History_Track2_ymin, &
1225 : History_Track2_ymax, &
1226 : History_Track2_xmargin, &
1227 : History_Track2_ymargin, &
1228 : History_Track2_dxmin, &
1229 : History_Track2_dymin, &
1230 : History_Track2_win_width, &
1231 : History_Track2_win_aspect_ratio, &
1232 : History_Track2_file_width, &
1233 : History_Track2_file_aspect_ratio, &
1234 : History_Track2_xleft, &
1235 : History_Track2_xright, &
1236 : History_Track2_ybot, &
1237 : History_Track2_ytop, &
1238 : History_Track2_txt_scale, &
1239 : History_Track2_title, &
1240 : History_Track2_use_decorator, &
1241 :
1242 : History_Track3_win_flag, &
1243 : History_Track3_file_flag, &
1244 : History_Track3_file_interval, &
1245 : History_Track3_step_min, &
1246 : History_Track3_step_max, &
1247 : show_History_Track3_target_box, &
1248 : History_Track3_n_sigma, &
1249 : History_Track3_xtarget, &
1250 : History_Track3_xsigma, &
1251 : History_Track3_ytarget, &
1252 : History_Track3_ysigma, &
1253 : History_Track3_xname, &
1254 : History_Track3_xaxis_label, &
1255 : History_Track3_yname, &
1256 : History_Track3_yaxis_label, &
1257 : History_Track3_file_dir, &
1258 : History_Track3_file_prefix, &
1259 : show_History_Track3_annotation1, &
1260 : show_History_Track3_annotation2, &
1261 : show_History_Track3_annotation3, &
1262 : History_Track3_fname, &
1263 : History_Track3_reverse_xaxis, &
1264 : History_Track3_reverse_yaxis, &
1265 : History_Track3_log_xaxis, &
1266 : History_Track3_log_yaxis, &
1267 : History_Track3_xmin, &
1268 : History_Track3_xmax, &
1269 : History_Track3_ymin, &
1270 : History_Track3_ymax, &
1271 : History_Track3_xmargin, &
1272 : History_Track3_ymargin, &
1273 : History_Track3_dxmin, &
1274 : History_Track3_dymin, &
1275 : History_Track3_win_width, &
1276 : History_Track3_win_aspect_ratio, &
1277 : History_Track3_file_width, &
1278 : History_Track3_file_aspect_ratio, &
1279 : History_Track3_xleft, &
1280 : History_Track3_xright, &
1281 : History_Track3_ybot, &
1282 : History_Track3_ytop, &
1283 : History_Track3_txt_scale, &
1284 : History_Track3_title, &
1285 : History_Track3_use_decorator, &
1286 :
1287 : History_Track4_win_flag, &
1288 : History_Track4_file_flag, &
1289 : History_Track4_file_interval, &
1290 : History_Track4_step_min, &
1291 : History_Track4_step_max, &
1292 : show_History_Track4_target_box, &
1293 : History_Track4_n_sigma, &
1294 : History_Track4_xtarget, &
1295 : History_Track4_xsigma, &
1296 : History_Track4_ytarget, &
1297 : History_Track4_ysigma, &
1298 : History_Track4_xname, &
1299 : History_Track4_xaxis_label, &
1300 : History_Track4_yname, &
1301 : History_Track4_yaxis_label, &
1302 : History_Track4_file_dir, &
1303 : History_Track4_file_prefix, &
1304 : show_History_Track4_annotation1, &
1305 : show_History_Track4_annotation2, &
1306 : show_History_Track4_annotation3, &
1307 : History_Track4_fname, &
1308 : History_Track4_reverse_xaxis, &
1309 : History_Track4_reverse_yaxis, &
1310 : History_Track4_log_xaxis, &
1311 : History_Track4_log_yaxis, &
1312 : History_Track4_xmin, &
1313 : History_Track4_xmax, &
1314 : History_Track4_ymin, &
1315 : History_Track4_ymax, &
1316 : History_Track4_xmargin, &
1317 : History_Track4_ymargin, &
1318 : History_Track4_dxmin, &
1319 : History_Track4_dymin, &
1320 : History_Track4_win_width, &
1321 : History_Track4_win_aspect_ratio, &
1322 : History_Track4_file_width, &
1323 : History_Track4_file_aspect_ratio, &
1324 : History_Track4_xleft, &
1325 : History_Track4_xright, &
1326 : History_Track4_ybot, &
1327 : History_Track4_ytop, &
1328 : History_Track4_txt_scale, &
1329 : History_Track4_title, &
1330 : History_Track4_use_decorator, &
1331 :
1332 : History_Track5_win_flag, &
1333 : History_Track5_file_flag, &
1334 : History_Track5_file_interval, &
1335 : History_Track5_step_min, &
1336 : History_Track5_step_max, &
1337 : show_History_Track5_target_box, &
1338 : History_Track5_n_sigma, &
1339 : History_Track5_xtarget, &
1340 : History_Track5_xsigma, &
1341 : History_Track5_ytarget, &
1342 : History_Track5_ysigma, &
1343 : History_Track5_xname, &
1344 : History_Track5_xaxis_label, &
1345 : History_Track5_yname, &
1346 : History_Track5_yaxis_label, &
1347 : History_Track5_file_dir, &
1348 : History_Track5_file_prefix, &
1349 : show_History_Track5_annotation1, &
1350 : show_History_Track5_annotation2, &
1351 : show_History_Track5_annotation3, &
1352 : History_Track5_fname, &
1353 : History_Track5_reverse_xaxis, &
1354 : History_Track5_reverse_yaxis, &
1355 : History_Track5_log_xaxis, &
1356 : History_Track5_log_yaxis, &
1357 : History_Track5_xmin, &
1358 : History_Track5_xmax, &
1359 : History_Track5_ymin, &
1360 : History_Track5_ymax, &
1361 : History_Track5_xmargin, &
1362 : History_Track5_ymargin, &
1363 : History_Track5_dxmin, &
1364 : History_Track5_dymin, &
1365 : History_Track5_win_width, &
1366 : History_Track5_win_aspect_ratio, &
1367 : History_Track5_file_width, &
1368 : History_Track5_file_aspect_ratio, &
1369 : History_Track5_xleft, &
1370 : History_Track5_xright, &
1371 : History_Track5_ybot, &
1372 : History_Track5_ytop, &
1373 : History_Track5_txt_scale, &
1374 : History_Track5_title, &
1375 : History_Track5_use_decorator, &
1376 :
1377 : History_Track6_win_flag, &
1378 : History_Track6_file_flag, &
1379 : History_Track6_file_interval, &
1380 : History_Track6_step_min, &
1381 : History_Track6_step_max, &
1382 : show_History_Track6_target_box, &
1383 : History_Track6_n_sigma, &
1384 : History_Track6_xtarget, &
1385 : History_Track6_xsigma, &
1386 : History_Track6_ytarget, &
1387 : History_Track6_ysigma, &
1388 : History_Track6_xname, &
1389 : History_Track6_xaxis_label, &
1390 : History_Track6_yname, &
1391 : History_Track6_yaxis_label, &
1392 : History_Track6_file_dir, &
1393 : History_Track6_file_prefix, &
1394 : show_History_Track6_annotation1, &
1395 : show_History_Track6_annotation2, &
1396 : show_History_Track6_annotation3, &
1397 : History_Track6_fname, &
1398 : History_Track6_reverse_xaxis, &
1399 : History_Track6_reverse_yaxis, &
1400 : History_Track6_log_xaxis, &
1401 : History_Track6_log_yaxis, &
1402 : History_Track6_xmin, &
1403 : History_Track6_xmax, &
1404 : History_Track6_ymin, &
1405 : History_Track6_ymax, &
1406 : History_Track6_xmargin, &
1407 : History_Track6_ymargin, &
1408 : History_Track6_dxmin, &
1409 : History_Track6_dymin, &
1410 : History_Track6_win_width, &
1411 : History_Track6_win_aspect_ratio, &
1412 : History_Track6_file_width, &
1413 : History_Track6_file_aspect_ratio, &
1414 : History_Track6_xleft, &
1415 : History_Track6_xright, &
1416 : History_Track6_ybot, &
1417 : History_Track6_ytop, &
1418 : History_Track6_txt_scale, &
1419 : History_Track6_title, &
1420 : History_Track6_use_decorator, &
1421 :
1422 : History_Track7_win_flag, &
1423 : History_Track7_file_flag, &
1424 : History_Track7_file_interval, &
1425 : History_Track7_step_min, &
1426 : History_Track7_step_max, &
1427 : show_History_Track7_target_box, &
1428 : History_Track7_n_sigma, &
1429 : History_Track7_xtarget, &
1430 : History_Track7_xsigma, &
1431 : History_Track7_ytarget, &
1432 : History_Track7_ysigma, &
1433 : History_Track7_xname, &
1434 : History_Track7_xaxis_label, &
1435 : History_Track7_yname, &
1436 : History_Track7_yaxis_label, &
1437 : History_Track7_file_dir, &
1438 : History_Track7_file_prefix, &
1439 : show_History_Track7_annotation1, &
1440 : show_History_Track7_annotation2, &
1441 : show_History_Track7_annotation3, &
1442 : History_Track7_fname, &
1443 : History_Track7_reverse_xaxis, &
1444 : History_Track7_reverse_yaxis, &
1445 : History_Track7_log_xaxis, &
1446 : History_Track7_log_yaxis, &
1447 : History_Track7_xmin, &
1448 : History_Track7_xmax, &
1449 : History_Track7_ymin, &
1450 : History_Track7_ymax, &
1451 : History_Track7_xmargin, &
1452 : History_Track7_ymargin, &
1453 : History_Track7_dxmin, &
1454 : History_Track7_dymin, &
1455 : History_Track7_win_width, &
1456 : History_Track7_win_aspect_ratio, &
1457 : History_Track7_file_width, &
1458 : History_Track7_file_aspect_ratio, &
1459 : History_Track7_xleft, &
1460 : History_Track7_xright, &
1461 : History_Track7_ybot, &
1462 : History_Track7_ytop, &
1463 : History_Track7_txt_scale, &
1464 : History_Track7_title, &
1465 : History_Track7_use_decorator, &
1466 :
1467 : History_Track8_win_flag, &
1468 : History_Track8_file_flag, &
1469 : History_Track8_file_interval, &
1470 : History_Track8_step_min, &
1471 : History_Track8_step_max, &
1472 : show_History_Track8_target_box, &
1473 : History_Track8_n_sigma, &
1474 : History_Track8_xtarget, &
1475 : History_Track8_xsigma, &
1476 : History_Track8_ytarget, &
1477 : History_Track8_ysigma, &
1478 : History_Track8_xname, &
1479 : History_Track8_xaxis_label, &
1480 : History_Track8_yname, &
1481 : History_Track8_yaxis_label, &
1482 : History_Track8_file_dir, &
1483 : History_Track8_file_prefix, &
1484 : show_History_Track8_annotation1, &
1485 : show_History_Track8_annotation2, &
1486 : show_History_Track8_annotation3, &
1487 : History_Track8_fname, &
1488 : History_Track8_reverse_xaxis, &
1489 : History_Track8_reverse_yaxis, &
1490 : History_Track8_log_xaxis, &
1491 : History_Track8_log_yaxis, &
1492 : History_Track8_xmin, &
1493 : History_Track8_xmax, &
1494 : History_Track8_ymin, &
1495 : History_Track8_ymax, &
1496 : History_Track8_xmargin, &
1497 : History_Track8_ymargin, &
1498 : History_Track8_dxmin, &
1499 : History_Track8_dymin, &
1500 : History_Track8_win_width, &
1501 : History_Track8_win_aspect_ratio, &
1502 : History_Track8_file_width, &
1503 : History_Track8_file_aspect_ratio, &
1504 : History_Track8_xleft, &
1505 : History_Track8_xright, &
1506 : History_Track8_ybot, &
1507 : History_Track8_ytop, &
1508 : History_Track8_txt_scale, &
1509 : History_Track8_title, &
1510 : History_Track8_use_decorator, &
1511 :
1512 : History_Track9_win_flag, &
1513 : History_Track9_file_flag, &
1514 : History_Track9_file_interval, &
1515 : History_Track9_step_min, &
1516 : History_Track9_step_max, &
1517 : show_History_Track9_target_box, &
1518 : History_Track9_n_sigma, &
1519 : History_Track9_xtarget, &
1520 : History_Track9_xsigma, &
1521 : History_Track9_ytarget, &
1522 : History_Track9_ysigma, &
1523 : History_Track9_xname, &
1524 : History_Track9_xaxis_label, &
1525 : History_Track9_yname, &
1526 : History_Track9_yaxis_label, &
1527 : History_Track9_file_dir, &
1528 : History_Track9_file_prefix, &
1529 : show_History_Track9_annotation1, &
1530 : show_History_Track9_annotation2, &
1531 : show_History_Track9_annotation3, &
1532 : History_Track9_fname, &
1533 : History_Track9_reverse_xaxis, &
1534 : History_Track9_reverse_yaxis, &
1535 : History_Track9_log_xaxis, &
1536 : History_Track9_log_yaxis, &
1537 : History_Track9_xmin, &
1538 : History_Track9_xmax, &
1539 : History_Track9_ymin, &
1540 : History_Track9_ymax, &
1541 : History_Track9_xmargin, &
1542 : History_Track9_ymargin, &
1543 : History_Track9_dxmin, &
1544 : History_Track9_dymin, &
1545 : History_Track9_win_width, &
1546 : History_Track9_win_aspect_ratio, &
1547 : History_Track9_file_width, &
1548 : History_Track9_file_aspect_ratio, &
1549 : History_Track9_xleft, &
1550 : History_Track9_xright, &
1551 : History_Track9_ybot, &
1552 : History_Track9_ytop, &
1553 : History_Track9_txt_scale, &
1554 : History_Track9_title, &
1555 : History_Track9_use_decorator, &
1556 :
1557 : Kipp_win_flag, &
1558 : Kipp_file_flag, &
1559 : Kipp_file_interval, &
1560 : Kipp_xmax, &
1561 : Kipp_xmin, &
1562 : Kipp_max_width, &
1563 : Kipp_step_xmax, &
1564 : Kipp_step_xmin, &
1565 : Kipp_xaxis_name, &
1566 : Kipp_xaxis_log, &
1567 : Kipp_xmargin, &
1568 : Kipp_xaxis_reversed, &
1569 : Kipp_xaxis_in_seconds, &
1570 : Kipp_xaxis_in_Myr, &
1571 : Kipp_xaxis_time_from_present, &
1572 : Kipp_file_dir, &
1573 : Kipp_file_prefix, &
1574 : show_Kipp_annotation1, &
1575 : show_Kipp_annotation2, &
1576 : show_Kipp_annotation3, &
1577 : Kipp_show_burn, &
1578 : Kipp_show_mixing, &
1579 : Kipp_show_luminosities, &
1580 : Kipp_show_mass_boundaries, &
1581 : Kipp_mix_line_weight, &
1582 : Kipp_mix_interval, &
1583 : Kipp_burn_line_weight, &
1584 : Kipp_burn_type_cutoff, &
1585 : Kipp_luminosities_line_weight, &
1586 : Kipp_masses_line_weight, &
1587 : Kipp_mass_max, &
1588 : Kipp_mass_min, &
1589 : Kipp_lgL_max, &
1590 : Kipp_lgL_min, &
1591 : Kipp_mass_margin, &
1592 : Kipp_lgL_margin, &
1593 : Kipp_win_width, &
1594 : Kipp_win_aspect_ratio, &
1595 : Kipp_file_width, &
1596 : Kipp_file_aspect_ratio, &
1597 : Kipp_xleft, &
1598 : Kipp_xright, &
1599 : Kipp_ybot, &
1600 : Kipp_ytop, &
1601 : Kipp_txt_scale, &
1602 : Kipp_title, &
1603 : kipp_use_decorator, &
1604 :
1605 : rti_win_flag, &
1606 : rti_file_flag, &
1607 : rti_file_interval, &
1608 : rti_xmax, &
1609 : rti_xmin, &
1610 : rti_max_width, &
1611 : rti_step_xmax, &
1612 : rti_step_xmin, &
1613 : rti_xaxis_name, &
1614 : rti_xaxis_log, &
1615 : rti_xmargin, &
1616 : rti_xaxis_reversed, &
1617 : rti_xaxis_in_seconds, &
1618 : rti_xaxis_in_Myr, &
1619 : rti_xaxis_time_from_present, &
1620 : rti_mass_max, &
1621 : rti_mass_min, &
1622 : rti_mass_margin, &
1623 : rti_file_dir, &
1624 : rti_file_prefix, &
1625 : show_rti_annotation1, &
1626 : show_rti_annotation2, &
1627 : show_rti_annotation3, &
1628 : rti_line_weight, &
1629 : rti_interval, &
1630 : rti_win_width, &
1631 : rti_win_aspect_ratio, &
1632 : rti_file_width, &
1633 : rti_file_aspect_ratio, &
1634 : rti_xleft, &
1635 : rti_xright, &
1636 : rti_ybot, &
1637 : rti_ytop, &
1638 : rti_txt_scale, &
1639 : rti_title, &
1640 : rti_use_decorator, &
1641 :
1642 : TRho_Profile_win_flag, &
1643 : TRho_switch_to_Column_Depth, &
1644 : TRho_switch_to_mass, &
1645 : TRho_Profile_file_flag, &
1646 : TRho_Profile_file_interval, &
1647 : TRho_Profile_file_dir, &
1648 : TRho_Profile_file_prefix, &
1649 : show_TRho_Profile_text_info, &
1650 : show_TRho_Profile_legend, &
1651 : show_TRho_Profile_mass_locs, &
1652 : show_TRho_Profile_burn_labels, &
1653 : show_TRho_Profile_kap_regions, &
1654 : show_TRho_Profile_eos_regions, &
1655 : show_TRho_Profile_gamma1_4_3rd, &
1656 : show_TRho_Profile_burn_lines, &
1657 : show_TRho_Profile_degeneracy_line, &
1658 : show_TRho_Profile_Pgas_Prad_line, &
1659 : show_TRho_Profile_annotation1, &
1660 : show_TRho_Profile_annotation2, &
1661 : show_TRho_Profile_annotation3, &
1662 : TRho_Profile_fname, &
1663 : show_TRho_accretion_mesh_borders, &
1664 : TRho_Profile_text_info_xfac, &
1665 : TRho_Profile_text_info_dxfac, &
1666 : TRho_Profile_text_info_yfac, &
1667 : TRho_Profile_text_info_dyfac, &
1668 : TRho_Profile_xmin, &
1669 : TRho_Profile_xmax, &
1670 : TRho_Profile_ymin, &
1671 : TRho_Profile_ymax, &
1672 : TRho_Profile_legend_coord, &
1673 : TRho_Profile_legend_fjust, &
1674 : TRho_Profile_legend_disp1, &
1675 : TRho_Profile_legend_del_disp, &
1676 : TRho_Profile_legend_txt_scale, &
1677 : TRho_Profile_win_width, &
1678 : TRho_Profile_win_aspect_ratio, &
1679 : TRho_Profile_xleft, &
1680 : TRho_Profile_xright, &
1681 : TRho_Profile_ybot, &
1682 : TRho_Profile_ytop, &
1683 : TRho_Profile_txt_scale, &
1684 : TRho_Profile_title, &
1685 : TRho_Profile_file_width, &
1686 : TRho_Profile_file_aspect_ratio, &
1687 : num_profile_mass_points, &
1688 : profile_mass_point_q, &
1689 : profile_mass_point_color_index, &
1690 : profile_mass_point_symbol, &
1691 : profile_mass_point_symbol_scale, &
1692 : profile_mass_point_str, &
1693 : profile_mass_point_str_clr, &
1694 : profile_mass_point_str_scale, &
1695 : TRho_Profile_use_decorator, &
1696 :
1697 : Dynamo_win_flag, &
1698 : Dynamo_file_flag, &
1699 : Dynamo_file_interval, &
1700 : Dynamo_file_dir, &
1701 : Dynamo_file_prefix, &
1702 : show_Dynamo_annotation1, &
1703 : show_Dynamo_annotation2, &
1704 : show_Dynamo_annotation3, &
1705 : Dynamo_xaxis_name, &
1706 : Dynamo_xaxis_reversed, &
1707 : Dynamo_xmin, &
1708 : Dynamo_xmax, &
1709 : Dynamo_ymin_left, &
1710 : Dynamo_ymax_left, &
1711 : Dynamo_dymin_left, &
1712 : Dynamo_ymin_right, &
1713 : Dynamo_ymax_right, &
1714 : Dynamo_dymin_right, &
1715 : Dynamo_win_width, &
1716 : Dynamo_win_aspect_ratio, &
1717 : Dynamo_file_width, &
1718 : Dynamo_file_aspect_ratio, &
1719 : Dynamo_xleft, &
1720 : Dynamo_xright, &
1721 : Dynamo_ybot, &
1722 : Dynamo_ytop, &
1723 : Dynamo_txt_scale, &
1724 : Dynamo_title, &
1725 : Dynamo_legend_txt_scale_factor, &
1726 : Dynamo_use_decorator, &
1727 :
1728 : Mixing_win_flag, &
1729 : Mixing_file_flag, &
1730 : Mixing_file_interval, &
1731 : Mixing_file_dir, &
1732 : Mixing_file_prefix, &
1733 : show_Mixing_annotation1, &
1734 : show_Mixing_annotation2, &
1735 : show_Mixing_annotation3, &
1736 : Mixing_xaxis_name, &
1737 : Mixing_xaxis_reversed, &
1738 : Mixing_legend_txt_scale_factor, &
1739 : Mixing_show_rotation_details, &
1740 : Mixing_xmin, &
1741 : Mixing_xmax, &
1742 : Mixing_ymin, &
1743 : Mixing_ymax, &
1744 : Mixing_dymin, &
1745 : Mixing_win_width, &
1746 : Mixing_win_aspect_ratio, &
1747 : Mixing_file_width, &
1748 : Mixing_file_aspect_ratio, &
1749 : Mixing_xleft, &
1750 : Mixing_xright, &
1751 : Mixing_ybot, &
1752 : Mixing_ytop, &
1753 : Mixing_txt_scale, &
1754 : Mixing_title, &
1755 : Mixing_use_decorator, &
1756 :
1757 : History_Panels1_win_flag, &
1758 : History_Panels1_win_width, &
1759 : History_Panels1_win_aspect_ratio, &
1760 : History_Panels1_xleft, &
1761 : History_Panels1_xright, &
1762 : History_Panels1_ybot, &
1763 : History_Panels1_ytop, &
1764 : History_Panels1_txt_scale, &
1765 : History_Panels1_title, &
1766 : History_Panels1_xmax, &
1767 : History_Panels1_xmin, &
1768 : History_Panels1_dxmin, &
1769 : History_Panels1_max_width, &
1770 : History_Panels1_num_panels, &
1771 : History_Panels1_xaxis_name, &
1772 : History_Panels1_automatic_star_age_units, &
1773 : History_Panels1_yaxis_name, &
1774 : History_Panels1_xaxis_reversed, &
1775 : History_Panels1_yaxis_reversed, &
1776 : History_Panels1_yaxis_log, &
1777 : History_Panels1_ymin, &
1778 : History_Panels1_ymax, &
1779 : History_Panels1_dymin, &
1780 : History_Panels1_other_yaxis_name, &
1781 : History_Panels1_other_yaxis_reversed, &
1782 : History_Panels1_xaxis_log, &
1783 : History_Panels1_other_yaxis_log, &
1784 : History_Panels1_same_yaxis_range, &
1785 : History_Panels1_other_ymin, &
1786 : History_Panels1_other_ymax, &
1787 : History_Panels1_other_dymin, &
1788 : History_Panels1_points_name, &
1789 : History_Panels1_file_flag, &
1790 : History_Panels1_file_dir, &
1791 : History_Panels1_file_prefix, &
1792 : History_Panels1_file_interval, &
1793 : History_Panels1_file_width, &
1794 : History_Panels1_file_aspect_ratio, &
1795 : History_Panels1_xmargin, &
1796 : History_Panels1_ymargin, &
1797 : History_Panels1_other_ymargin, &
1798 : History_Panels1_use_decorator, &
1799 :
1800 : History_Panels2_win_flag, &
1801 : History_Panels2_win_width, &
1802 : History_Panels2_win_aspect_ratio, &
1803 : History_Panels2_xleft, &
1804 : History_Panels2_xright, &
1805 : History_Panels2_ybot, &
1806 : History_Panels2_ytop, &
1807 : History_Panels2_txt_scale, &
1808 : History_Panels2_title, &
1809 : History_Panels2_xmax, &
1810 : History_Panels2_xmin, &
1811 : History_Panels2_dxmin, &
1812 : History_Panels2_max_width, &
1813 : History_Panels2_num_panels, &
1814 : History_Panels2_xaxis_name, &
1815 : History_Panels2_automatic_star_age_units, &
1816 : History_Panels2_yaxis_name, &
1817 : History_Panels2_xaxis_reversed, &
1818 : History_Panels2_yaxis_reversed, &
1819 : History_Panels2_yaxis_log, &
1820 : History_Panels2_ymin, &
1821 : History_Panels2_ymax, &
1822 : History_Panels2_dymin, &
1823 : History_Panels2_other_yaxis_name, &
1824 : History_Panels2_other_yaxis_reversed, &
1825 : History_Panels2_xaxis_log, &
1826 : History_Panels2_other_yaxis_log, &
1827 : History_Panels2_same_yaxis_range, &
1828 : History_Panels2_other_ymin, &
1829 : History_Panels2_other_ymax, &
1830 : History_Panels2_other_dymin, &
1831 : History_Panels2_points_name, &
1832 : History_Panels2_file_flag, &
1833 : History_Panels2_file_dir, &
1834 : History_Panels2_file_prefix, &
1835 : History_Panels2_file_interval, &
1836 : History_Panels2_file_width, &
1837 : History_Panels2_file_aspect_ratio, &
1838 : History_Panels2_xmargin, &
1839 : History_Panels2_ymargin, &
1840 : History_Panels2_other_ymargin, &
1841 : History_Panels2_use_decorator, &
1842 :
1843 : History_Panels3_win_flag, &
1844 : History_Panels3_win_width, &
1845 : History_Panels3_win_aspect_ratio, &
1846 : History_Panels3_xleft, &
1847 : History_Panels3_xright, &
1848 : History_Panels3_ybot, &
1849 : History_Panels3_ytop, &
1850 : History_Panels3_txt_scale, &
1851 : History_Panels3_title, &
1852 : History_Panels3_xmax, &
1853 : History_Panels3_xmin, &
1854 : History_Panels3_dxmin, &
1855 : History_Panels3_max_width, &
1856 : History_Panels3_num_panels, &
1857 : History_Panels3_xaxis_name, &
1858 : History_Panels3_automatic_star_age_units, &
1859 : History_Panels3_yaxis_name, &
1860 : History_Panels3_xaxis_reversed, &
1861 : History_Panels3_yaxis_reversed, &
1862 : History_Panels3_yaxis_log, &
1863 : History_Panels3_ymin, &
1864 : History_Panels3_ymax, &
1865 : History_Panels3_dymin, &
1866 : History_Panels3_other_yaxis_name, &
1867 : History_Panels3_other_yaxis_reversed, &
1868 : History_Panels3_xaxis_log, &
1869 : History_Panels3_other_yaxis_log, &
1870 : History_Panels3_same_yaxis_range, &
1871 : History_Panels3_other_ymin, &
1872 : History_Panels3_other_ymax, &
1873 : History_Panels3_other_dymin, &
1874 : History_Panels3_points_name, &
1875 : History_Panels3_file_flag, &
1876 : History_Panels3_file_dir, &
1877 : History_Panels3_file_prefix, &
1878 : History_Panels3_file_interval, &
1879 : History_Panels3_file_width, &
1880 : History_Panels3_file_aspect_ratio, &
1881 : History_Panels3_xmargin, &
1882 : History_Panels3_ymargin, &
1883 : History_Panels3_other_ymargin, &
1884 : History_Panels3_use_decorator, &
1885 :
1886 : History_Panels4_win_flag, &
1887 : History_Panels4_win_width, &
1888 : History_Panels4_win_aspect_ratio, &
1889 : History_Panels4_xleft, &
1890 : History_Panels4_xright, &
1891 : History_Panels4_ybot, &
1892 : History_Panels4_ytop, &
1893 : History_Panels4_txt_scale, &
1894 : History_Panels4_title, &
1895 : History_Panels4_xmax, &
1896 : History_Panels4_xmin, &
1897 : History_Panels4_dxmin, &
1898 : History_Panels4_max_width, &
1899 : History_Panels4_num_panels, &
1900 : History_Panels4_xaxis_name, &
1901 : History_Panels4_automatic_star_age_units, &
1902 : History_Panels4_yaxis_name, &
1903 : History_Panels4_xaxis_reversed, &
1904 : History_Panels4_yaxis_reversed, &
1905 : History_Panels4_yaxis_log, &
1906 : History_Panels4_ymin, &
1907 : History_Panels4_ymax, &
1908 : History_Panels4_dymin, &
1909 : History_Panels4_other_yaxis_name, &
1910 : History_Panels4_other_yaxis_reversed, &
1911 : History_Panels4_xaxis_log, &
1912 : History_Panels4_other_yaxis_log, &
1913 : History_Panels4_same_yaxis_range, &
1914 : History_Panels4_other_ymin, &
1915 : History_Panels4_other_ymax, &
1916 : History_Panels4_other_dymin, &
1917 : History_Panels4_points_name, &
1918 : History_Panels4_file_flag, &
1919 : History_Panels4_file_dir, &
1920 : History_Panels4_file_prefix, &
1921 : History_Panels4_file_interval, &
1922 : History_Panels4_file_width, &
1923 : History_Panels4_file_aspect_ratio, &
1924 : History_Panels4_xmargin, &
1925 : History_Panels4_ymargin, &
1926 : History_Panels4_other_ymargin, &
1927 : History_Panels4_use_decorator, &
1928 :
1929 : History_Panels5_win_flag, &
1930 : History_Panels5_win_width, &
1931 : History_Panels5_win_aspect_ratio, &
1932 : History_Panels5_xleft, &
1933 : History_Panels5_xright, &
1934 : History_Panels5_ybot, &
1935 : History_Panels5_ytop, &
1936 : History_Panels5_txt_scale, &
1937 : History_Panels5_title, &
1938 : History_Panels5_xmax, &
1939 : History_Panels5_xmin, &
1940 : History_Panels5_dxmin, &
1941 : History_Panels5_max_width, &
1942 : History_Panels5_num_panels, &
1943 : History_Panels5_xaxis_name, &
1944 : History_Panels5_automatic_star_age_units, &
1945 : History_Panels5_yaxis_name, &
1946 : History_Panels5_xaxis_reversed, &
1947 : History_Panels5_yaxis_reversed, &
1948 : History_Panels5_yaxis_log, &
1949 : History_Panels5_ymin, &
1950 : History_Panels5_ymax, &
1951 : History_Panels5_dymin, &
1952 : History_Panels5_other_yaxis_name, &
1953 : History_Panels5_other_yaxis_reversed, &
1954 : History_Panels5_xaxis_log, &
1955 : History_Panels5_other_yaxis_log, &
1956 : History_Panels5_same_yaxis_range, &
1957 : History_Panels5_other_ymin, &
1958 : History_Panels5_other_ymax, &
1959 : History_Panels5_other_dymin, &
1960 : History_Panels5_points_name, &
1961 : History_Panels5_file_flag, &
1962 : History_Panels5_file_dir, &
1963 : History_Panels5_file_prefix, &
1964 : History_Panels5_file_interval, &
1965 : History_Panels5_file_width, &
1966 : History_Panels5_file_aspect_ratio, &
1967 : History_Panels5_xmargin, &
1968 : History_Panels5_ymargin, &
1969 : History_Panels5_other_ymargin, &
1970 : History_Panels5_use_decorator, &
1971 :
1972 : History_Panels6_win_flag, &
1973 : History_Panels6_win_width, &
1974 : History_Panels6_win_aspect_ratio, &
1975 : History_Panels6_xleft, &
1976 : History_Panels6_xright, &
1977 : History_Panels6_ybot, &
1978 : History_Panels6_ytop, &
1979 : History_Panels6_txt_scale, &
1980 : History_Panels6_title, &
1981 : History_Panels6_xmax, &
1982 : History_Panels6_xmin, &
1983 : History_Panels6_dxmin, &
1984 : History_Panels6_max_width, &
1985 : History_Panels6_num_panels, &
1986 : History_Panels6_xaxis_name, &
1987 : History_Panels6_automatic_star_age_units, &
1988 : History_Panels6_yaxis_name, &
1989 : History_Panels6_xaxis_reversed, &
1990 : History_Panels6_yaxis_reversed, &
1991 : History_Panels6_yaxis_log, &
1992 : History_Panels6_ymin, &
1993 : History_Panels6_ymax, &
1994 : History_Panels6_dymin, &
1995 : History_Panels6_other_yaxis_name, &
1996 : History_Panels6_other_yaxis_reversed, &
1997 : History_Panels6_xaxis_log, &
1998 : History_Panels6_other_yaxis_log, &
1999 : History_Panels6_same_yaxis_range, &
2000 : History_Panels6_other_ymin, &
2001 : History_Panels6_other_ymax, &
2002 : History_Panels6_other_dymin, &
2003 : History_Panels6_points_name, &
2004 : History_Panels6_file_flag, &
2005 : History_Panels6_file_dir, &
2006 : History_Panels6_file_prefix, &
2007 : History_Panels6_file_interval, &
2008 : History_Panels6_file_width, &
2009 : History_Panels6_file_aspect_ratio, &
2010 : History_Panels6_xmargin, &
2011 : History_Panels6_ymargin, &
2012 : History_Panels6_other_ymargin, &
2013 : History_Panels6_use_decorator, &
2014 :
2015 : History_Panels7_win_flag, &
2016 : History_Panels7_win_width, &
2017 : History_Panels7_win_aspect_ratio, &
2018 : History_Panels7_xleft, &
2019 : History_Panels7_xright, &
2020 : History_Panels7_ybot, &
2021 : History_Panels7_ytop, &
2022 : History_Panels7_txt_scale, &
2023 : History_Panels7_title, &
2024 : History_Panels7_xmax, &
2025 : History_Panels7_xmin, &
2026 : History_Panels7_dxmin, &
2027 : History_Panels7_max_width, &
2028 : History_Panels7_num_panels, &
2029 : History_Panels7_xaxis_name, &
2030 : History_Panels7_automatic_star_age_units, &
2031 : History_Panels7_yaxis_name, &
2032 : History_Panels7_xaxis_reversed, &
2033 : History_Panels7_yaxis_reversed, &
2034 : History_Panels7_yaxis_log, &
2035 : History_Panels7_ymin, &
2036 : History_Panels7_ymax, &
2037 : History_Panels7_dymin, &
2038 : History_Panels7_other_yaxis_name, &
2039 : History_Panels7_other_yaxis_reversed, &
2040 : History_Panels7_xaxis_log, &
2041 : History_Panels7_other_yaxis_log, &
2042 : History_Panels7_same_yaxis_range, &
2043 : History_Panels7_other_ymin, &
2044 : History_Panels7_other_ymax, &
2045 : History_Panels7_other_dymin, &
2046 : History_Panels7_points_name, &
2047 : History_Panels7_file_flag, &
2048 : History_Panels7_file_dir, &
2049 : History_Panels7_file_prefix, &
2050 : History_Panels7_file_interval, &
2051 : History_Panels7_file_width, &
2052 : History_Panels7_file_aspect_ratio, &
2053 : History_Panels7_xmargin, &
2054 : History_Panels7_ymargin, &
2055 : History_Panels7_other_ymargin, &
2056 : History_Panels7_use_decorator, &
2057 :
2058 : History_Panels8_win_flag, &
2059 : History_Panels8_win_width, &
2060 : History_Panels8_win_aspect_ratio, &
2061 : History_Panels8_xleft, &
2062 : History_Panels8_xright, &
2063 : History_Panels8_ybot, &
2064 : History_Panels8_ytop, &
2065 : History_Panels8_txt_scale, &
2066 : History_Panels8_title, &
2067 : History_Panels8_xmax, &
2068 : History_Panels8_xmin, &
2069 : History_Panels8_dxmin, &
2070 : History_Panels8_max_width, &
2071 : History_Panels8_num_panels, &
2072 : History_Panels8_xaxis_name, &
2073 : History_Panels8_automatic_star_age_units, &
2074 : History_Panels8_yaxis_name, &
2075 : History_Panels8_xaxis_reversed, &
2076 : History_Panels8_yaxis_reversed, &
2077 : History_Panels8_yaxis_log, &
2078 : History_Panels8_ymin, &
2079 : History_Panels8_ymax, &
2080 : History_Panels8_dymin, &
2081 : History_Panels8_other_yaxis_name, &
2082 : History_Panels8_other_yaxis_reversed, &
2083 : History_Panels8_xaxis_log, &
2084 : History_Panels8_other_yaxis_log, &
2085 : History_Panels8_same_yaxis_range, &
2086 : History_Panels8_other_ymin, &
2087 : History_Panels8_other_ymax, &
2088 : History_Panels8_other_dymin, &
2089 : History_Panels8_points_name, &
2090 : History_Panels8_file_flag, &
2091 : History_Panels8_file_dir, &
2092 : History_Panels8_file_prefix, &
2093 : History_Panels8_file_interval, &
2094 : History_Panels8_file_width, &
2095 : History_Panels8_file_aspect_ratio, &
2096 : History_Panels8_xmargin, &
2097 : History_Panels8_ymargin, &
2098 : History_Panels8_other_ymargin, &
2099 : History_Panels8_use_decorator, &
2100 :
2101 : History_Panels9_win_flag, &
2102 : History_Panels9_win_width, &
2103 : History_Panels9_win_aspect_ratio, &
2104 : History_Panels9_xleft, &
2105 : History_Panels9_xright, &
2106 : History_Panels9_ybot, &
2107 : History_Panels9_ytop, &
2108 : History_Panels9_txt_scale, &
2109 : History_Panels9_title, &
2110 : History_Panels9_xmax, &
2111 : History_Panels9_xmin, &
2112 : History_Panels9_dxmin, &
2113 : History_Panels9_max_width, &
2114 : History_Panels9_num_panels, &
2115 : History_Panels9_xaxis_name, &
2116 : History_Panels9_automatic_star_age_units, &
2117 : History_Panels9_yaxis_name, &
2118 : History_Panels9_xaxis_reversed, &
2119 : History_Panels9_yaxis_reversed, &
2120 : History_Panels9_yaxis_log, &
2121 : History_Panels9_ymin, &
2122 : History_Panels9_ymax, &
2123 : History_Panels9_dymin, &
2124 : History_Panels9_other_yaxis_name, &
2125 : History_Panels9_other_yaxis_reversed, &
2126 : History_Panels9_xaxis_log, &
2127 : History_Panels9_other_yaxis_log, &
2128 : History_Panels9_same_yaxis_range, &
2129 : History_Panels9_other_ymin, &
2130 : History_Panels9_other_ymax, &
2131 : History_Panels9_other_dymin, &
2132 : History_Panels9_points_name, &
2133 : History_Panels9_file_flag, &
2134 : History_Panels9_file_dir, &
2135 : History_Panels9_file_prefix, &
2136 : History_Panels9_file_interval, &
2137 : History_Panels9_file_width, &
2138 : History_Panels9_file_aspect_ratio, &
2139 : History_Panels9_xmargin, &
2140 : History_Panels9_ymargin, &
2141 : History_Panels9_other_ymargin, &
2142 : History_Panels9_use_decorator, &
2143 :
2144 : History_Panel_points_error_bars, &
2145 : History_Panel_points_interval, &
2146 : History_Panel_points_marker, &
2147 : History_Panel_points_ci, &
2148 : History_Panel_points_lw, &
2149 : History_Panel_points_ch, &
2150 :
2151 : Color_Magnitude1_win_flag, &
2152 : Color_Magnitude1_win_width, &
2153 : Color_Magnitude1_win_aspect_ratio, &
2154 : Color_Magnitude1_xleft, &
2155 : Color_Magnitude1_xright, &
2156 : Color_Magnitude1_ybot, &
2157 : Color_Magnitude1_ytop, &
2158 : Color_Magnitude1_txt_scale, &
2159 : Color_Magnitude1_title, &
2160 : Color_Magnitude1_xmax, &
2161 : Color_Magnitude1_xmin, &
2162 : Color_Magnitude1_dxmin, &
2163 : Color_Magnitude1_max_width, &
2164 : Color_Magnitude1_num_panels, &
2165 : Color_Magnitude1_xaxis1_name, &
2166 : Color_Magnitude1_xaxis2_name, &
2167 : Color_Magnitude1_yaxis1_name, &
2168 : Color_Magnitude1_yaxis2_name, &
2169 : Color_Magnitude1_xaxis_reversed, &
2170 : Color_Magnitude1_yaxis_reversed, &
2171 : Color_Magnitude1_yaxis_log, &
2172 : Color_Magnitude1_ymin, &
2173 : Color_Magnitude1_ymax, &
2174 : Color_Magnitude1_dymin, &
2175 : Color_Magnitude1_other_yaxis1_name, &
2176 : Color_Magnitude1_other_yaxis2_name, &
2177 : Color_Magnitude1_other_yaxis_reversed, &
2178 : Color_Magnitude1_xaxis_log, &
2179 : Color_Magnitude1_other_yaxis_log, &
2180 : Color_Magnitude1_other_ymin, &
2181 : Color_Magnitude1_other_ymax, &
2182 : Color_Magnitude1_other_dymin, &
2183 : Color_Magnitude1_file_flag, &
2184 : Color_Magnitude1_file_dir, &
2185 : Color_Magnitude1_file_prefix, &
2186 : Color_Magnitude1_file_interval, &
2187 : Color_Magnitude1_file_width, &
2188 : Color_Magnitude1_file_aspect_ratio, &
2189 : Color_Magnitude1_xmargin, &
2190 : Color_Magnitude1_ymargin, &
2191 : Color_Magnitude1_other_ymargin, &
2192 : Color_Magnitude1_use_decorator, &
2193 :
2194 : Color_Magnitude2_win_flag, &
2195 : Color_Magnitude2_win_width, &
2196 : Color_Magnitude2_win_aspect_ratio, &
2197 : Color_Magnitude2_xleft, &
2198 : Color_Magnitude2_xright, &
2199 : Color_Magnitude2_ybot, &
2200 : Color_Magnitude2_ytop, &
2201 : Color_Magnitude2_txt_scale, &
2202 : Color_Magnitude2_title, &
2203 : Color_Magnitude2_xmax, &
2204 : Color_Magnitude2_xmin, &
2205 : Color_Magnitude2_dxmin, &
2206 : Color_Magnitude2_max_width, &
2207 : Color_Magnitude2_num_panels, &
2208 : Color_Magnitude2_xaxis1_name, &
2209 : Color_Magnitude2_xaxis2_name, &
2210 : Color_Magnitude2_yaxis1_name, &
2211 : Color_Magnitude2_yaxis2_name, &
2212 : Color_Magnitude2_xaxis_reversed, &
2213 : Color_Magnitude2_yaxis_reversed, &
2214 : Color_Magnitude2_yaxis_log, &
2215 : Color_Magnitude2_ymin, &
2216 : Color_Magnitude2_ymax, &
2217 : Color_Magnitude2_dymin, &
2218 : Color_Magnitude2_other_yaxis1_name, &
2219 : Color_Magnitude2_other_yaxis2_name, &
2220 : Color_Magnitude2_other_yaxis_reversed, &
2221 : Color_Magnitude2_xaxis_log, &
2222 : Color_Magnitude2_other_yaxis_log, &
2223 : Color_Magnitude2_other_ymin, &
2224 : Color_Magnitude2_other_ymax, &
2225 : Color_Magnitude2_other_dymin, &
2226 : Color_Magnitude2_file_flag, &
2227 : Color_Magnitude2_file_dir, &
2228 : Color_Magnitude2_file_prefix, &
2229 : Color_Magnitude2_file_interval, &
2230 : Color_Magnitude2_file_width, &
2231 : Color_Magnitude2_file_aspect_ratio, &
2232 : Color_Magnitude2_xmargin, &
2233 : Color_Magnitude2_ymargin, &
2234 : Color_Magnitude2_other_ymargin, &
2235 : Color_Magnitude2_use_decorator, &
2236 :
2237 : Color_Magnitude3_win_flag, &
2238 : Color_Magnitude3_win_width, &
2239 : Color_Magnitude3_win_aspect_ratio, &
2240 : Color_Magnitude3_xleft, &
2241 : Color_Magnitude3_xright, &
2242 : Color_Magnitude3_ybot, &
2243 : Color_Magnitude3_ytop, &
2244 : Color_Magnitude3_txt_scale, &
2245 : Color_Magnitude3_title, &
2246 : Color_Magnitude3_xmax, &
2247 : Color_Magnitude3_xmin, &
2248 : Color_Magnitude3_dxmin, &
2249 : Color_Magnitude3_max_width, &
2250 : Color_Magnitude3_num_panels, &
2251 : Color_Magnitude3_xaxis1_name, &
2252 : Color_Magnitude3_xaxis2_name, &
2253 : Color_Magnitude3_yaxis1_name, &
2254 : Color_Magnitude3_yaxis2_name, &
2255 : Color_Magnitude3_xaxis_reversed, &
2256 : Color_Magnitude3_yaxis_reversed, &
2257 : Color_Magnitude3_yaxis_log, &
2258 : Color_Magnitude3_ymin, &
2259 : Color_Magnitude3_ymax, &
2260 : Color_Magnitude3_dymin, &
2261 : Color_Magnitude3_other_yaxis1_name, &
2262 : Color_Magnitude3_other_yaxis2_name, &
2263 : Color_Magnitude3_other_yaxis_reversed, &
2264 : Color_Magnitude3_xaxis_log, &
2265 : Color_Magnitude3_other_yaxis_log, &
2266 : Color_Magnitude3_other_ymin, &
2267 : Color_Magnitude3_other_ymax, &
2268 : Color_Magnitude3_other_dymin, &
2269 : Color_Magnitude3_file_flag, &
2270 : Color_Magnitude3_file_dir, &
2271 : Color_Magnitude3_file_prefix, &
2272 : Color_Magnitude3_file_interval, &
2273 : Color_Magnitude3_file_width, &
2274 : Color_Magnitude3_file_aspect_ratio, &
2275 : Color_Magnitude3_xmargin, &
2276 : Color_Magnitude3_ymargin, &
2277 : Color_Magnitude3_other_ymargin, &
2278 : Color_Magnitude3_use_decorator, &
2279 :
2280 : Color_Magnitude4_win_flag, &
2281 : Color_Magnitude4_win_width, &
2282 : Color_Magnitude4_win_aspect_ratio, &
2283 : Color_Magnitude4_xleft, &
2284 : Color_Magnitude4_xright, &
2285 : Color_Magnitude4_ybot, &
2286 : Color_Magnitude4_ytop, &
2287 : Color_Magnitude4_txt_scale, &
2288 : Color_Magnitude4_title, &
2289 : Color_Magnitude4_xmax, &
2290 : Color_Magnitude4_xmin, &
2291 : Color_Magnitude4_dxmin, &
2292 : Color_Magnitude4_max_width, &
2293 : Color_Magnitude4_num_panels, &
2294 : Color_Magnitude4_xaxis1_name, &
2295 : Color_Magnitude4_xaxis2_name, &
2296 : Color_Magnitude4_yaxis1_name, &
2297 : Color_Magnitude4_yaxis2_name, &
2298 : Color_Magnitude4_xaxis_reversed, &
2299 : Color_Magnitude4_yaxis_reversed, &
2300 : Color_Magnitude4_yaxis_log, &
2301 : Color_Magnitude4_ymin, &
2302 : Color_Magnitude4_ymax, &
2303 : Color_Magnitude4_dymin, &
2304 : Color_Magnitude4_other_yaxis1_name, &
2305 : Color_Magnitude4_other_yaxis2_name, &
2306 : Color_Magnitude4_other_yaxis_reversed, &
2307 : Color_Magnitude4_xaxis_log, &
2308 : Color_Magnitude4_other_yaxis_log, &
2309 : Color_Magnitude4_other_ymin, &
2310 : Color_Magnitude4_other_ymax, &
2311 : Color_Magnitude4_other_dymin, &
2312 : Color_Magnitude4_file_flag, &
2313 : Color_Magnitude4_file_dir, &
2314 : Color_Magnitude4_file_prefix, &
2315 : Color_Magnitude4_file_interval, &
2316 : Color_Magnitude4_file_width, &
2317 : Color_Magnitude4_file_aspect_ratio, &
2318 : Color_Magnitude4_xmargin, &
2319 : Color_Magnitude4_ymargin, &
2320 : Color_Magnitude4_other_ymargin, &
2321 : Color_Magnitude4_use_decorator, &
2322 :
2323 : Color_Magnitude5_win_flag, &
2324 : Color_Magnitude5_win_width, &
2325 : Color_Magnitude5_win_aspect_ratio, &
2326 : Color_Magnitude5_xleft, &
2327 : Color_Magnitude5_xright, &
2328 : Color_Magnitude5_ybot, &
2329 : Color_Magnitude5_ytop, &
2330 : Color_Magnitude5_txt_scale, &
2331 : Color_Magnitude5_title, &
2332 : Color_Magnitude5_xmax, &
2333 : Color_Magnitude5_xmin, &
2334 : Color_Magnitude5_dxmin, &
2335 : Color_Magnitude5_max_width, &
2336 : Color_Magnitude5_num_panels, &
2337 : Color_Magnitude5_xaxis1_name, &
2338 : Color_Magnitude5_xaxis2_name, &
2339 : Color_Magnitude5_yaxis1_name, &
2340 : Color_Magnitude5_yaxis2_name, &
2341 : Color_Magnitude5_xaxis_reversed, &
2342 : Color_Magnitude5_yaxis_reversed, &
2343 : Color_Magnitude5_yaxis_log, &
2344 : Color_Magnitude5_ymin, &
2345 : Color_Magnitude5_ymax, &
2346 : Color_Magnitude5_dymin, &
2347 : Color_Magnitude5_other_yaxis1_name, &
2348 : Color_Magnitude5_other_yaxis2_name, &
2349 : Color_Magnitude5_other_yaxis_reversed, &
2350 : Color_Magnitude5_xaxis_log, &
2351 : Color_Magnitude5_other_yaxis_log, &
2352 : Color_Magnitude5_other_ymin, &
2353 : Color_Magnitude5_other_ymax, &
2354 : Color_Magnitude5_other_dymin, &
2355 : Color_Magnitude5_file_flag, &
2356 : Color_Magnitude5_file_dir, &
2357 : Color_Magnitude5_file_prefix, &
2358 : Color_Magnitude5_file_interval, &
2359 : Color_Magnitude5_file_width, &
2360 : Color_Magnitude5_file_aspect_ratio, &
2361 : Color_Magnitude5_xmargin, &
2362 : Color_Magnitude5_ymargin, &
2363 : Color_Magnitude5_other_ymargin, &
2364 : Color_Magnitude5_use_decorator, &
2365 :
2366 : Color_Magnitude6_win_flag, &
2367 : Color_Magnitude6_win_width, &
2368 : Color_Magnitude6_win_aspect_ratio, &
2369 : Color_Magnitude6_xleft, &
2370 : Color_Magnitude6_xright, &
2371 : Color_Magnitude6_ybot, &
2372 : Color_Magnitude6_ytop, &
2373 : Color_Magnitude6_txt_scale, &
2374 : Color_Magnitude6_title, &
2375 : Color_Magnitude6_xmax, &
2376 : Color_Magnitude6_xmin, &
2377 : Color_Magnitude6_dxmin, &
2378 : Color_Magnitude6_max_width, &
2379 : Color_Magnitude6_num_panels, &
2380 : Color_Magnitude6_xaxis1_name, &
2381 : Color_Magnitude6_xaxis2_name, &
2382 : Color_Magnitude6_yaxis1_name, &
2383 : Color_Magnitude6_yaxis2_name, &
2384 : Color_Magnitude6_xaxis_reversed, &
2385 : Color_Magnitude6_yaxis_reversed, &
2386 : Color_Magnitude6_yaxis_log, &
2387 : Color_Magnitude6_ymin, &
2388 : Color_Magnitude6_ymax, &
2389 : Color_Magnitude6_dymin, &
2390 : Color_Magnitude6_other_yaxis1_name, &
2391 : Color_Magnitude6_other_yaxis2_name, &
2392 : Color_Magnitude6_other_yaxis_reversed, &
2393 : Color_Magnitude6_xaxis_log, &
2394 : Color_Magnitude6_other_yaxis_log, &
2395 : Color_Magnitude6_other_ymin, &
2396 : Color_Magnitude6_other_ymax, &
2397 : Color_Magnitude6_other_dymin, &
2398 : Color_Magnitude6_file_flag, &
2399 : Color_Magnitude6_file_dir, &
2400 : Color_Magnitude6_file_prefix, &
2401 : Color_Magnitude6_file_interval, &
2402 : Color_Magnitude6_file_width, &
2403 : Color_Magnitude6_file_aspect_ratio, &
2404 : Color_Magnitude6_xmargin, &
2405 : Color_Magnitude6_ymargin, &
2406 : Color_Magnitude6_other_ymargin, &
2407 : Color_Magnitude6_use_decorator, &
2408 :
2409 : Color_Magnitude7_win_flag, &
2410 : Color_Magnitude7_win_width, &
2411 : Color_Magnitude7_win_aspect_ratio, &
2412 : Color_Magnitude7_xleft, &
2413 : Color_Magnitude7_xright, &
2414 : Color_Magnitude7_ybot, &
2415 : Color_Magnitude7_ytop, &
2416 : Color_Magnitude7_txt_scale, &
2417 : Color_Magnitude7_title, &
2418 : Color_Magnitude7_xmax, &
2419 : Color_Magnitude7_xmin, &
2420 : Color_Magnitude7_dxmin, &
2421 : Color_Magnitude7_max_width, &
2422 : Color_Magnitude7_num_panels, &
2423 : Color_Magnitude7_xaxis1_name, &
2424 : Color_Magnitude7_xaxis2_name, &
2425 : Color_Magnitude7_yaxis1_name, &
2426 : Color_Magnitude7_yaxis2_name, &
2427 : Color_Magnitude7_xaxis_reversed, &
2428 : Color_Magnitude7_yaxis_reversed, &
2429 : Color_Magnitude7_yaxis_log, &
2430 : Color_Magnitude7_ymin, &
2431 : Color_Magnitude7_ymax, &
2432 : Color_Magnitude7_dymin, &
2433 : Color_Magnitude7_other_yaxis1_name, &
2434 : Color_Magnitude7_other_yaxis2_name, &
2435 : Color_Magnitude7_other_yaxis_reversed, &
2436 : Color_Magnitude7_xaxis_log, &
2437 : Color_Magnitude7_other_yaxis_log, &
2438 : Color_Magnitude7_other_ymin, &
2439 : Color_Magnitude7_other_ymax, &
2440 : Color_Magnitude7_other_dymin, &
2441 : Color_Magnitude7_file_flag, &
2442 : Color_Magnitude7_file_dir, &
2443 : Color_Magnitude7_file_prefix, &
2444 : Color_Magnitude7_file_interval, &
2445 : Color_Magnitude7_file_width, &
2446 : Color_Magnitude7_file_aspect_ratio, &
2447 : Color_Magnitude7_xmargin, &
2448 : Color_Magnitude7_ymargin, &
2449 : Color_Magnitude7_other_ymargin, &
2450 : Color_Magnitude7_use_decorator, &
2451 :
2452 : Color_Magnitude8_win_flag, &
2453 : Color_Magnitude8_win_width, &
2454 : Color_Magnitude8_win_aspect_ratio, &
2455 : Color_Magnitude8_xleft, &
2456 : Color_Magnitude8_xright, &
2457 : Color_Magnitude8_ybot, &
2458 : Color_Magnitude8_ytop, &
2459 : Color_Magnitude8_txt_scale, &
2460 : Color_Magnitude8_title, &
2461 : Color_Magnitude8_xmax, &
2462 : Color_Magnitude8_xmin, &
2463 : Color_Magnitude8_dxmin, &
2464 : Color_Magnitude8_max_width, &
2465 : Color_Magnitude8_num_panels, &
2466 : Color_Magnitude8_xaxis1_name, &
2467 : Color_Magnitude8_xaxis2_name, &
2468 : Color_Magnitude8_yaxis1_name, &
2469 : Color_Magnitude8_yaxis2_name, &
2470 : Color_Magnitude8_xaxis_reversed, &
2471 : Color_Magnitude8_yaxis_reversed, &
2472 : Color_Magnitude8_yaxis_log, &
2473 : Color_Magnitude8_ymin, &
2474 : Color_Magnitude8_ymax, &
2475 : Color_Magnitude8_dymin, &
2476 : Color_Magnitude8_other_yaxis1_name, &
2477 : Color_Magnitude8_other_yaxis2_name, &
2478 : Color_Magnitude8_other_yaxis_reversed, &
2479 : Color_Magnitude8_xaxis_log, &
2480 : Color_Magnitude8_other_yaxis_log, &
2481 : Color_Magnitude8_other_ymin, &
2482 : Color_Magnitude8_other_ymax, &
2483 : Color_Magnitude8_other_dymin, &
2484 : Color_Magnitude8_file_flag, &
2485 : Color_Magnitude8_file_dir, &
2486 : Color_Magnitude8_file_prefix, &
2487 : Color_Magnitude8_file_interval, &
2488 : Color_Magnitude8_file_width, &
2489 : Color_Magnitude8_file_aspect_ratio, &
2490 : Color_Magnitude8_xmargin, &
2491 : Color_Magnitude8_ymargin, &
2492 : Color_Magnitude8_other_ymargin, &
2493 : Color_Magnitude8_use_decorator, &
2494 :
2495 : Color_Magnitude9_win_flag, &
2496 : Color_Magnitude9_win_width, &
2497 : Color_Magnitude9_win_aspect_ratio, &
2498 : Color_Magnitude9_xleft, &
2499 : Color_Magnitude9_xright, &
2500 : Color_Magnitude9_ybot, &
2501 : Color_Magnitude9_ytop, &
2502 : Color_Magnitude9_txt_scale, &
2503 : Color_Magnitude9_title, &
2504 : Color_Magnitude9_xmax, &
2505 : Color_Magnitude9_xmin, &
2506 : Color_Magnitude9_dxmin, &
2507 : Color_Magnitude9_max_width, &
2508 : Color_Magnitude9_num_panels, &
2509 : Color_Magnitude9_xaxis1_name, &
2510 : Color_Magnitude9_xaxis2_name, &
2511 : Color_Magnitude9_yaxis1_name, &
2512 : Color_Magnitude9_yaxis2_name, &
2513 : Color_Magnitude9_xaxis_reversed, &
2514 : Color_Magnitude9_yaxis_reversed, &
2515 : Color_Magnitude9_yaxis_log, &
2516 : Color_Magnitude9_ymin, &
2517 : Color_Magnitude9_ymax, &
2518 : Color_Magnitude9_dymin, &
2519 : Color_Magnitude9_other_yaxis1_name, &
2520 : Color_Magnitude9_other_yaxis2_name, &
2521 : Color_Magnitude9_other_yaxis_reversed, &
2522 : Color_Magnitude9_xaxis_log, &
2523 : Color_Magnitude9_other_yaxis_log, &
2524 : Color_Magnitude9_other_ymin, &
2525 : Color_Magnitude9_other_ymax, &
2526 : Color_Magnitude9_other_dymin, &
2527 : Color_Magnitude9_file_flag, &
2528 : Color_Magnitude9_file_dir, &
2529 : Color_Magnitude9_file_prefix, &
2530 : Color_Magnitude9_file_interval, &
2531 : Color_Magnitude9_file_width, &
2532 : Color_Magnitude9_file_aspect_ratio, &
2533 : Color_Magnitude9_xmargin, &
2534 : Color_Magnitude9_ymargin, &
2535 : Color_Magnitude9_other_ymargin, &
2536 : Color_Magnitude9_use_decorator, &
2537 :
2538 :
2539 : Mode_Prop_win_flag, &
2540 : Mode_Prop_file_flag, &
2541 : Mode_Prop_file_interval, &
2542 : Mode_Prop_file_dir, &
2543 : Mode_Prop_file_prefix, &
2544 : Mode_Prop_xaxis_name, &
2545 : Mode_Prop_xaxis_reversed, &
2546 : Mode_Prop_xmin, &
2547 : Mode_Prop_xmax, &
2548 : Mode_Prop_ymin, &
2549 : Mode_Prop_ymax, &
2550 : Mode_Prop_win_width, &
2551 : Mode_Prop_win_aspect_ratio, &
2552 : Mode_Prop_file_width, &
2553 : Mode_Prop_file_aspect_ratio, &
2554 : Mode_Prop_nu_max_obs, &
2555 : Mode_Prop_xleft, &
2556 : Mode_Prop_xright, &
2557 : Mode_Prop_ybot, &
2558 : Mode_Prop_ytop, &
2559 : Mode_Prop_txt_scale, &
2560 : Mode_Prop_title, &
2561 : Mode_Prop_use_decorator, &
2562 :
2563 : Network_win_flag, &
2564 : Network_file_flag, &
2565 : Network_file_interval, &
2566 : Network_file_dir, &
2567 : Network_file_prefix, &
2568 : Network_nmin, &
2569 : Network_nmax, &
2570 : Network_zmin, &
2571 : Network_zmax, &
2572 : Network_show_mass_fraction, &
2573 : Network_log_mass_frac_min, &
2574 : Network_log_mass_frac_max, &
2575 : Network_show_element_names, &
2576 : Network_win_width, &
2577 : Network_win_aspect_ratio, &
2578 : Network_file_width, &
2579 : Network_file_aspect_ratio, &
2580 : Network_xleft, &
2581 : Network_xright, &
2582 : Network_ybot, &
2583 : Network_ytop, &
2584 : Network_txt_scale, &
2585 : Network_title, &
2586 : Network_use_decorator, &
2587 : Network_show_colorbar, &
2588 :
2589 : Production_win_flag, &
2590 : Production_file_flag, &
2591 : Production_file_interval, &
2592 : Production_file_dir, &
2593 : Production_file_prefix, &
2594 : Production_amin, &
2595 : Production_amax, &
2596 : Production_ymin, &
2597 : Production_ymax, &
2598 : Production_min_mass, &
2599 : Production_max_mass, &
2600 : Production_min_mass_frac, &
2601 : Production_show_element_names, &
2602 : Production_win_width, &
2603 : Production_win_aspect_ratio, &
2604 : Production_file_width, &
2605 : Production_file_aspect_ratio, &
2606 : Production_xleft, &
2607 : Production_xright, &
2608 : Production_ybot, &
2609 : Production_ytop, &
2610 : Production_txt_scale, &
2611 : Production_title, &
2612 : Production_use_decorator, &
2613 :
2614 : Summary_Burn_win_flag, &
2615 : Summary_Burn_file_flag, &
2616 : Summary_Burn_file_interval, &
2617 : Summary_Burn_file_dir, &
2618 : Summary_Burn_file_prefix, &
2619 : Summary_Burn_xaxis_name, &
2620 : Summary_Burn_xaxis_reversed, &
2621 : Summary_Burn_xmin, &
2622 : Summary_Burn_xmax, &
2623 : Summary_Burn_win_width, &
2624 : Summary_Burn_win_aspect_ratio, &
2625 : Summary_Burn_file_width, &
2626 : Summary_Burn_file_aspect_ratio, &
2627 : Summary_Burn_xleft, &
2628 : Summary_Burn_xright, &
2629 : Summary_Burn_ybot, &
2630 : Summary_Burn_ytop, &
2631 : Summary_Burn_txt_scale, &
2632 : Summary_Burn_title, &
2633 : Summary_Burn_title_shift, &
2634 : Summary_Burn_use_decorator, &
2635 :
2636 : Summary_Profile_win_flag, &
2637 : Summary_Profile_file_flag, &
2638 : Summary_Profile_file_interval, &
2639 : Summary_Profile_file_dir, &
2640 : Summary_Profile_file_prefix, &
2641 : Summary_Profile_xaxis_name, &
2642 : Summary_Profile_xaxis_reversed, &
2643 : Summary_Profile_scaled_value, &
2644 : Summary_Profile_xmin, &
2645 : Summary_Profile_xmax, &
2646 : Summary_Profile_win_width, &
2647 : Summary_Profile_win_aspect_ratio, &
2648 : Summary_Profile_file_width, &
2649 : Summary_Profile_file_aspect_ratio, &
2650 : Summary_Profile_xleft, &
2651 : Summary_Profile_xright, &
2652 : Summary_Profile_ybot, &
2653 : Summary_Profile_ytop, &
2654 : Summary_Profile_txt_scale, &
2655 : Summary_Profile_title, &
2656 : Summary_Profile_name, &
2657 : Summary_Profile_legend, &
2658 : Summary_Profile_num_lines, &
2659 : Summary_Profile_use_decorator, &
2660 :
2661 : Summary_History_win_flag, &
2662 : Summary_History_file_flag, &
2663 : Summary_History_file_interval, &
2664 : Summary_History_file_dir, &
2665 : Summary_History_file_prefix, &
2666 : Summary_History_scaled_value, &
2667 : Summary_History_xmin, &
2668 : Summary_History_xmax, &
2669 : Summary_History_max_width, &
2670 : Summary_History_win_width, &
2671 : Summary_History_win_aspect_ratio, &
2672 : Summary_History_file_width, &
2673 : Summary_History_file_aspect_ratio, &
2674 : Summary_History_xleft, &
2675 : Summary_History_xright, &
2676 : Summary_History_ybot, &
2677 : Summary_History_ytop, &
2678 : Summary_History_txt_scale, &
2679 : Summary_History_title, &
2680 : Summary_History_name, &
2681 : Summary_History_legend, &
2682 : Summary_History_num_lines, &
2683 : Summary_History_use_decorator, &
2684 :
2685 : Power_win_flag, &
2686 : Power_file_flag, &
2687 : Power_file_interval, &
2688 : Power_file_dir, &
2689 : Power_file_prefix, &
2690 : Power_xaxis_name, &
2691 : Power_xaxis_reversed, &
2692 : Power_legend_max_cnt, &
2693 : Power_legend_txt_scale_factor, &
2694 : Power_xmin, &
2695 : Power_xmax, &
2696 : Power_ymin, &
2697 : Power_ymax, &
2698 : Power_win_width, &
2699 : Power_win_aspect_ratio, &
2700 : Power_file_width, &
2701 : Power_file_aspect_ratio, &
2702 : Power_xleft, &
2703 : Power_xright, &
2704 : Power_ybot, &
2705 : Power_ytop, &
2706 : Power_txt_scale, &
2707 : Power_title, &
2708 : Power_use_decorator, &
2709 :
2710 : Abundance_win_flag, &
2711 : Abundance_file_flag, &
2712 : Abundance_file_interval, &
2713 : Abundance_file_dir, &
2714 : Abundance_file_prefix, &
2715 : Abundance_num_isos_to_show, &
2716 : num_abundance_line_labels, &
2717 : Abundance_legend_txt_scale_factor, &
2718 : Abundance_line_txt_scale_factor, &
2719 : Abundance_legend_max_cnt, &
2720 : Abundance_which_isos_to_show, &
2721 : Abundance_xaxis_name, &
2722 : Abundance_xaxis_reversed, &
2723 : Abundance_show_photosphere_location, &
2724 : Abundance_xmin, &
2725 : Abundance_xmax, &
2726 : Abundance_log_mass_frac_min, &
2727 : Abundance_log_mass_frac_max, &
2728 : Abundance_use_decorator, &
2729 : Abundance_win_width, &
2730 : Abundance_win_aspect_ratio, &
2731 : Abundance_file_width, &
2732 : Abundance_file_aspect_ratio, &
2733 : Abundance_xleft, &
2734 : Abundance_xright, &
2735 : Abundance_ybot, &
2736 : Abundance_ytop, &
2737 : Abundance_txt_scale, &
2738 : Abundance_title, &
2739 : Abundance_use_decorator, &
2740 :
2741 :
2742 : dPg_dnu_win_flag, &
2743 : dPg_dnu_file_flag, &
2744 : dPg_dnu_file_interval, &
2745 : dPg_dnu_step_min, &
2746 : dPg_dnu_step_max, &
2747 : dPg_dnu_file_dir, &
2748 : dPg_dnu_file_prefix, &
2749 : show_dPg_dnu_annotation1, &
2750 : show_dPg_dnu_annotation2, &
2751 : show_dPg_dnu_annotation3, &
2752 : dPg_dnu_fname, &
2753 : dPg_dnu_delta_nu_min, &
2754 : dPg_dnu_delta_nu_max, &
2755 : dPg_dnu_delta_Pg_min, &
2756 : dPg_dnu_delta_Pg_max, &
2757 : dPg_dnu_delta_nu_margin, &
2758 : dPg_dnu_delta_Pg_margin, &
2759 : dPg_dnu_d_delta_nu_min, &
2760 : dPg_dnu_d_delta_Pg_min, &
2761 : dPg_dnu_win_width, &
2762 : dPg_dnu_win_aspect_ratio, &
2763 : dPg_dnu_xleft, &
2764 : dPg_dnu_xright, &
2765 : dPg_dnu_ybot, &
2766 : dPg_dnu_ytop, &
2767 : dPg_dnu_txt_scale, &
2768 : dPg_dnu_file_width, &
2769 : dPg_dnu_file_aspect_ratio, &
2770 : dPg_dnu_title, &
2771 : dPg_dnu_use_decorator, &
2772 :
2773 :
2774 : Grid1_win_flag, &
2775 : Grid1_win_width, &
2776 : Grid1_win_aspect_ratio, &
2777 : Grid1_xleft, &
2778 : Grid1_xright, &
2779 : Grid1_ybot, &
2780 : Grid1_ytop, &
2781 : Grid1_title, &
2782 : Grid1_txt_scale_factor, &
2783 : Grid1_num_cols, &
2784 : Grid1_num_rows, &
2785 : Grid1_num_plots, &
2786 : Grid1_plot_name, &
2787 : Grid1_plot_row, &
2788 : Grid1_plot_rowspan, &
2789 : Grid1_plot_col, &
2790 : Grid1_plot_colspan, &
2791 : Grid1_plot_pad_left, &
2792 : Grid1_plot_pad_right, &
2793 : Grid1_plot_pad_top, &
2794 : Grid1_plot_pad_bot, &
2795 : Grid1_file_flag, &
2796 : Grid1_file_dir, &
2797 : Grid1_file_prefix, &
2798 : Grid1_file_interval, &
2799 : Grid1_file_width, &
2800 : Grid1_file_aspect_ratio, &
2801 :
2802 : Grid2_win_flag, &
2803 : Grid2_win_width, &
2804 : Grid2_win_aspect_ratio, &
2805 : Grid2_xleft, &
2806 : Grid2_xright, &
2807 : Grid2_ybot, &
2808 : Grid2_ytop, &
2809 : Grid2_title, &
2810 : Grid2_txt_scale_factor, &
2811 : Grid2_num_cols, &
2812 : Grid2_num_rows, &
2813 : Grid2_num_plots, &
2814 : Grid2_plot_name, &
2815 : Grid2_plot_row, &
2816 : Grid2_plot_rowspan, &
2817 : Grid2_plot_col, &
2818 : Grid2_plot_colspan, &
2819 : Grid2_plot_pad_left, &
2820 : Grid2_plot_pad_right, &
2821 : Grid2_plot_pad_top, &
2822 : Grid2_plot_pad_bot, &
2823 : Grid2_file_flag, &
2824 : Grid2_file_dir, &
2825 : Grid2_file_prefix, &
2826 : Grid2_file_interval, &
2827 : Grid2_file_width, &
2828 : Grid2_file_aspect_ratio, &
2829 :
2830 : Grid3_win_flag, &
2831 : Grid3_win_width, &
2832 : Grid3_win_aspect_ratio, &
2833 : Grid3_xleft, &
2834 : Grid3_xright, &
2835 : Grid3_ybot, &
2836 : Grid3_ytop, &
2837 : Grid3_title, &
2838 : Grid3_txt_scale_factor, &
2839 : Grid3_num_cols, &
2840 : Grid3_num_rows, &
2841 : Grid3_num_plots, &
2842 : Grid3_plot_name, &
2843 : Grid3_plot_row, &
2844 : Grid3_plot_rowspan, &
2845 : Grid3_plot_col, &
2846 : Grid3_plot_colspan, &
2847 : Grid3_plot_pad_left, &
2848 : Grid3_plot_pad_right, &
2849 : Grid3_plot_pad_top, &
2850 : Grid3_plot_pad_bot, &
2851 : Grid3_file_flag, &
2852 : Grid3_file_dir, &
2853 : Grid3_file_prefix, &
2854 : Grid3_file_interval, &
2855 : Grid3_file_width, &
2856 : Grid3_file_aspect_ratio, &
2857 :
2858 : Grid4_win_flag, &
2859 : Grid4_win_width, &
2860 : Grid4_win_aspect_ratio, &
2861 : Grid4_xleft, &
2862 : Grid4_xright, &
2863 : Grid4_ybot, &
2864 : Grid4_ytop, &
2865 : Grid4_title, &
2866 : Grid4_txt_scale_factor, &
2867 : Grid4_num_cols, &
2868 : Grid4_num_rows, &
2869 : Grid4_num_plots, &
2870 : Grid4_plot_name, &
2871 : Grid4_plot_row, &
2872 : Grid4_plot_rowspan, &
2873 : Grid4_plot_col, &
2874 : Grid4_plot_colspan, &
2875 : Grid4_plot_pad_left, &
2876 : Grid4_plot_pad_right, &
2877 : Grid4_plot_pad_top, &
2878 : Grid4_plot_pad_bot, &
2879 : Grid4_file_flag, &
2880 : Grid4_file_dir, &
2881 : Grid4_file_prefix, &
2882 : Grid4_file_interval, &
2883 : Grid4_file_width, &
2884 : Grid4_file_aspect_ratio, &
2885 :
2886 : Grid5_win_flag, &
2887 : Grid5_win_width, &
2888 : Grid5_win_aspect_ratio, &
2889 : Grid5_xleft, &
2890 : Grid5_xright, &
2891 : Grid5_ybot, &
2892 : Grid5_ytop, &
2893 : Grid5_title, &
2894 : Grid5_txt_scale_factor, &
2895 : Grid5_num_cols, &
2896 : Grid5_num_rows, &
2897 : Grid5_num_plots, &
2898 : Grid5_plot_name, &
2899 : Grid5_plot_row, &
2900 : Grid5_plot_rowspan, &
2901 : Grid5_plot_col, &
2902 : Grid5_plot_colspan, &
2903 : Grid5_plot_pad_left, &
2904 : Grid5_plot_pad_right, &
2905 : Grid5_plot_pad_top, &
2906 : Grid5_plot_pad_bot, &
2907 : Grid5_file_flag, &
2908 : Grid5_file_dir, &
2909 : Grid5_file_prefix, &
2910 : Grid5_file_interval, &
2911 : Grid5_file_width, &
2912 : Grid5_file_aspect_ratio, &
2913 :
2914 : Grid6_win_flag, &
2915 : Grid6_win_width, &
2916 : Grid6_win_aspect_ratio, &
2917 : Grid6_xleft, &
2918 : Grid6_xright, &
2919 : Grid6_ybot, &
2920 : Grid6_ytop, &
2921 : Grid6_title, &
2922 : Grid6_txt_scale_factor, &
2923 : Grid6_num_cols, &
2924 : Grid6_num_rows, &
2925 : Grid6_num_plots, &
2926 : Grid6_plot_name, &
2927 : Grid6_plot_row, &
2928 : Grid6_plot_rowspan, &
2929 : Grid6_plot_col, &
2930 : Grid6_plot_colspan, &
2931 : Grid6_plot_pad_left, &
2932 : Grid6_plot_pad_right, &
2933 : Grid6_plot_pad_top, &
2934 : Grid6_plot_pad_bot, &
2935 : Grid6_file_flag, &
2936 : Grid6_file_dir, &
2937 : Grid6_file_prefix, &
2938 : Grid6_file_interval, &
2939 : Grid6_file_width, &
2940 : Grid6_file_aspect_ratio, &
2941 :
2942 : Grid7_win_flag, &
2943 : Grid7_win_width, &
2944 : Grid7_win_aspect_ratio, &
2945 : Grid7_xleft, &
2946 : Grid7_xright, &
2947 : Grid7_ybot, &
2948 : Grid7_ytop, &
2949 : Grid7_title, &
2950 : Grid7_txt_scale_factor, &
2951 : Grid7_num_cols, &
2952 : Grid7_num_rows, &
2953 : Grid7_num_plots, &
2954 : Grid7_plot_name, &
2955 : Grid7_plot_row, &
2956 : Grid7_plot_rowspan, &
2957 : Grid7_plot_col, &
2958 : Grid7_plot_colspan, &
2959 : Grid7_plot_pad_left, &
2960 : Grid7_plot_pad_right, &
2961 : Grid7_plot_pad_top, &
2962 : Grid7_plot_pad_bot, &
2963 : Grid7_file_flag, &
2964 : Grid7_file_dir, &
2965 : Grid7_file_prefix, &
2966 : Grid7_file_interval, &
2967 : Grid7_file_width, &
2968 : Grid7_file_aspect_ratio, &
2969 :
2970 : Grid8_win_flag, &
2971 : Grid8_win_width, &
2972 : Grid8_win_aspect_ratio, &
2973 : Grid8_xleft, &
2974 : Grid8_xright, &
2975 : Grid8_ybot, &
2976 : Grid8_ytop, &
2977 : Grid8_title, &
2978 : Grid8_txt_scale_factor, &
2979 : Grid8_num_cols, &
2980 : Grid8_num_rows, &
2981 : Grid8_num_plots, &
2982 : Grid8_plot_name, &
2983 : Grid8_plot_row, &
2984 : Grid8_plot_rowspan, &
2985 : Grid8_plot_col, &
2986 : Grid8_plot_colspan, &
2987 : Grid8_plot_pad_left, &
2988 : Grid8_plot_pad_right, &
2989 : Grid8_plot_pad_top, &
2990 : Grid8_plot_pad_bot, &
2991 : Grid8_file_flag, &
2992 : Grid8_file_dir, &
2993 : Grid8_file_prefix, &
2994 : Grid8_file_interval, &
2995 : Grid8_file_width, &
2996 : Grid8_file_aspect_ratio, &
2997 :
2998 : Grid9_win_flag, &
2999 : Grid9_win_width, &
3000 : Grid9_win_aspect_ratio, &
3001 : Grid9_xleft, &
3002 : Grid9_xright, &
3003 : Grid9_ybot, &
3004 : Grid9_ytop, &
3005 : Grid9_title, &
3006 : Grid9_txt_scale_factor, &
3007 : Grid9_num_cols, &
3008 : Grid9_num_rows, &
3009 : Grid9_num_plots, &
3010 : Grid9_plot_name, &
3011 : Grid9_plot_row, &
3012 : Grid9_plot_rowspan, &
3013 : Grid9_plot_col, &
3014 : Grid9_plot_colspan, &
3015 : Grid9_plot_pad_left, &
3016 : Grid9_plot_pad_right, &
3017 : Grid9_plot_pad_top, &
3018 : Grid9_plot_pad_bot, &
3019 : Grid9_file_flag, &
3020 : Grid9_file_dir, &
3021 : Grid9_file_prefix, &
3022 : Grid9_file_interval, &
3023 : Grid9_file_width, &
3024 : Grid9_file_aspect_ratio, &
3025 :
3026 :
3027 : annotation1_ci, &
3028 : annotation1_ch, &
3029 : annotation1_lw, &
3030 : annotation1_cf, &
3031 : annotation1_text, &
3032 : annotation1_side, &
3033 : annotation1_disp, &
3034 : annotation1_coord, &
3035 : annotation1_fjust, &
3036 :
3037 : annotation2_ci, &
3038 : annotation2_ch, &
3039 : annotation2_lw, &
3040 : annotation2_cf, &
3041 : annotation2_text, &
3042 : annotation2_side, &
3043 : annotation2_disp, &
3044 : annotation2_coord, &
3045 : annotation2_fjust, &
3046 :
3047 : annotation3_ci, &
3048 : annotation3_ch, &
3049 : annotation3_lw, &
3050 : annotation3_cf, &
3051 : annotation3_text, &
3052 : annotation3_side, &
3053 : annotation3_disp, &
3054 : annotation3_coord, &
3055 : annotation3_fjust, &
3056 :
3057 : read_extra_pgstar_inlist, &
3058 : extra_pgstar_inlist_name
3059 :
3060 : contains
3061 :
3062 0 : subroutine read_pgstar(s, filename, ierr)
3063 : use star_private_def
3064 : use utils_lib
3065 : type (star_info), pointer :: s
3066 : character(*), intent(in) :: filename
3067 : integer, intent(out) :: ierr
3068 : character (len=strlen) :: pgstar_namelist_name
3069 : pgstar_namelist_name = ''
3070 0 : ierr = 0
3071 0 : call set_default_pgstar_controls
3072 0 : call read_pgstar_file(s, filename, 1, ierr)
3073 0 : end subroutine read_pgstar
3074 :
3075 :
3076 0 : recursive subroutine read_pgstar_file(s, filename, level, ierr)
3077 0 : use star_private_def
3078 : use utils_lib
3079 : character(*), intent(in) :: filename
3080 : type (star_info), pointer :: s
3081 : integer, intent(in) :: level
3082 : integer, intent(out) :: ierr
3083 : logical, dimension(max_extra_inlists) :: read_extra
3084 : character (len=strlen), dimension(max_extra_inlists) :: extra
3085 : integer :: unit, i
3086 :
3087 0 : ierr = 0
3088 :
3089 0 : if (level >= 10) then
3090 0 : write(*,*) 'ERROR: too many levels of nested extra pgstar inlist files'
3091 0 : ierr = -1
3092 0 : return
3093 : end if
3094 :
3095 0 : if (len_trim(filename) > 0) then
3096 0 : open(newunit=unit, file=trim(filename), action='read', delim='quote', status='old', iostat=ierr)
3097 0 : if (ierr /= 0) then
3098 0 : write(*, *) 'Failed to open pgstar namelist file ', trim(filename)
3099 0 : return
3100 : end if
3101 0 : read(unit, nml=pgstar, iostat=ierr)
3102 0 : close(unit)
3103 0 : if (ierr /= 0) then
3104 0 : write(*, *)
3105 0 : write(*, *)
3106 0 : write(*, *)
3107 0 : write(*, *)
3108 : write(*, '(a)') &
3109 0 : 'Failed while trying to read pgstar namelist file: ' // trim(filename)
3110 : write(*, '(a)') &
3111 0 : 'Perhaps the following runtime error message will help you find the problem.'
3112 0 : write(*, *)
3113 0 : open(newunit=unit, file=trim(filename), action='read', delim='quote', status='old', iostat=ierr)
3114 0 : read(unit, nml=pgstar)
3115 0 : close(unit)
3116 0 : return
3117 : end if
3118 : end if
3119 :
3120 0 : call store_pgstar_controls(s, ierr)
3121 :
3122 : ! recursive calls to read other inlists
3123 0 : do i=1, max_extra_inlists
3124 0 : read_extra(i) = read_extra_pgstar_inlist(i)
3125 0 : read_extra_pgstar_inlist(i) = .false.
3126 0 : extra(i) = extra_pgstar_inlist_name(i)
3127 0 : extra_pgstar_inlist_name(i) = 'undefined'
3128 :
3129 0 : if (read_extra(i)) then
3130 0 : call read_pgstar_file(s, extra(i), level+1, ierr)
3131 0 : if (ierr /= 0) return
3132 : end if
3133 : end do
3134 :
3135 0 : end subroutine read_pgstar_file
3136 :
3137 :
3138 0 : subroutine store_pgstar_controls(s, ierr)
3139 0 : use star_private_def
3140 : type (star_info), pointer :: s
3141 : integer, intent(out) :: ierr
3142 :
3143 0 : ierr = 0
3144 :
3145 0 : s% pg% file_device = file_device
3146 0 : s% pg% file_digits = file_digits
3147 0 : s% pg% pgstar_interval = pgstar_interval
3148 0 : s% pg% pause_flag = pause_flag
3149 0 : s% pg% pause_interval = pause_interval
3150 0 : s% pg% pgstar_sleep = pgstar_sleep
3151 0 : s% pg% clear_history = clear_history
3152 :
3153 0 : s% pg% file_white_on_black_flag = file_white_on_black_flag
3154 0 : s% pg% delta_HR_limit_for_file_output = delta_HR_limit_for_file_output
3155 0 : s% pg% win_white_on_black_flag = win_white_on_black_flag
3156 0 : s% pg% pgstar_show_model_number = pgstar_show_model_number
3157 0 : s% pg% pgstar_show_age = pgstar_show_age
3158 0 : s% pg% pgstar_show_age_in_seconds = pgstar_show_age_in_seconds
3159 0 : s% pg% pgstar_show_age_in_minutes = pgstar_show_age_in_minutes
3160 0 : s% pg% pgstar_show_age_in_hours = pgstar_show_age_in_hours
3161 0 : s% pg% pgstar_show_age_in_days = pgstar_show_age_in_days
3162 0 : s% pg% pgstar_show_age_in_years = pgstar_show_age_in_years
3163 0 : s% pg% pgstar_show_log_age_in_years = pgstar_show_log_age_in_years
3164 :
3165 0 : s% pg% pgstar_report_writing_files = pgstar_report_writing_files
3166 :
3167 0 : s% pg% pgstar_show_title = pgstar_show_title
3168 0 : s% pg% pgstar_title_scale = pgstar_title_scale
3169 0 : s% pg% pgstar_title_disp = pgstar_title_disp
3170 0 : s% pg% pgstar_title_coord = pgstar_title_coord
3171 0 : s% pg% pgstar_title_fjust = pgstar_title_fjust
3172 0 : s% pg% pgstar_title_lw = pgstar_title_lw
3173 :
3174 0 : s% pg% pgstar_grid_show_title = pgstar_grid_show_title
3175 0 : s% pg% pgstar_grid_title_scale = pgstar_grid_title_scale
3176 0 : s% pg% pgstar_grid_title_disp = pgstar_grid_title_disp
3177 0 : s% pg% pgstar_grid_title_coord = pgstar_grid_title_coord
3178 0 : s% pg% pgstar_grid_title_fjust = pgstar_grid_title_fjust
3179 0 : s% pg% pgstar_grid_title_lw = pgstar_grid_title_lw
3180 :
3181 0 : s% pg% pgstar_age_scale = pgstar_age_scale
3182 0 : s% pg% pgstar_age_disp = pgstar_age_disp
3183 0 : s% pg% pgstar_age_coord = pgstar_age_coord
3184 0 : s% pg% pgstar_age_fjust = pgstar_age_fjust
3185 0 : s% pg% pgstar_age_lw = pgstar_age_lw
3186 :
3187 0 : s% pg% pgstar_model_scale = pgstar_model_scale
3188 0 : s% pg% pgstar_model_disp = pgstar_model_disp
3189 0 : s% pg% pgstar_model_coord = pgstar_model_coord
3190 0 : s% pg% pgstar_model_fjust = pgstar_model_fjust
3191 0 : s% pg% pgstar_model_lw = pgstar_model_lw
3192 :
3193 0 : s% pg% pgstar_xaxis_label_scale = pgstar_xaxis_label_scale
3194 0 : s% pg% pgstar_left_yaxis_label_scale = pgstar_left_yaxis_label_scale
3195 0 : s% pg% pgstar_right_yaxis_label_scale = pgstar_right_yaxis_label_scale
3196 0 : s% pg% pgstar_xaxis_label_lw = pgstar_xaxis_label_lw
3197 0 : s% pg% pgstar_left_yaxis_label_lw = pgstar_left_yaxis_label_lw
3198 0 : s% pg% pgstar_right_yaxis_label_lw = pgstar_right_yaxis_label_lw
3199 0 : s% pg% pgstar_xaxis_label_disp = pgstar_xaxis_label_disp
3200 0 : s% pg% pgstar_left_yaxis_label_disp = pgstar_left_yaxis_label_disp
3201 0 : s% pg% pgstar_right_yaxis_label_disp = pgstar_right_yaxis_label_disp
3202 0 : s% pg% pgstar_num_scale = pgstar_num_scale
3203 0 : s% pg% pgstar_lw = pgstar_lw
3204 0 : s% pg% pgstar_profile_line_style = pgstar_profile_line_style
3205 0 : s% pg% pgstar_history_line_style = pgstar_history_line_style
3206 : s% pg% pgstar_model_lw = pgstar_model_lw
3207 0 : s% pg% pgstar_box_lw = pgstar_box_lw
3208 :
3209 : s% pg% Profile_Panels_show_Mach_1_location = &
3210 0 : Profile_Panels_show_Mach_1_location
3211 : s% pg% Profile_Panels_show_photosphere_location = &
3212 0 : Profile_Panels_show_photosphere_location
3213 : s% pg% Profile_Panels_xwidth_left_div_shock_value = &
3214 0 : Profile_Panels_xwidth_left_div_shock_value
3215 : s% pg% Profile_Panels_xwidth_right_div_shock_value = &
3216 0 : Profile_Panels_xwidth_right_div_shock_value
3217 : s% pg% Profile_Panels_xwidth_left_of_shock = &
3218 0 : Profile_Panels_xwidth_left_of_shock
3219 : s% pg% Profile_Panels_xwidth_right_of_shock = &
3220 0 : Profile_Panels_xwidth_right_of_shock
3221 :
3222 0 : s% pg% Profile_Panels1_win_flag = Profile_Panels1_win_flag
3223 0 : s% pg% Profile_Panels1_file_flag = Profile_Panels1_file_flag
3224 0 : s% pg% do_Profile_Panels1_win = do_Profile_Panels1_win
3225 0 : s% pg% do_Profile_Panels1_file = do_Profile_Panels1_file
3226 0 : s% pg% id_Profile_Panels1_win = id_Profile_Panels1_win
3227 0 : s% pg% id_Profile_Panels1_file = id_Profile_Panels1_file
3228 0 : s% pg% Profile_Panels1_file_interval = Profile_Panels1_file_interval
3229 0 : s% pg% Profile_Panels1_file_dir = Profile_Panels1_file_dir
3230 0 : s% pg% Profile_Panels1_file_prefix = Profile_Panels1_file_prefix
3231 0 : s% pg% Profile_Panels1_xaxis_reversed = Profile_Panels1_xaxis_reversed
3232 0 : s% pg% Profile_Panels1_xaxis_name = Profile_Panels1_xaxis_name
3233 0 : s% pg% Profile_Panels1_title = Profile_Panels1_title
3234 0 : s% pg% Profile_Panels1_xmin = Profile_Panels1_xmin
3235 0 : s% pg% Profile_Panels1_xmax = Profile_Panels1_xmax
3236 0 : s% pg% Profile_Panels1_xmargin = Profile_Panels1_xmargin
3237 : s% pg% Profile_Panels1_show_mix_regions_on_xaxis = &
3238 0 : Profile_Panels1_show_mix_regions_on_xaxis
3239 0 : s% pg% Profile_Panels1_win_width = Profile_Panels1_win_width
3240 0 : s% pg% Profile_Panels1_win_aspect_ratio = Profile_Panels1_win_aspect_ratio
3241 0 : s% pg% Profile_Panels1_xleft = Profile_Panels1_xleft
3242 0 : s% pg% Profile_Panels1_xright = Profile_Panels1_xright
3243 0 : s% pg% Profile_Panels1_ybot = Profile_Panels1_ybot
3244 0 : s% pg% Profile_Panels1_ytop = Profile_Panels1_ytop
3245 0 : s% pg% Profile_Panels1_txt_scale = Profile_Panels1_txt_scale
3246 0 : s% pg% prev_Profile_Panels1_win_width = prev_Profile_Panels1_win_width
3247 0 : s% pg% prev_Profile_Panels1_win_ratio = prev_Profile_Panels1_win_ratio
3248 0 : s% pg% Profile_Panels1_file_width = Profile_Panels1_file_width
3249 0 : s% pg% Profile_Panels1_file_aspect_ratio = Profile_Panels1_file_aspect_ratio
3250 0 : s% pg% prev_Profile_Panels1_file_width = prev_Profile_Panels1_file_width
3251 0 : s% pg% prev_Profile_Panels1_file_ratio = prev_Profile_Panels1_file_ratio
3252 0 : s% pg% Profile_Panels1_num_panels = Profile_Panels1_num_panels
3253 0 : s% pg% Profile_Panels1_yaxis_name = Profile_Panels1_yaxis_name
3254 0 : s% pg% Profile_Panels1_other_yaxis_name = Profile_Panels1_other_yaxis_name
3255 0 : s% pg% Profile_Panels1_yaxis_reversed = Profile_Panels1_yaxis_reversed
3256 0 : s% pg% Profile_Panels1_other_yaxis_reversed = Profile_Panels1_other_yaxis_reversed
3257 0 : s% pg% Profile_Panels1_yaxis_log = Profile_Panels1_yaxis_log
3258 0 : s% pg% Profile_Panels1_other_yaxis_log = Profile_Panels1_other_yaxis_log
3259 0 : s% pg% Profile_Panels1_same_yaxis_range = Profile_Panels1_same_yaxis_range
3260 0 : s% pg% Profile_Panels1_ymin = Profile_Panels1_ymin
3261 0 : s% pg% Profile_Panels1_other_ymin = Profile_Panels1_other_ymin
3262 0 : s% pg% Profile_Panels1_ymax = Profile_Panels1_ymax
3263 0 : s% pg% Profile_Panels1_other_ymax = Profile_Panels1_other_ymax
3264 0 : s% pg% Profile_Panels1_ycenter = Profile_Panels1_ycenter
3265 0 : s% pg% Profile_Panels1_other_ycenter = Profile_Panels1_other_ycenter
3266 0 : s% pg% Profile_Panels1_ymargin = Profile_Panels1_ymargin
3267 0 : s% pg% Profile_Panels1_other_ymargin = Profile_Panels1_other_ymargin
3268 0 : s% pg% Profile_Panels1_dymin = Profile_Panels1_dymin
3269 0 : s% pg% Profile_Panels1_other_dymin = Profile_Panels1_other_dymin
3270 0 : s% pg% Profile_Panels1_show_grid = Profile_Panels1_show_grid
3271 0 : s% pg% Profile_Panels1_use_decorator = Profile_Panels1_use_decorator
3272 :
3273 0 : s% pg% Profile_Panels2_win_flag = Profile_Panels2_win_flag
3274 0 : s% pg% Profile_Panels2_file_flag = Profile_Panels2_file_flag
3275 0 : s% pg% do_Profile_Panels2_win = do_Profile_Panels2_win
3276 0 : s% pg% do_Profile_Panels2_file = do_Profile_Panels2_file
3277 0 : s% pg% id_Profile_Panels2_win = id_Profile_Panels2_win
3278 0 : s% pg% id_Profile_Panels2_file = id_Profile_Panels2_file
3279 0 : s% pg% Profile_Panels2_file_interval = Profile_Panels2_file_interval
3280 0 : s% pg% Profile_Panels2_file_dir = Profile_Panels2_file_dir
3281 0 : s% pg% Profile_Panels2_file_prefix = Profile_Panels2_file_prefix
3282 0 : s% pg% Profile_Panels2_xaxis_reversed = Profile_Panels2_xaxis_reversed
3283 0 : s% pg% Profile_Panels2_xaxis_name = Profile_Panels2_xaxis_name
3284 0 : s% pg% Profile_Panels2_title = Profile_Panels2_title
3285 0 : s% pg% Profile_Panels2_xmin = Profile_Panels2_xmin
3286 0 : s% pg% Profile_Panels2_xmax = Profile_Panels2_xmax
3287 0 : s% pg% Profile_Panels2_xmargin = Profile_Panels2_xmargin
3288 0 : s% pg% Profile_Panels2_show_mix_regions_on_xaxis = Profile_Panels2_show_mix_regions_on_xaxis
3289 0 : s% pg% Profile_Panels2_win_width = Profile_Panels2_win_width
3290 0 : s% pg% Profile_Panels2_win_aspect_ratio = Profile_Panels2_win_aspect_ratio
3291 0 : s% pg% Profile_Panels2_xleft = Profile_Panels2_xleft
3292 0 : s% pg% Profile_Panels2_xright = Profile_Panels2_xright
3293 0 : s% pg% Profile_Panels2_ybot = Profile_Panels2_ybot
3294 0 : s% pg% Profile_Panels2_ytop = Profile_Panels2_ytop
3295 0 : s% pg% Profile_Panels2_txt_scale = Profile_Panels2_txt_scale
3296 0 : s% pg% prev_Profile_Panels2_win_width = prev_Profile_Panels2_win_width
3297 0 : s% pg% prev_Profile_Panels2_win_ratio = prev_Profile_Panels2_win_ratio
3298 0 : s% pg% Profile_Panels2_file_width = Profile_Panels2_file_width
3299 0 : s% pg% Profile_Panels2_file_aspect_ratio = Profile_Panels2_file_aspect_ratio
3300 0 : s% pg% prev_Profile_Panels2_file_width = prev_Profile_Panels2_file_width
3301 0 : s% pg% prev_Profile_Panels2_file_ratio = prev_Profile_Panels2_file_ratio
3302 0 : s% pg% Profile_Panels2_num_panels = Profile_Panels2_num_panels
3303 0 : s% pg% Profile_Panels2_yaxis_name = Profile_Panels2_yaxis_name
3304 0 : s% pg% Profile_Panels2_other_yaxis_name = Profile_Panels2_other_yaxis_name
3305 0 : s% pg% Profile_Panels2_yaxis_reversed = Profile_Panels2_yaxis_reversed
3306 0 : s% pg% Profile_Panels2_other_yaxis_reversed = Profile_Panels2_other_yaxis_reversed
3307 0 : s% pg% Profile_Panels2_yaxis_log = Profile_Panels2_yaxis_log
3308 0 : s% pg% Profile_Panels2_other_yaxis_log = Profile_Panels2_other_yaxis_log
3309 0 : s% pg% Profile_Panels2_same_yaxis_range = Profile_Panels2_same_yaxis_range
3310 0 : s% pg% Profile_Panels2_ymin = Profile_Panels2_ymin
3311 0 : s% pg% Profile_Panels2_other_ymin = Profile_Panels2_other_ymin
3312 0 : s% pg% Profile_Panels2_ymax = Profile_Panels2_ymax
3313 0 : s% pg% Profile_Panels2_other_ymax = Profile_Panels2_other_ymax
3314 0 : s% pg% Profile_Panels2_ycenter = Profile_Panels2_ycenter
3315 0 : s% pg% Profile_Panels2_other_ycenter = Profile_Panels2_other_ycenter
3316 0 : s% pg% Profile_Panels2_ymargin = Profile_Panels2_ymargin
3317 0 : s% pg% Profile_Panels2_other_ymargin = Profile_Panels2_other_ymargin
3318 0 : s% pg% Profile_Panels2_dymin = Profile_Panels2_dymin
3319 0 : s% pg% Profile_Panels2_other_dymin = Profile_Panels2_other_dymin
3320 0 : s% pg% Profile_Panels2_show_grid = Profile_Panels2_show_grid
3321 0 : s% pg% Profile_Panels2_use_decorator = Profile_Panels2_use_decorator
3322 :
3323 0 : s% pg% Profile_Panels3_win_flag = Profile_Panels3_win_flag
3324 0 : s% pg% Profile_Panels3_file_flag = Profile_Panels3_file_flag
3325 0 : s% pg% do_Profile_Panels3_win = do_Profile_Panels3_win
3326 0 : s% pg% do_Profile_Panels3_file = do_Profile_Panels3_file
3327 0 : s% pg% id_Profile_Panels3_win = id_Profile_Panels3_win
3328 0 : s% pg% id_Profile_Panels3_file = id_Profile_Panels3_file
3329 0 : s% pg% Profile_Panels3_file_interval = Profile_Panels3_file_interval
3330 0 : s% pg% Profile_Panels3_file_dir = Profile_Panels3_file_dir
3331 0 : s% pg% Profile_Panels3_file_prefix = Profile_Panels3_file_prefix
3332 0 : s% pg% Profile_Panels3_xaxis_reversed = Profile_Panels3_xaxis_reversed
3333 0 : s% pg% Profile_Panels3_xaxis_name = Profile_Panels3_xaxis_name
3334 0 : s% pg% Profile_Panels3_title = Profile_Panels3_title
3335 0 : s% pg% Profile_Panels3_xmin = Profile_Panels3_xmin
3336 0 : s% pg% Profile_Panels3_xmargin = Profile_Panels3_xmargin
3337 0 : s% pg% Profile_Panels3_show_mix_regions_on_xaxis = Profile_Panels3_show_mix_regions_on_xaxis
3338 0 : s% pg% Profile_Panels3_xmax = Profile_Panels3_xmax
3339 0 : s% pg% Profile_Panels3_win_width = Profile_Panels3_win_width
3340 0 : s% pg% Profile_Panels3_win_aspect_ratio = Profile_Panels3_win_aspect_ratio
3341 0 : s% pg% Profile_Panels3_xleft = Profile_Panels3_xleft
3342 0 : s% pg% Profile_Panels3_xright = Profile_Panels3_xright
3343 0 : s% pg% Profile_Panels3_ybot = Profile_Panels3_ybot
3344 0 : s% pg% Profile_Panels3_ytop = Profile_Panels3_ytop
3345 0 : s% pg% Profile_Panels3_txt_scale = Profile_Panels3_txt_scale
3346 0 : s% pg% prev_Profile_Panels3_win_width = prev_Profile_Panels3_win_width
3347 0 : s% pg% prev_Profile_Panels3_win_ratio = prev_Profile_Panels3_win_ratio
3348 0 : s% pg% Profile_Panels3_file_width = Profile_Panels3_file_width
3349 0 : s% pg% Profile_Panels3_file_aspect_ratio = Profile_Panels3_file_aspect_ratio
3350 0 : s% pg% prev_Profile_Panels3_file_width = prev_Profile_Panels3_file_width
3351 0 : s% pg% prev_Profile_Panels3_file_ratio = prev_Profile_Panels3_file_ratio
3352 0 : s% pg% Profile_Panels3_num_panels = Profile_Panels3_num_panels
3353 0 : s% pg% Profile_Panels3_yaxis_name = Profile_Panels3_yaxis_name
3354 0 : s% pg% Profile_Panels3_other_yaxis_name = Profile_Panels3_other_yaxis_name
3355 0 : s% pg% Profile_Panels3_yaxis_reversed = Profile_Panels3_yaxis_reversed
3356 0 : s% pg% Profile_Panels3_other_yaxis_reversed = Profile_Panels3_other_yaxis_reversed
3357 0 : s% pg% Profile_Panels3_yaxis_log = Profile_Panels3_yaxis_log
3358 0 : s% pg% Profile_Panels3_other_yaxis_log = Profile_Panels3_other_yaxis_log
3359 0 : s% pg% Profile_Panels3_same_yaxis_range = Profile_Panels3_same_yaxis_range
3360 0 : s% pg% Profile_Panels3_ymin = Profile_Panels3_ymin
3361 0 : s% pg% Profile_Panels3_other_ymin = Profile_Panels3_other_ymin
3362 0 : s% pg% Profile_Panels3_ymax = Profile_Panels3_ymax
3363 0 : s% pg% Profile_Panels3_other_ymax = Profile_Panels3_other_ymax
3364 0 : s% pg% Profile_Panels3_ycenter = Profile_Panels3_ycenter
3365 0 : s% pg% Profile_Panels3_other_ycenter = Profile_Panels3_other_ycenter
3366 0 : s% pg% Profile_Panels3_ymargin = Profile_Panels3_ymargin
3367 0 : s% pg% Profile_Panels3_other_ymargin = Profile_Panels3_other_ymargin
3368 0 : s% pg% Profile_Panels3_dymin = Profile_Panels3_dymin
3369 0 : s% pg% Profile_Panels3_other_dymin = Profile_Panels3_other_dymin
3370 0 : s% pg% Profile_Panels3_show_grid = Profile_Panels3_show_grid
3371 0 : s% pg% Profile_Panels3_use_decorator = Profile_Panels3_use_decorator
3372 :
3373 0 : s% pg% Profile_Panels4_win_flag = Profile_Panels4_win_flag
3374 0 : s% pg% Profile_Panels4_file_flag = Profile_Panels4_file_flag
3375 0 : s% pg% do_Profile_Panels4_win = do_Profile_Panels4_win
3376 0 : s% pg% do_Profile_Panels4_file = do_Profile_Panels4_file
3377 0 : s% pg% id_Profile_Panels4_win = id_Profile_Panels4_win
3378 0 : s% pg% id_Profile_Panels4_file = id_Profile_Panels4_file
3379 0 : s% pg% Profile_Panels4_file_interval = Profile_Panels4_file_interval
3380 0 : s% pg% Profile_Panels4_file_dir = Profile_Panels4_file_dir
3381 0 : s% pg% Profile_Panels4_file_prefix = Profile_Panels4_file_prefix
3382 0 : s% pg% Profile_Panels4_xaxis_reversed = Profile_Panels4_xaxis_reversed
3383 0 : s% pg% Profile_Panels4_xaxis_name = Profile_Panels4_xaxis_name
3384 0 : s% pg% Profile_Panels4_title = Profile_Panels4_title
3385 0 : s% pg% Profile_Panels4_xmin = Profile_Panels4_xmin
3386 0 : s% pg% Profile_Panels4_xmax = Profile_Panels4_xmax
3387 0 : s% pg% Profile_Panels4_xmargin = Profile_Panels4_xmargin
3388 0 : s% pg% Profile_Panels4_show_mix_regions_on_xaxis = Profile_Panels4_show_mix_regions_on_xaxis
3389 0 : s% pg% Profile_Panels4_win_width = Profile_Panels4_win_width
3390 0 : s% pg% Profile_Panels4_win_aspect_ratio = Profile_Panels4_win_aspect_ratio
3391 0 : s% pg% Profile_Panels4_xleft = Profile_Panels4_xleft
3392 0 : s% pg% Profile_Panels4_xright = Profile_Panels4_xright
3393 0 : s% pg% Profile_Panels4_ybot = Profile_Panels4_ybot
3394 0 : s% pg% Profile_Panels4_ytop = Profile_Panels4_ytop
3395 0 : s% pg% Profile_Panels4_txt_scale = Profile_Panels4_txt_scale
3396 0 : s% pg% prev_Profile_Panels4_win_width = prev_Profile_Panels4_win_width
3397 0 : s% pg% prev_Profile_Panels4_win_ratio = prev_Profile_Panels4_win_ratio
3398 0 : s% pg% Profile_Panels4_file_width = Profile_Panels4_file_width
3399 0 : s% pg% Profile_Panels4_file_aspect_ratio = Profile_Panels4_file_aspect_ratio
3400 0 : s% pg% prev_Profile_Panels4_file_width = prev_Profile_Panels4_file_width
3401 0 : s% pg% prev_Profile_Panels4_file_ratio = prev_Profile_Panels4_file_ratio
3402 0 : s% pg% Profile_Panels4_num_panels = Profile_Panels4_num_panels
3403 0 : s% pg% Profile_Panels4_yaxis_name = Profile_Panels4_yaxis_name
3404 0 : s% pg% Profile_Panels4_other_yaxis_name = Profile_Panels4_other_yaxis_name
3405 0 : s% pg% Profile_Panels4_yaxis_reversed = Profile_Panels4_yaxis_reversed
3406 0 : s% pg% Profile_Panels4_other_yaxis_reversed = Profile_Panels4_other_yaxis_reversed
3407 0 : s% pg% Profile_Panels4_yaxis_log = Profile_Panels4_yaxis_log
3408 0 : s% pg% Profile_Panels4_other_yaxis_log = Profile_Panels4_other_yaxis_log
3409 0 : s% pg% Profile_Panels4_same_yaxis_range = Profile_Panels4_same_yaxis_range
3410 0 : s% pg% Profile_Panels4_ymin = Profile_Panels4_ymin
3411 0 : s% pg% Profile_Panels4_other_ymin = Profile_Panels4_other_ymin
3412 0 : s% pg% Profile_Panels4_ymax = Profile_Panels4_ymax
3413 0 : s% pg% Profile_Panels4_other_ymax = Profile_Panels4_other_ymax
3414 0 : s% pg% Profile_Panels4_ycenter = Profile_Panels4_ycenter
3415 0 : s% pg% Profile_Panels4_other_ycenter = Profile_Panels4_other_ycenter
3416 0 : s% pg% Profile_Panels4_ymargin = Profile_Panels4_ymargin
3417 0 : s% pg% Profile_Panels4_other_ymargin = Profile_Panels4_other_ymargin
3418 0 : s% pg% Profile_Panels4_dymin = Profile_Panels4_dymin
3419 0 : s% pg% Profile_Panels4_other_dymin = Profile_Panels4_other_dymin
3420 0 : s% pg% Profile_Panels4_show_grid = Profile_Panels4_show_grid
3421 0 : s% pg% Profile_Panels4_use_decorator = Profile_Panels4_use_decorator
3422 :
3423 0 : s% pg% Profile_Panels5_win_flag = Profile_Panels5_win_flag
3424 0 : s% pg% Profile_Panels5_file_flag = Profile_Panels5_file_flag
3425 0 : s% pg% do_Profile_Panels5_win = do_Profile_Panels5_win
3426 0 : s% pg% do_Profile_Panels5_file = do_Profile_Panels5_file
3427 0 : s% pg% id_Profile_Panels5_win = id_Profile_Panels5_win
3428 0 : s% pg% id_Profile_Panels5_file = id_Profile_Panels5_file
3429 0 : s% pg% Profile_Panels5_file_interval = Profile_Panels5_file_interval
3430 0 : s% pg% Profile_Panels5_file_dir = Profile_Panels5_file_dir
3431 0 : s% pg% Profile_Panels5_file_prefix = Profile_Panels5_file_prefix
3432 0 : s% pg% Profile_Panels5_xaxis_reversed = Profile_Panels5_xaxis_reversed
3433 0 : s% pg% Profile_Panels5_xaxis_name = Profile_Panels5_xaxis_name
3434 0 : s% pg% Profile_Panels5_title = Profile_Panels5_title
3435 0 : s% pg% Profile_Panels5_xmin = Profile_Panels5_xmin
3436 0 : s% pg% Profile_Panels5_xmax = Profile_Panels5_xmax
3437 0 : s% pg% Profile_Panels5_xmargin = Profile_Panels5_xmargin
3438 0 : s% pg% Profile_Panels5_show_mix_regions_on_xaxis = Profile_Panels5_show_mix_regions_on_xaxis
3439 0 : s% pg% Profile_Panels5_win_width = Profile_Panels5_win_width
3440 0 : s% pg% Profile_Panels5_win_aspect_ratio = Profile_Panels5_win_aspect_ratio
3441 0 : s% pg% Profile_Panels5_xleft = Profile_Panels5_xleft
3442 0 : s% pg% Profile_Panels5_xright = Profile_Panels5_xright
3443 0 : s% pg% Profile_Panels5_ybot = Profile_Panels5_ybot
3444 0 : s% pg% Profile_Panels5_ytop = Profile_Panels5_ytop
3445 0 : s% pg% Profile_Panels5_txt_scale = Profile_Panels5_txt_scale
3446 0 : s% pg% prev_Profile_Panels5_win_width = prev_Profile_Panels5_win_width
3447 0 : s% pg% prev_Profile_Panels5_win_ratio = prev_Profile_Panels5_win_ratio
3448 0 : s% pg% Profile_Panels5_file_width = Profile_Panels5_file_width
3449 0 : s% pg% Profile_Panels5_file_aspect_ratio = Profile_Panels5_file_aspect_ratio
3450 0 : s% pg% prev_Profile_Panels5_file_width = prev_Profile_Panels5_file_width
3451 0 : s% pg% prev_Profile_Panels5_file_ratio = prev_Profile_Panels5_file_ratio
3452 0 : s% pg% Profile_Panels5_num_panels = Profile_Panels5_num_panels
3453 0 : s% pg% Profile_Panels5_yaxis_name = Profile_Panels5_yaxis_name
3454 0 : s% pg% Profile_Panels5_other_yaxis_name = Profile_Panels5_other_yaxis_name
3455 0 : s% pg% Profile_Panels5_yaxis_reversed = Profile_Panels5_yaxis_reversed
3456 0 : s% pg% Profile_Panels5_other_yaxis_reversed = Profile_Panels5_other_yaxis_reversed
3457 0 : s% pg% Profile_Panels5_yaxis_log = Profile_Panels5_yaxis_log
3458 0 : s% pg% Profile_Panels5_other_yaxis_log = Profile_Panels5_other_yaxis_log
3459 0 : s% pg% Profile_Panels5_same_yaxis_range = Profile_Panels5_same_yaxis_range
3460 0 : s% pg% Profile_Panels5_ymin = Profile_Panels5_ymin
3461 0 : s% pg% Profile_Panels5_other_ymin = Profile_Panels5_other_ymin
3462 0 : s% pg% Profile_Panels5_ymax = Profile_Panels5_ymax
3463 0 : s% pg% Profile_Panels5_other_ymax = Profile_Panels5_other_ymax
3464 0 : s% pg% Profile_Panels5_ycenter = Profile_Panels5_ycenter
3465 0 : s% pg% Profile_Panels5_other_ycenter = Profile_Panels5_other_ycenter
3466 0 : s% pg% Profile_Panels5_ymargin = Profile_Panels5_ymargin
3467 0 : s% pg% Profile_Panels5_other_ymargin = Profile_Panels5_other_ymargin
3468 0 : s% pg% Profile_Panels5_dymin = Profile_Panels5_dymin
3469 0 : s% pg% Profile_Panels5_other_dymin = Profile_Panels5_other_dymin
3470 0 : s% pg% Profile_Panels5_show_grid = Profile_Panels5_show_grid
3471 0 : s% pg% Profile_Panels5_use_decorator = Profile_Panels5_use_decorator
3472 :
3473 0 : s% pg% Profile_Panels6_win_flag = Profile_Panels6_win_flag
3474 0 : s% pg% Profile_Panels6_file_flag = Profile_Panels6_file_flag
3475 0 : s% pg% do_Profile_Panels6_win = do_Profile_Panels6_win
3476 0 : s% pg% do_Profile_Panels6_file = do_Profile_Panels6_file
3477 0 : s% pg% id_Profile_Panels6_win = id_Profile_Panels6_win
3478 0 : s% pg% id_Profile_Panels6_file = id_Profile_Panels6_file
3479 0 : s% pg% Profile_Panels6_file_interval = Profile_Panels6_file_interval
3480 0 : s% pg% Profile_Panels6_file_dir = Profile_Panels6_file_dir
3481 0 : s% pg% Profile_Panels6_file_prefix = Profile_Panels6_file_prefix
3482 0 : s% pg% Profile_Panels6_xaxis_reversed = Profile_Panels6_xaxis_reversed
3483 0 : s% pg% Profile_Panels6_xaxis_name = Profile_Panels6_xaxis_name
3484 0 : s% pg% Profile_Panels6_title = Profile_Panels6_title
3485 0 : s% pg% Profile_Panels6_xmin = Profile_Panels6_xmin
3486 0 : s% pg% Profile_Panels6_xmax = Profile_Panels6_xmax
3487 0 : s% pg% Profile_Panels6_xmargin = Profile_Panels6_xmargin
3488 0 : s% pg% Profile_Panels6_show_mix_regions_on_xaxis = Profile_Panels6_show_mix_regions_on_xaxis
3489 0 : s% pg% Profile_Panels6_win_width = Profile_Panels6_win_width
3490 0 : s% pg% Profile_Panels6_win_aspect_ratio = Profile_Panels6_win_aspect_ratio
3491 0 : s% pg% Profile_Panels6_xleft = Profile_Panels6_xleft
3492 0 : s% pg% Profile_Panels6_xright = Profile_Panels6_xright
3493 0 : s% pg% Profile_Panels6_ybot = Profile_Panels6_ybot
3494 0 : s% pg% Profile_Panels6_ytop = Profile_Panels6_ytop
3495 0 : s% pg% Profile_Panels6_txt_scale = Profile_Panels6_txt_scale
3496 0 : s% pg% prev_Profile_Panels6_win_width = prev_Profile_Panels6_win_width
3497 0 : s% pg% prev_Profile_Panels6_win_ratio = prev_Profile_Panels6_win_ratio
3498 0 : s% pg% Profile_Panels6_file_width = Profile_Panels6_file_width
3499 0 : s% pg% Profile_Panels6_file_aspect_ratio = Profile_Panels6_file_aspect_ratio
3500 0 : s% pg% prev_Profile_Panels6_file_width = prev_Profile_Panels6_file_width
3501 0 : s% pg% prev_Profile_Panels6_file_ratio = prev_Profile_Panels6_file_ratio
3502 0 : s% pg% Profile_Panels6_num_panels = Profile_Panels6_num_panels
3503 0 : s% pg% Profile_Panels6_yaxis_name = Profile_Panels6_yaxis_name
3504 0 : s% pg% Profile_Panels6_other_yaxis_name = Profile_Panels6_other_yaxis_name
3505 0 : s% pg% Profile_Panels6_yaxis_reversed = Profile_Panels6_yaxis_reversed
3506 0 : s% pg% Profile_Panels6_other_yaxis_reversed = Profile_Panels6_other_yaxis_reversed
3507 0 : s% pg% Profile_Panels6_yaxis_log = Profile_Panels6_yaxis_log
3508 0 : s% pg% Profile_Panels6_other_yaxis_log = Profile_Panels6_other_yaxis_log
3509 0 : s% pg% Profile_Panels6_same_yaxis_range = Profile_Panels6_same_yaxis_range
3510 0 : s% pg% Profile_Panels6_ymin = Profile_Panels6_ymin
3511 0 : s% pg% Profile_Panels6_other_ymin = Profile_Panels6_other_ymin
3512 0 : s% pg% Profile_Panels6_ymax = Profile_Panels6_ymax
3513 0 : s% pg% Profile_Panels6_other_ymax = Profile_Panels6_other_ymax
3514 0 : s% pg% Profile_Panels6_ycenter = Profile_Panels6_ycenter
3515 0 : s% pg% Profile_Panels6_other_ycenter = Profile_Panels6_other_ycenter
3516 0 : s% pg% Profile_Panels6_ymargin = Profile_Panels6_ymargin
3517 0 : s% pg% Profile_Panels6_other_ymargin = Profile_Panels6_other_ymargin
3518 0 : s% pg% Profile_Panels6_dymin = Profile_Panels6_dymin
3519 0 : s% pg% Profile_Panels6_other_dymin = Profile_Panels6_other_dymin
3520 0 : s% pg% Profile_Panels6_show_grid = Profile_Panels6_show_grid
3521 0 : s% pg% Profile_Panels6_use_decorator = Profile_Panels6_use_decorator
3522 :
3523 0 : s% pg% Profile_Panels7_win_flag = Profile_Panels7_win_flag
3524 0 : s% pg% Profile_Panels7_file_flag = Profile_Panels7_file_flag
3525 0 : s% pg% do_Profile_Panels7_win = do_Profile_Panels7_win
3526 0 : s% pg% do_Profile_Panels7_file = do_Profile_Panels7_file
3527 0 : s% pg% id_Profile_Panels7_win = id_Profile_Panels7_win
3528 0 : s% pg% id_Profile_Panels7_file = id_Profile_Panels7_file
3529 0 : s% pg% Profile_Panels7_file_interval = Profile_Panels7_file_interval
3530 0 : s% pg% Profile_Panels7_file_dir = Profile_Panels7_file_dir
3531 0 : s% pg% Profile_Panels7_file_prefix = Profile_Panels7_file_prefix
3532 0 : s% pg% Profile_Panels7_xaxis_reversed = Profile_Panels7_xaxis_reversed
3533 0 : s% pg% Profile_Panels7_xaxis_name = Profile_Panels7_xaxis_name
3534 0 : s% pg% Profile_Panels7_title = Profile_Panels7_title
3535 0 : s% pg% Profile_Panels7_xmin = Profile_Panels7_xmin
3536 0 : s% pg% Profile_Panels7_xmax = Profile_Panels7_xmax
3537 0 : s% pg% Profile_Panels7_xmargin = Profile_Panels7_xmargin
3538 0 : s% pg% Profile_Panels7_show_mix_regions_on_xaxis = Profile_Panels7_show_mix_regions_on_xaxis
3539 0 : s% pg% Profile_Panels7_win_width = Profile_Panels7_win_width
3540 0 : s% pg% Profile_Panels7_win_aspect_ratio = Profile_Panels7_win_aspect_ratio
3541 0 : s% pg% Profile_Panels7_xleft = Profile_Panels7_xleft
3542 0 : s% pg% Profile_Panels7_xright = Profile_Panels7_xright
3543 0 : s% pg% Profile_Panels7_ybot = Profile_Panels7_ybot
3544 0 : s% pg% Profile_Panels7_ytop = Profile_Panels7_ytop
3545 0 : s% pg% Profile_Panels7_txt_scale = Profile_Panels7_txt_scale
3546 0 : s% pg% prev_Profile_Panels7_win_width = prev_Profile_Panels7_win_width
3547 0 : s% pg% prev_Profile_Panels7_win_ratio = prev_Profile_Panels7_win_ratio
3548 0 : s% pg% Profile_Panels7_file_width = Profile_Panels7_file_width
3549 0 : s% pg% Profile_Panels7_file_aspect_ratio = Profile_Panels7_file_aspect_ratio
3550 0 : s% pg% prev_Profile_Panels7_file_width = prev_Profile_Panels7_file_width
3551 0 : s% pg% prev_Profile_Panels7_file_ratio = prev_Profile_Panels7_file_ratio
3552 0 : s% pg% Profile_Panels7_num_panels = Profile_Panels7_num_panels
3553 0 : s% pg% Profile_Panels7_yaxis_name = Profile_Panels7_yaxis_name
3554 0 : s% pg% Profile_Panels7_other_yaxis_name = Profile_Panels7_other_yaxis_name
3555 0 : s% pg% Profile_Panels7_yaxis_reversed = Profile_Panels7_yaxis_reversed
3556 0 : s% pg% Profile_Panels7_other_yaxis_reversed = Profile_Panels7_other_yaxis_reversed
3557 0 : s% pg% Profile_Panels7_yaxis_log = Profile_Panels7_yaxis_log
3558 0 : s% pg% Profile_Panels7_other_yaxis_log = Profile_Panels7_other_yaxis_log
3559 0 : s% pg% Profile_Panels7_same_yaxis_range = Profile_Panels7_same_yaxis_range
3560 0 : s% pg% Profile_Panels7_ymin = Profile_Panels7_ymin
3561 0 : s% pg% Profile_Panels7_other_ymin = Profile_Panels7_other_ymin
3562 0 : s% pg% Profile_Panels7_ymax = Profile_Panels7_ymax
3563 0 : s% pg% Profile_Panels7_other_ymax = Profile_Panels7_other_ymax
3564 0 : s% pg% Profile_Panels7_ycenter = Profile_Panels7_ycenter
3565 0 : s% pg% Profile_Panels7_other_ycenter = Profile_Panels7_other_ycenter
3566 0 : s% pg% Profile_Panels7_ymargin = Profile_Panels7_ymargin
3567 0 : s% pg% Profile_Panels7_other_ymargin = Profile_Panels7_other_ymargin
3568 0 : s% pg% Profile_Panels7_dymin = Profile_Panels7_dymin
3569 0 : s% pg% Profile_Panels7_other_dymin = Profile_Panels7_other_dymin
3570 0 : s% pg% Profile_Panels7_show_grid = Profile_Panels7_show_grid
3571 0 : s% pg% Profile_Panels7_use_decorator = Profile_Panels7_use_decorator
3572 :
3573 0 : s% pg% Profile_Panels8_win_flag = Profile_Panels8_win_flag
3574 0 : s% pg% Profile_Panels8_file_flag = Profile_Panels8_file_flag
3575 0 : s% pg% do_Profile_Panels8_win = do_Profile_Panels8_win
3576 0 : s% pg% do_Profile_Panels8_file = do_Profile_Panels8_file
3577 0 : s% pg% id_Profile_Panels8_win = id_Profile_Panels8_win
3578 0 : s% pg% id_Profile_Panels8_file = id_Profile_Panels8_file
3579 0 : s% pg% Profile_Panels8_file_interval = Profile_Panels8_file_interval
3580 0 : s% pg% Profile_Panels8_file_dir = Profile_Panels8_file_dir
3581 0 : s% pg% Profile_Panels8_file_prefix = Profile_Panels8_file_prefix
3582 0 : s% pg% Profile_Panels8_xaxis_reversed = Profile_Panels8_xaxis_reversed
3583 0 : s% pg% Profile_Panels8_xaxis_name = Profile_Panels8_xaxis_name
3584 0 : s% pg% Profile_Panels8_title = Profile_Panels8_title
3585 0 : s% pg% Profile_Panels8_xmin = Profile_Panels8_xmin
3586 0 : s% pg% Profile_Panels8_xmax = Profile_Panels8_xmax
3587 0 : s% pg% Profile_Panels8_xmargin = Profile_Panels8_xmargin
3588 0 : s% pg% Profile_Panels8_show_mix_regions_on_xaxis = Profile_Panels8_show_mix_regions_on_xaxis
3589 0 : s% pg% Profile_Panels8_win_width = Profile_Panels8_win_width
3590 0 : s% pg% Profile_Panels8_win_aspect_ratio = Profile_Panels8_win_aspect_ratio
3591 0 : s% pg% Profile_Panels8_xleft = Profile_Panels8_xleft
3592 0 : s% pg% Profile_Panels8_xright = Profile_Panels8_xright
3593 0 : s% pg% Profile_Panels8_ybot = Profile_Panels8_ybot
3594 0 : s% pg% Profile_Panels8_ytop = Profile_Panels8_ytop
3595 0 : s% pg% Profile_Panels8_txt_scale = Profile_Panels8_txt_scale
3596 0 : s% pg% prev_Profile_Panels8_win_width = prev_Profile_Panels8_win_width
3597 0 : s% pg% prev_Profile_Panels8_win_ratio = prev_Profile_Panels8_win_ratio
3598 0 : s% pg% Profile_Panels8_file_width = Profile_Panels8_file_width
3599 0 : s% pg% Profile_Panels8_file_aspect_ratio = Profile_Panels8_file_aspect_ratio
3600 0 : s% pg% prev_Profile_Panels8_file_width = prev_Profile_Panels8_file_width
3601 0 : s% pg% prev_Profile_Panels8_file_ratio = prev_Profile_Panels8_file_ratio
3602 0 : s% pg% Profile_Panels8_num_panels = Profile_Panels8_num_panels
3603 0 : s% pg% Profile_Panels8_yaxis_name = Profile_Panels8_yaxis_name
3604 0 : s% pg% Profile_Panels8_other_yaxis_name = Profile_Panels8_other_yaxis_name
3605 0 : s% pg% Profile_Panels8_yaxis_reversed = Profile_Panels8_yaxis_reversed
3606 0 : s% pg% Profile_Panels8_other_yaxis_reversed = Profile_Panels8_other_yaxis_reversed
3607 0 : s% pg% Profile_Panels8_yaxis_log = Profile_Panels8_yaxis_log
3608 0 : s% pg% Profile_Panels8_other_yaxis_log = Profile_Panels8_other_yaxis_log
3609 0 : s% pg% Profile_Panels8_same_yaxis_range = Profile_Panels8_same_yaxis_range
3610 0 : s% pg% Profile_Panels8_ymin = Profile_Panels8_ymin
3611 0 : s% pg% Profile_Panels8_other_ymin = Profile_Panels8_other_ymin
3612 0 : s% pg% Profile_Panels8_ymax = Profile_Panels8_ymax
3613 0 : s% pg% Profile_Panels8_other_ymax = Profile_Panels8_other_ymax
3614 0 : s% pg% Profile_Panels8_ycenter = Profile_Panels8_ycenter
3615 0 : s% pg% Profile_Panels8_other_ycenter = Profile_Panels8_other_ycenter
3616 0 : s% pg% Profile_Panels8_ymargin = Profile_Panels8_ymargin
3617 0 : s% pg% Profile_Panels8_other_ymargin = Profile_Panels8_other_ymargin
3618 0 : s% pg% Profile_Panels8_dymin = Profile_Panels8_dymin
3619 0 : s% pg% Profile_Panels8_other_dymin = Profile_Panels8_other_dymin
3620 0 : s% pg% Profile_Panels8_show_grid = Profile_Panels8_show_grid
3621 0 : s% pg% Profile_Panels8_use_decorator = Profile_Panels8_use_decorator
3622 :
3623 :
3624 0 : s% pg% Profile_Panels9_win_flag = Profile_Panels9_win_flag
3625 0 : s% pg% Profile_Panels9_file_flag = Profile_Panels9_file_flag
3626 0 : s% pg% do_Profile_Panels9_win = do_Profile_Panels9_win
3627 0 : s% pg% do_Profile_Panels9_file = do_Profile_Panels9_file
3628 0 : s% pg% id_Profile_Panels9_win = id_Profile_Panels9_win
3629 0 : s% pg% id_Profile_Panels9_file = id_Profile_Panels9_file
3630 0 : s% pg% Profile_Panels9_file_interval = Profile_Panels9_file_interval
3631 0 : s% pg% Profile_Panels9_file_dir = Profile_Panels9_file_dir
3632 0 : s% pg% Profile_Panels9_file_prefix = Profile_Panels9_file_prefix
3633 0 : s% pg% Profile_Panels9_xaxis_reversed = Profile_Panels9_xaxis_reversed
3634 0 : s% pg% Profile_Panels9_xaxis_name = Profile_Panels9_xaxis_name
3635 0 : s% pg% Profile_Panels9_title = Profile_Panels9_title
3636 0 : s% pg% Profile_Panels9_xmin = Profile_Panels9_xmin
3637 0 : s% pg% Profile_Panels9_xmax = Profile_Panels9_xmax
3638 0 : s% pg% Profile_Panels9_xmargin = Profile_Panels9_xmargin
3639 0 : s% pg% Profile_Panels9_show_mix_regions_on_xaxis = Profile_Panels9_show_mix_regions_on_xaxis
3640 0 : s% pg% Profile_Panels9_win_width = Profile_Panels9_win_width
3641 0 : s% pg% Profile_Panels9_win_aspect_ratio = Profile_Panels9_win_aspect_ratio
3642 0 : s% pg% Profile_Panels9_xleft = Profile_Panels9_xleft
3643 0 : s% pg% Profile_Panels9_xright = Profile_Panels9_xright
3644 0 : s% pg% Profile_Panels9_ybot = Profile_Panels9_ybot
3645 0 : s% pg% Profile_Panels9_ytop = Profile_Panels9_ytop
3646 0 : s% pg% Profile_Panels9_txt_scale = Profile_Panels9_txt_scale
3647 0 : s% pg% prev_Profile_Panels9_win_width = prev_Profile_Panels9_win_width
3648 0 : s% pg% prev_Profile_Panels9_win_ratio = prev_Profile_Panels9_win_ratio
3649 0 : s% pg% Profile_Panels9_file_width = Profile_Panels9_file_width
3650 0 : s% pg% Profile_Panels9_file_aspect_ratio = Profile_Panels9_file_aspect_ratio
3651 0 : s% pg% prev_Profile_Panels9_file_width = prev_Profile_Panels9_file_width
3652 0 : s% pg% prev_Profile_Panels9_file_ratio = prev_Profile_Panels9_file_ratio
3653 0 : s% pg% Profile_Panels9_num_panels = Profile_Panels9_num_panels
3654 0 : s% pg% Profile_Panels9_yaxis_name = Profile_Panels9_yaxis_name
3655 0 : s% pg% Profile_Panels9_other_yaxis_name = Profile_Panels9_other_yaxis_name
3656 0 : s% pg% Profile_Panels9_yaxis_reversed = Profile_Panels9_yaxis_reversed
3657 0 : s% pg% Profile_Panels9_other_yaxis_reversed = Profile_Panels9_other_yaxis_reversed
3658 0 : s% pg% Profile_Panels9_yaxis_log = Profile_Panels9_yaxis_log
3659 0 : s% pg% Profile_Panels9_other_yaxis_log = Profile_Panels9_other_yaxis_log
3660 0 : s% pg% Profile_Panels9_same_yaxis_range = Profile_Panels9_same_yaxis_range
3661 0 : s% pg% Profile_Panels9_ymin = Profile_Panels9_ymin
3662 0 : s% pg% Profile_Panels9_other_ymin = Profile_Panels9_other_ymin
3663 0 : s% pg% Profile_Panels9_ymax = Profile_Panels9_ymax
3664 0 : s% pg% Profile_Panels9_other_ymax = Profile_Panels9_other_ymax
3665 0 : s% pg% Profile_Panels9_ycenter = Profile_Panels9_ycenter
3666 0 : s% pg% Profile_Panels9_other_ycenter = Profile_Panels9_other_ycenter
3667 0 : s% pg% Profile_Panels9_ymargin = Profile_Panels9_ymargin
3668 0 : s% pg% Profile_Panels9_other_ymargin = Profile_Panels9_other_ymargin
3669 0 : s% pg% Profile_Panels9_dymin = Profile_Panels9_dymin
3670 0 : s% pg% Profile_Panels9_other_dymin = Profile_Panels9_other_dymin
3671 0 : s% pg% Profile_Panels9_show_grid = Profile_Panels9_show_grid
3672 0 : s% pg% Profile_Panels9_use_decorator = Profile_Panels9_use_decorator
3673 :
3674 0 : s% pg% Text_Summary1_win_flag = Text_Summary1_win_flag
3675 0 : s% pg% Text_Summary1_file_flag = Text_Summary1_file_flag
3676 0 : s% pg% Text_Summary1_file_interval = Text_Summary1_file_interval
3677 0 : s% pg% Text_Summary1_file_dir = Text_Summary1_file_dir
3678 0 : s% pg% Text_Summary1_file_prefix = Text_Summary1_file_prefix
3679 0 : s% pg% Text_Summary1_num_cols = Text_Summary1_num_cols
3680 0 : s% pg% Text_Summary1_num_rows = Text_Summary1_num_rows
3681 0 : s% pg% Text_Summary1_name = Text_Summary1_name
3682 0 : s% pg% Text_Summary1_win_width = Text_Summary1_win_width
3683 0 : s% pg% Text_Summary1_win_aspect_ratio = Text_Summary1_win_aspect_ratio
3684 0 : s% pg% Text_Summary1_file_width = Text_Summary1_file_width
3685 0 : s% pg% Text_Summary1_file_aspect_ratio = Text_Summary1_file_aspect_ratio
3686 0 : s% pg% Text_Summary1_title = Text_Summary1_title
3687 0 : s% pg% Text_Summary1_xleft = Text_Summary1_xleft
3688 0 : s% pg% Text_Summary1_xright = Text_Summary1_xright
3689 0 : s% pg% Text_Summary1_ybot = Text_Summary1_ybot
3690 0 : s% pg% Text_Summary1_ytop = Text_Summary1_ytop
3691 0 : s% pg% Text_Summary1_txt_scale = Text_Summary1_txt_scale
3692 0 : s% pg% Text_Summary1_dxval = Text_Summary1_dxval
3693 :
3694 0 : s% pg% Text_Summary2_win_flag = Text_Summary2_win_flag
3695 0 : s% pg% Text_Summary2_file_flag = Text_Summary2_file_flag
3696 0 : s% pg% Text_Summary2_file_interval = Text_Summary2_file_interval
3697 0 : s% pg% Text_Summary2_file_dir = Text_Summary2_file_dir
3698 0 : s% pg% Text_Summary2_file_prefix = Text_Summary2_file_prefix
3699 0 : s% pg% Text_Summary2_num_cols = Text_Summary2_num_cols
3700 0 : s% pg% Text_Summary2_num_rows = Text_Summary2_num_rows
3701 0 : s% pg% Text_Summary2_name = Text_Summary2_name
3702 0 : s% pg% Text_Summary2_win_width = Text_Summary2_win_width
3703 0 : s% pg% Text_Summary2_win_aspect_ratio = Text_Summary2_win_aspect_ratio
3704 0 : s% pg% Text_Summary2_file_width = Text_Summary2_file_width
3705 0 : s% pg% Text_Summary2_file_aspect_ratio = Text_Summary2_file_aspect_ratio
3706 0 : s% pg% Text_Summary2_title = Text_Summary2_title
3707 0 : s% pg% Text_Summary2_xleft = Text_Summary2_xleft
3708 0 : s% pg% Text_Summary2_xright = Text_Summary2_xright
3709 0 : s% pg% Text_Summary2_ybot = Text_Summary2_ybot
3710 0 : s% pg% Text_Summary2_ytop = Text_Summary2_ytop
3711 0 : s% pg% Text_Summary2_txt_scale = Text_Summary2_txt_scale
3712 0 : s% pg% Text_Summary2_dxval = Text_Summary2_dxval
3713 :
3714 0 : s% pg% Text_Summary3_win_flag = Text_Summary3_win_flag
3715 0 : s% pg% Text_Summary3_file_flag = Text_Summary3_file_flag
3716 0 : s% pg% Text_Summary3_file_interval = Text_Summary3_file_interval
3717 0 : s% pg% Text_Summary3_file_dir = Text_Summary3_file_dir
3718 0 : s% pg% Text_Summary3_file_prefix = Text_Summary3_file_prefix
3719 0 : s% pg% Text_Summary3_num_cols = Text_Summary3_num_cols
3720 0 : s% pg% Text_Summary3_num_rows = Text_Summary3_num_rows
3721 0 : s% pg% Text_Summary3_name = Text_Summary3_name
3722 0 : s% pg% Text_Summary3_win_width = Text_Summary3_win_width
3723 0 : s% pg% Text_Summary3_win_aspect_ratio = Text_Summary3_win_aspect_ratio
3724 0 : s% pg% Text_Summary3_file_width = Text_Summary3_file_width
3725 0 : s% pg% Text_Summary3_file_aspect_ratio = Text_Summary3_file_aspect_ratio
3726 0 : s% pg% Text_Summary3_title = Text_Summary3_title
3727 0 : s% pg% Text_Summary3_xleft = Text_Summary3_xleft
3728 0 : s% pg% Text_Summary3_xright = Text_Summary3_xright
3729 0 : s% pg% Text_Summary3_ybot = Text_Summary3_ybot
3730 0 : s% pg% Text_Summary3_ytop = Text_Summary3_ytop
3731 0 : s% pg% Text_Summary3_txt_scale = Text_Summary3_txt_scale
3732 0 : s% pg% Text_Summary3_dxval = Text_Summary3_dxval
3733 :
3734 0 : s% pg% Text_Summary4_win_flag = Text_Summary4_win_flag
3735 0 : s% pg% Text_Summary4_file_flag = Text_Summary4_file_flag
3736 0 : s% pg% Text_Summary4_file_interval = Text_Summary4_file_interval
3737 0 : s% pg% Text_Summary4_file_dir = Text_Summary4_file_dir
3738 0 : s% pg% Text_Summary4_file_prefix = Text_Summary4_file_prefix
3739 0 : s% pg% Text_Summary4_num_cols = Text_Summary4_num_cols
3740 0 : s% pg% Text_Summary4_num_rows = Text_Summary4_num_rows
3741 0 : s% pg% Text_Summary4_name = Text_Summary4_name
3742 0 : s% pg% Text_Summary4_win_width = Text_Summary4_win_width
3743 0 : s% pg% Text_Summary4_win_aspect_ratio = Text_Summary4_win_aspect_ratio
3744 0 : s% pg% Text_Summary4_file_width = Text_Summary4_file_width
3745 0 : s% pg% Text_Summary4_file_aspect_ratio = Text_Summary4_file_aspect_ratio
3746 0 : s% pg% Text_Summary4_title = Text_Summary4_title
3747 0 : s% pg% Text_Summary4_xleft = Text_Summary4_xleft
3748 0 : s% pg% Text_Summary4_xright = Text_Summary4_xright
3749 0 : s% pg% Text_Summary4_ybot = Text_Summary4_ybot
3750 0 : s% pg% Text_Summary4_ytop = Text_Summary4_ytop
3751 0 : s% pg% Text_Summary4_txt_scale = Text_Summary4_txt_scale
3752 0 : s% pg% Text_Summary4_dxval = Text_Summary4_dxval
3753 :
3754 0 : s% pg% Text_Summary5_win_flag = Text_Summary5_win_flag
3755 0 : s% pg% Text_Summary5_file_flag = Text_Summary5_file_flag
3756 0 : s% pg% Text_Summary5_file_interval = Text_Summary5_file_interval
3757 0 : s% pg% Text_Summary5_file_dir = Text_Summary5_file_dir
3758 0 : s% pg% Text_Summary5_file_prefix = Text_Summary5_file_prefix
3759 0 : s% pg% Text_Summary5_num_cols = Text_Summary5_num_cols
3760 0 : s% pg% Text_Summary5_num_rows = Text_Summary5_num_rows
3761 0 : s% pg% Text_Summary5_name = Text_Summary5_name
3762 0 : s% pg% Text_Summary5_win_width = Text_Summary5_win_width
3763 0 : s% pg% Text_Summary5_win_aspect_ratio = Text_Summary5_win_aspect_ratio
3764 0 : s% pg% Text_Summary5_file_width = Text_Summary5_file_width
3765 0 : s% pg% Text_Summary5_file_aspect_ratio = Text_Summary5_file_aspect_ratio
3766 0 : s% pg% Text_Summary5_title = Text_Summary5_title
3767 0 : s% pg% Text_Summary5_xleft = Text_Summary5_xleft
3768 0 : s% pg% Text_Summary5_xright = Text_Summary5_xright
3769 0 : s% pg% Text_Summary5_ybot = Text_Summary5_ybot
3770 0 : s% pg% Text_Summary5_ytop = Text_Summary5_ytop
3771 0 : s% pg% Text_Summary5_txt_scale = Text_Summary5_txt_scale
3772 0 : s% pg% Text_Summary5_dxval = Text_Summary5_dxval
3773 :
3774 0 : s% pg% Text_Summary6_win_flag = Text_Summary6_win_flag
3775 0 : s% pg% Text_Summary6_file_flag = Text_Summary6_file_flag
3776 0 : s% pg% Text_Summary6_file_interval = Text_Summary6_file_interval
3777 0 : s% pg% Text_Summary6_file_dir = Text_Summary6_file_dir
3778 0 : s% pg% Text_Summary6_file_prefix = Text_Summary6_file_prefix
3779 0 : s% pg% Text_Summary6_num_cols = Text_Summary6_num_cols
3780 0 : s% pg% Text_Summary6_num_rows = Text_Summary6_num_rows
3781 0 : s% pg% Text_Summary6_name = Text_Summary6_name
3782 0 : s% pg% Text_Summary6_win_width = Text_Summary6_win_width
3783 0 : s% pg% Text_Summary6_win_aspect_ratio = Text_Summary6_win_aspect_ratio
3784 0 : s% pg% Text_Summary6_file_width = Text_Summary6_file_width
3785 0 : s% pg% Text_Summary6_file_aspect_ratio = Text_Summary6_file_aspect_ratio
3786 0 : s% pg% Text_Summary6_title = Text_Summary6_title
3787 0 : s% pg% Text_Summary6_xleft = Text_Summary6_xleft
3788 0 : s% pg% Text_Summary6_xright = Text_Summary6_xright
3789 0 : s% pg% Text_Summary6_ybot = Text_Summary6_ybot
3790 0 : s% pg% Text_Summary6_ytop = Text_Summary6_ytop
3791 0 : s% pg% Text_Summary6_txt_scale = Text_Summary6_txt_scale
3792 0 : s% pg% Text_Summary6_dxval = Text_Summary6_dxval
3793 :
3794 0 : s% pg% Text_Summary7_win_flag = Text_Summary7_win_flag
3795 0 : s% pg% Text_Summary7_file_flag = Text_Summary7_file_flag
3796 0 : s% pg% Text_Summary7_file_interval = Text_Summary7_file_interval
3797 0 : s% pg% Text_Summary7_file_dir = Text_Summary7_file_dir
3798 0 : s% pg% Text_Summary7_file_prefix = Text_Summary7_file_prefix
3799 0 : s% pg% Text_Summary7_num_cols = Text_Summary7_num_cols
3800 0 : s% pg% Text_Summary7_num_rows = Text_Summary7_num_rows
3801 0 : s% pg% Text_Summary7_name = Text_Summary7_name
3802 0 : s% pg% Text_Summary7_win_width = Text_Summary7_win_width
3803 0 : s% pg% Text_Summary7_win_aspect_ratio = Text_Summary7_win_aspect_ratio
3804 0 : s% pg% Text_Summary7_file_width = Text_Summary7_file_width
3805 0 : s% pg% Text_Summary7_file_aspect_ratio = Text_Summary7_file_aspect_ratio
3806 0 : s% pg% Text_Summary7_title = Text_Summary7_title
3807 0 : s% pg% Text_Summary7_xleft = Text_Summary7_xleft
3808 0 : s% pg% Text_Summary7_xright = Text_Summary7_xright
3809 0 : s% pg% Text_Summary7_ybot = Text_Summary7_ybot
3810 0 : s% pg% Text_Summary7_ytop = Text_Summary7_ytop
3811 0 : s% pg% Text_Summary7_txt_scale = Text_Summary7_txt_scale
3812 0 : s% pg% Text_Summary7_dxval = Text_Summary7_dxval
3813 :
3814 0 : s% pg% Text_Summary8_win_flag = Text_Summary8_win_flag
3815 0 : s% pg% Text_Summary8_file_flag = Text_Summary8_file_flag
3816 0 : s% pg% Text_Summary8_file_interval = Text_Summary8_file_interval
3817 0 : s% pg% Text_Summary8_file_dir = Text_Summary8_file_dir
3818 0 : s% pg% Text_Summary8_file_prefix = Text_Summary8_file_prefix
3819 0 : s% pg% Text_Summary8_num_cols = Text_Summary8_num_cols
3820 0 : s% pg% Text_Summary8_num_rows = Text_Summary8_num_rows
3821 0 : s% pg% Text_Summary8_name = Text_Summary8_name
3822 0 : s% pg% Text_Summary8_win_width = Text_Summary8_win_width
3823 0 : s% pg% Text_Summary8_win_aspect_ratio = Text_Summary8_win_aspect_ratio
3824 0 : s% pg% Text_Summary8_file_width = Text_Summary8_file_width
3825 0 : s% pg% Text_Summary8_file_aspect_ratio = Text_Summary8_file_aspect_ratio
3826 0 : s% pg% Text_Summary8_title = Text_Summary8_title
3827 0 : s% pg% Text_Summary8_xleft = Text_Summary8_xleft
3828 0 : s% pg% Text_Summary8_xright = Text_Summary8_xright
3829 0 : s% pg% Text_Summary8_ybot = Text_Summary8_ybot
3830 0 : s% pg% Text_Summary8_ytop = Text_Summary8_ytop
3831 0 : s% pg% Text_Summary8_txt_scale = Text_Summary8_txt_scale
3832 0 : s% pg% Text_Summary8_dxval = Text_Summary8_dxval
3833 :
3834 0 : s% pg% Text_Summary9_win_flag = Text_Summary9_win_flag
3835 0 : s% pg% Text_Summary9_file_flag = Text_Summary9_file_flag
3836 0 : s% pg% Text_Summary9_file_interval = Text_Summary9_file_interval
3837 0 : s% pg% Text_Summary9_file_dir = Text_Summary9_file_dir
3838 0 : s% pg% Text_Summary9_file_prefix = Text_Summary9_file_prefix
3839 0 : s% pg% Text_Summary9_num_cols = Text_Summary9_num_cols
3840 0 : s% pg% Text_Summary9_num_rows = Text_Summary9_num_rows
3841 0 : s% pg% Text_Summary9_name = Text_Summary9_name
3842 0 : s% pg% Text_Summary9_win_width = Text_Summary9_win_width
3843 0 : s% pg% Text_Summary9_win_aspect_ratio = Text_Summary9_win_aspect_ratio
3844 0 : s% pg% Text_Summary9_file_width = Text_Summary9_file_width
3845 0 : s% pg% Text_Summary9_file_aspect_ratio = Text_Summary9_file_aspect_ratio
3846 0 : s% pg% Text_Summary9_title = Text_Summary9_title
3847 0 : s% pg% Text_Summary9_xleft = Text_Summary9_xleft
3848 0 : s% pg% Text_Summary9_xright = Text_Summary9_xright
3849 0 : s% pg% Text_Summary9_ybot = Text_Summary9_ybot
3850 0 : s% pg% Text_Summary9_ytop = Text_Summary9_ytop
3851 0 : s% pg% Text_Summary9_txt_scale = Text_Summary9_txt_scale
3852 0 : s% pg% Text_Summary9_dxval = Text_Summary9_dxval
3853 :
3854 0 : s% pg% logg_Teff_win_flag = logg_Teff_win_flag
3855 0 : s% pg% logg_Teff_file_flag = logg_Teff_file_flag
3856 0 : s% pg% show_logg_Teff_target_box = show_logg_Teff_target_box
3857 0 : s% pg% logg_Teff_target_n_sigma = logg_Teff_target_n_sigma
3858 0 : s% pg% logg_Teff_target_logg = logg_Teff_target_logg
3859 0 : s% pg% logg_Teff_target_logg_sigma = logg_Teff_target_logg_sigma
3860 0 : s% pg% logg_Teff_target_Teff = logg_Teff_target_Teff
3861 0 : s% pg% logg_Teff_target_Teff_sigma = logg_Teff_target_Teff_sigma
3862 0 : s% pg% logg_Teff_file_interval = logg_Teff_file_interval
3863 0 : s% pg% logg_Teff_step_min = logg_Teff_step_min
3864 0 : s% pg% logg_Teff_step_max = logg_Teff_step_max
3865 0 : s% pg% logg_Teff_file_dir = logg_Teff_file_dir
3866 0 : s% pg% logg_Teff_file_prefix = logg_Teff_file_prefix
3867 0 : s% pg% show_logg_Teff_annotation1 = show_logg_Teff_annotation1
3868 0 : s% pg% show_logg_Teff_annotation2 = show_logg_Teff_annotation2
3869 0 : s% pg% show_logg_Teff_annotation3 = show_logg_Teff_annotation3
3870 0 : s% pg% logg_Teff_fname = logg_Teff_fname
3871 0 : s% pg% logg_Teff_title = logg_Teff_title
3872 0 : s% pg% logg_Teff_logg_min = logg_Teff_logg_min
3873 0 : s% pg% logg_Teff_logg_max = logg_Teff_logg_max
3874 0 : s% pg% logg_Teff_Teff_min = logg_Teff_Teff_min
3875 0 : s% pg% logg_Teff_Teff_max = logg_Teff_Teff_max
3876 0 : s% pg% logg_Teff_Teff_margin = logg_Teff_Teff_margin
3877 0 : s% pg% logg_Teff_logg_margin = logg_Teff_logg_margin
3878 0 : s% pg% logg_Teff_dTeff_min = logg_Teff_dTeff_min
3879 0 : s% pg% logg_Teff_dlogg_min = logg_Teff_dlogg_min
3880 0 : s% pg% logg_Teff_win_width = logg_Teff_win_width
3881 0 : s% pg% logg_Teff_win_aspect_ratio = logg_Teff_win_aspect_ratio
3882 0 : s% pg% logg_Teff_xleft = logg_Teff_xleft
3883 0 : s% pg% logg_Teff_xright = logg_Teff_xright
3884 0 : s% pg% logg_Teff_ybot = logg_Teff_ybot
3885 0 : s% pg% logg_Teff_ytop = logg_Teff_ytop
3886 0 : s% pg% logg_Teff_txt_scale = logg_Teff_txt_scale
3887 0 : s% pg% logg_Teff_file_width = logg_Teff_file_width
3888 0 : s% pg% logg_Teff_file_aspect_ratio = logg_Teff_file_aspect_ratio
3889 0 : s% pg% logg_Teff_use_decorator = logg_Teff_use_decorator
3890 :
3891 0 : s% pg% logL_Teff_win_flag = logL_Teff_win_flag
3892 0 : s% pg% logL_Teff_file_flag = logL_Teff_file_flag
3893 0 : s% pg% show_logL_Teff_target_box = show_logL_Teff_target_box
3894 0 : s% pg% logL_Teff_target_n_sigma = logL_Teff_target_n_sigma
3895 0 : s% pg% logL_Teff_target_logL = logL_Teff_target_logL
3896 0 : s% pg% logL_Teff_target_logL_sigma = logL_Teff_target_logL_sigma
3897 0 : s% pg% logL_Teff_target_Teff = logL_Teff_target_Teff
3898 0 : s% pg% logL_Teff_target_Teff_sigma = logL_Teff_target_Teff_sigma
3899 0 : s% pg% logL_Teff_file_interval = logL_Teff_file_interval
3900 0 : s% pg% logL_Teff_step_min = logL_Teff_step_min
3901 0 : s% pg% logL_Teff_step_max = logL_Teff_step_max
3902 0 : s% pg% logL_Teff_file_dir = logL_Teff_file_dir
3903 0 : s% pg% logL_Teff_file_prefix = logL_Teff_file_prefix
3904 0 : s% pg% show_logL_Teff_annotation1 = show_logL_Teff_annotation1
3905 0 : s% pg% show_logL_Teff_annotation2 = show_logL_Teff_annotation2
3906 0 : s% pg% show_logL_Teff_annotation3 = show_logL_Teff_annotation3
3907 0 : s% pg% logL_Teff_fname = logL_Teff_fname
3908 0 : s% pg% logL_Teff_title = logL_Teff_title
3909 0 : s% pg% logL_Teff_logL_min = logL_Teff_logL_min
3910 0 : s% pg% logL_Teff_logL_max = logL_Teff_logL_max
3911 0 : s% pg% logL_Teff_Teff_min = logL_Teff_Teff_min
3912 0 : s% pg% logL_Teff_Teff_max = logL_Teff_Teff_max
3913 0 : s% pg% logL_Teff_Teff_margin = logL_Teff_Teff_margin
3914 0 : s% pg% logL_Teff_logL_margin = logL_Teff_logL_margin
3915 0 : s% pg% logL_Teff_dTeff_min = logL_Teff_dTeff_min
3916 0 : s% pg% logL_Teff_dlogL_min = logL_Teff_dlogL_min
3917 0 : s% pg% logL_Teff_win_width = logL_Teff_win_width
3918 0 : s% pg% logL_Teff_win_aspect_ratio = logL_Teff_win_aspect_ratio
3919 0 : s% pg% logL_Teff_xleft = logL_Teff_xleft
3920 0 : s% pg% logL_Teff_xright = logL_Teff_xright
3921 0 : s% pg% logL_Teff_ybot = logL_Teff_ybot
3922 0 : s% pg% logL_Teff_ytop = logL_Teff_ytop
3923 0 : s% pg% logL_Teff_txt_scale = logL_Teff_txt_scale
3924 0 : s% pg% logL_Teff_file_width = logL_Teff_file_width
3925 0 : s% pg% logL_Teff_file_aspect_ratio = logL_Teff_file_aspect_ratio
3926 0 : s% pg% logL_Teff_use_decorator = logL_Teff_use_decorator
3927 :
3928 0 : s% pg% logL_R_win_flag = logL_R_win_flag
3929 0 : s% pg% logL_R_file_flag = logL_R_file_flag
3930 0 : s% pg% show_logL_R_target_box = show_logL_R_target_box
3931 0 : s% pg% logL_R_target_n_sigma = logL_R_target_n_sigma
3932 0 : s% pg% logL_R_target_logL = logL_R_target_logL
3933 0 : s% pg% logL_R_target_logL_sigma = logL_R_target_logL_sigma
3934 0 : s% pg% logL_R_target_R = logL_R_target_R
3935 0 : s% pg% logL_R_target_R_sigma = logL_R_target_R_sigma
3936 0 : s% pg% logL_R_file_interval = logL_R_file_interval
3937 0 : s% pg% logL_R_step_min = logL_R_step_min
3938 0 : s% pg% logL_R_step_max = logL_R_step_max
3939 0 : s% pg% logL_R_file_dir = logL_R_file_dir
3940 0 : s% pg% logL_R_file_prefix = logL_R_file_prefix
3941 0 : s% pg% show_logL_R_annotation1 = show_logL_R_annotation1
3942 0 : s% pg% show_logL_R_annotation2 = show_logL_R_annotation2
3943 0 : s% pg% show_logL_R_annotation3 = show_logL_R_annotation3
3944 0 : s% pg% logL_R_fname = logL_R_fname
3945 0 : s% pg% logL_R_title = logL_R_title
3946 0 : s% pg% show_logL_photosphere_r = show_logL_photosphere_r
3947 0 : s% pg% logL_R_logL_min = logL_R_logL_min
3948 0 : s% pg% logL_R_logL_max = logL_R_logL_max
3949 0 : s% pg% logL_R_R_min = logL_R_R_min
3950 0 : s% pg% logL_R_R_max = logL_R_R_max
3951 0 : s% pg% logL_R_R_margin = logL_R_R_margin
3952 0 : s% pg% logL_R_logL_margin = logL_R_logL_margin
3953 0 : s% pg% logL_R_dR_min = logL_R_dR_min
3954 0 : s% pg% logL_R_dlogL_min = logL_R_dlogL_min
3955 0 : s% pg% logL_R_win_width = logL_R_win_width
3956 0 : s% pg% logL_R_win_aspect_ratio = logL_R_win_aspect_ratio
3957 0 : s% pg% logL_R_xleft = logL_R_xleft
3958 0 : s% pg% logL_R_xright = logL_R_xright
3959 0 : s% pg% logL_R_ybot = logL_R_ybot
3960 0 : s% pg% logL_R_ytop = logL_R_ytop
3961 0 : s% pg% logL_R_txt_scale = logL_R_txt_scale
3962 0 : s% pg% logL_R_file_width = logL_R_file_width
3963 0 : s% pg% logL_R_file_aspect_ratio = logL_R_file_aspect_ratio
3964 0 : s% pg% logL_R_use_decorator = logL_R_use_decorator
3965 :
3966 0 : s% pg% logL_v_win_flag = logL_v_win_flag
3967 0 : s% pg% logL_v_file_flag = logL_v_file_flag
3968 0 : s% pg% show_logL_v_target_box = show_logL_v_target_box
3969 0 : s% pg% logL_v_target_n_sigma = logL_v_target_n_sigma
3970 0 : s% pg% logL_v_target_logL = logL_v_target_logL
3971 0 : s% pg% logL_v_target_logL_sigma = logL_v_target_logL_sigma
3972 0 : s% pg% logL_v_target_v = logL_v_target_v
3973 0 : s% pg% logL_v_target_v_sigma = logL_v_target_v_sigma
3974 0 : s% pg% logL_v_file_interval = logL_v_file_interval
3975 0 : s% pg% logL_v_step_min = logL_v_step_min
3976 0 : s% pg% logL_v_step_max = logL_v_step_max
3977 0 : s% pg% logL_v_file_dir = logL_v_file_dir
3978 0 : s% pg% logL_v_file_prefix = logL_v_file_prefix
3979 0 : s% pg% show_logL_v_annotation1 = show_logL_v_annotation1
3980 0 : s% pg% show_logL_v_annotation2 = show_logL_v_annotation2
3981 0 : s% pg% show_logL_v_annotation3 = show_logL_v_annotation3
3982 0 : s% pg% logL_v_fname = logL_v_fname
3983 0 : s% pg% logL_v_title = logL_v_title
3984 0 : s% pg% show_logL_photosphere_v = show_logL_photosphere_v
3985 0 : s% pg% logL_v_logL_min = logL_v_logL_min
3986 0 : s% pg% logL_v_logL_max = logL_v_logL_max
3987 0 : s% pg% logL_v_v_min = logL_v_v_min
3988 0 : s% pg% logL_v_v_max = logL_v_v_max
3989 0 : s% pg% logL_v_v_margin = logL_v_v_margin
3990 0 : s% pg% logL_v_logL_margin = logL_v_logL_margin
3991 0 : s% pg% logL_v_dv_min = logL_v_dv_min
3992 0 : s% pg% logL_v_dlogL_min = logL_v_dlogL_min
3993 0 : s% pg% logL_v_win_width = logL_v_win_width
3994 0 : s% pg% logL_v_win_aspect_ratio = logL_v_win_aspect_ratio
3995 0 : s% pg% logL_v_xleft = logL_v_xleft
3996 0 : s% pg% logL_v_xright = logL_v_xright
3997 0 : s% pg% logL_v_ybot = logL_v_ybot
3998 0 : s% pg% logL_v_ytop = logL_v_ytop
3999 0 : s% pg% logL_v_txt_scale = logL_v_txt_scale
4000 0 : s% pg% logL_v_file_width = logL_v_file_width
4001 0 : s% pg% logL_v_file_aspect_ratio = logL_v_file_aspect_ratio
4002 0 : s% pg% logL_v_use_decorator = logL_v_use_decorator
4003 :
4004 0 : s% pg% L_Teff_win_flag = L_Teff_win_flag
4005 0 : s% pg% L_Teff_file_flag = L_Teff_file_flag
4006 0 : s% pg% show_L_Teff_target_box = show_L_Teff_target_box
4007 0 : s% pg% L_Teff_target_n_sigma = L_Teff_target_n_sigma
4008 0 : s% pg% L_Teff_target_L = L_Teff_target_L
4009 0 : s% pg% L_Teff_target_L_sigma = L_Teff_target_L_sigma
4010 0 : s% pg% L_Teff_target_Teff = L_Teff_target_Teff
4011 0 : s% pg% L_Teff_target_Teff_sigma = L_Teff_target_Teff_sigma
4012 0 : s% pg% L_Teff_file_interval = L_Teff_file_interval
4013 0 : s% pg% L_Teff_step_min = L_Teff_step_min
4014 0 : s% pg% L_Teff_step_max = L_Teff_step_max
4015 0 : s% pg% L_Teff_file_dir = L_Teff_file_dir
4016 0 : s% pg% L_Teff_file_prefix = L_Teff_file_prefix
4017 0 : s% pg% show_L_Teff_annotation1 = show_L_Teff_annotation1
4018 0 : s% pg% show_L_Teff_annotation2 = show_L_Teff_annotation2
4019 0 : s% pg% show_L_Teff_annotation3 = show_L_Teff_annotation3
4020 0 : s% pg% L_Teff_fname = L_Teff_fname
4021 0 : s% pg% L_Teff_title = L_Teff_title
4022 0 : s% pg% L_Teff_L_min = L_Teff_L_min
4023 0 : s% pg% L_Teff_L_max = L_Teff_L_max
4024 0 : s% pg% L_Teff_Teff_min = L_Teff_Teff_min
4025 0 : s% pg% L_Teff_Teff_max = L_Teff_Teff_max
4026 0 : s% pg% L_Teff_Teff_margin = L_Teff_Teff_margin
4027 0 : s% pg% L_Teff_L_margin = L_Teff_L_margin
4028 0 : s% pg% L_Teff_dTeff_min = L_Teff_dTeff_min
4029 0 : s% pg% L_Teff_dL_min = L_Teff_dL_min
4030 0 : s% pg% L_Teff_win_width = L_Teff_win_width
4031 0 : s% pg% L_Teff_win_aspect_ratio = L_Teff_win_aspect_ratio
4032 0 : s% pg% L_Teff_xleft = L_Teff_xleft
4033 0 : s% pg% L_Teff_xright = L_Teff_xright
4034 0 : s% pg% L_Teff_ybot = L_Teff_ybot
4035 0 : s% pg% L_Teff_ytop = L_Teff_ytop
4036 0 : s% pg% L_Teff_txt_scale = L_Teff_txt_scale
4037 0 : s% pg% L_Teff_file_width = L_Teff_file_width
4038 0 : s% pg% L_Teff_file_aspect_ratio = L_Teff_file_aspect_ratio
4039 0 : s% pg% L_Teff_use_decorator = L_Teff_use_decorator
4040 :
4041 0 : s% pg% L_v_win_flag = L_v_win_flag
4042 0 : s% pg% L_v_file_flag = L_v_file_flag
4043 0 : s% pg% show_L_v_target_box = show_L_v_target_box
4044 0 : s% pg% L_v_target_n_sigma = L_v_target_n_sigma
4045 0 : s% pg% L_v_target_L = L_v_target_L
4046 0 : s% pg% L_v_target_L_sigma = L_v_target_L_sigma
4047 0 : s% pg% L_v_target_v = L_v_target_v
4048 0 : s% pg% L_v_target_v_sigma = L_v_target_v_sigma
4049 0 : s% pg% L_v_file_interval = L_v_file_interval
4050 0 : s% pg% L_v_step_min = L_v_step_min
4051 0 : s% pg% L_v_step_max = L_v_step_max
4052 0 : s% pg% L_v_file_dir = L_v_file_dir
4053 0 : s% pg% L_v_file_prefix = L_v_file_prefix
4054 0 : s% pg% show_L_v_annotation1 = show_L_v_annotation1
4055 0 : s% pg% show_L_v_annotation2 = show_L_v_annotation2
4056 0 : s% pg% show_L_v_annotation3 = show_L_v_annotation3
4057 0 : s% pg% L_v_fname = L_v_fname
4058 0 : s% pg% L_v_title = L_v_title
4059 0 : s% pg% L_v_L_min = L_v_L_min
4060 0 : s% pg% L_v_L_max = L_v_L_max
4061 0 : s% pg% L_v_v_min = L_v_v_min
4062 0 : s% pg% L_v_v_max = L_v_v_max
4063 0 : s% pg% L_v_v_margin = L_v_v_margin
4064 0 : s% pg% L_v_L_margin = L_v_L_margin
4065 0 : s% pg% L_v_dv_min = L_v_dv_min
4066 0 : s% pg% L_v_dL_min = L_v_dL_min
4067 0 : s% pg% L_v_win_width = L_v_win_width
4068 0 : s% pg% L_v_win_aspect_ratio = L_v_win_aspect_ratio
4069 0 : s% pg% L_v_xleft = L_v_xleft
4070 0 : s% pg% L_v_xright = L_v_xright
4071 0 : s% pg% L_v_ybot = L_v_ybot
4072 0 : s% pg% L_v_ytop = L_v_ytop
4073 0 : s% pg% L_v_txt_scale = L_v_txt_scale
4074 0 : s% pg% L_v_file_width = L_v_file_width
4075 0 : s% pg% L_v_file_aspect_ratio = L_v_file_aspect_ratio
4076 0 : s% pg% L_v_use_decorator = L_v_use_decorator
4077 :
4078 0 : s% pg% L_R_win_flag = L_R_win_flag
4079 0 : s% pg% L_R_file_flag = L_R_file_flag
4080 0 : s% pg% show_L_R_target_box = show_L_R_target_box
4081 0 : s% pg% L_R_target_n_sigma = L_R_target_n_sigma
4082 0 : s% pg% L_R_target_L = L_R_target_L
4083 0 : s% pg% L_R_target_L_sigma = L_R_target_L_sigma
4084 0 : s% pg% L_R_target_R = L_R_target_R
4085 0 : s% pg% L_R_target_R_sigma = L_R_target_R_sigma
4086 0 : s% pg% L_R_file_interval = L_R_file_interval
4087 0 : s% pg% L_R_step_min = L_R_step_min
4088 0 : s% pg% L_R_step_max = L_R_step_max
4089 0 : s% pg% L_R_file_dir = L_R_file_dir
4090 0 : s% pg% L_R_file_prefix = L_R_file_prefix
4091 0 : s% pg% show_L_R_annotation1 = show_L_R_annotation1
4092 0 : s% pg% show_L_R_annotation2 = show_L_R_annotation2
4093 0 : s% pg% show_L_R_annotation3 = show_L_R_annotation3
4094 0 : s% pg% L_R_fname = L_R_fname
4095 0 : s% pg% L_R_title = L_R_title
4096 0 : s% pg% L_R_L_min = L_R_L_min
4097 0 : s% pg% L_R_L_max = L_R_L_max
4098 0 : s% pg% L_R_R_min = L_R_R_min
4099 0 : s% pg% L_R_R_max = L_R_R_max
4100 0 : s% pg% L_R_R_margin = L_R_R_margin
4101 0 : s% pg% L_R_L_margin = L_R_L_margin
4102 0 : s% pg% L_R_dR_min = L_R_dR_min
4103 0 : s% pg% L_R_dL_min = L_R_dL_min
4104 0 : s% pg% L_R_win_width = L_R_win_width
4105 0 : s% pg% L_R_win_aspect_ratio = L_R_win_aspect_ratio
4106 0 : s% pg% L_R_xleft = L_R_xleft
4107 0 : s% pg% L_R_xright = L_R_xright
4108 0 : s% pg% L_R_ybot = L_R_ybot
4109 0 : s% pg% L_R_ytop = L_R_ytop
4110 0 : s% pg% L_R_txt_scale = L_R_txt_scale
4111 0 : s% pg% L_R_file_width = L_R_file_width
4112 0 : s% pg% L_R_file_aspect_ratio = L_R_file_aspect_ratio
4113 0 : s% pg% L_R_use_decorator = L_R_use_decorator
4114 :
4115 0 : s% pg% R_Teff_win_flag = R_Teff_win_flag
4116 0 : s% pg% R_Teff_file_flag = R_Teff_file_flag
4117 0 : s% pg% show_R_Teff_target_box = show_R_Teff_target_box
4118 0 : s% pg% R_Teff_target_n_sigma = R_Teff_target_n_sigma
4119 0 : s% pg% R_Teff_target_R = R_Teff_target_R
4120 0 : s% pg% R_Teff_target_R_sigma = R_Teff_target_R_sigma
4121 0 : s% pg% R_Teff_target_Teff = R_Teff_target_Teff
4122 0 : s% pg% R_Teff_target_Teff_sigma = R_Teff_target_Teff_sigma
4123 0 : s% pg% R_Teff_file_interval = R_Teff_file_interval
4124 0 : s% pg% R_Teff_step_min = R_Teff_step_min
4125 0 : s% pg% R_Teff_step_max = R_Teff_step_max
4126 0 : s% pg% R_Teff_file_dir = R_Teff_file_dir
4127 0 : s% pg% R_Teff_file_prefix = R_Teff_file_prefix
4128 0 : s% pg% show_R_Teff_annotation1 = show_R_Teff_annotation1
4129 0 : s% pg% show_R_Teff_annotation2 = show_R_Teff_annotation2
4130 0 : s% pg% show_R_Teff_annotation3 = show_R_Teff_annotation3
4131 0 : s% pg% R_Teff_fname = R_Teff_fname
4132 0 : s% pg% R_Teff_title = R_Teff_title
4133 0 : s% pg% R_Teff_R_min = R_Teff_R_min
4134 0 : s% pg% R_Teff_R_max = R_Teff_R_max
4135 0 : s% pg% R_Teff_Teff_min = R_Teff_Teff_min
4136 0 : s% pg% R_Teff_Teff_max = R_Teff_Teff_max
4137 0 : s% pg% R_Teff_Teff_margin = R_Teff_Teff_margin
4138 0 : s% pg% R_Teff_R_margin = R_Teff_R_margin
4139 0 : s% pg% R_Teff_dTeff_min = R_Teff_dTeff_min
4140 0 : s% pg% R_Teff_dR_min = R_Teff_dR_min
4141 0 : s% pg% R_Teff_win_width = R_Teff_win_width
4142 0 : s% pg% R_Teff_win_aspect_ratio = R_Teff_win_aspect_ratio
4143 0 : s% pg% R_Teff_xleft = R_Teff_xleft
4144 0 : s% pg% R_Teff_xright = R_Teff_xright
4145 0 : s% pg% R_Teff_ybot = R_Teff_ybot
4146 0 : s% pg% R_Teff_ytop = R_Teff_ytop
4147 0 : s% pg% R_Teff_txt_scale = R_Teff_txt_scale
4148 0 : s% pg% R_Teff_file_width = R_Teff_file_width
4149 0 : s% pg% R_Teff_file_aspect_ratio = R_Teff_file_aspect_ratio
4150 0 : s% pg% R_Teff_use_decorator = R_Teff_use_decorator
4151 :
4152 0 : s% pg% R_L_win_flag = R_L_win_flag
4153 0 : s% pg% R_L_file_flag = R_L_file_flag
4154 0 : s% pg% show_R_L_target_box = show_R_L_target_box
4155 0 : s% pg% R_L_target_n_sigma = R_L_target_n_sigma
4156 0 : s% pg% R_L_target_R = R_L_target_R
4157 0 : s% pg% R_L_target_R_sigma = R_L_target_R_sigma
4158 0 : s% pg% R_L_target_L = R_L_target_L
4159 0 : s% pg% R_L_target_L_sigma = R_L_target_L_sigma
4160 0 : s% pg% R_L_file_interval = R_L_file_interval
4161 0 : s% pg% R_L_step_min = R_L_step_min
4162 0 : s% pg% R_L_step_max = R_L_step_max
4163 0 : s% pg% R_L_file_dir = R_L_file_dir
4164 0 : s% pg% R_L_file_prefix = R_L_file_prefix
4165 0 : s% pg% show_R_L_annotation1 = show_R_L_annotation1
4166 0 : s% pg% show_R_L_annotation2 = show_R_L_annotation2
4167 0 : s% pg% show_R_L_annotation3 = show_R_L_annotation3
4168 0 : s% pg% R_L_fname = R_L_fname
4169 0 : s% pg% R_L_title = R_L_title
4170 0 : s% pg% R_L_R_min = R_L_R_min
4171 0 : s% pg% R_L_R_max = R_L_R_max
4172 0 : s% pg% R_L_L_min = R_L_L_min
4173 0 : s% pg% R_L_L_max = R_L_L_max
4174 0 : s% pg% R_L_L_margin = R_L_L_margin
4175 0 : s% pg% R_L_R_margin = R_L_R_margin
4176 0 : s% pg% R_L_dL_min = R_L_dL_min
4177 0 : s% pg% R_L_dR_min = R_L_dR_min
4178 0 : s% pg% R_L_win_width = R_L_win_width
4179 0 : s% pg% R_L_win_aspect_ratio = R_L_win_aspect_ratio
4180 0 : s% pg% R_L_xleft = R_L_xleft
4181 0 : s% pg% R_L_xright = R_L_xright
4182 0 : s% pg% R_L_ybot = R_L_ybot
4183 0 : s% pg% R_L_ytop = R_L_ytop
4184 0 : s% pg% R_L_txt_scale = R_L_txt_scale
4185 0 : s% pg% R_L_file_width = R_L_file_width
4186 0 : s% pg% R_L_file_aspect_ratio = R_L_file_aspect_ratio
4187 0 : s% pg% R_L_use_decorator = R_L_use_decorator
4188 :
4189 0 : s% pg% logg_logT_win_flag = logg_logT_win_flag
4190 0 : s% pg% logg_logT_file_flag = logg_logT_file_flag
4191 0 : s% pg% show_logg_logT_target_box = show_logg_logT_target_box
4192 0 : s% pg% logg_logT_target_n_sigma = logg_logT_target_n_sigma
4193 0 : s% pg% logg_logT_target_logg = logg_logT_target_logg
4194 0 : s% pg% logg_logT_target_logg_sigma = logg_logT_target_logg_sigma
4195 0 : s% pg% logg_logT_target_logT = logg_logT_target_logT
4196 0 : s% pg% logg_logT_target_logT_sigma = logg_logT_target_logT_sigma
4197 0 : s% pg% logg_logT_file_interval = logg_logT_file_interval
4198 0 : s% pg% logg_logT_step_min = logg_logT_step_min
4199 0 : s% pg% logg_logT_step_max = logg_logT_step_max
4200 0 : s% pg% logg_logT_file_dir = logg_logT_file_dir
4201 0 : s% pg% logg_logT_file_prefix = logg_logT_file_prefix
4202 0 : s% pg% show_logg_logT_annotation1 = show_logg_logT_annotation1
4203 0 : s% pg% show_logg_logT_annotation2 = show_logg_logT_annotation2
4204 0 : s% pg% show_logg_logT_annotation3 = show_logg_logT_annotation3
4205 0 : s% pg% logg_logT_fname = logg_logT_fname
4206 0 : s% pg% logg_logT_logg_min = logg_logT_logg_min
4207 0 : s% pg% logg_logT_logg_max = logg_logT_logg_max
4208 0 : s% pg% logg_logT_logT_min = logg_logT_logT_min
4209 0 : s% pg% logg_logT_logT_max = logg_logT_logT_max
4210 0 : s% pg% logg_logT_logg_margin = logg_logT_logg_margin
4211 0 : s% pg% logg_logT_logT_margin = logg_logT_logT_margin
4212 0 : s% pg% logg_logT_dlogT_min = logg_logT_dlogT_min
4213 0 : s% pg% logg_logT_dlogg_min = logg_logT_dlogg_min
4214 0 : s% pg% logg_logT_win_width = logg_logT_win_width
4215 0 : s% pg% logg_logT_win_aspect_ratio = logg_logT_win_aspect_ratio
4216 0 : s% pg% logg_logT_file_width = logg_logT_file_width
4217 0 : s% pg% logg_logT_file_aspect_ratio = logg_logT_file_aspect_ratio
4218 0 : s% pg% logg_logT_xleft = logg_logT_xleft
4219 0 : s% pg% logg_logT_xright = logg_logT_xright
4220 0 : s% pg% logg_logT_ybot = logg_logT_ybot
4221 0 : s% pg% logg_logT_ytop = logg_logT_ytop
4222 0 : s% pg% logg_logT_txt_scale = logg_logT_txt_scale
4223 0 : s% pg% logg_logT_title = logg_logT_title
4224 0 : s% pg% logg_logT_use_decorator = logg_LogT_use_decorator
4225 :
4226 0 : s% pg% HR_win_flag = HR_win_flag
4227 0 : s% pg% HR_file_flag = HR_file_flag
4228 0 : s% pg% HR_file_interval = HR_file_interval
4229 0 : s% pg% HR_step_min = HR_step_min
4230 0 : s% pg% HR_step_max = HR_step_max
4231 0 : s% pg% show_HR_classical_instability_strip = show_HR_classical_instability_strip
4232 0 : s% pg% show_HR_Mira_instability_region = show_HR_Mira_instability_region
4233 0 : s% pg% show_HR_WD_instabilities = show_HR_WD_instabilities
4234 0 : s% pg% show_HR_target_box = show_HR_target_box
4235 0 : s% pg% HR_target_n_sigma = HR_target_n_sigma
4236 0 : s% pg% HR_target_logL = HR_target_logL
4237 0 : s% pg% HR_target_logL_sigma = HR_target_logL_sigma
4238 0 : s% pg% HR_target_logT = HR_target_logT
4239 0 : s% pg% HR_target_logT_sigma = HR_target_logT_sigma
4240 0 : s% pg% HR_file_dir = HR_file_dir
4241 0 : s% pg% HR_file_prefix = HR_file_prefix
4242 0 : s% pg% show_HR_annotation1 = show_HR_annotation1
4243 0 : s% pg% show_HR_annotation2 = show_HR_annotation2
4244 0 : s% pg% show_HR_annotation3 = show_HR_annotation3
4245 0 : s% pg% HR_fname = HR_fname
4246 0 : s% pg% HR_logT_min = HR_logT_min
4247 0 : s% pg% HR_logT_max = HR_logT_max
4248 0 : s% pg% HR_logL_min = HR_logL_min
4249 0 : s% pg% HR_logL_max = HR_logL_max
4250 0 : s% pg% HR_logL_margin = HR_logL_margin
4251 0 : s% pg% HR_logT_margin = HR_logT_margin
4252 0 : s% pg% HR_dlogT_min = HR_dlogT_min
4253 0 : s% pg% HR_dlogL_min = HR_dlogL_min
4254 0 : s% pg% HR_win_width = HR_win_width
4255 0 : s% pg% HR_win_aspect_ratio = HR_win_aspect_ratio
4256 0 : s% pg% HR_file_width = HR_file_width
4257 0 : s% pg% HR_file_aspect_ratio = HR_file_aspect_ratio
4258 0 : s% pg% HR_xleft = HR_xleft
4259 0 : s% pg% HR_xright = HR_xright
4260 0 : s% pg% HR_ybot = HR_ybot
4261 0 : s% pg% HR_ytop = HR_ytop
4262 0 : s% pg% HR_txt_scale = HR_txt_scale
4263 0 : s% pg% HR_title = HR_title
4264 0 : s% pg% HR_use_decorator = HR_use_decorator
4265 :
4266 0 : s% pg% TRho_win_flag = TRho_win_flag
4267 0 : s% pg% TRho_file_flag = TRho_file_flag
4268 0 : s% pg% TRho_file_interval = TRho_file_interval
4269 0 : s% pg% TRho_step_max = TRho_step_max
4270 0 : s% pg% TRho_step_min = TRho_step_min
4271 0 : s% pg% TRho_file_dir = TRho_file_dir
4272 0 : s% pg% TRho_file_prefix = TRho_file_prefix
4273 0 : s% pg% show_TRho_annotation1 = show_TRho_annotation1
4274 0 : s% pg% show_TRho_annotation2 = show_TRho_annotation2
4275 0 : s% pg% show_TRho_annotation3 = show_TRho_annotation3
4276 0 : s% pg% show_TRho_degeneracy_line = show_TRho_degeneracy_line
4277 0 : s% pg% TRho_fname = TRho_fname
4278 0 : s% pg% TRho_logT_min = TRho_logT_min
4279 0 : s% pg% TRho_logT_max = TRho_logT_max
4280 0 : s% pg% TRho_logRho_min = TRho_logRho_min
4281 0 : s% pg% TRho_logRho_max = TRho_logRho_max
4282 0 : s% pg% TRho_logT_margin = TRho_logT_margin
4283 0 : s% pg% TRho_logRho_margin = TRho_logRho_margin
4284 0 : s% pg% TRho_logRho_dlogRho_min = TRho_logRho_dlogRho_min
4285 0 : s% pg% TRho_logT_dlogT_min = TRho_logT_dlogT_min
4286 0 : s% pg% TRho_win_width = TRho_win_width
4287 0 : s% pg% TRho_win_aspect_ratio = TRho_win_aspect_ratio
4288 0 : s% pg% TRho_file_width = TRho_file_width
4289 0 : s% pg% TRho_file_aspect_ratio = TRho_file_aspect_ratio
4290 0 : s% pg% TRho_xleft = TRho_xleft
4291 0 : s% pg% TRho_xright = TRho_xright
4292 0 : s% pg% TRho_ybot = TRho_ybot
4293 0 : s% pg% TRho_ytop = TRho_ytop
4294 0 : s% pg% TRho_txt_scale = TRho_txt_scale
4295 0 : s% pg% TRho_title = TRho_title
4296 0 : s% pg% TRho_use_decorator = TRho_use_decorator
4297 :
4298 0 : s% pg% TmaxRho_win_flag = TmaxRho_win_flag
4299 0 : s% pg% TmaxRho_file_flag = TmaxRho_file_flag
4300 0 : s% pg% TmaxRho_file_interval = TmaxRho_file_interval
4301 0 : s% pg% TmaxRho_step_max = TmaxRho_step_max
4302 0 : s% pg% TmaxRho_step_min = TmaxRho_step_min
4303 0 : s% pg% TmaxRho_file_dir = TmaxRho_file_dir
4304 0 : s% pg% TmaxRho_file_prefix = TmaxRho_file_prefix
4305 0 : s% pg% show_TmaxRho_annotation1 = show_TmaxRho_annotation1
4306 0 : s% pg% show_TmaxRho_annotation2 = show_TmaxRho_annotation2
4307 0 : s% pg% show_TmaxRho_annotation3 = show_TmaxRho_annotation3
4308 0 : s% pg% show_TmaxRho_degeneracy_line = show_TmaxRho_degeneracy_line
4309 0 : s% pg% TmaxRho_fname = TmaxRho_fname
4310 0 : s% pg% TmaxRho_logT_min = TmaxRho_logT_min
4311 0 : s% pg% TmaxRho_logT_max = TmaxRho_logT_max
4312 0 : s% pg% TmaxRho_logRho_min = TmaxRho_logRho_min
4313 0 : s% pg% TmaxRho_logRho_max = TmaxRho_logRho_max
4314 0 : s% pg% TmaxRho_logT_margin = TmaxRho_logT_margin
4315 0 : s% pg% TmaxRho_logRho_margin = TmaxRho_logRho_margin
4316 0 : s% pg% TmaxRho_logRho_dlogRho_min = TmaxRho_logRho_dlogRho_min
4317 0 : s% pg% TmaxRho_logT_dlogT_min = TmaxRho_logT_dlogT_min
4318 0 : s% pg% TmaxRho_win_width = TmaxRho_win_width
4319 0 : s% pg% TmaxRho_win_aspect_ratio = TmaxRho_win_aspect_ratio
4320 0 : s% pg% TmaxRho_file_width = TmaxRho_file_width
4321 0 : s% pg% TmaxRho_file_aspect_ratio = TmaxRho_file_aspect_ratio
4322 0 : s% pg% TmaxRho_xleft = TmaxRho_xleft
4323 0 : s% pg% TmaxRho_xright = TmaxRho_xright
4324 0 : s% pg% TmaxRho_ybot = TmaxRho_ybot
4325 0 : s% pg% TmaxRho_ytop = TmaxRho_ytop
4326 0 : s% pg% TmaxRho_txt_scale = TmaxRho_txt_scale
4327 0 : s% pg% TmaxRho_title = TmaxRho_title
4328 0 : s% pg% TmaxRho_use_decorator = TmaxRho_use_decorator
4329 :
4330 0 : s% pg% Dynamo_win_flag = Dynamo_win_flag
4331 0 : s% pg% Dynamo_file_flag = Dynamo_file_flag
4332 0 : s% pg% Dynamo_file_interval = Dynamo_file_interval
4333 0 : s% pg% Dynamo_file_dir = Dynamo_file_dir
4334 0 : s% pg% Dynamo_file_prefix = Dynamo_file_prefix
4335 0 : s% pg% show_Dynamo_annotation1 = show_Dynamo_annotation1
4336 0 : s% pg% show_Dynamo_annotation2 = show_Dynamo_annotation2
4337 0 : s% pg% show_Dynamo_annotation3 = show_Dynamo_annotation3
4338 0 : s% pg% Dynamo_xaxis_name = Dynamo_xaxis_name
4339 0 : s% pg% Dynamo_xaxis_reversed = Dynamo_xaxis_reversed
4340 0 : s% pg% Dynamo_xmin = Dynamo_xmin
4341 0 : s% pg% Dynamo_xmax = Dynamo_xmax
4342 0 : s% pg% Dynamo_ymin_left = Dynamo_ymin_left
4343 0 : s% pg% Dynamo_ymax_left = Dynamo_ymax_left
4344 0 : s% pg% Dynamo_dymin_left = Dynamo_dymin_left
4345 0 : s% pg% Dynamo_ymin_right = Dynamo_ymin_right
4346 0 : s% pg% Dynamo_ymax_right = Dynamo_ymax_right
4347 0 : s% pg% Dynamo_dymin_right = Dynamo_dymin_right
4348 0 : s% pg% Dynamo_win_width = Dynamo_win_width
4349 0 : s% pg% Dynamo_win_aspect_ratio = Dynamo_win_aspect_ratio
4350 0 : s% pg% Dynamo_file_width = Dynamo_file_width
4351 0 : s% pg% Dynamo_file_aspect_ratio = Dynamo_file_aspect_ratio
4352 0 : s% pg% Dynamo_xleft = Dynamo_xleft
4353 0 : s% pg% Dynamo_xright = Dynamo_xright
4354 0 : s% pg% Dynamo_ybot = Dynamo_ybot
4355 0 : s% pg% Dynamo_ytop = Dynamo_ytop
4356 0 : s% pg% Dynamo_txt_scale = Dynamo_txt_scale
4357 0 : s% pg% Dynamo_title = Dynamo_title
4358 0 : s% pg% Dynamo_legend_txt_scale_factor = Dynamo_legend_txt_scale_factor
4359 0 : s% pg% Dynamo_use_decorator = Dynamo_use_decorator
4360 :
4361 0 : s% pg% Mixing_win_flag = Mixing_win_flag
4362 0 : s% pg% Mixing_file_flag = Mixing_file_flag
4363 0 : s% pg% Mixing_file_interval = Mixing_file_interval
4364 0 : s% pg% Mixing_file_dir = Mixing_file_dir
4365 0 : s% pg% Mixing_file_prefix = Mixing_file_prefix
4366 0 : s% pg% show_Mixing_annotation1 = show_Mixing_annotation1
4367 0 : s% pg% show_Mixing_annotation2 = show_Mixing_annotation2
4368 0 : s% pg% show_Mixing_annotation3 = show_Mixing_annotation3
4369 0 : s% pg% Mixing_xaxis_name = Mixing_xaxis_name
4370 0 : s% pg% Mixing_xaxis_reversed = Mixing_xaxis_reversed
4371 0 : s% pg% Mixing_legend_txt_scale_factor = Mixing_legend_txt_scale_factor
4372 0 : s% pg% Mixing_show_rotation_details = Mixing_show_rotation_details
4373 0 : s% pg% Mixing_xmin = Mixing_xmin
4374 0 : s% pg% Mixing_xmax = Mixing_xmax
4375 0 : s% pg% Mixing_ymin = Mixing_ymin
4376 0 : s% pg% Mixing_ymax = Mixing_ymax
4377 0 : s% pg% Mixing_dymin = Mixing_dymin
4378 0 : s% pg% Mixing_win_width = Mixing_win_width
4379 0 : s% pg% Mixing_win_aspect_ratio = Mixing_win_aspect_ratio
4380 0 : s% pg% Mixing_file_width = Mixing_file_width
4381 0 : s% pg% Mixing_file_aspect_ratio = Mixing_file_aspect_ratio
4382 0 : s% pg% Mixing_xleft = Mixing_xleft
4383 0 : s% pg% Mixing_xright = Mixing_xright
4384 0 : s% pg% Mixing_ybot = Mixing_ybot
4385 0 : s% pg% Mixing_ytop = Mixing_ytop
4386 0 : s% pg% Mixing_txt_scale = Mixing_txt_scale
4387 0 : s% pg% Mixing_title = Mixing_title
4388 0 : s% pg% Mixing_use_decorator = Mixing_use_decorator
4389 :
4390 0 : s% pg% Network_win_flag = Network_win_flag
4391 0 : s% pg% Network_file_flag = Network_file_flag
4392 0 : s% pg% Network_file_interval = Network_file_interval
4393 0 : s% pg% Network_file_dir = Network_file_dir
4394 0 : s% pg% Network_file_prefix = Network_file_prefix
4395 0 : s% pg% Network_nmin = Network_nmin
4396 0 : s% pg% Network_nmax = Network_nmax
4397 0 : s% pg% Network_zmin = Network_zmin
4398 0 : s% pg% Network_zmax = Network_zmax
4399 0 : s% pg% Network_show_mass_fraction = Network_show_mass_fraction
4400 0 : s% pg% Network_log_mass_frac_min = Network_log_mass_frac_min
4401 0 : s% pg% Network_log_mass_frac_max = Network_log_mass_frac_max
4402 0 : s% pg% Network_show_element_names = Network_show_element_names
4403 0 : s% pg% Network_win_width = Network_win_width
4404 0 : s% pg% Network_win_aspect_ratio = Network_win_aspect_ratio
4405 0 : s% pg% Network_file_width = Network_file_width
4406 0 : s% pg% Network_file_aspect_ratio = Network_file_aspect_ratio
4407 0 : s% pg% Network_xleft = Network_xleft
4408 0 : s% pg% Network_xright = Network_xright
4409 0 : s% pg% Network_ybot = Network_ybot
4410 0 : s% pg% Network_ytop = Network_ytop
4411 0 : s% pg% Network_txt_scale = Network_txt_scale
4412 0 : s% pg% Network_title = Network_title
4413 0 : s% pg% Network_use_decorator = Network_use_decorator
4414 0 : s% pg% Network_show_colorbar = Network_show_colorbar
4415 :
4416 0 : s% pg% Production_win_flag = Production_win_flag
4417 0 : s% pg% Production_file_flag = Production_file_flag
4418 0 : s% pg% Production_file_interval = Production_file_interval
4419 0 : s% pg% Production_file_dir = Production_file_dir
4420 0 : s% pg% Production_file_prefix = Production_file_prefix
4421 0 : s% pg% Production_amin = Production_amin
4422 0 : s% pg% Production_amax = Production_amax
4423 0 : s% pg% Production_ymin = Production_ymin
4424 0 : s% pg% Production_ymax = Production_ymax
4425 0 : s% pg% Production_min_mass = Production_min_mass
4426 0 : s% pg% Production_max_mass = Production_max_mass
4427 0 : s% pg% Production_min_mass_frac = Production_min_mass_frac
4428 0 : s% pg% Production_show_element_names = Production_show_element_names
4429 0 : s% pg% Production_win_width = Production_win_width
4430 0 : s% pg% Production_win_aspect_ratio = Production_win_aspect_ratio
4431 0 : s% pg% Production_file_width = Production_file_width
4432 0 : s% pg% Production_file_aspect_ratio = Production_file_aspect_ratio
4433 0 : s% pg% Production_xleft = Production_xleft
4434 0 : s% pg% Production_xright = Production_xright
4435 0 : s% pg% Production_ybot = Production_ybot
4436 0 : s% pg% Production_ytop = Production_ytop
4437 0 : s% pg% Production_txt_scale = Production_txt_scale
4438 0 : s% pg% Production_title = Production_title
4439 0 : s% pg% Production_use_decorator = Production_use_decorator
4440 :
4441 :
4442 0 : s% pg% History_Track1_win_flag = History_Track1_win_flag
4443 0 : s% pg% History_Track1_file_flag = History_Track1_file_flag
4444 0 : s% pg% History_Track1_file_interval = History_Track1_file_interval
4445 0 : s% pg% History_Track1_step_min = History_Track1_step_min
4446 0 : s% pg% History_Track1_step_max = History_Track1_step_max
4447 0 : s% pg% show_History_Track1_target_box = show_History_Track1_target_box
4448 0 : s% pg% History_Track1_n_sigma = History_Track1_n_sigma
4449 0 : s% pg% History_Track1_xtarget = History_Track1_xtarget
4450 0 : s% pg% History_Track1_xsigma = History_Track1_xsigma
4451 0 : s% pg% History_Track1_ytarget = History_Track1_ytarget
4452 0 : s% pg% History_Track1_ysigma = History_Track1_ysigma
4453 0 : s% pg% History_Track1_file_dir = History_Track1_file_dir
4454 0 : s% pg% History_Track1_file_prefix = History_Track1_file_prefix
4455 0 : s% pg% show_History_Track1_annotation1 = show_History_Track1_annotation1
4456 0 : s% pg% show_History_Track1_annotation2 = show_History_Track1_annotation2
4457 0 : s% pg% show_History_Track1_annotation3 = show_History_Track1_annotation3
4458 0 : s% pg% History_Track1_fname = History_Track1_fname
4459 0 : s% pg% History_Track1_xname = History_Track1_xname
4460 0 : s% pg% History_Track1_xaxis_label = History_Track1_xaxis_label
4461 0 : s% pg% History_Track1_yname = History_Track1_yname
4462 0 : s% pg% History_Track1_yaxis_label = History_Track1_yaxis_label
4463 0 : s% pg% History_Track1_reverse_xaxis = History_Track1_reverse_xaxis
4464 0 : s% pg% History_Track1_reverse_yaxis = History_Track1_reverse_yaxis
4465 0 : s% pg% History_Track1_log_xaxis = History_Track1_log_xaxis
4466 0 : s% pg% History_Track1_log_yaxis = History_Track1_log_yaxis
4467 0 : s% pg% History_Track1_xmin = History_Track1_xmin
4468 0 : s% pg% History_Track1_xmax = History_Track1_xmax
4469 0 : s% pg% History_Track1_ymin = History_Track1_ymin
4470 0 : s% pg% History_Track1_ymax = History_Track1_ymax
4471 0 : s% pg% History_Track1_xmargin = History_Track1_xmargin
4472 0 : s% pg% History_Track1_ymargin = History_Track1_ymargin
4473 0 : s% pg% History_Track1_dxmin = History_Track1_dxmin
4474 0 : s% pg% History_Track1_dymin = History_Track1_dymin
4475 0 : s% pg% History_Track1_win_width = History_Track1_win_width
4476 0 : s% pg% History_Track1_win_aspect_ratio = History_Track1_win_aspect_ratio
4477 0 : s% pg% History_Track1_file_width = History_Track1_file_width
4478 0 : s% pg% History_Track1_file_aspect_ratio = History_Track1_file_aspect_ratio
4479 0 : s% pg% History_Track1_xleft = History_Track1_xleft
4480 0 : s% pg% History_Track1_xright = History_Track1_xright
4481 0 : s% pg% History_Track1_ybot = History_Track1_ybot
4482 0 : s% pg% History_Track1_ytop = History_Track1_ytop
4483 0 : s% pg% History_Track1_txt_scale = History_Track1_txt_scale
4484 0 : s% pg% History_Track1_title = History_Track1_title
4485 0 : s% pg% History_Track1_use_decorator = History_Track1_use_decorator
4486 :
4487 :
4488 0 : s% pg% History_Track2_win_flag = History_Track2_win_flag
4489 0 : s% pg% History_Track2_file_flag = History_Track2_file_flag
4490 0 : s% pg% History_Track2_file_interval = History_Track2_file_interval
4491 0 : s% pg% History_Track2_step_min = History_Track2_step_min
4492 0 : s% pg% History_Track2_step_max = History_Track2_step_max
4493 0 : s% pg% show_History_Track2_target_box = show_History_Track2_target_box
4494 0 : s% pg% History_Track2_n_sigma = History_Track2_n_sigma
4495 0 : s% pg% History_Track2_xtarget = History_Track2_xtarget
4496 0 : s% pg% History_Track2_xsigma = History_Track2_xsigma
4497 0 : s% pg% History_Track2_ytarget = History_Track2_ytarget
4498 0 : s% pg% History_Track2_ysigma = History_Track2_ysigma
4499 0 : s% pg% History_Track2_xname = History_Track2_xname
4500 0 : s% pg% History_Track2_xaxis_label = History_Track2_xaxis_label
4501 0 : s% pg% History_Track2_yname = History_Track2_yname
4502 0 : s% pg% History_Track2_yaxis_label = History_Track2_yaxis_label
4503 0 : s% pg% History_Track2_file_dir = History_Track2_file_dir
4504 0 : s% pg% History_Track2_file_prefix = History_Track2_file_prefix
4505 0 : s% pg% show_History_Track2_annotation1 = show_History_Track2_annotation1
4506 0 : s% pg% show_History_Track2_annotation2 = show_History_Track2_annotation2
4507 0 : s% pg% show_History_Track2_annotation3 = show_History_Track2_annotation3
4508 0 : s% pg% History_Track2_fname = History_Track2_fname
4509 0 : s% pg% History_Track2_reverse_xaxis = History_Track2_reverse_xaxis
4510 0 : s% pg% History_Track2_reverse_yaxis = History_Track2_reverse_yaxis
4511 0 : s% pg% History_Track2_log_xaxis = History_Track2_log_xaxis
4512 0 : s% pg% History_Track2_log_yaxis = History_Track2_log_yaxis
4513 0 : s% pg% History_Track2_xmin = History_Track2_xmin
4514 0 : s% pg% History_Track2_xmax = History_Track2_xmax
4515 0 : s% pg% History_Track2_ymin = History_Track2_ymin
4516 0 : s% pg% History_Track2_ymax = History_Track2_ymax
4517 0 : s% pg% History_Track2_xmargin = History_Track2_xmargin
4518 0 : s% pg% History_Track2_ymargin = History_Track2_ymargin
4519 0 : s% pg% History_Track2_dxmin = History_Track2_dxmin
4520 0 : s% pg% History_Track2_dymin = History_Track2_dymin
4521 0 : s% pg% History_Track2_win_width = History_Track2_win_width
4522 0 : s% pg% History_Track2_win_aspect_ratio = History_Track2_win_aspect_ratio
4523 0 : s% pg% History_Track2_file_width = History_Track2_file_width
4524 0 : s% pg% History_Track2_file_aspect_ratio = History_Track2_file_aspect_ratio
4525 0 : s% pg% History_Track2_xleft = History_Track2_xleft
4526 0 : s% pg% History_Track2_xright = History_Track2_xright
4527 0 : s% pg% History_Track2_ybot = History_Track2_ybot
4528 0 : s% pg% History_Track2_ytop = History_Track2_ytop
4529 0 : s% pg% History_Track2_txt_scale = History_Track2_txt_scale
4530 0 : s% pg% History_Track2_title = History_Track2_title
4531 0 : s% pg% History_Track2_use_decorator = History_Track2_use_decorator
4532 :
4533 0 : s% pg% History_Track3_win_flag = History_Track3_win_flag
4534 0 : s% pg% History_Track3_file_flag = History_Track3_file_flag
4535 0 : s% pg% History_Track3_file_interval = History_Track3_file_interval
4536 0 : s% pg% History_Track3_step_min = History_Track3_step_min
4537 0 : s% pg% History_Track3_step_max = History_Track3_step_max
4538 0 : s% pg% show_History_Track3_target_box = show_History_Track3_target_box
4539 0 : s% pg% History_Track3_n_sigma = History_Track3_n_sigma
4540 0 : s% pg% History_Track3_xtarget = History_Track3_xtarget
4541 0 : s% pg% History_Track3_xsigma = History_Track3_xsigma
4542 0 : s% pg% History_Track3_ytarget = History_Track3_ytarget
4543 0 : s% pg% History_Track3_ysigma = History_Track3_ysigma
4544 0 : s% pg% History_Track3_xname = History_Track3_xname
4545 0 : s% pg% History_Track3_xaxis_label = History_Track3_xaxis_label
4546 0 : s% pg% History_Track3_yname = History_Track3_yname
4547 0 : s% pg% History_Track3_yaxis_label = History_Track3_yaxis_label
4548 0 : s% pg% History_Track3_file_dir = History_Track3_file_dir
4549 0 : s% pg% History_Track3_file_prefix = History_Track3_file_prefix
4550 0 : s% pg% show_History_Track3_annotation1 = show_History_Track3_annotation1
4551 0 : s% pg% show_History_Track3_annotation2 = show_History_Track3_annotation2
4552 0 : s% pg% show_History_Track3_annotation3 = show_History_Track3_annotation3
4553 0 : s% pg% History_Track3_fname = History_Track3_fname
4554 0 : s% pg% History_Track3_reverse_xaxis = History_Track3_reverse_xaxis
4555 0 : s% pg% History_Track3_reverse_yaxis = History_Track3_reverse_yaxis
4556 0 : s% pg% History_Track3_log_xaxis = History_Track3_log_xaxis
4557 0 : s% pg% History_Track3_log_yaxis = History_Track3_log_yaxis
4558 0 : s% pg% History_Track3_xmin = History_Track3_xmin
4559 0 : s% pg% History_Track3_xmax = History_Track3_xmax
4560 0 : s% pg% History_Track3_ymin = History_Track3_ymin
4561 0 : s% pg% History_Track3_ymax = History_Track3_ymax
4562 0 : s% pg% History_Track3_xmargin = History_Track3_xmargin
4563 0 : s% pg% History_Track3_ymargin = History_Track3_ymargin
4564 0 : s% pg% History_Track3_dxmin = History_Track3_dxmin
4565 0 : s% pg% History_Track3_dymin = History_Track3_dymin
4566 0 : s% pg% History_Track3_win_width = History_Track3_win_width
4567 0 : s% pg% History_Track3_win_aspect_ratio = History_Track3_win_aspect_ratio
4568 0 : s% pg% History_Track3_file_width = History_Track3_file_width
4569 0 : s% pg% History_Track3_file_aspect_ratio = History_Track3_file_aspect_ratio
4570 0 : s% pg% History_Track3_xleft = History_Track3_xleft
4571 0 : s% pg% History_Track3_xright = History_Track3_xright
4572 0 : s% pg% History_Track3_ybot = History_Track3_ybot
4573 0 : s% pg% History_Track3_ytop = History_Track3_ytop
4574 0 : s% pg% History_Track3_txt_scale = History_Track3_txt_scale
4575 0 : s% pg% History_Track3_title = History_Track3_title
4576 0 : s% pg% History_Track3_use_decorator = History_Track3_use_decorator
4577 :
4578 0 : s% pg% History_Track4_win_flag = History_Track4_win_flag
4579 0 : s% pg% History_Track4_file_flag = History_Track4_file_flag
4580 0 : s% pg% History_Track4_file_interval = History_Track4_file_interval
4581 0 : s% pg% History_Track4_step_min = History_Track4_step_min
4582 0 : s% pg% History_Track4_step_max = History_Track4_step_max
4583 0 : s% pg% show_History_Track4_target_box = show_History_Track4_target_box
4584 0 : s% pg% History_Track4_n_sigma = History_Track4_n_sigma
4585 0 : s% pg% History_Track4_xtarget = History_Track4_xtarget
4586 0 : s% pg% History_Track4_xsigma = History_Track4_xsigma
4587 0 : s% pg% History_Track4_ytarget = History_Track4_ytarget
4588 0 : s% pg% History_Track4_ysigma = History_Track4_ysigma
4589 0 : s% pg% History_Track4_xname = History_Track4_xname
4590 0 : s% pg% History_Track4_xaxis_label = History_Track4_xaxis_label
4591 0 : s% pg% History_Track4_yname = History_Track4_yname
4592 0 : s% pg% History_Track4_yaxis_label = History_Track4_yaxis_label
4593 0 : s% pg% History_Track4_file_dir = History_Track4_file_dir
4594 0 : s% pg% History_Track4_file_prefix = History_Track4_file_prefix
4595 0 : s% pg% show_History_Track4_annotation1 = show_History_Track4_annotation1
4596 0 : s% pg% show_History_Track4_annotation2 = show_History_Track4_annotation2
4597 0 : s% pg% show_History_Track4_annotation3 = show_History_Track4_annotation3
4598 0 : s% pg% History_Track4_fname = History_Track4_fname
4599 0 : s% pg% History_Track4_reverse_xaxis = History_Track4_reverse_xaxis
4600 0 : s% pg% History_Track4_reverse_yaxis = History_Track4_reverse_yaxis
4601 0 : s% pg% History_Track4_log_xaxis = History_Track4_log_xaxis
4602 0 : s% pg% History_Track4_log_yaxis = History_Track4_log_yaxis
4603 0 : s% pg% History_Track4_xmin = History_Track4_xmin
4604 0 : s% pg% History_Track4_xmax = History_Track4_xmax
4605 0 : s% pg% History_Track4_ymin = History_Track4_ymin
4606 0 : s% pg% History_Track4_ymax = History_Track4_ymax
4607 0 : s% pg% History_Track4_xmargin = History_Track4_xmargin
4608 0 : s% pg% History_Track4_ymargin = History_Track4_ymargin
4609 0 : s% pg% History_Track4_dxmin = History_Track4_dxmin
4610 0 : s% pg% History_Track4_dymin = History_Track4_dymin
4611 0 : s% pg% History_Track4_win_width = History_Track4_win_width
4612 0 : s% pg% History_Track4_win_aspect_ratio = History_Track4_win_aspect_ratio
4613 0 : s% pg% History_Track4_file_width = History_Track4_file_width
4614 0 : s% pg% History_Track4_file_aspect_ratio = History_Track4_file_aspect_ratio
4615 0 : s% pg% History_Track4_xleft = History_Track4_xleft
4616 0 : s% pg% History_Track4_xright = History_Track4_xright
4617 0 : s% pg% History_Track4_ybot = History_Track4_ybot
4618 0 : s% pg% History_Track4_ytop = History_Track4_ytop
4619 0 : s% pg% History_Track4_txt_scale = History_Track4_txt_scale
4620 0 : s% pg% History_Track4_title = History_Track4_title
4621 0 : s% pg% History_Track4_use_decorator = History_Track4_use_decorator
4622 :
4623 0 : s% pg% History_Track5_win_flag = History_Track5_win_flag
4624 0 : s% pg% History_Track5_file_flag = History_Track5_file_flag
4625 0 : s% pg% History_Track5_file_interval = History_Track5_file_interval
4626 0 : s% pg% History_Track5_step_min = History_Track5_step_min
4627 0 : s% pg% History_Track5_step_max = History_Track5_step_max
4628 0 : s% pg% show_History_Track5_target_box = show_History_Track5_target_box
4629 0 : s% pg% History_Track5_n_sigma = History_Track5_n_sigma
4630 0 : s% pg% History_Track5_xtarget = History_Track5_xtarget
4631 0 : s% pg% History_Track5_xsigma = History_Track5_xsigma
4632 0 : s% pg% History_Track5_ytarget = History_Track5_ytarget
4633 0 : s% pg% History_Track5_ysigma = History_Track5_ysigma
4634 0 : s% pg% History_Track5_xname = History_Track5_xname
4635 0 : s% pg% History_Track5_xaxis_label = History_Track5_xaxis_label
4636 0 : s% pg% History_Track5_yname = History_Track5_yname
4637 0 : s% pg% History_Track5_yaxis_label = History_Track5_yaxis_label
4638 0 : s% pg% History_Track5_file_dir = History_Track5_file_dir
4639 0 : s% pg% History_Track5_file_prefix = History_Track5_file_prefix
4640 0 : s% pg% show_History_Track5_annotation1 = show_History_Track5_annotation1
4641 0 : s% pg% show_History_Track5_annotation2 = show_History_Track5_annotation2
4642 0 : s% pg% show_History_Track5_annotation3 = show_History_Track5_annotation3
4643 0 : s% pg% History_Track5_fname = History_Track5_fname
4644 0 : s% pg% History_Track5_reverse_xaxis = History_Track5_reverse_xaxis
4645 0 : s% pg% History_Track5_reverse_yaxis = History_Track5_reverse_yaxis
4646 0 : s% pg% History_Track5_log_xaxis = History_Track5_log_xaxis
4647 0 : s% pg% History_Track5_log_yaxis = History_Track5_log_yaxis
4648 0 : s% pg% History_Track5_xmin = History_Track5_xmin
4649 0 : s% pg% History_Track5_xmax = History_Track5_xmax
4650 0 : s% pg% History_Track5_ymin = History_Track5_ymin
4651 0 : s% pg% History_Track5_ymax = History_Track5_ymax
4652 0 : s% pg% History_Track5_xmargin = History_Track5_xmargin
4653 0 : s% pg% History_Track5_ymargin = History_Track5_ymargin
4654 0 : s% pg% History_Track5_dxmin = History_Track5_dxmin
4655 0 : s% pg% History_Track5_dymin = History_Track5_dymin
4656 0 : s% pg% History_Track5_win_width = History_Track5_win_width
4657 0 : s% pg% History_Track5_win_aspect_ratio = History_Track5_win_aspect_ratio
4658 0 : s% pg% History_Track5_file_width = History_Track5_file_width
4659 0 : s% pg% History_Track5_file_aspect_ratio = History_Track5_file_aspect_ratio
4660 0 : s% pg% History_Track5_xleft = History_Track5_xleft
4661 0 : s% pg% History_Track5_xright = History_Track5_xright
4662 0 : s% pg% History_Track5_ybot = History_Track5_ybot
4663 0 : s% pg% History_Track5_ytop = History_Track5_ytop
4664 0 : s% pg% History_Track5_txt_scale = History_Track5_txt_scale
4665 0 : s% pg% History_Track5_title = History_Track5_title
4666 0 : s% pg% History_Track5_use_decorator = History_Track5_use_decorator
4667 :
4668 0 : s% pg% History_Track6_win_flag = History_Track6_win_flag
4669 0 : s% pg% History_Track6_file_flag = History_Track6_file_flag
4670 0 : s% pg% History_Track6_file_interval = History_Track6_file_interval
4671 0 : s% pg% History_Track6_step_min = History_Track6_step_min
4672 0 : s% pg% History_Track6_step_max = History_Track6_step_max
4673 0 : s% pg% show_History_Track6_target_box = show_History_Track6_target_box
4674 0 : s% pg% History_Track6_n_sigma = History_Track6_n_sigma
4675 0 : s% pg% History_Track6_xtarget = History_Track6_xtarget
4676 0 : s% pg% History_Track6_xsigma = History_Track6_xsigma
4677 0 : s% pg% History_Track6_ytarget = History_Track6_ytarget
4678 0 : s% pg% History_Track6_ysigma = History_Track6_ysigma
4679 0 : s% pg% History_Track6_xname = History_Track6_xname
4680 0 : s% pg% History_Track6_xaxis_label = History_Track6_xaxis_label
4681 0 : s% pg% History_Track6_yname = History_Track6_yname
4682 0 : s% pg% History_Track6_yaxis_label = History_Track6_yaxis_label
4683 0 : s% pg% History_Track6_file_dir = History_Track6_file_dir
4684 0 : s% pg% History_Track6_file_prefix = History_Track6_file_prefix
4685 0 : s% pg% show_History_Track6_annotation1 = show_History_Track6_annotation1
4686 0 : s% pg% show_History_Track6_annotation2 = show_History_Track6_annotation2
4687 0 : s% pg% show_History_Track6_annotation3 = show_History_Track6_annotation3
4688 0 : s% pg% History_Track6_fname = History_Track6_fname
4689 0 : s% pg% History_Track6_reverse_xaxis = History_Track6_reverse_xaxis
4690 0 : s% pg% History_Track6_reverse_yaxis = History_Track6_reverse_yaxis
4691 0 : s% pg% History_Track6_log_xaxis = History_Track6_log_xaxis
4692 0 : s% pg% History_Track6_log_yaxis = History_Track6_log_yaxis
4693 0 : s% pg% History_Track6_xmin = History_Track6_xmin
4694 0 : s% pg% History_Track6_xmax = History_Track6_xmax
4695 0 : s% pg% History_Track6_ymin = History_Track6_ymin
4696 0 : s% pg% History_Track6_ymax = History_Track6_ymax
4697 0 : s% pg% History_Track6_xmargin = History_Track6_xmargin
4698 0 : s% pg% History_Track6_ymargin = History_Track6_ymargin
4699 0 : s% pg% History_Track6_dxmin = History_Track6_dxmin
4700 0 : s% pg% History_Track6_dymin = History_Track6_dymin
4701 0 : s% pg% History_Track6_win_width = History_Track6_win_width
4702 0 : s% pg% History_Track6_win_aspect_ratio = History_Track6_win_aspect_ratio
4703 0 : s% pg% History_Track6_file_width = History_Track6_file_width
4704 0 : s% pg% History_Track6_file_aspect_ratio = History_Track6_file_aspect_ratio
4705 0 : s% pg% History_Track6_xleft = History_Track6_xleft
4706 0 : s% pg% History_Track6_xright = History_Track6_xright
4707 0 : s% pg% History_Track6_ybot = History_Track6_ybot
4708 0 : s% pg% History_Track6_ytop = History_Track6_ytop
4709 0 : s% pg% History_Track6_txt_scale = History_Track6_txt_scale
4710 0 : s% pg% History_Track6_title = History_Track6_title
4711 0 : s% pg% History_Track6_use_decorator = History_Track6_use_decorator
4712 :
4713 0 : s% pg% History_Track7_win_flag = History_Track7_win_flag
4714 0 : s% pg% History_Track7_file_flag = History_Track7_file_flag
4715 0 : s% pg% History_Track7_file_interval = History_Track7_file_interval
4716 0 : s% pg% History_Track7_step_min = History_Track7_step_min
4717 0 : s% pg% History_Track7_step_max = History_Track7_step_max
4718 0 : s% pg% show_History_Track7_target_box = show_History_Track7_target_box
4719 0 : s% pg% History_Track7_n_sigma = History_Track7_n_sigma
4720 0 : s% pg% History_Track7_xtarget = History_Track7_xtarget
4721 0 : s% pg% History_Track7_xsigma = History_Track7_xsigma
4722 0 : s% pg% History_Track7_ytarget = History_Track7_ytarget
4723 0 : s% pg% History_Track7_ysigma = History_Track7_ysigma
4724 0 : s% pg% History_Track7_xname = History_Track7_xname
4725 0 : s% pg% History_Track7_xaxis_label = History_Track7_xaxis_label
4726 0 : s% pg% History_Track7_yname = History_Track7_yname
4727 0 : s% pg% History_Track7_yaxis_label = History_Track7_yaxis_label
4728 0 : s% pg% History_Track7_file_dir = History_Track7_file_dir
4729 0 : s% pg% History_Track7_file_prefix = History_Track7_file_prefix
4730 0 : s% pg% show_History_Track7_annotation1 = show_History_Track7_annotation1
4731 0 : s% pg% show_History_Track7_annotation2 = show_History_Track7_annotation2
4732 0 : s% pg% show_History_Track7_annotation3 = show_History_Track7_annotation3
4733 0 : s% pg% History_Track7_fname = History_Track7_fname
4734 0 : s% pg% History_Track7_reverse_xaxis = History_Track7_reverse_xaxis
4735 0 : s% pg% History_Track7_reverse_yaxis = History_Track7_reverse_yaxis
4736 0 : s% pg% History_Track7_log_xaxis = History_Track7_log_xaxis
4737 0 : s% pg% History_Track7_log_yaxis = History_Track7_log_yaxis
4738 0 : s% pg% History_Track7_xmin = History_Track7_xmin
4739 0 : s% pg% History_Track7_xmax = History_Track7_xmax
4740 0 : s% pg% History_Track7_ymin = History_Track7_ymin
4741 0 : s% pg% History_Track7_ymax = History_Track7_ymax
4742 0 : s% pg% History_Track7_xmargin = History_Track7_xmargin
4743 0 : s% pg% History_Track7_ymargin = History_Track7_ymargin
4744 0 : s% pg% History_Track7_dxmin = History_Track7_dxmin
4745 0 : s% pg% History_Track7_dymin = History_Track7_dymin
4746 0 : s% pg% History_Track7_win_width = History_Track7_win_width
4747 0 : s% pg% History_Track7_win_aspect_ratio = History_Track7_win_aspect_ratio
4748 0 : s% pg% History_Track7_file_width = History_Track7_file_width
4749 0 : s% pg% History_Track7_file_aspect_ratio = History_Track7_file_aspect_ratio
4750 0 : s% pg% History_Track7_xleft = History_Track7_xleft
4751 0 : s% pg% History_Track7_xright = History_Track7_xright
4752 0 : s% pg% History_Track7_ybot = History_Track7_ybot
4753 0 : s% pg% History_Track7_ytop = History_Track7_ytop
4754 0 : s% pg% History_Track7_txt_scale = History_Track7_txt_scale
4755 0 : s% pg% History_Track7_title = History_Track7_title
4756 0 : s% pg% History_Track7_use_decorator = History_Track7_use_decorator
4757 :
4758 0 : s% pg% History_Track8_win_flag = History_Track8_win_flag
4759 0 : s% pg% History_Track8_file_flag = History_Track8_file_flag
4760 0 : s% pg% History_Track8_file_interval = History_Track8_file_interval
4761 0 : s% pg% History_Track8_step_min = History_Track8_step_min
4762 0 : s% pg% History_Track8_step_max = History_Track8_step_max
4763 0 : s% pg% show_History_Track8_target_box = show_History_Track8_target_box
4764 0 : s% pg% History_Track8_n_sigma = History_Track8_n_sigma
4765 0 : s% pg% History_Track8_xtarget = History_Track8_xtarget
4766 0 : s% pg% History_Track8_xsigma = History_Track8_xsigma
4767 0 : s% pg% History_Track8_ytarget = History_Track8_ytarget
4768 0 : s% pg% History_Track8_ysigma = History_Track8_ysigma
4769 0 : s% pg% History_Track8_xname = History_Track8_xname
4770 0 : s% pg% History_Track8_xaxis_label = History_Track8_xaxis_label
4771 0 : s% pg% History_Track8_yname = History_Track8_yname
4772 0 : s% pg% History_Track8_yaxis_label = History_Track8_yaxis_label
4773 0 : s% pg% History_Track8_file_dir = History_Track8_file_dir
4774 0 : s% pg% History_Track8_file_prefix = History_Track8_file_prefix
4775 0 : s% pg% show_History_Track8_annotation1 = show_History_Track8_annotation1
4776 0 : s% pg% show_History_Track8_annotation2 = show_History_Track8_annotation2
4777 0 : s% pg% show_History_Track8_annotation3 = show_History_Track8_annotation3
4778 0 : s% pg% History_Track8_fname = History_Track8_fname
4779 0 : s% pg% History_Track8_reverse_xaxis = History_Track8_reverse_xaxis
4780 0 : s% pg% History_Track8_reverse_yaxis = History_Track8_reverse_yaxis
4781 0 : s% pg% History_Track8_log_xaxis = History_Track8_log_xaxis
4782 0 : s% pg% History_Track8_log_yaxis = History_Track8_log_yaxis
4783 0 : s% pg% History_Track8_xmin = History_Track8_xmin
4784 0 : s% pg% History_Track8_xmax = History_Track8_xmax
4785 0 : s% pg% History_Track8_ymin = History_Track8_ymin
4786 0 : s% pg% History_Track8_ymax = History_Track8_ymax
4787 0 : s% pg% History_Track8_xmargin = History_Track8_xmargin
4788 0 : s% pg% History_Track8_ymargin = History_Track8_ymargin
4789 0 : s% pg% History_Track8_dxmin = History_Track8_dxmin
4790 0 : s% pg% History_Track8_dymin = History_Track8_dymin
4791 0 : s% pg% History_Track8_win_width = History_Track8_win_width
4792 0 : s% pg% History_Track8_win_aspect_ratio = History_Track8_win_aspect_ratio
4793 0 : s% pg% History_Track8_file_width = History_Track8_file_width
4794 0 : s% pg% History_Track8_file_aspect_ratio = History_Track8_file_aspect_ratio
4795 0 : s% pg% History_Track8_xleft = History_Track8_xleft
4796 0 : s% pg% History_Track8_xright = History_Track8_xright
4797 0 : s% pg% History_Track8_ybot = History_Track8_ybot
4798 0 : s% pg% History_Track8_ytop = History_Track8_ytop
4799 0 : s% pg% History_Track8_txt_scale = History_Track8_txt_scale
4800 0 : s% pg% History_Track8_title = History_Track8_title
4801 0 : s% pg% History_Track8_use_decorator = History_Track8_use_decorator
4802 :
4803 0 : s% pg% History_Track9_win_flag = History_Track9_win_flag
4804 0 : s% pg% History_Track9_file_flag = History_Track9_file_flag
4805 0 : s% pg% History_Track9_file_interval = History_Track9_file_interval
4806 0 : s% pg% History_Track9_step_min = History_Track9_step_min
4807 0 : s% pg% History_Track9_step_max = History_Track9_step_max
4808 0 : s% pg% show_History_Track9_target_box = show_History_Track9_target_box
4809 0 : s% pg% History_Track9_n_sigma = History_Track9_n_sigma
4810 0 : s% pg% History_Track9_xtarget = History_Track9_xtarget
4811 0 : s% pg% History_Track9_xsigma = History_Track9_xsigma
4812 0 : s% pg% History_Track9_ytarget = History_Track9_ytarget
4813 0 : s% pg% History_Track9_ysigma = History_Track9_ysigma
4814 0 : s% pg% History_Track9_xname = History_Track9_xname
4815 0 : s% pg% History_Track9_xaxis_label = History_Track9_xaxis_label
4816 0 : s% pg% History_Track9_yname = History_Track9_yname
4817 0 : s% pg% History_Track9_yaxis_label = History_Track9_yaxis_label
4818 0 : s% pg% History_Track9_file_dir = History_Track9_file_dir
4819 0 : s% pg% History_Track9_file_prefix = History_Track9_file_prefix
4820 0 : s% pg% show_History_Track9_annotation1 = show_History_Track9_annotation1
4821 0 : s% pg% show_History_Track9_annotation2 = show_History_Track9_annotation2
4822 0 : s% pg% show_History_Track9_annotation3 = show_History_Track9_annotation3
4823 0 : s% pg% History_Track9_fname = History_Track9_fname
4824 0 : s% pg% History_Track9_reverse_xaxis = History_Track9_reverse_xaxis
4825 0 : s% pg% History_Track9_reverse_yaxis = History_Track9_reverse_yaxis
4826 0 : s% pg% History_Track9_log_xaxis = History_Track9_log_xaxis
4827 0 : s% pg% History_Track9_log_yaxis = History_Track9_log_yaxis
4828 0 : s% pg% History_Track9_xmin = History_Track9_xmin
4829 0 : s% pg% History_Track9_xmax = History_Track9_xmax
4830 0 : s% pg% History_Track9_ymin = History_Track9_ymin
4831 0 : s% pg% History_Track9_ymax = History_Track9_ymax
4832 0 : s% pg% History_Track9_xmargin = History_Track9_xmargin
4833 0 : s% pg% History_Track9_ymargin = History_Track9_ymargin
4834 0 : s% pg% History_Track9_dxmin = History_Track9_dxmin
4835 0 : s% pg% History_Track9_dymin = History_Track9_dymin
4836 0 : s% pg% History_Track9_win_width = History_Track9_win_width
4837 0 : s% pg% History_Track9_win_aspect_ratio = History_Track9_win_aspect_ratio
4838 0 : s% pg% History_Track9_file_width = History_Track9_file_width
4839 0 : s% pg% History_Track9_file_aspect_ratio = History_Track9_file_aspect_ratio
4840 0 : s% pg% History_Track9_xleft = History_Track9_xleft
4841 0 : s% pg% History_Track9_xright = History_Track9_xright
4842 0 : s% pg% History_Track9_ybot = History_Track9_ybot
4843 0 : s% pg% History_Track9_ytop = History_Track9_ytop
4844 0 : s% pg% History_Track9_txt_scale = History_Track9_txt_scale
4845 0 : s% pg% History_Track9_title = History_Track9_title
4846 0 : s% pg% History_Track9_use_decorator = History_Track9_use_decorator
4847 :
4848 0 : s% pg% Kipp_win_flag = Kipp_win_flag
4849 0 : s% pg% Kipp_file_flag = Kipp_file_flag
4850 0 : s% pg% Kipp_file_interval = Kipp_file_interval
4851 0 : s% pg% Kipp_xmax = Kipp_xmax
4852 0 : s% pg% Kipp_xmin = Kipp_xmin
4853 0 : s% pg% Kipp_max_width = Kipp_max_width
4854 0 : s% pg% Kipp_step_xmax = Kipp_step_xmax
4855 0 : s% pg% Kipp_step_xmin = Kipp_step_xmin
4856 0 : s% pg% Kipp_xaxis_name = Kipp_xaxis_name
4857 0 : s% pg% Kipp_xaxis_log = Kipp_xaxis_log
4858 0 : s% pg% Kipp_xmargin = Kipp_xmargin
4859 0 : s% pg% Kipp_xaxis_reversed = Kipp_xaxis_reversed
4860 0 : s% pg% Kipp_xaxis_in_seconds = Kipp_xaxis_in_seconds
4861 0 : s% pg% Kipp_xaxis_in_Myr = Kipp_xaxis_in_Myr
4862 0 : s% pg% Kipp_xaxis_time_from_present = Kipp_xaxis_time_from_present
4863 0 : s% pg% Kipp_file_dir = Kipp_file_dir
4864 0 : s% pg% Kipp_file_prefix = Kipp_file_prefix
4865 0 : s% pg% show_Kipp_annotation1 = show_Kipp_annotation1
4866 0 : s% pg% show_Kipp_annotation2 = show_Kipp_annotation2
4867 0 : s% pg% show_Kipp_annotation3 = show_Kipp_annotation3
4868 0 : s% pg% Kipp_show_burn = Kipp_show_burn
4869 0 : s% pg% Kipp_show_mixing = Kipp_show_mixing
4870 0 : s% pg% Kipp_show_luminosities = Kipp_show_luminosities
4871 0 : s% pg% Kipp_show_mass_boundaries = Kipp_show_mass_boundaries
4872 0 : s% pg% Kipp_mix_line_weight = Kipp_mix_line_weight
4873 0 : s% pg% Kipp_mix_interval = Kipp_mix_interval
4874 0 : s% pg% Kipp_burn_line_weight = Kipp_burn_line_weight
4875 0 : s% pg% Kipp_burn_type_cutoff = Kipp_burn_type_cutoff
4876 0 : s% pg% Kipp_luminosities_line_weight = Kipp_luminosities_line_weight
4877 0 : s% pg% Kipp_masses_line_weight = Kipp_masses_line_weight
4878 0 : s% pg% Kipp_mass_max = Kipp_mass_max
4879 0 : s% pg% Kipp_mass_min = Kipp_mass_min
4880 0 : s% pg% Kipp_lgL_max = Kipp_lgL_max
4881 0 : s% pg% Kipp_lgL_min = Kipp_lgL_min
4882 0 : s% pg% Kipp_mass_margin = Kipp_mass_margin
4883 0 : s% pg% Kipp_lgL_margin = Kipp_lgL_margin
4884 0 : s% pg% Kipp_win_width = Kipp_win_width
4885 0 : s% pg% Kipp_win_aspect_ratio = Kipp_win_aspect_ratio
4886 0 : s% pg% Kipp_file_width = Kipp_file_width
4887 0 : s% pg% Kipp_file_aspect_ratio = Kipp_file_aspect_ratio
4888 0 : s% pg% Kipp_xleft = Kipp_xleft
4889 0 : s% pg% Kipp_xright = Kipp_xright
4890 0 : s% pg% Kipp_ybot = Kipp_ybot
4891 0 : s% pg% Kipp_ytop = Kipp_ytop
4892 0 : s% pg% Kipp_txt_scale = Kipp_txt_scale
4893 0 : s% pg% Kipp_title = Kipp_title
4894 0 : s% pg% kipp_use_decorator = kipp_use_decorator
4895 :
4896 0 : s% pg% rti_win_flag = rti_win_flag
4897 0 : s% pg% rti_file_flag = rti_file_flag
4898 0 : s% pg% rti_file_interval = rti_file_interval
4899 0 : s% pg% rti_xmax = rti_xmax
4900 0 : s% pg% rti_xmin = rti_xmin
4901 0 : s% pg% rti_max_width = rti_max_width
4902 0 : s% pg% rti_step_xmax = rti_step_xmax
4903 0 : s% pg% rti_step_xmin = rti_step_xmin
4904 0 : s% pg% rti_xaxis_name = rti_xaxis_name
4905 0 : s% pg% rti_xaxis_log = rti_xaxis_log
4906 0 : s% pg% rti_xmargin = rti_xmargin
4907 0 : s% pg% rti_xaxis_reversed = rti_xaxis_reversed
4908 0 : s% pg% rti_xaxis_in_seconds = rti_xaxis_in_seconds
4909 0 : s% pg% rti_xaxis_in_Myr = rti_xaxis_in_Myr
4910 0 : s% pg% rti_xaxis_time_from_present = rti_xaxis_time_from_present
4911 0 : s% pg% rti_mass_max = rti_mass_max
4912 0 : s% pg% rti_mass_min = rti_mass_min
4913 0 : s% pg% rti_mass_margin = rti_mass_margin
4914 0 : s% pg% rti_file_dir = rti_file_dir
4915 0 : s% pg% rti_file_prefix = rti_file_prefix
4916 0 : s% pg% show_rti_annotation1 = show_rti_annotation1
4917 0 : s% pg% show_rti_annotation2 = show_rti_annotation2
4918 0 : s% pg% show_rti_annotation3 = show_rti_annotation3
4919 0 : s% pg% rti_line_weight = rti_line_weight
4920 0 : s% pg% rti_interval = rti_interval
4921 0 : s% pg% rti_win_width = rti_win_width
4922 0 : s% pg% rti_win_aspect_ratio = rti_win_aspect_ratio
4923 0 : s% pg% rti_file_width = rti_file_width
4924 0 : s% pg% rti_file_aspect_ratio = rti_file_aspect_ratio
4925 0 : s% pg% rti_xleft = rti_xleft
4926 0 : s% pg% rti_xright = rti_xright
4927 0 : s% pg% rti_ybot = rti_ybot
4928 0 : s% pg% rti_ytop = rti_ytop
4929 0 : s% pg% rti_txt_scale = rti_txt_scale
4930 0 : s% pg% rti_title = rti_title
4931 0 : s% pg% rti_use_decorator = rti_use_decorator
4932 :
4933 0 : s% pg% TRho_Profile_win_flag = TRho_Profile_win_flag
4934 0 : s% pg% TRho_switch_to_Column_Depth = TRho_switch_to_Column_Depth
4935 0 : s% pg% TRho_switch_to_mass = TRho_switch_to_mass
4936 0 : s% pg% TRho_Profile_file_flag = TRho_Profile_file_flag
4937 0 : s% pg% TRho_Profile_file_interval = TRho_Profile_file_interval
4938 0 : s% pg% TRho_Profile_file_dir = TRho_Profile_file_dir
4939 0 : s% pg% TRho_Profile_file_prefix = TRho_Profile_file_prefix
4940 0 : s% pg% show_TRho_Profile_text_info = show_TRho_Profile_text_info
4941 0 : s% pg% show_TRho_Profile_legend = show_TRho_Profile_legend
4942 0 : s% pg% show_TRho_Profile_mass_locs = show_TRho_Profile_mass_locs
4943 0 : s% pg% show_TRho_Profile_burn_labels = show_TRho_Profile_burn_labels
4944 0 : s% pg% show_TRho_Profile_kap_regions = show_TRho_Profile_kap_regions
4945 0 : s% pg% show_TRho_Profile_eos_regions = show_TRho_Profile_eos_regions
4946 0 : s% pg% show_TRho_Profile_gamma1_4_3rd = show_TRho_Profile_gamma1_4_3rd
4947 0 : s% pg% show_TRho_Profile_burn_lines = show_TRho_Profile_burn_lines
4948 0 : s% pg% show_TRho_Profile_degeneracy_line = show_TRho_Profile_degeneracy_line
4949 0 : s% pg% show_TRho_Profile_Pgas_Prad_line = show_TRho_Profile_Pgas_Prad_line
4950 0 : s% pg% show_TRho_Profile_annotation1 = show_TRho_Profile_annotation1
4951 0 : s% pg% show_TRho_Profile_annotation2 = show_TRho_Profile_annotation2
4952 0 : s% pg% show_TRho_Profile_annotation3 = show_TRho_Profile_annotation3
4953 0 : s% pg% TRho_Profile_fname = TRho_Profile_fname
4954 0 : s% pg% show_TRho_accretion_mesh_borders = show_TRho_accretion_mesh_borders
4955 0 : s% pg% TRho_Profile_text_info_xfac = TRho_Profile_text_info_xfac
4956 0 : s% pg% TRho_Profile_text_info_dxfac = TRho_Profile_text_info_dxfac
4957 0 : s% pg% TRho_Profile_text_info_yfac = TRho_Profile_text_info_yfac
4958 0 : s% pg% TRho_Profile_text_info_dyfac = TRho_Profile_text_info_dyfac
4959 0 : s% pg% TRho_Profile_xmin = TRho_Profile_xmin
4960 0 : s% pg% TRho_Profile_xmax = TRho_Profile_xmax
4961 0 : s% pg% TRho_Profile_ymin = TRho_Profile_ymin
4962 0 : s% pg% TRho_Profile_ymax = TRho_Profile_ymax
4963 0 : s% pg% TRho_Profile_legend_coord = TRho_Profile_legend_coord
4964 0 : s% pg% TRho_Profile_legend_fjust = TRho_Profile_legend_fjust
4965 0 : s% pg% TRho_Profile_legend_disp1 = TRho_Profile_legend_disp1
4966 0 : s% pg% TRho_Profile_legend_del_disp = TRho_Profile_legend_del_disp
4967 0 : s% pg% TRho_Profile_legend_txt_scale = TRho_Profile_legend_txt_scale
4968 0 : s% pg% TRho_Profile_win_width = TRho_Profile_win_width
4969 0 : s% pg% TRho_Profile_win_aspect_ratio = TRho_Profile_win_aspect_ratio
4970 0 : s% pg% TRho_Profile_xleft = TRho_Profile_xleft
4971 0 : s% pg% TRho_Profile_xright = TRho_Profile_xright
4972 0 : s% pg% TRho_Profile_ybot = TRho_Profile_ybot
4973 0 : s% pg% TRho_Profile_ytop = TRho_Profile_ytop
4974 0 : s% pg% TRho_Profile_txt_scale = TRho_Profile_txt_scale
4975 0 : s% pg% TRho_Profile_file_width = TRho_Profile_file_width
4976 0 : s% pg% TRho_Profile_file_aspect_ratio = TRho_Profile_file_aspect_ratio
4977 0 : s% pg% TRho_Profile_title = TRho_Profile_title
4978 0 : s% pg% num_profile_mass_points = num_profile_mass_points
4979 0 : s% pg% profile_mass_point_q = profile_mass_point_q
4980 0 : s% pg% profile_mass_point_color_index = profile_mass_point_color_index
4981 0 : s% pg% profile_mass_point_symbol = profile_mass_point_symbol
4982 0 : s% pg% profile_mass_point_symbol_scale = profile_mass_point_symbol_scale
4983 0 : s% pg% profile_mass_point_str = profile_mass_point_str
4984 0 : s% pg% profile_mass_point_str_clr = profile_mass_point_str_clr
4985 0 : s% pg% profile_mass_point_str_scale = profile_mass_point_str_scale
4986 0 : s% pg% TRho_Profile_use_decorator = TRho_Profile_use_decorator
4987 :
4988 :
4989 0 : s% pg% History_Panels1_win_flag = History_Panels1_win_flag
4990 0 : s% pg% History_Panels1_win_width = History_Panels1_win_width
4991 0 : s% pg% History_Panels1_win_aspect_ratio = History_Panels1_win_aspect_ratio
4992 0 : s% pg% History_Panels1_xleft = History_Panels1_xleft
4993 0 : s% pg% History_Panels1_xright = History_Panels1_xright
4994 0 : s% pg% History_Panels1_ybot = History_Panels1_ybot
4995 0 : s% pg% History_Panels1_ytop = History_Panels1_ytop
4996 0 : s% pg% History_Panels1_txt_scale = History_Panels1_txt_scale
4997 0 : s% pg% History_Panels1_title = History_Panels1_title
4998 0 : s% pg% History_Panels1_xmax = History_Panels1_xmax
4999 0 : s% pg% History_Panels1_xmin = History_Panels1_xmin
5000 0 : s% pg% History_Panels1_dxmin = History_Panels1_dxmin
5001 0 : s% pg% History_Panels1_max_width = History_Panels1_max_width
5002 0 : s% pg% History_Panels1_num_panels = History_Panels1_num_panels
5003 0 : s% pg% History_Panels1_xaxis_name = History_Panels1_xaxis_name
5004 0 : s% pg% History_Panels1_automatic_star_age_units = History_Panels1_automatic_star_age_units
5005 0 : s% pg% History_Panels1_yaxis_name = History_Panels1_yaxis_name
5006 0 : s% pg% History_Panels1_xaxis_reversed = History_Panels1_xaxis_reversed
5007 0 : s% pg% History_Panels1_yaxis_reversed = History_Panels1_yaxis_reversed
5008 0 : s% pg% History_Panels1_xaxis_log = History_Panels1_xaxis_log
5009 0 : s% pg% History_Panels1_yaxis_log = History_Panels1_yaxis_log
5010 0 : s% pg% History_Panels1_ymin = History_Panels1_ymin
5011 0 : s% pg% History_Panels1_ymax = History_Panels1_ymax
5012 0 : s% pg% History_Panels1_dymin = History_Panels1_dymin
5013 0 : s% pg% History_Panels1_other_yaxis_name = History_Panels1_other_yaxis_name
5014 0 : s% pg% History_Panels1_other_yaxis_reversed = History_Panels1_other_yaxis_reversed
5015 0 : s% pg% History_Panels1_other_yaxis_log = History_Panels1_other_yaxis_log
5016 0 : s% pg% History_Panels1_same_yaxis_range = History_Panels1_same_yaxis_range
5017 0 : s% pg% History_Panels1_other_ymin = History_Panels1_other_ymin
5018 0 : s% pg% History_Panels1_other_ymax = History_Panels1_other_ymax
5019 0 : s% pg% History_Panels1_other_dymin = History_Panels1_other_dymin
5020 0 : s% pg% History_Panels1_file_flag = History_Panels1_file_flag
5021 0 : s% pg% History_Panels1_points_name = History_Panels1_points_name
5022 0 : s% pg% History_Panels1_file_dir = History_Panels1_file_dir
5023 0 : s% pg% History_Panels1_file_prefix = History_Panels1_file_prefix
5024 0 : s% pg% History_Panels1_file_interval = History_Panels1_file_interval
5025 0 : s% pg% History_Panels1_file_width = History_Panels1_file_width
5026 0 : s% pg% History_Panels1_file_aspect_ratio = History_Panels1_file_aspect_ratio
5027 0 : s% pg% History_Panels1_xmargin = History_Panels1_xmargin
5028 0 : s% pg% History_Panels1_ymargin = History_Panels1_ymargin
5029 0 : s% pg% History_Panels1_other_ymargin = History_Panels1_other_ymargin
5030 0 : s% pg% History_Panels1_use_decorator = History_Panels1_use_decorator
5031 :
5032 0 : s% pg% History_Panels2_win_flag = History_Panels2_win_flag
5033 0 : s% pg% History_Panels2_win_width = History_Panels2_win_width
5034 0 : s% pg% History_Panels2_win_aspect_ratio = History_Panels2_win_aspect_ratio
5035 0 : s% pg% History_Panels2_xleft = History_Panels2_xleft
5036 0 : s% pg% History_Panels2_xright = History_Panels2_xright
5037 0 : s% pg% History_Panels2_ybot = History_Panels2_ybot
5038 0 : s% pg% History_Panels2_ytop = History_Panels2_ytop
5039 0 : s% pg% History_Panels2_txt_scale = History_Panels2_txt_scale
5040 0 : s% pg% History_Panels2_title = History_Panels2_title
5041 0 : s% pg% History_Panels2_xmax = History_Panels2_xmax
5042 0 : s% pg% History_Panels2_xmin = History_Panels2_xmin
5043 0 : s% pg% History_Panels2_dxmin = History_Panels2_dxmin
5044 0 : s% pg% History_Panels2_max_width = History_Panels2_max_width
5045 0 : s% pg% History_Panels2_num_panels = History_Panels2_num_panels
5046 0 : s% pg% History_Panels2_xaxis_name = History_Panels2_xaxis_name
5047 0 : s% pg% History_Panels2_automatic_star_age_units = History_Panels2_automatic_star_age_units
5048 0 : s% pg% History_Panels2_yaxis_name = History_Panels2_yaxis_name
5049 0 : s% pg% History_Panels2_xaxis_reversed = History_Panels2_xaxis_reversed
5050 0 : s% pg% History_Panels2_yaxis_reversed = History_Panels2_yaxis_reversed
5051 0 : s% pg% History_Panels2_xaxis_log = History_Panels2_xaxis_log
5052 0 : s% pg% History_Panels2_yaxis_log = History_Panels2_yaxis_log
5053 0 : s% pg% History_Panels2_ymin = History_Panels2_ymin
5054 0 : s% pg% History_Panels2_ymax = History_Panels2_ymax
5055 0 : s% pg% History_Panels2_dymin = History_Panels2_dymin
5056 0 : s% pg% History_Panels2_other_yaxis_name = History_Panels2_other_yaxis_name
5057 0 : s% pg% History_Panels2_other_yaxis_reversed = History_Panels2_other_yaxis_reversed
5058 0 : s% pg% History_Panels2_other_yaxis_log = History_Panels2_other_yaxis_log
5059 0 : s% pg% History_Panels2_same_yaxis_range = History_Panels2_same_yaxis_range
5060 0 : s% pg% History_Panels2_other_ymin = History_Panels2_other_ymin
5061 0 : s% pg% History_Panels2_other_ymax = History_Panels2_other_ymax
5062 0 : s% pg% History_Panels2_other_dymin = History_Panels2_other_dymin
5063 0 : s% pg% History_Panels2_file_flag = History_Panels2_file_flag
5064 0 : s% pg% History_Panels2_points_name = History_Panels2_points_name
5065 0 : s% pg% History_Panels2_file_dir = History_Panels2_file_dir
5066 0 : s% pg% History_Panels2_file_prefix = History_Panels2_file_prefix
5067 0 : s% pg% History_Panels2_file_interval = History_Panels2_file_interval
5068 0 : s% pg% History_Panels2_file_width = History_Panels2_file_width
5069 0 : s% pg% History_Panels2_file_aspect_ratio = History_Panels2_file_aspect_ratio
5070 0 : s% pg% History_Panels2_xmargin = History_Panels2_xmargin
5071 0 : s% pg% History_Panels2_ymargin = History_Panels2_ymargin
5072 0 : s% pg% History_Panels2_other_ymargin = History_Panels2_other_ymargin
5073 0 : s% pg% History_Panels2_use_decorator = History_Panels2_use_decorator
5074 :
5075 0 : s% pg% History_Panels3_win_flag = History_Panels3_win_flag
5076 0 : s% pg% History_Panels3_win_width = History_Panels3_win_width
5077 0 : s% pg% History_Panels3_win_aspect_ratio = History_Panels3_win_aspect_ratio
5078 0 : s% pg% History_Panels3_xleft = History_Panels3_xleft
5079 0 : s% pg% History_Panels3_xright = History_Panels3_xright
5080 0 : s% pg% History_Panels3_ybot = History_Panels3_ybot
5081 0 : s% pg% History_Panels3_ytop = History_Panels3_ytop
5082 0 : s% pg% History_Panels3_txt_scale = History_Panels3_txt_scale
5083 0 : s% pg% History_Panels3_title = History_Panels3_title
5084 0 : s% pg% History_Panels3_xmax = History_Panels3_xmax
5085 0 : s% pg% History_Panels3_xmin = History_Panels3_xmin
5086 0 : s% pg% History_Panels3_dxmin = History_Panels3_dxmin
5087 0 : s% pg% History_Panels3_max_width = History_Panels3_max_width
5088 0 : s% pg% History_Panels3_num_panels = History_Panels3_num_panels
5089 0 : s% pg% History_Panels3_xaxis_name = History_Panels3_xaxis_name
5090 0 : s% pg% History_Panels3_automatic_star_age_units = History_Panels3_automatic_star_age_units
5091 0 : s% pg% History_Panels3_yaxis_name = History_Panels3_yaxis_name
5092 0 : s% pg% History_Panels3_xaxis_reversed = History_Panels3_xaxis_reversed
5093 0 : s% pg% History_Panels3_yaxis_reversed = History_Panels3_yaxis_reversed
5094 0 : s% pg% History_Panels3_xaxis_log = History_Panels3_xaxis_log
5095 0 : s% pg% History_Panels3_yaxis_log = History_Panels3_yaxis_log
5096 0 : s% pg% History_Panels3_ymin = History_Panels3_ymin
5097 0 : s% pg% History_Panels3_ymax = History_Panels3_ymax
5098 0 : s% pg% History_Panels3_dymin = History_Panels3_dymin
5099 0 : s% pg% History_Panels3_other_yaxis_name = History_Panels3_other_yaxis_name
5100 0 : s% pg% History_Panels3_other_yaxis_reversed = History_Panels3_other_yaxis_reversed
5101 0 : s% pg% History_Panels3_other_yaxis_log = History_Panels3_other_yaxis_log
5102 0 : s% pg% History_Panels3_same_yaxis_range = History_Panels3_same_yaxis_range
5103 0 : s% pg% History_Panels3_other_ymin = History_Panels3_other_ymin
5104 0 : s% pg% History_Panels3_other_ymax = History_Panels3_other_ymax
5105 0 : s% pg% History_Panels3_other_dymin = History_Panels3_other_dymin
5106 0 : s% pg% History_Panels3_file_flag = History_Panels3_file_flag
5107 0 : s% pg% History_Panels3_points_name = History_Panels3_points_name
5108 0 : s% pg% History_Panels3_file_dir = History_Panels3_file_dir
5109 0 : s% pg% History_Panels3_file_prefix = History_Panels3_file_prefix
5110 0 : s% pg% History_Panels3_file_interval = History_Panels3_file_interval
5111 0 : s% pg% History_Panels3_file_width = History_Panels3_file_width
5112 0 : s% pg% History_Panels3_file_aspect_ratio = History_Panels3_file_aspect_ratio
5113 0 : s% pg% History_Panels3_xmargin = History_Panels3_xmargin
5114 0 : s% pg% History_Panels3_ymargin = History_Panels3_ymargin
5115 0 : s% pg% History_Panels3_other_ymargin = History_Panels3_other_ymargin
5116 0 : s% pg% History_Panels3_use_decorator = History_Panels3_use_decorator
5117 :
5118 0 : s% pg% History_Panels4_win_flag = History_Panels4_win_flag
5119 0 : s% pg% History_Panels4_win_width = History_Panels4_win_width
5120 0 : s% pg% History_Panels4_win_aspect_ratio = History_Panels4_win_aspect_ratio
5121 0 : s% pg% History_Panels4_xleft = History_Panels4_xleft
5122 0 : s% pg% History_Panels4_xright = History_Panels4_xright
5123 0 : s% pg% History_Panels4_ybot = History_Panels4_ybot
5124 0 : s% pg% History_Panels4_ytop = History_Panels4_ytop
5125 0 : s% pg% History_Panels4_txt_scale = History_Panels4_txt_scale
5126 0 : s% pg% History_Panels4_title = History_Panels4_title
5127 0 : s% pg% History_Panels4_xmax = History_Panels4_xmax
5128 0 : s% pg% History_Panels4_xmin = History_Panels4_xmin
5129 0 : s% pg% History_Panels4_dxmin = History_Panels4_dxmin
5130 0 : s% pg% History_Panels4_max_width = History_Panels4_max_width
5131 0 : s% pg% History_Panels4_num_panels = History_Panels4_num_panels
5132 0 : s% pg% History_Panels4_xaxis_name = History_Panels4_xaxis_name
5133 0 : s% pg% History_Panels4_automatic_star_age_units = History_Panels4_automatic_star_age_units
5134 0 : s% pg% History_Panels4_yaxis_name = History_Panels4_yaxis_name
5135 0 : s% pg% History_Panels4_xaxis_reversed = History_Panels4_xaxis_reversed
5136 0 : s% pg% History_Panels4_yaxis_reversed = History_Panels4_yaxis_reversed
5137 0 : s% pg% History_Panels4_xaxis_log = History_Panels4_xaxis_log
5138 0 : s% pg% History_Panels4_yaxis_log = History_Panels4_yaxis_log
5139 0 : s% pg% History_Panels4_ymin = History_Panels4_ymin
5140 0 : s% pg% History_Panels4_ymax = History_Panels4_ymax
5141 0 : s% pg% History_Panels4_dymin = History_Panels4_dymin
5142 0 : s% pg% History_Panels4_other_yaxis_name = History_Panels4_other_yaxis_name
5143 0 : s% pg% History_Panels4_other_yaxis_reversed = History_Panels4_other_yaxis_reversed
5144 0 : s% pg% History_Panels4_other_yaxis_log = History_Panels4_other_yaxis_log
5145 0 : s% pg% History_Panels4_same_yaxis_range = History_Panels4_same_yaxis_range
5146 0 : s% pg% History_Panels4_other_ymin = History_Panels4_other_ymin
5147 0 : s% pg% History_Panels4_other_ymax = History_Panels4_other_ymax
5148 0 : s% pg% History_Panels4_other_dymin = History_Panels4_other_dymin
5149 0 : s% pg% History_Panels4_file_flag = History_Panels4_file_flag
5150 0 : s% pg% History_Panels4_points_name = History_Panels4_points_name
5151 0 : s% pg% History_Panels4_file_dir = History_Panels4_file_dir
5152 0 : s% pg% History_Panels4_file_prefix = History_Panels4_file_prefix
5153 0 : s% pg% History_Panels4_file_interval = History_Panels4_file_interval
5154 0 : s% pg% History_Panels4_file_width = History_Panels4_file_width
5155 0 : s% pg% History_Panels4_file_aspect_ratio = History_Panels4_file_aspect_ratio
5156 0 : s% pg% History_Panels4_xmargin = History_Panels4_xmargin
5157 0 : s% pg% History_Panels4_ymargin = History_Panels4_ymargin
5158 0 : s% pg% History_Panels4_other_ymargin = History_Panels4_other_ymargin
5159 0 : s% pg% History_Panels4_use_decorator = History_Panels4_use_decorator
5160 :
5161 0 : s% pg% History_Panels5_win_flag = History_Panels5_win_flag
5162 0 : s% pg% History_Panels5_win_width = History_Panels5_win_width
5163 0 : s% pg% History_Panels5_win_aspect_ratio = History_Panels5_win_aspect_ratio
5164 0 : s% pg% History_Panels5_xleft = History_Panels5_xleft
5165 0 : s% pg% History_Panels5_xright = History_Panels5_xright
5166 0 : s% pg% History_Panels5_ybot = History_Panels5_ybot
5167 0 : s% pg% History_Panels5_ytop = History_Panels5_ytop
5168 0 : s% pg% History_Panels5_txt_scale = History_Panels5_txt_scale
5169 0 : s% pg% History_Panels5_title = History_Panels5_title
5170 0 : s% pg% History_Panels5_xmax = History_Panels5_xmax
5171 0 : s% pg% History_Panels5_xmin = History_Panels5_xmin
5172 0 : s% pg% History_Panels5_dxmin = History_Panels5_dxmin
5173 0 : s% pg% History_Panels5_max_width = History_Panels5_max_width
5174 0 : s% pg% History_Panels5_num_panels = History_Panels5_num_panels
5175 0 : s% pg% History_Panels5_xaxis_name = History_Panels5_xaxis_name
5176 0 : s% pg% History_Panels5_automatic_star_age_units = History_Panels5_automatic_star_age_units
5177 0 : s% pg% History_Panels5_yaxis_name = History_Panels5_yaxis_name
5178 0 : s% pg% History_Panels5_xaxis_reversed = History_Panels5_xaxis_reversed
5179 0 : s% pg% History_Panels5_yaxis_reversed = History_Panels5_yaxis_reversed
5180 0 : s% pg% History_Panels5_xaxis_log = History_Panels5_xaxis_log
5181 0 : s% pg% History_Panels5_yaxis_log = History_Panels5_yaxis_log
5182 0 : s% pg% History_Panels5_ymin = History_Panels5_ymin
5183 0 : s% pg% History_Panels5_ymax = History_Panels5_ymax
5184 0 : s% pg% History_Panels5_dymin = History_Panels5_dymin
5185 0 : s% pg% History_Panels5_other_yaxis_name = History_Panels5_other_yaxis_name
5186 0 : s% pg% History_Panels5_other_yaxis_reversed = History_Panels5_other_yaxis_reversed
5187 0 : s% pg% History_Panels5_other_yaxis_log = History_Panels5_other_yaxis_log
5188 0 : s% pg% History_Panels5_same_yaxis_range = History_Panels5_same_yaxis_range
5189 0 : s% pg% History_Panels5_other_ymin = History_Panels5_other_ymin
5190 0 : s% pg% History_Panels5_other_ymax = History_Panels5_other_ymax
5191 0 : s% pg% History_Panels5_other_dymin = History_Panels5_other_dymin
5192 0 : s% pg% History_Panels5_file_flag = History_Panels5_file_flag
5193 0 : s% pg% History_Panels5_points_name = History_Panels5_points_name
5194 0 : s% pg% History_Panels5_file_dir = History_Panels5_file_dir
5195 0 : s% pg% History_Panels5_file_prefix = History_Panels5_file_prefix
5196 0 : s% pg% History_Panels5_file_interval = History_Panels5_file_interval
5197 0 : s% pg% History_Panels5_file_width = History_Panels5_file_width
5198 0 : s% pg% History_Panels5_file_aspect_ratio = History_Panels5_file_aspect_ratio
5199 0 : s% pg% History_Panels5_xmargin = History_Panels5_xmargin
5200 0 : s% pg% History_Panels5_ymargin = History_Panels5_ymargin
5201 0 : s% pg% History_Panels5_other_ymargin = History_Panels5_other_ymargin
5202 0 : s% pg% History_Panels5_use_decorator = History_Panels5_use_decorator
5203 :
5204 0 : s% pg% History_Panels6_win_flag = History_Panels6_win_flag
5205 0 : s% pg% History_Panels6_win_width = History_Panels6_win_width
5206 0 : s% pg% History_Panels6_win_aspect_ratio = History_Panels6_win_aspect_ratio
5207 0 : s% pg% History_Panels6_xleft = History_Panels6_xleft
5208 0 : s% pg% History_Panels6_xright = History_Panels6_xright
5209 0 : s% pg% History_Panels6_ybot = History_Panels6_ybot
5210 0 : s% pg% History_Panels6_ytop = History_Panels6_ytop
5211 0 : s% pg% History_Panels6_txt_scale = History_Panels6_txt_scale
5212 0 : s% pg% History_Panels6_title = History_Panels6_title
5213 0 : s% pg% History_Panels6_xmax = History_Panels6_xmax
5214 0 : s% pg% History_Panels6_xmin = History_Panels6_xmin
5215 0 : s% pg% History_Panels6_dxmin = History_Panels6_dxmin
5216 0 : s% pg% History_Panels6_max_width = History_Panels6_max_width
5217 0 : s% pg% History_Panels6_num_panels = History_Panels6_num_panels
5218 0 : s% pg% History_Panels6_xaxis_name = History_Panels6_xaxis_name
5219 0 : s% pg% History_Panels6_automatic_star_age_units = History_Panels6_automatic_star_age_units
5220 0 : s% pg% History_Panels6_yaxis_name = History_Panels6_yaxis_name
5221 0 : s% pg% History_Panels6_xaxis_reversed = History_Panels6_xaxis_reversed
5222 0 : s% pg% History_Panels6_yaxis_reversed = History_Panels6_yaxis_reversed
5223 0 : s% pg% History_Panels6_xaxis_log = History_Panels6_xaxis_log
5224 0 : s% pg% History_Panels6_yaxis_log = History_Panels6_yaxis_log
5225 0 : s% pg% History_Panels6_ymin = History_Panels6_ymin
5226 0 : s% pg% History_Panels6_ymax = History_Panels6_ymax
5227 0 : s% pg% History_Panels6_dymin = History_Panels6_dymin
5228 0 : s% pg% History_Panels6_other_yaxis_name = History_Panels6_other_yaxis_name
5229 0 : s% pg% History_Panels6_other_yaxis_reversed = History_Panels6_other_yaxis_reversed
5230 0 : s% pg% History_Panels6_other_yaxis_log = History_Panels6_other_yaxis_log
5231 0 : s% pg% History_Panels6_same_yaxis_range = History_Panels6_same_yaxis_range
5232 0 : s% pg% History_Panels6_other_ymin = History_Panels6_other_ymin
5233 0 : s% pg% History_Panels6_other_ymax = History_Panels6_other_ymax
5234 0 : s% pg% History_Panels6_other_dymin = History_Panels6_other_dymin
5235 0 : s% pg% History_Panels6_file_flag = History_Panels6_file_flag
5236 0 : s% pg% History_Panels6_points_name = History_Panels6_points_name
5237 0 : s% pg% History_Panels6_file_dir = History_Panels6_file_dir
5238 0 : s% pg% History_Panels6_file_prefix = History_Panels6_file_prefix
5239 0 : s% pg% History_Panels6_file_interval = History_Panels6_file_interval
5240 0 : s% pg% History_Panels6_file_width = History_Panels6_file_width
5241 0 : s% pg% History_Panels6_file_aspect_ratio = History_Panels6_file_aspect_ratio
5242 0 : s% pg% History_Panels6_xmargin = History_Panels6_xmargin
5243 0 : s% pg% History_Panels6_ymargin = History_Panels6_ymargin
5244 0 : s% pg% History_Panels6_other_ymargin = History_Panels6_other_ymargin
5245 0 : s% pg% History_Panels6_use_decorator = History_Panels6_use_decorator
5246 :
5247 0 : s% pg% History_Panels7_win_flag = History_Panels7_win_flag
5248 0 : s% pg% History_Panels7_win_width = History_Panels7_win_width
5249 0 : s% pg% History_Panels7_win_aspect_ratio = History_Panels7_win_aspect_ratio
5250 0 : s% pg% History_Panels7_xleft = History_Panels7_xleft
5251 0 : s% pg% History_Panels7_xright = History_Panels7_xright
5252 0 : s% pg% History_Panels7_ybot = History_Panels7_ybot
5253 0 : s% pg% History_Panels7_ytop = History_Panels7_ytop
5254 0 : s% pg% History_Panels7_txt_scale = History_Panels7_txt_scale
5255 0 : s% pg% History_Panels7_title = History_Panels7_title
5256 0 : s% pg% History_Panels7_xmax = History_Panels7_xmax
5257 0 : s% pg% History_Panels7_xmin = History_Panels7_xmin
5258 0 : s% pg% History_Panels7_dxmin = History_Panels7_dxmin
5259 0 : s% pg% History_Panels7_max_width = History_Panels7_max_width
5260 0 : s% pg% History_Panels7_num_panels = History_Panels7_num_panels
5261 0 : s% pg% History_Panels7_xaxis_name = History_Panels7_xaxis_name
5262 0 : s% pg% History_Panels7_automatic_star_age_units = History_Panels7_automatic_star_age_units
5263 0 : s% pg% History_Panels7_yaxis_name = History_Panels7_yaxis_name
5264 0 : s% pg% History_Panels7_xaxis_reversed = History_Panels7_xaxis_reversed
5265 0 : s% pg% History_Panels7_yaxis_reversed = History_Panels7_yaxis_reversed
5266 0 : s% pg% History_Panels7_xaxis_log = History_Panels7_xaxis_log
5267 0 : s% pg% History_Panels7_yaxis_log = History_Panels7_yaxis_log
5268 0 : s% pg% History_Panels7_ymin = History_Panels7_ymin
5269 0 : s% pg% History_Panels7_ymax = History_Panels7_ymax
5270 0 : s% pg% History_Panels7_dymin = History_Panels7_dymin
5271 0 : s% pg% History_Panels7_other_yaxis_name = History_Panels7_other_yaxis_name
5272 0 : s% pg% History_Panels7_other_yaxis_reversed = History_Panels7_other_yaxis_reversed
5273 0 : s% pg% History_Panels7_other_yaxis_log = History_Panels7_other_yaxis_log
5274 0 : s% pg% History_Panels7_same_yaxis_range = History_Panels7_same_yaxis_range
5275 0 : s% pg% History_Panels7_other_ymin = History_Panels7_other_ymin
5276 0 : s% pg% History_Panels7_other_ymax = History_Panels7_other_ymax
5277 0 : s% pg% History_Panels7_other_dymin = History_Panels7_other_dymin
5278 0 : s% pg% History_Panels7_file_flag = History_Panels7_file_flag
5279 0 : s% pg% History_Panels7_points_name = History_Panels7_points_name
5280 0 : s% pg% History_Panels7_file_dir = History_Panels7_file_dir
5281 0 : s% pg% History_Panels7_file_prefix = History_Panels7_file_prefix
5282 0 : s% pg% History_Panels7_file_interval = History_Panels7_file_interval
5283 0 : s% pg% History_Panels7_file_width = History_Panels7_file_width
5284 0 : s% pg% History_Panels7_file_aspect_ratio = History_Panels7_file_aspect_ratio
5285 0 : s% pg% History_Panels7_xmargin = History_Panels7_xmargin
5286 0 : s% pg% History_Panels7_ymargin = History_Panels7_ymargin
5287 0 : s% pg% History_Panels7_other_ymargin = History_Panels7_other_ymargin
5288 0 : s% pg% History_Panels7_use_decorator = History_Panels7_use_decorator
5289 :
5290 0 : s% pg% History_Panels8_win_flag = History_Panels8_win_flag
5291 0 : s% pg% History_Panels8_win_width = History_Panels8_win_width
5292 0 : s% pg% History_Panels8_win_aspect_ratio = History_Panels8_win_aspect_ratio
5293 0 : s% pg% History_Panels8_xleft = History_Panels8_xleft
5294 0 : s% pg% History_Panels8_xright = History_Panels8_xright
5295 0 : s% pg% History_Panels8_ybot = History_Panels8_ybot
5296 0 : s% pg% History_Panels8_ytop = History_Panels8_ytop
5297 0 : s% pg% History_Panels8_txt_scale = History_Panels8_txt_scale
5298 0 : s% pg% History_Panels8_title = History_Panels8_title
5299 0 : s% pg% History_Panels8_xmax = History_Panels8_xmax
5300 0 : s% pg% History_Panels8_xmin = History_Panels8_xmin
5301 0 : s% pg% History_Panels8_dxmin = History_Panels8_dxmin
5302 0 : s% pg% History_Panels8_max_width = History_Panels8_max_width
5303 0 : s% pg% History_Panels8_num_panels = History_Panels8_num_panels
5304 0 : s% pg% History_Panels8_xaxis_name = History_Panels8_xaxis_name
5305 0 : s% pg% History_Panels8_automatic_star_age_units = History_Panels8_automatic_star_age_units
5306 0 : s% pg% History_Panels8_yaxis_name = History_Panels8_yaxis_name
5307 0 : s% pg% History_Panels8_xaxis_reversed = History_Panels8_xaxis_reversed
5308 0 : s% pg% History_Panels8_yaxis_reversed = History_Panels8_yaxis_reversed
5309 0 : s% pg% History_Panels8_xaxis_log = History_Panels8_xaxis_log
5310 0 : s% pg% History_Panels8_yaxis_log = History_Panels8_yaxis_log
5311 0 : s% pg% History_Panels8_ymin = History_Panels8_ymin
5312 0 : s% pg% History_Panels8_ymax = History_Panels8_ymax
5313 0 : s% pg% History_Panels8_dymin = History_Panels8_dymin
5314 0 : s% pg% History_Panels8_other_yaxis_name = History_Panels8_other_yaxis_name
5315 0 : s% pg% History_Panels8_other_yaxis_reversed = History_Panels8_other_yaxis_reversed
5316 0 : s% pg% History_Panels8_other_yaxis_log = History_Panels8_other_yaxis_log
5317 0 : s% pg% History_Panels8_same_yaxis_range = History_Panels8_same_yaxis_range
5318 0 : s% pg% History_Panels8_other_ymin = History_Panels8_other_ymin
5319 0 : s% pg% History_Panels8_other_ymax = History_Panels8_other_ymax
5320 0 : s% pg% History_Panels8_other_dymin = History_Panels8_other_dymin
5321 0 : s% pg% History_Panels8_file_flag = History_Panels8_file_flag
5322 0 : s% pg% History_Panels8_points_name = History_Panels8_points_name
5323 0 : s% pg% History_Panels8_file_dir = History_Panels8_file_dir
5324 0 : s% pg% History_Panels8_file_prefix = History_Panels8_file_prefix
5325 0 : s% pg% History_Panels8_file_interval = History_Panels8_file_interval
5326 0 : s% pg% History_Panels8_file_width = History_Panels8_file_width
5327 0 : s% pg% History_Panels8_file_aspect_ratio = History_Panels8_file_aspect_ratio
5328 0 : s% pg% History_Panels8_xmargin = History_Panels8_xmargin
5329 0 : s% pg% History_Panels8_ymargin = History_Panels8_ymargin
5330 0 : s% pg% History_Panels8_other_ymargin = History_Panels8_other_ymargin
5331 0 : s% pg% History_Panels8_use_decorator = History_Panels8_use_decorator
5332 :
5333 0 : s% pg% History_Panels9_win_flag = History_Panels9_win_flag
5334 0 : s% pg% History_Panels9_win_width = History_Panels9_win_width
5335 0 : s% pg% History_Panels9_win_aspect_ratio = History_Panels9_win_aspect_ratio
5336 0 : s% pg% History_Panels9_xleft = History_Panels9_xleft
5337 0 : s% pg% History_Panels9_xright = History_Panels9_xright
5338 0 : s% pg% History_Panels9_ybot = History_Panels9_ybot
5339 0 : s% pg% History_Panels9_ytop = History_Panels9_ytop
5340 0 : s% pg% History_Panels9_txt_scale = History_Panels9_txt_scale
5341 0 : s% pg% History_Panels9_title = History_Panels9_title
5342 0 : s% pg% History_Panels9_xmax = History_Panels9_xmax
5343 0 : s% pg% History_Panels9_xmin = History_Panels9_xmin
5344 0 : s% pg% History_Panels9_dxmin = History_Panels9_dxmin
5345 0 : s% pg% History_Panels9_max_width = History_Panels9_max_width
5346 0 : s% pg% History_Panels9_num_panels = History_Panels9_num_panels
5347 0 : s% pg% History_Panels9_xaxis_name = History_Panels9_xaxis_name
5348 0 : s% pg% History_Panels9_automatic_star_age_units = History_Panels9_automatic_star_age_units
5349 0 : s% pg% History_Panels9_yaxis_name = History_Panels9_yaxis_name
5350 0 : s% pg% History_Panels9_xaxis_reversed = History_Panels9_xaxis_reversed
5351 0 : s% pg% History_Panels9_yaxis_reversed = History_Panels9_yaxis_reversed
5352 0 : s% pg% History_Panels9_xaxis_log = History_Panels9_xaxis_log
5353 0 : s% pg% History_Panels9_yaxis_log = History_Panels9_yaxis_log
5354 0 : s% pg% History_Panels9_ymin = History_Panels9_ymin
5355 0 : s% pg% History_Panels9_ymax = History_Panels9_ymax
5356 0 : s% pg% History_Panels9_dymin = History_Panels9_dymin
5357 0 : s% pg% History_Panels9_other_yaxis_name = History_Panels9_other_yaxis_name
5358 0 : s% pg% History_Panels9_other_yaxis_reversed = History_Panels9_other_yaxis_reversed
5359 0 : s% pg% History_Panels9_other_yaxis_log = History_Panels9_other_yaxis_log
5360 0 : s% pg% History_Panels9_same_yaxis_range = History_Panels9_same_yaxis_range
5361 0 : s% pg% History_Panels9_other_ymin = History_Panels9_other_ymin
5362 0 : s% pg% History_Panels9_other_ymax = History_Panels9_other_ymax
5363 0 : s% pg% History_Panels9_other_dymin = History_Panels9_other_dymin
5364 0 : s% pg% History_Panels9_file_flag = History_Panels9_file_flag
5365 0 : s% pg% History_Panels9_points_name = History_Panels9_points_name
5366 0 : s% pg% History_Panels9_file_flag = History_Panels9_file_flag
5367 0 : s% pg% History_Panels9_file_dir = History_Panels9_file_dir
5368 0 : s% pg% History_Panels9_file_prefix = History_Panels9_file_prefix
5369 0 : s% pg% History_Panels9_file_interval = History_Panels9_file_interval
5370 0 : s% pg% History_Panels9_file_width = History_Panels9_file_width
5371 0 : s% pg% History_Panels9_file_aspect_ratio = History_Panels9_file_aspect_ratio
5372 0 : s% pg% History_Panels9_xmargin = History_Panels9_xmargin
5373 0 : s% pg% History_Panels9_ymargin = History_Panels9_ymargin
5374 0 : s% pg% History_Panels9_other_ymargin = History_Panels9_other_ymargin
5375 0 : s% pg% History_Panels9_use_decorator = History_Panels9_use_decorator
5376 :
5377 0 : s% pg% History_Panel_points_error_bars = History_Panel_points_error_bars
5378 0 : s% pg% History_Panel_points_interval = History_Panel_points_interval
5379 0 : s% pg% History_Panel_points_marker = History_Panel_points_marker
5380 0 : s% pg% History_Panel_points_ci = History_Panel_points_ci
5381 0 : s% pg% History_Panel_points_lw = History_Panel_points_lw
5382 0 : s% pg% History_Panel_points_ch = History_Panel_points_ch
5383 :
5384 0 : s% pg% Color_Magnitude1_win_flag = Color_Magnitude1_win_flag
5385 0 : s% pg% Color_Magnitude1_win_width = Color_Magnitude1_win_width
5386 0 : s% pg% Color_Magnitude1_win_aspect_ratio = Color_Magnitude1_win_aspect_ratio
5387 0 : s% pg% Color_Magnitude1_xleft = Color_Magnitude1_xleft
5388 0 : s% pg% Color_Magnitude1_xright = Color_Magnitude1_xright
5389 0 : s% pg% Color_Magnitude1_ybot = Color_Magnitude1_ybot
5390 0 : s% pg% Color_Magnitude1_ytop = Color_Magnitude1_ytop
5391 0 : s% pg% Color_Magnitude1_txt_scale = Color_Magnitude1_txt_scale
5392 0 : s% pg% Color_Magnitude1_title = Color_Magnitude1_title
5393 0 : s% pg% Color_Magnitude1_xmax = Color_Magnitude1_xmax
5394 0 : s% pg% Color_Magnitude1_xmin = Color_Magnitude1_xmin
5395 0 : s% pg% Color_Magnitude1_dxmin = Color_Magnitude1_dxmin
5396 0 : s% pg% Color_Magnitude1_max_width = Color_Magnitude1_max_width
5397 0 : s% pg% Color_Magnitude1_num_panels = Color_Magnitude1_num_panels
5398 0 : s% pg% Color_Magnitude1_xaxis1_name = Color_Magnitude1_xaxis1_name
5399 0 : s% pg% Color_Magnitude1_xaxis2_name = Color_Magnitude1_xaxis2_name
5400 0 : s% pg% Color_Magnitude1_yaxis1_name = Color_Magnitude1_yaxis1_name
5401 0 : s% pg% Color_Magnitude1_yaxis2_name = Color_Magnitude1_yaxis2_name
5402 0 : s% pg% Color_Magnitude1_xaxis_reversed = Color_Magnitude1_xaxis_reversed
5403 0 : s% pg% Color_Magnitude1_yaxis_reversed = Color_Magnitude1_yaxis_reversed
5404 0 : s% pg% Color_Magnitude1_xaxis_log = Color_Magnitude1_xaxis_log
5405 0 : s% pg% Color_Magnitude1_yaxis_log = Color_Magnitude1_yaxis_log
5406 0 : s% pg% Color_Magnitude1_ymin = Color_Magnitude1_ymin
5407 0 : s% pg% Color_Magnitude1_ymax = Color_Magnitude1_ymax
5408 0 : s% pg% Color_Magnitude1_dymin = Color_Magnitude1_dymin
5409 0 : s% pg% Color_Magnitude1_other_yaxis1_name = Color_Magnitude1_other_yaxis1_name
5410 0 : s% pg% Color_Magnitude1_other_yaxis2_name = Color_Magnitude1_other_yaxis2_name
5411 0 : s% pg% Color_Magnitude1_other_yaxis_reversed = Color_Magnitude1_other_yaxis_reversed
5412 0 : s% pg% Color_Magnitude1_other_yaxis_log = Color_Magnitude1_other_yaxis_log
5413 0 : s% pg% Color_Magnitude1_other_ymin = Color_Magnitude1_other_ymin
5414 0 : s% pg% Color_Magnitude1_other_ymax = Color_Magnitude1_other_ymax
5415 0 : s% pg% Color_Magnitude1_other_dymin = Color_Magnitude1_other_dymin
5416 0 : s% pg% Color_Magnitude1_file_flag = Color_Magnitude1_file_flag
5417 0 : s% pg% Color_Magnitude1_file_dir = Color_Magnitude1_file_dir
5418 0 : s% pg% Color_Magnitude1_file_prefix = Color_Magnitude1_file_prefix
5419 0 : s% pg% Color_Magnitude1_file_interval = Color_Magnitude1_file_interval
5420 0 : s% pg% Color_Magnitude1_file_width = Color_Magnitude1_file_width
5421 0 : s% pg% Color_Magnitude1_file_aspect_ratio = Color_Magnitude1_file_aspect_ratio
5422 0 : s% pg% Color_Magnitude1_xmargin = Color_Magnitude1_xmargin
5423 0 : s% pg% Color_Magnitude1_ymargin = Color_Magnitude1_ymargin
5424 0 : s% pg% Color_Magnitude1_other_ymargin = Color_Magnitude1_other_ymargin
5425 0 : s% pg% Color_Magnitude1_use_decorator = Color_Magnitude1_use_decorator
5426 :
5427 0 : s% pg% Color_Magnitude2_win_flag = Color_Magnitude2_win_flag
5428 0 : s% pg% Color_Magnitude2_win_width = Color_Magnitude2_win_width
5429 0 : s% pg% Color_Magnitude2_win_aspect_ratio = Color_Magnitude2_win_aspect_ratio
5430 0 : s% pg% Color_Magnitude2_xleft = Color_Magnitude2_xleft
5431 0 : s% pg% Color_Magnitude2_xright = Color_Magnitude2_xright
5432 0 : s% pg% Color_Magnitude2_ybot = Color_Magnitude2_ybot
5433 0 : s% pg% Color_Magnitude2_ytop = Color_Magnitude2_ytop
5434 0 : s% pg% Color_Magnitude2_txt_scale = Color_Magnitude2_txt_scale
5435 0 : s% pg% Color_Magnitude2_title = Color_Magnitude2_title
5436 0 : s% pg% Color_Magnitude2_xmax = Color_Magnitude2_xmax
5437 0 : s% pg% Color_Magnitude2_xmin = Color_Magnitude2_xmin
5438 0 : s% pg% Color_Magnitude2_dxmin = Color_Magnitude2_dxmin
5439 0 : s% pg% Color_Magnitude2_max_width = Color_Magnitude2_max_width
5440 0 : s% pg% Color_Magnitude2_num_panels = Color_Magnitude2_num_panels
5441 0 : s% pg% Color_Magnitude2_xaxis1_name = Color_Magnitude2_xaxis1_name
5442 0 : s% pg% Color_Magnitude2_xaxis2_name = Color_Magnitude2_xaxis2_name
5443 0 : s% pg% Color_Magnitude2_yaxis1_name = Color_Magnitude2_yaxis1_name
5444 0 : s% pg% Color_Magnitude2_yaxis2_name = Color_Magnitude2_yaxis2_name
5445 0 : s% pg% Color_Magnitude2_xaxis_reversed = Color_Magnitude2_xaxis_reversed
5446 0 : s% pg% Color_Magnitude2_yaxis_reversed = Color_Magnitude2_yaxis_reversed
5447 0 : s% pg% Color_Magnitude2_xaxis_log = Color_Magnitude2_xaxis_log
5448 0 : s% pg% Color_Magnitude2_yaxis_log = Color_Magnitude2_yaxis_log
5449 0 : s% pg% Color_Magnitude2_ymin = Color_Magnitude2_ymin
5450 0 : s% pg% Color_Magnitude2_ymax = Color_Magnitude2_ymax
5451 0 : s% pg% Color_Magnitude2_dymin = Color_Magnitude2_dymin
5452 0 : s% pg% Color_Magnitude2_other_yaxis1_name = Color_Magnitude2_other_yaxis1_name
5453 0 : s% pg% Color_Magnitude2_other_yaxis2_name = Color_Magnitude2_other_yaxis2_name
5454 0 : s% pg% Color_Magnitude2_other_yaxis_reversed = Color_Magnitude2_other_yaxis_reversed
5455 0 : s% pg% Color_Magnitude2_other_yaxis_log = Color_Magnitude2_other_yaxis_log
5456 0 : s% pg% Color_Magnitude2_other_ymin = Color_Magnitude2_other_ymin
5457 0 : s% pg% Color_Magnitude2_other_ymax = Color_Magnitude2_other_ymax
5458 0 : s% pg% Color_Magnitude2_other_dymin = Color_Magnitude2_other_dymin
5459 0 : s% pg% Color_Magnitude2_file_flag = Color_Magnitude2_file_flag
5460 0 : s% pg% Color_Magnitude2_file_dir = Color_Magnitude2_file_dir
5461 0 : s% pg% Color_Magnitude2_file_prefix = Color_Magnitude2_file_prefix
5462 0 : s% pg% Color_Magnitude2_file_interval = Color_Magnitude2_file_interval
5463 0 : s% pg% Color_Magnitude2_file_width = Color_Magnitude2_file_width
5464 0 : s% pg% Color_Magnitude2_file_aspect_ratio = Color_Magnitude2_file_aspect_ratio
5465 0 : s% pg% Color_Magnitude2_xmargin = Color_Magnitude2_xmargin
5466 0 : s% pg% Color_Magnitude2_ymargin = Color_Magnitude2_ymargin
5467 0 : s% pg% Color_Magnitude2_other_ymargin = Color_Magnitude2_other_ymargin
5468 0 : s% pg% Color_Magnitude2_use_decorator = Color_Magnitude2_use_decorator
5469 :
5470 0 : s% pg% Color_Magnitude3_win_flag = Color_Magnitude3_win_flag
5471 0 : s% pg% Color_Magnitude3_win_width = Color_Magnitude3_win_width
5472 0 : s% pg% Color_Magnitude3_win_aspect_ratio = Color_Magnitude3_win_aspect_ratio
5473 0 : s% pg% Color_Magnitude3_xleft = Color_Magnitude3_xleft
5474 0 : s% pg% Color_Magnitude3_xright = Color_Magnitude3_xright
5475 0 : s% pg% Color_Magnitude3_ybot = Color_Magnitude3_ybot
5476 0 : s% pg% Color_Magnitude3_ytop = Color_Magnitude3_ytop
5477 0 : s% pg% Color_Magnitude3_txt_scale = Color_Magnitude3_txt_scale
5478 0 : s% pg% Color_Magnitude3_title = Color_Magnitude3_title
5479 0 : s% pg% Color_Magnitude3_xmax = Color_Magnitude3_xmax
5480 0 : s% pg% Color_Magnitude3_xmin = Color_Magnitude3_xmin
5481 0 : s% pg% Color_Magnitude3_dxmin = Color_Magnitude3_dxmin
5482 0 : s% pg% Color_Magnitude3_max_width = Color_Magnitude3_max_width
5483 0 : s% pg% Color_Magnitude3_num_panels = Color_Magnitude3_num_panels
5484 0 : s% pg% Color_Magnitude3_xaxis1_name = Color_Magnitude3_xaxis1_name
5485 0 : s% pg% Color_Magnitude3_xaxis2_name = Color_Magnitude3_xaxis2_name
5486 0 : s% pg% Color_Magnitude3_yaxis1_name = Color_Magnitude3_yaxis1_name
5487 0 : s% pg% Color_Magnitude3_yaxis2_name = Color_Magnitude3_yaxis2_name
5488 0 : s% pg% Color_Magnitude3_xaxis_reversed = Color_Magnitude3_xaxis_reversed
5489 0 : s% pg% Color_Magnitude3_yaxis_reversed = Color_Magnitude3_yaxis_reversed
5490 0 : s% pg% Color_Magnitude3_xaxis_log = Color_Magnitude3_xaxis_log
5491 0 : s% pg% Color_Magnitude3_yaxis_log = Color_Magnitude3_yaxis_log
5492 0 : s% pg% Color_Magnitude3_ymin = Color_Magnitude3_ymin
5493 0 : s% pg% Color_Magnitude3_ymax = Color_Magnitude3_ymax
5494 0 : s% pg% Color_Magnitude3_dymin = Color_Magnitude3_dymin
5495 0 : s% pg% Color_Magnitude3_other_yaxis1_name = Color_Magnitude3_other_yaxis1_name
5496 0 : s% pg% Color_Magnitude3_other_yaxis2_name = Color_Magnitude3_other_yaxis2_name
5497 0 : s% pg% Color_Magnitude3_other_yaxis_reversed = Color_Magnitude3_other_yaxis_reversed
5498 0 : s% pg% Color_Magnitude3_other_yaxis_log = Color_Magnitude3_other_yaxis_log
5499 0 : s% pg% Color_Magnitude3_other_ymin = Color_Magnitude3_other_ymin
5500 0 : s% pg% Color_Magnitude3_other_ymax = Color_Magnitude3_other_ymax
5501 0 : s% pg% Color_Magnitude3_other_dymin = Color_Magnitude3_other_dymin
5502 0 : s% pg% Color_Magnitude3_file_flag = Color_Magnitude3_file_flag
5503 0 : s% pg% Color_Magnitude3_file_dir = Color_Magnitude3_file_dir
5504 0 : s% pg% Color_Magnitude3_file_prefix = Color_Magnitude3_file_prefix
5505 0 : s% pg% Color_Magnitude3_file_interval = Color_Magnitude3_file_interval
5506 0 : s% pg% Color_Magnitude3_file_width = Color_Magnitude3_file_width
5507 0 : s% pg% Color_Magnitude3_file_aspect_ratio = Color_Magnitude3_file_aspect_ratio
5508 0 : s% pg% Color_Magnitude3_xmargin = Color_Magnitude3_xmargin
5509 0 : s% pg% Color_Magnitude3_ymargin = Color_Magnitude3_ymargin
5510 0 : s% pg% Color_Magnitude3_other_ymargin = Color_Magnitude3_other_ymargin
5511 0 : s% pg% Color_Magnitude3_use_decorator = Color_Magnitude3_use_decorator
5512 :
5513 0 : s% pg% Color_Magnitude4_win_flag = Color_Magnitude4_win_flag
5514 0 : s% pg% Color_Magnitude4_win_width = Color_Magnitude4_win_width
5515 0 : s% pg% Color_Magnitude4_win_aspect_ratio = Color_Magnitude4_win_aspect_ratio
5516 0 : s% pg% Color_Magnitude4_xleft = Color_Magnitude4_xleft
5517 0 : s% pg% Color_Magnitude4_xright = Color_Magnitude4_xright
5518 0 : s% pg% Color_Magnitude4_ybot = Color_Magnitude4_ybot
5519 0 : s% pg% Color_Magnitude4_ytop = Color_Magnitude4_ytop
5520 0 : s% pg% Color_Magnitude4_txt_scale = Color_Magnitude4_txt_scale
5521 0 : s% pg% Color_Magnitude4_title = Color_Magnitude4_title
5522 0 : s% pg% Color_Magnitude4_xmax = Color_Magnitude4_xmax
5523 0 : s% pg% Color_Magnitude4_xmin = Color_Magnitude4_xmin
5524 0 : s% pg% Color_Magnitude4_dxmin = Color_Magnitude4_dxmin
5525 0 : s% pg% Color_Magnitude4_max_width = Color_Magnitude4_max_width
5526 0 : s% pg% Color_Magnitude4_num_panels = Color_Magnitude4_num_panels
5527 0 : s% pg% Color_Magnitude4_xaxis1_name = Color_Magnitude4_xaxis1_name
5528 0 : s% pg% Color_Magnitude4_xaxis2_name = Color_Magnitude4_xaxis2_name
5529 0 : s% pg% Color_Magnitude4_yaxis1_name = Color_Magnitude4_yaxis1_name
5530 0 : s% pg% Color_Magnitude4_yaxis2_name = Color_Magnitude4_yaxis2_name
5531 0 : s% pg% Color_Magnitude4_xaxis_reversed = Color_Magnitude4_xaxis_reversed
5532 0 : s% pg% Color_Magnitude4_yaxis_reversed = Color_Magnitude4_yaxis_reversed
5533 0 : s% pg% Color_Magnitude4_xaxis_log = Color_Magnitude4_xaxis_log
5534 0 : s% pg% Color_Magnitude4_yaxis_log = Color_Magnitude4_yaxis_log
5535 0 : s% pg% Color_Magnitude4_ymin = Color_Magnitude4_ymin
5536 0 : s% pg% Color_Magnitude4_ymax = Color_Magnitude4_ymax
5537 0 : s% pg% Color_Magnitude4_dymin = Color_Magnitude4_dymin
5538 0 : s% pg% Color_Magnitude4_other_yaxis1_name = Color_Magnitude4_other_yaxis1_name
5539 0 : s% pg% Color_Magnitude4_other_yaxis2_name = Color_Magnitude4_other_yaxis2_name
5540 0 : s% pg% Color_Magnitude4_other_yaxis_reversed = Color_Magnitude4_other_yaxis_reversed
5541 0 : s% pg% Color_Magnitude4_other_yaxis_log = Color_Magnitude4_other_yaxis_log
5542 0 : s% pg% Color_Magnitude4_other_ymin = Color_Magnitude4_other_ymin
5543 0 : s% pg% Color_Magnitude4_other_ymax = Color_Magnitude4_other_ymax
5544 0 : s% pg% Color_Magnitude4_other_dymin = Color_Magnitude4_other_dymin
5545 0 : s% pg% Color_Magnitude4_file_flag = Color_Magnitude4_file_flag
5546 0 : s% pg% Color_Magnitude4_file_dir = Color_Magnitude4_file_dir
5547 0 : s% pg% Color_Magnitude4_file_prefix = Color_Magnitude4_file_prefix
5548 0 : s% pg% Color_Magnitude4_file_interval = Color_Magnitude4_file_interval
5549 0 : s% pg% Color_Magnitude4_file_width = Color_Magnitude4_file_width
5550 0 : s% pg% Color_Magnitude4_file_aspect_ratio = Color_Magnitude4_file_aspect_ratio
5551 0 : s% pg% Color_Magnitude4_xmargin = Color_Magnitude4_xmargin
5552 0 : s% pg% Color_Magnitude4_ymargin = Color_Magnitude4_ymargin
5553 0 : s% pg% Color_Magnitude4_other_ymargin = Color_Magnitude4_other_ymargin
5554 0 : s% pg% Color_Magnitude4_use_decorator = Color_Magnitude4_use_decorator
5555 :
5556 0 : s% pg% Color_Magnitude5_win_flag = Color_Magnitude5_win_flag
5557 0 : s% pg% Color_Magnitude5_win_width = Color_Magnitude5_win_width
5558 0 : s% pg% Color_Magnitude5_win_aspect_ratio = Color_Magnitude5_win_aspect_ratio
5559 0 : s% pg% Color_Magnitude5_xleft = Color_Magnitude5_xleft
5560 0 : s% pg% Color_Magnitude5_xright = Color_Magnitude5_xright
5561 0 : s% pg% Color_Magnitude5_ybot = Color_Magnitude5_ybot
5562 0 : s% pg% Color_Magnitude5_ytop = Color_Magnitude5_ytop
5563 0 : s% pg% Color_Magnitude5_txt_scale = Color_Magnitude5_txt_scale
5564 0 : s% pg% Color_Magnitude5_title = Color_Magnitude5_title
5565 0 : s% pg% Color_Magnitude5_xmax = Color_Magnitude5_xmax
5566 0 : s% pg% Color_Magnitude5_xmin = Color_Magnitude5_xmin
5567 0 : s% pg% Color_Magnitude5_dxmin = Color_Magnitude5_dxmin
5568 0 : s% pg% Color_Magnitude5_max_width = Color_Magnitude5_max_width
5569 0 : s% pg% Color_Magnitude5_num_panels = Color_Magnitude5_num_panels
5570 0 : s% pg% Color_Magnitude5_xaxis1_name = Color_Magnitude5_xaxis1_name
5571 0 : s% pg% Color_Magnitude5_xaxis2_name = Color_Magnitude5_xaxis2_name
5572 0 : s% pg% Color_Magnitude5_yaxis1_name = Color_Magnitude5_yaxis1_name
5573 0 : s% pg% Color_Magnitude5_yaxis2_name = Color_Magnitude5_yaxis2_name
5574 0 : s% pg% Color_Magnitude5_xaxis_reversed = Color_Magnitude5_xaxis_reversed
5575 0 : s% pg% Color_Magnitude5_yaxis_reversed = Color_Magnitude5_yaxis_reversed
5576 0 : s% pg% Color_Magnitude5_xaxis_log = Color_Magnitude5_xaxis_log
5577 0 : s% pg% Color_Magnitude5_yaxis_log = Color_Magnitude5_yaxis_log
5578 0 : s% pg% Color_Magnitude5_ymin = Color_Magnitude5_ymin
5579 0 : s% pg% Color_Magnitude5_ymax = Color_Magnitude5_ymax
5580 0 : s% pg% Color_Magnitude5_dymin = Color_Magnitude5_dymin
5581 0 : s% pg% Color_Magnitude5_other_yaxis1_name = Color_Magnitude5_other_yaxis1_name
5582 0 : s% pg% Color_Magnitude5_other_yaxis2_name = Color_Magnitude5_other_yaxis2_name
5583 0 : s% pg% Color_Magnitude5_other_yaxis_reversed = Color_Magnitude5_other_yaxis_reversed
5584 0 : s% pg% Color_Magnitude5_other_yaxis_log = Color_Magnitude5_other_yaxis_log
5585 0 : s% pg% Color_Magnitude5_other_ymin = Color_Magnitude5_other_ymin
5586 0 : s% pg% Color_Magnitude5_other_ymax = Color_Magnitude5_other_ymax
5587 0 : s% pg% Color_Magnitude5_other_dymin = Color_Magnitude5_other_dymin
5588 0 : s% pg% Color_Magnitude5_file_flag = Color_Magnitude5_file_flag
5589 0 : s% pg% Color_Magnitude5_file_dir = Color_Magnitude5_file_dir
5590 0 : s% pg% Color_Magnitude5_file_prefix = Color_Magnitude5_file_prefix
5591 0 : s% pg% Color_Magnitude5_file_interval = Color_Magnitude5_file_interval
5592 0 : s% pg% Color_Magnitude5_file_width = Color_Magnitude5_file_width
5593 0 : s% pg% Color_Magnitude5_file_aspect_ratio = Color_Magnitude5_file_aspect_ratio
5594 0 : s% pg% Color_Magnitude5_xmargin = Color_Magnitude5_xmargin
5595 0 : s% pg% Color_Magnitude5_ymargin = Color_Magnitude5_ymargin
5596 0 : s% pg% Color_Magnitude5_other_ymargin = Color_Magnitude5_other_ymargin
5597 0 : s% pg% Color_Magnitude5_use_decorator = Color_Magnitude5_use_decorator
5598 :
5599 0 : s% pg% Color_Magnitude6_win_flag = Color_Magnitude6_win_flag
5600 0 : s% pg% Color_Magnitude6_win_width = Color_Magnitude6_win_width
5601 0 : s% pg% Color_Magnitude6_win_aspect_ratio = Color_Magnitude6_win_aspect_ratio
5602 0 : s% pg% Color_Magnitude6_xleft = Color_Magnitude6_xleft
5603 0 : s% pg% Color_Magnitude6_xright = Color_Magnitude6_xright
5604 0 : s% pg% Color_Magnitude6_ybot = Color_Magnitude6_ybot
5605 0 : s% pg% Color_Magnitude6_ytop = Color_Magnitude6_ytop
5606 0 : s% pg% Color_Magnitude6_txt_scale = Color_Magnitude6_txt_scale
5607 0 : s% pg% Color_Magnitude6_title = Color_Magnitude6_title
5608 0 : s% pg% Color_Magnitude6_xmax = Color_Magnitude6_xmax
5609 0 : s% pg% Color_Magnitude6_xmin = Color_Magnitude6_xmin
5610 0 : s% pg% Color_Magnitude6_dxmin = Color_Magnitude6_dxmin
5611 0 : s% pg% Color_Magnitude6_max_width = Color_Magnitude6_max_width
5612 0 : s% pg% Color_Magnitude6_num_panels = Color_Magnitude6_num_panels
5613 0 : s% pg% Color_Magnitude6_xaxis1_name = Color_Magnitude6_xaxis1_name
5614 0 : s% pg% Color_Magnitude6_xaxis2_name = Color_Magnitude6_xaxis2_name
5615 0 : s% pg% Color_Magnitude6_yaxis1_name = Color_Magnitude6_yaxis1_name
5616 0 : s% pg% Color_Magnitude6_yaxis2_name = Color_Magnitude6_yaxis2_name
5617 0 : s% pg% Color_Magnitude6_xaxis_reversed = Color_Magnitude6_xaxis_reversed
5618 0 : s% pg% Color_Magnitude6_yaxis_reversed = Color_Magnitude6_yaxis_reversed
5619 0 : s% pg% Color_Magnitude6_xaxis_log = Color_Magnitude6_xaxis_log
5620 0 : s% pg% Color_Magnitude6_yaxis_log = Color_Magnitude6_yaxis_log
5621 0 : s% pg% Color_Magnitude6_ymin = Color_Magnitude6_ymin
5622 0 : s% pg% Color_Magnitude6_ymax = Color_Magnitude6_ymax
5623 0 : s% pg% Color_Magnitude6_dymin = Color_Magnitude6_dymin
5624 0 : s% pg% Color_Magnitude6_other_yaxis1_name = Color_Magnitude6_other_yaxis1_name
5625 0 : s% pg% Color_Magnitude6_other_yaxis2_name = Color_Magnitude6_other_yaxis2_name
5626 0 : s% pg% Color_Magnitude6_other_yaxis_reversed = Color_Magnitude6_other_yaxis_reversed
5627 0 : s% pg% Color_Magnitude6_other_yaxis_log = Color_Magnitude6_other_yaxis_log
5628 0 : s% pg% Color_Magnitude6_other_ymin = Color_Magnitude6_other_ymin
5629 0 : s% pg% Color_Magnitude6_other_ymax = Color_Magnitude6_other_ymax
5630 0 : s% pg% Color_Magnitude6_other_dymin = Color_Magnitude6_other_dymin
5631 0 : s% pg% Color_Magnitude6_file_flag = Color_Magnitude6_file_flag
5632 0 : s% pg% Color_Magnitude6_file_dir = Color_Magnitude6_file_dir
5633 0 : s% pg% Color_Magnitude6_file_prefix = Color_Magnitude6_file_prefix
5634 0 : s% pg% Color_Magnitude6_file_interval = Color_Magnitude6_file_interval
5635 0 : s% pg% Color_Magnitude6_file_width = Color_Magnitude6_file_width
5636 0 : s% pg% Color_Magnitude6_file_aspect_ratio = Color_Magnitude6_file_aspect_ratio
5637 0 : s% pg% Color_Magnitude6_xmargin = Color_Magnitude6_xmargin
5638 0 : s% pg% Color_Magnitude6_ymargin = Color_Magnitude6_ymargin
5639 0 : s% pg% Color_Magnitude6_other_ymargin = Color_Magnitude6_other_ymargin
5640 0 : s% pg% Color_Magnitude6_use_decorator = Color_Magnitude6_use_decorator
5641 :
5642 0 : s% pg% Color_Magnitude7_win_flag = Color_Magnitude7_win_flag
5643 0 : s% pg% Color_Magnitude7_win_width = Color_Magnitude7_win_width
5644 0 : s% pg% Color_Magnitude7_win_aspect_ratio = Color_Magnitude7_win_aspect_ratio
5645 0 : s% pg% Color_Magnitude7_xleft = Color_Magnitude7_xleft
5646 0 : s% pg% Color_Magnitude7_xright = Color_Magnitude7_xright
5647 0 : s% pg% Color_Magnitude7_ybot = Color_Magnitude7_ybot
5648 0 : s% pg% Color_Magnitude7_ytop = Color_Magnitude7_ytop
5649 0 : s% pg% Color_Magnitude7_txt_scale = Color_Magnitude7_txt_scale
5650 0 : s% pg% Color_Magnitude7_title = Color_Magnitude7_title
5651 0 : s% pg% Color_Magnitude7_xmax = Color_Magnitude7_xmax
5652 0 : s% pg% Color_Magnitude7_xmin = Color_Magnitude7_xmin
5653 0 : s% pg% Color_Magnitude7_dxmin = Color_Magnitude7_dxmin
5654 0 : s% pg% Color_Magnitude7_max_width = Color_Magnitude7_max_width
5655 0 : s% pg% Color_Magnitude7_num_panels = Color_Magnitude7_num_panels
5656 0 : s% pg% Color_Magnitude7_xaxis1_name = Color_Magnitude7_xaxis1_name
5657 0 : s% pg% Color_Magnitude7_xaxis2_name = Color_Magnitude7_xaxis2_name
5658 0 : s% pg% Color_Magnitude7_yaxis1_name = Color_Magnitude7_yaxis1_name
5659 0 : s% pg% Color_Magnitude7_yaxis2_name = Color_Magnitude7_yaxis2_name
5660 0 : s% pg% Color_Magnitude7_xaxis_reversed = Color_Magnitude7_xaxis_reversed
5661 0 : s% pg% Color_Magnitude7_yaxis_reversed = Color_Magnitude7_yaxis_reversed
5662 0 : s% pg% Color_Magnitude7_xaxis_log = Color_Magnitude7_xaxis_log
5663 0 : s% pg% Color_Magnitude7_yaxis_log = Color_Magnitude7_yaxis_log
5664 0 : s% pg% Color_Magnitude7_ymin = Color_Magnitude7_ymin
5665 0 : s% pg% Color_Magnitude7_ymax = Color_Magnitude7_ymax
5666 0 : s% pg% Color_Magnitude7_dymin = Color_Magnitude7_dymin
5667 0 : s% pg% Color_Magnitude7_other_yaxis1_name = Color_Magnitude7_other_yaxis1_name
5668 0 : s% pg% Color_Magnitude7_other_yaxis2_name = Color_Magnitude7_other_yaxis2_name
5669 0 : s% pg% Color_Magnitude7_other_yaxis_reversed = Color_Magnitude7_other_yaxis_reversed
5670 0 : s% pg% Color_Magnitude7_other_yaxis_log = Color_Magnitude7_other_yaxis_log
5671 0 : s% pg% Color_Magnitude7_other_ymin = Color_Magnitude7_other_ymin
5672 0 : s% pg% Color_Magnitude7_other_ymax = Color_Magnitude7_other_ymax
5673 0 : s% pg% Color_Magnitude7_other_dymin = Color_Magnitude7_other_dymin
5674 0 : s% pg% Color_Magnitude7_file_flag = Color_Magnitude7_file_flag
5675 0 : s% pg% Color_Magnitude7_file_dir = Color_Magnitude7_file_dir
5676 0 : s% pg% Color_Magnitude7_file_prefix = Color_Magnitude7_file_prefix
5677 0 : s% pg% Color_Magnitude7_file_interval = Color_Magnitude7_file_interval
5678 0 : s% pg% Color_Magnitude7_file_width = Color_Magnitude7_file_width
5679 0 : s% pg% Color_Magnitude7_file_aspect_ratio = Color_Magnitude7_file_aspect_ratio
5680 0 : s% pg% Color_Magnitude7_xmargin = Color_Magnitude7_xmargin
5681 0 : s% pg% Color_Magnitude7_ymargin = Color_Magnitude7_ymargin
5682 0 : s% pg% Color_Magnitude7_other_ymargin = Color_Magnitude7_other_ymargin
5683 0 : s% pg% Color_Magnitude7_use_decorator = Color_Magnitude7_use_decorator
5684 :
5685 0 : s% pg% Color_Magnitude8_win_flag = Color_Magnitude8_win_flag
5686 0 : s% pg% Color_Magnitude8_win_width = Color_Magnitude8_win_width
5687 0 : s% pg% Color_Magnitude8_win_aspect_ratio = Color_Magnitude8_win_aspect_ratio
5688 0 : s% pg% Color_Magnitude8_xleft = Color_Magnitude8_xleft
5689 0 : s% pg% Color_Magnitude8_xright = Color_Magnitude8_xright
5690 0 : s% pg% Color_Magnitude8_ybot = Color_Magnitude8_ybot
5691 0 : s% pg% Color_Magnitude8_ytop = Color_Magnitude8_ytop
5692 0 : s% pg% Color_Magnitude8_txt_scale = Color_Magnitude8_txt_scale
5693 0 : s% pg% Color_Magnitude8_title = Color_Magnitude8_title
5694 0 : s% pg% Color_Magnitude8_xmax = Color_Magnitude8_xmax
5695 0 : s% pg% Color_Magnitude8_xmin = Color_Magnitude8_xmin
5696 0 : s% pg% Color_Magnitude8_dxmin = Color_Magnitude8_dxmin
5697 0 : s% pg% Color_Magnitude8_max_width = Color_Magnitude8_max_width
5698 0 : s% pg% Color_Magnitude8_num_panels = Color_Magnitude8_num_panels
5699 0 : s% pg% Color_Magnitude8_xaxis1_name = Color_Magnitude8_xaxis1_name
5700 0 : s% pg% Color_Magnitude8_xaxis2_name = Color_Magnitude8_xaxis2_name
5701 0 : s% pg% Color_Magnitude8_yaxis1_name = Color_Magnitude8_yaxis1_name
5702 0 : s% pg% Color_Magnitude8_yaxis2_name = Color_Magnitude8_yaxis2_name
5703 0 : s% pg% Color_Magnitude8_xaxis_reversed = Color_Magnitude8_xaxis_reversed
5704 0 : s% pg% Color_Magnitude8_yaxis_reversed = Color_Magnitude8_yaxis_reversed
5705 0 : s% pg% Color_Magnitude8_xaxis_log = Color_Magnitude8_xaxis_log
5706 0 : s% pg% Color_Magnitude8_yaxis_log = Color_Magnitude8_yaxis_log
5707 0 : s% pg% Color_Magnitude8_ymin = Color_Magnitude8_ymin
5708 0 : s% pg% Color_Magnitude8_ymax = Color_Magnitude8_ymax
5709 0 : s% pg% Color_Magnitude8_dymin = Color_Magnitude8_dymin
5710 0 : s% pg% Color_Magnitude8_other_yaxis1_name = Color_Magnitude8_other_yaxis1_name
5711 0 : s% pg% Color_Magnitude8_other_yaxis2_name = Color_Magnitude8_other_yaxis2_name
5712 0 : s% pg% Color_Magnitude8_other_yaxis_reversed = Color_Magnitude8_other_yaxis_reversed
5713 0 : s% pg% Color_Magnitude8_other_yaxis_log = Color_Magnitude8_other_yaxis_log
5714 0 : s% pg% Color_Magnitude8_other_ymin = Color_Magnitude8_other_ymin
5715 0 : s% pg% Color_Magnitude8_other_ymax = Color_Magnitude8_other_ymax
5716 0 : s% pg% Color_Magnitude8_other_dymin = Color_Magnitude8_other_dymin
5717 0 : s% pg% Color_Magnitude8_file_flag = Color_Magnitude8_file_flag
5718 0 : s% pg% Color_Magnitude8_file_dir = Color_Magnitude8_file_dir
5719 0 : s% pg% Color_Magnitude8_file_prefix = Color_Magnitude8_file_prefix
5720 0 : s% pg% Color_Magnitude8_file_interval = Color_Magnitude8_file_interval
5721 0 : s% pg% Color_Magnitude8_file_width = Color_Magnitude8_file_width
5722 0 : s% pg% Color_Magnitude8_file_aspect_ratio = Color_Magnitude8_file_aspect_ratio
5723 0 : s% pg% Color_Magnitude8_xmargin = Color_Magnitude8_xmargin
5724 0 : s% pg% Color_Magnitude8_ymargin = Color_Magnitude8_ymargin
5725 0 : s% pg% Color_Magnitude8_other_ymargin = Color_Magnitude8_other_ymargin
5726 0 : s% pg% Color_Magnitude8_use_decorator = Color_Magnitude8_use_decorator
5727 :
5728 0 : s% pg% Color_Magnitude9_win_flag = Color_Magnitude9_win_flag
5729 0 : s% pg% Color_Magnitude9_win_width = Color_Magnitude9_win_width
5730 0 : s% pg% Color_Magnitude9_win_aspect_ratio = Color_Magnitude9_win_aspect_ratio
5731 0 : s% pg% Color_Magnitude9_xleft = Color_Magnitude9_xleft
5732 0 : s% pg% Color_Magnitude9_xright = Color_Magnitude9_xright
5733 0 : s% pg% Color_Magnitude9_ybot = Color_Magnitude9_ybot
5734 0 : s% pg% Color_Magnitude9_ytop = Color_Magnitude9_ytop
5735 0 : s% pg% Color_Magnitude9_txt_scale = Color_Magnitude9_txt_scale
5736 0 : s% pg% Color_Magnitude9_title = Color_Magnitude9_title
5737 0 : s% pg% Color_Magnitude9_xmax = Color_Magnitude9_xmax
5738 0 : s% pg% Color_Magnitude9_xmin = Color_Magnitude9_xmin
5739 0 : s% pg% Color_Magnitude9_dxmin = Color_Magnitude9_dxmin
5740 0 : s% pg% Color_Magnitude9_max_width = Color_Magnitude9_max_width
5741 0 : s% pg% Color_Magnitude9_num_panels = Color_Magnitude9_num_panels
5742 0 : s% pg% Color_Magnitude9_xaxis1_name = Color_Magnitude9_xaxis1_name
5743 0 : s% pg% Color_Magnitude9_xaxis2_name = Color_Magnitude9_xaxis2_name
5744 0 : s% pg% Color_Magnitude9_yaxis1_name = Color_Magnitude9_yaxis1_name
5745 0 : s% pg% Color_Magnitude9_yaxis2_name = Color_Magnitude9_yaxis2_name
5746 0 : s% pg% Color_Magnitude9_xaxis_reversed = Color_Magnitude9_xaxis_reversed
5747 0 : s% pg% Color_Magnitude9_yaxis_reversed = Color_Magnitude9_yaxis_reversed
5748 0 : s% pg% Color_Magnitude9_xaxis_log = Color_Magnitude9_xaxis_log
5749 0 : s% pg% Color_Magnitude9_yaxis_log = Color_Magnitude9_yaxis_log
5750 0 : s% pg% Color_Magnitude9_ymin = Color_Magnitude9_ymin
5751 0 : s% pg% Color_Magnitude9_ymax = Color_Magnitude9_ymax
5752 0 : s% pg% Color_Magnitude9_dymin = Color_Magnitude9_dymin
5753 0 : s% pg% Color_Magnitude9_other_yaxis1_name = Color_Magnitude9_other_yaxis1_name
5754 0 : s% pg% Color_Magnitude9_other_yaxis2_name = Color_Magnitude9_other_yaxis2_name
5755 0 : s% pg% Color_Magnitude9_other_yaxis_reversed = Color_Magnitude9_other_yaxis_reversed
5756 0 : s% pg% Color_Magnitude9_other_yaxis_log = Color_Magnitude9_other_yaxis_log
5757 0 : s% pg% Color_Magnitude9_other_ymin = Color_Magnitude9_other_ymin
5758 0 : s% pg% Color_Magnitude9_other_ymax = Color_Magnitude9_other_ymax
5759 0 : s% pg% Color_Magnitude9_other_dymin = Color_Magnitude9_other_dymin
5760 0 : s% pg% Color_Magnitude9_file_flag = Color_Magnitude9_file_flag
5761 0 : s% pg% Color_Magnitude9_file_dir = Color_Magnitude9_file_dir
5762 0 : s% pg% Color_Magnitude9_file_prefix = Color_Magnitude9_file_prefix
5763 0 : s% pg% Color_Magnitude9_file_interval = Color_Magnitude9_file_interval
5764 0 : s% pg% Color_Magnitude9_file_width = Color_Magnitude9_file_width
5765 0 : s% pg% Color_Magnitude9_file_aspect_ratio = Color_Magnitude9_file_aspect_ratio
5766 0 : s% pg% Color_Magnitude9_xmargin = Color_Magnitude9_xmargin
5767 0 : s% pg% Color_Magnitude9_ymargin = Color_Magnitude9_ymargin
5768 0 : s% pg% Color_Magnitude9_other_ymargin = Color_Magnitude9_other_ymargin
5769 0 : s% pg% Color_Magnitude9_use_decorator = Color_Magnitude9_use_decorator
5770 :
5771 :
5772 0 : s% pg% Mode_Prop_win_flag = Mode_Prop_win_flag
5773 0 : s% pg% Mode_Prop_file_flag = Mode_Prop_file_flag
5774 0 : s% pg% Mode_Prop_file_interval = Mode_Prop_file_interval
5775 0 : s% pg% Mode_Prop_file_dir = Mode_Prop_file_dir
5776 0 : s% pg% Mode_Prop_file_prefix = Mode_Prop_file_prefix
5777 0 : s% pg% Mode_Prop_xaxis_name = Mode_Prop_xaxis_name
5778 0 : s% pg% Mode_Prop_xaxis_reversed = Mode_Prop_xaxis_reversed
5779 0 : s% pg% Mode_Prop_nu_max_obs = Mode_Prop_nu_max_obs
5780 0 : s% pg% Mode_Prop_xmin = Mode_Prop_xmin
5781 0 : s% pg% Mode_Prop_xmax = Mode_Prop_xmax
5782 0 : s% pg% Mode_Prop_ymin = Mode_Prop_ymin
5783 0 : s% pg% Mode_Prop_ymax = Mode_Prop_ymax
5784 0 : s% pg% Mode_Prop_win_width = Mode_Prop_win_width
5785 0 : s% pg% Mode_Prop_win_aspect_ratio = Mode_Prop_win_aspect_ratio
5786 0 : s% pg% Mode_Prop_file_width = Mode_Prop_file_width
5787 0 : s% pg% Mode_Prop_file_aspect_ratio = Mode_Prop_file_aspect_ratio
5788 0 : s% pg% Mode_Prop_xleft = Mode_Prop_xleft
5789 0 : s% pg% Mode_Prop_xright = Mode_Prop_xright
5790 0 : s% pg% Mode_Prop_ybot = Mode_Prop_ybot
5791 0 : s% pg% Mode_Prop_ytop = Mode_Prop_ytop
5792 0 : s% pg% Mode_Prop_txt_scale = Mode_Prop_txt_scale
5793 0 : s% pg% Mode_Prop_title = Mode_Prop_title
5794 0 : s% pg% Mode_Prop_use_decorator = Mode_Prop_use_decorator
5795 :
5796 0 : s% pg% Summary_Burn_win_flag = Summary_Burn_win_flag
5797 0 : s% pg% Summary_Burn_file_flag = Summary_Burn_file_flag
5798 0 : s% pg% Summary_Burn_file_interval = Summary_Burn_file_interval
5799 0 : s% pg% Summary_Burn_file_dir = Summary_Burn_file_dir
5800 0 : s% pg% Summary_Burn_file_prefix = Summary_Burn_file_prefix
5801 0 : s% pg% Summary_Burn_xaxis_name = Summary_Burn_xaxis_name
5802 0 : s% pg% Summary_Burn_xaxis_reversed = Summary_Burn_xaxis_reversed
5803 0 : s% pg% Summary_Burn_xmin = Summary_Burn_xmin
5804 0 : s% pg% Summary_Burn_xmax = Summary_Burn_xmax
5805 0 : s% pg% Summary_Burn_win_width = Summary_Burn_win_width
5806 0 : s% pg% Summary_Burn_win_aspect_ratio = Summary_Burn_win_aspect_ratio
5807 0 : s% pg% Summary_Burn_file_width = Summary_Burn_file_width
5808 0 : s% pg% Summary_Burn_file_aspect_ratio = Summary_Burn_file_aspect_ratio
5809 0 : s% pg% Summary_Burn_xleft = Summary_Burn_xleft
5810 0 : s% pg% Summary_Burn_xright = Summary_Burn_xright
5811 0 : s% pg% Summary_Burn_ybot = Summary_Burn_ybot
5812 0 : s% pg% Summary_Burn_ytop = Summary_Burn_ytop
5813 0 : s% pg% Summary_Burn_txt_scale = Summary_Burn_txt_scale
5814 0 : s% pg% Summary_Burn_title = Summary_Burn_title
5815 0 : s% pg% Summary_Burn_title_shift = Summary_Burn_title_shift
5816 0 : s% pg% Summary_Burn_use_decorator = Summary_Burn_use_decorator
5817 :
5818 0 : s% pg% Summary_Profile_win_flag = Summary_Profile_win_flag
5819 0 : s% pg% Summary_Profile_file_flag = Summary_Profile_file_flag
5820 0 : s% pg% Summary_Profile_file_interval = Summary_Profile_file_interval
5821 0 : s% pg% Summary_Profile_file_dir = Summary_Profile_file_dir
5822 0 : s% pg% Summary_Profile_file_prefix = Summary_Profile_file_prefix
5823 0 : s% pg% Summary_Profile_xaxis_name = Summary_Profile_xaxis_name
5824 0 : s% pg% Summary_Profile_xaxis_reversed = Summary_Profile_xaxis_reversed
5825 0 : s% pg% Summary_Profile_scaled_value = Summary_Profile_scaled_value
5826 0 : s% pg% Summary_Profile_xmin = Summary_Profile_xmin
5827 0 : s% pg% Summary_Profile_xmax = Summary_Profile_xmax
5828 0 : s% pg% Summary_Profile_win_width = Summary_Profile_win_width
5829 0 : s% pg% Summary_Profile_win_aspect_ratio = Summary_Profile_win_aspect_ratio
5830 0 : s% pg% Summary_Profile_file_width = Summary_Profile_file_width
5831 0 : s% pg% Summary_Profile_file_aspect_ratio = Summary_Profile_file_aspect_ratio
5832 0 : s% pg% Summary_Profile_xleft = Summary_Profile_xleft
5833 0 : s% pg% Summary_Profile_xright = Summary_Profile_xright
5834 0 : s% pg% Summary_Profile_ybot = Summary_Profile_ybot
5835 0 : s% pg% Summary_Profile_ytop = Summary_Profile_ytop
5836 0 : s% pg% Summary_Profile_txt_scale = Summary_Profile_txt_scale
5837 0 : s% pg% Summary_Profile_title = Summary_Profile_title
5838 0 : s% pg% Summary_Profile_name = Summary_Profile_name
5839 0 : s% pg% Summary_Profile_legend = Summary_Profile_legend
5840 0 : s% pg% Summary_Profile_num_lines = Summary_Profile_num_lines
5841 0 : s% pg% Summary_Profile_use_decorator = Summary_Profile_use_decorator
5842 :
5843 0 : s% pg% Summary_History_win_flag = Summary_History_win_flag
5844 0 : s% pg% Summary_History_file_flag = Summary_History_file_flag
5845 0 : s% pg% Summary_History_file_interval = Summary_History_file_interval
5846 0 : s% pg% Summary_History_file_dir = Summary_History_file_dir
5847 0 : s% pg% Summary_History_file_prefix = Summary_History_file_prefix
5848 0 : s% pg% Summary_History_scaled_value = Summary_History_scaled_value
5849 0 : s% pg% Summary_History_xmin = Summary_History_xmin
5850 0 : s% pg% Summary_History_xmax = Summary_History_xmax
5851 0 : s% pg% Summary_History_max_width = Summary_History_max_width
5852 0 : s% pg% Summary_History_win_width = Summary_History_win_width
5853 0 : s% pg% Summary_History_win_aspect_ratio = Summary_History_win_aspect_ratio
5854 0 : s% pg% Summary_History_file_width = Summary_History_file_width
5855 0 : s% pg% Summary_History_file_aspect_ratio = Summary_History_file_aspect_ratio
5856 0 : s% pg% Summary_History_xleft = Summary_History_xleft
5857 0 : s% pg% Summary_History_xright = Summary_History_xright
5858 0 : s% pg% Summary_History_ybot = Summary_History_ybot
5859 0 : s% pg% Summary_History_ytop = Summary_History_ytop
5860 0 : s% pg% Summary_History_txt_scale = Summary_History_txt_scale
5861 0 : s% pg% Summary_History_title = Summary_History_title
5862 0 : s% pg% Summary_History_name = Summary_History_name
5863 0 : s% pg% Summary_History_legend = Summary_History_legend
5864 0 : s% pg% Summary_History_num_lines = Summary_History_num_lines
5865 0 : s% pg% Summary_History_use_decorator = Summary_History_use_decorator
5866 :
5867 0 : s% pg% Power_win_flag = Power_win_flag
5868 0 : s% pg% Power_file_flag = Power_file_flag
5869 0 : s% pg% Power_file_interval = Power_file_interval
5870 0 : s% pg% Power_file_dir = Power_file_dir
5871 0 : s% pg% Power_file_prefix = Power_file_prefix
5872 0 : s% pg% Power_xaxis_name = Power_xaxis_name
5873 0 : s% pg% Power_xaxis_reversed = Power_xaxis_reversed
5874 0 : s% pg% Power_legend_max_cnt = Power_legend_max_cnt
5875 0 : s% pg% Power_legend_txt_scale_factor = Power_legend_txt_scale_factor
5876 0 : s% pg% Power_xmin = Power_xmin
5877 0 : s% pg% Power_xmax = Power_xmax
5878 0 : s% pg% Power_ymin = Power_ymin
5879 0 : s% pg% Power_ymax = Power_ymax
5880 0 : s% pg% Power_win_width = Power_win_width
5881 0 : s% pg% Power_win_aspect_ratio = Power_win_aspect_ratio
5882 0 : s% pg% Power_file_width = Power_file_width
5883 0 : s% pg% Power_file_aspect_ratio = Power_file_aspect_ratio
5884 0 : s% pg% Power_xleft = Power_xleft
5885 0 : s% pg% Power_xright = Power_xright
5886 0 : s% pg% Power_ybot = Power_ybot
5887 0 : s% pg% Power_ytop = Power_ytop
5888 0 : s% pg% Power_txt_scale = Power_txt_scale
5889 0 : s% pg% Power_title = Power_title
5890 0 : s% pg% Power_use_decorator = Power_use_decorator
5891 :
5892 0 : s% pg% Abundance_win_flag = Abundance_win_flag
5893 0 : s% pg% Abundance_file_flag = Abundance_file_flag
5894 0 : s% pg% Abundance_file_interval = Abundance_file_interval
5895 0 : s% pg% Abundance_file_dir = Abundance_file_dir
5896 0 : s% pg% Abundance_file_prefix = Abundance_file_prefix
5897 0 : s% pg% Abundance_num_isos_to_show = Abundance_num_isos_to_show
5898 0 : s% pg% num_abundance_line_labels = num_abundance_line_labels
5899 0 : s% pg% Abundance_legend_txt_scale_factor = Abundance_legend_txt_scale_factor
5900 0 : s% pg% Abundance_line_txt_scale_factor = Abundance_line_txt_scale_factor
5901 : s% pg% Abundance_line_txt_scale_factor = Abundance_line_txt_scale_factor
5902 0 : s% pg% Abundance_legend_max_cnt = Abundance_legend_max_cnt
5903 0 : s% pg% Abundance_which_isos_to_show = Abundance_which_isos_to_show
5904 0 : s% pg% Abundance_xaxis_name = Abundance_xaxis_name
5905 0 : s% pg% Abundance_xaxis_reversed = Abundance_xaxis_reversed
5906 0 : s% pg% Abundance_show_photosphere_location = Abundance_show_photosphere_location
5907 0 : s% pg% Abundance_xmin = Abundance_xmin
5908 0 : s% pg% Abundance_xmax = Abundance_xmax
5909 0 : s% pg% Abundance_log_mass_frac_min = Abundance_log_mass_frac_min
5910 0 : s% pg% Abundance_log_mass_frac_max = Abundance_log_mass_frac_max
5911 0 : s% pg% Abundance_win_width = Abundance_win_width
5912 0 : s% pg% Abundance_win_aspect_ratio = Abundance_win_aspect_ratio
5913 0 : s% pg% Abundance_file_width = Abundance_file_width
5914 0 : s% pg% Abundance_file_aspect_ratio = Abundance_file_aspect_ratio
5915 0 : s% pg% Abundance_xleft = Abundance_xleft
5916 0 : s% pg% Abundance_xright = Abundance_xright
5917 0 : s% pg% Abundance_ybot = Abundance_ybot
5918 0 : s% pg% Abundance_ytop = Abundance_ytop
5919 0 : s% pg% Abundance_txt_scale = Abundance_txt_scale
5920 0 : s% pg% Abundance_title = Abundance_title
5921 0 : s% pg% Abundance_use_decorator = Abundance_use_decorator
5922 :
5923 0 : s% pg% dPg_dnu_win_flag = dPg_dnu_win_flag
5924 0 : s% pg% dPg_dnu_file_flag = dPg_dnu_file_flag
5925 0 : s% pg% dPg_dnu_xleft = dPg_dnu_xleft
5926 0 : s% pg% dPg_dnu_xright = dPg_dnu_xright
5927 0 : s% pg% dPg_dnu_ybot = dPg_dnu_ybot
5928 0 : s% pg% dPg_dnu_ytop = dPg_dnu_ytop
5929 0 : s% pg% dPg_dnu_txt_scale = dPg_dnu_txt_scale
5930 0 : s% pg% dPg_dnu_title = dPg_dnu_title
5931 0 : s% pg% dPg_dnu_file_interval = dPg_dnu_file_interval
5932 0 : s% pg% dPg_dnu_step_min = dPg_dnu_step_min
5933 0 : s% pg% dPg_dnu_step_max = dPg_dnu_step_max
5934 0 : s% pg% dPg_dnu_file_dir = dPg_dnu_file_dir
5935 0 : s% pg% dPg_dnu_file_prefix = dPg_dnu_file_prefix
5936 0 : s% pg% show_dPg_dnu_annotation1 = show_dPg_dnu_annotation1
5937 0 : s% pg% show_dPg_dnu_annotation2 = show_dPg_dnu_annotation2
5938 0 : s% pg% show_dPg_dnu_annotation3 = show_dPg_dnu_annotation3
5939 0 : s% pg% dPg_dnu_fname = dPg_dnu_fname
5940 0 : s% pg% dPg_dnu_delta_nu_min = dPg_dnu_delta_nu_min
5941 0 : s% pg% dPg_dnu_delta_nu_max = dPg_dnu_delta_nu_max
5942 0 : s% pg% dPg_dnu_delta_Pg_min = dPg_dnu_delta_Pg_min
5943 0 : s% pg% dPg_dnu_delta_Pg_max = dPg_dnu_delta_Pg_max
5944 0 : s% pg% dPg_dnu_delta_nu_margin = dPg_dnu_delta_nu_margin
5945 0 : s% pg% dPg_dnu_delta_Pg_margin = dPg_dnu_delta_Pg_margin
5946 0 : s% pg% dPg_dnu_d_delta_nu_min = dPg_dnu_d_delta_nu_min
5947 0 : s% pg% dPg_dnu_d_delta_Pg_min = dPg_dnu_d_delta_Pg_min
5948 0 : s% pg% dPg_dnu_win_width = dPg_dnu_win_width
5949 0 : s% pg% dPg_dnu_win_aspect_ratio = dPg_dnu_win_aspect_ratio
5950 0 : s% pg% dPg_dnu_file_width = dPg_dnu_file_width
5951 0 : s% pg% dPg_dnu_file_aspect_ratio = dPg_dnu_file_aspect_ratio
5952 0 : s% pg% dPg_dnu_use_decorator = dPg_dnu_use_decorator
5953 :
5954 0 : s% pg% Grid1_win_flag = Grid1_win_flag
5955 0 : s% pg% Grid1_win_width = Grid1_win_width
5956 0 : s% pg% Grid1_win_aspect_ratio = Grid1_win_aspect_ratio
5957 0 : s% pg% Grid1_xleft = Grid1_xleft
5958 0 : s% pg% Grid1_xright = Grid1_xright
5959 0 : s% pg% Grid1_ybot = Grid1_ybot
5960 0 : s% pg% Grid1_ytop = Grid1_ytop
5961 0 : s% pg% Grid1_title = Grid1_title
5962 0 : s% pg% Grid1_txt_scale_factor = Grid1_txt_scale_factor
5963 0 : s% pg% Grid1_num_cols = Grid1_num_cols
5964 0 : s% pg% Grid1_num_rows = Grid1_num_rows
5965 0 : s% pg% Grid1_num_plots = Grid1_num_plots
5966 0 : s% pg% Grid1_plot_name = Grid1_plot_name
5967 0 : s% pg% Grid1_plot_row = Grid1_plot_row
5968 0 : s% pg% Grid1_plot_rowspan = Grid1_plot_rowspan
5969 0 : s% pg% Grid1_plot_col = Grid1_plot_col
5970 0 : s% pg% Grid1_plot_colspan = Grid1_plot_colspan
5971 0 : s% pg% Grid1_plot_pad_left = Grid1_plot_pad_left
5972 0 : s% pg% Grid1_plot_pad_right = Grid1_plot_pad_right
5973 0 : s% pg% Grid1_plot_pad_top = Grid1_plot_pad_top
5974 0 : s% pg% Grid1_plot_pad_bot = Grid1_plot_pad_bot
5975 0 : s% pg% Grid1_file_flag = Grid1_file_flag
5976 0 : s% pg% Grid1_file_dir = Grid1_file_dir
5977 0 : s% pg% Grid1_file_prefix = Grid1_file_prefix
5978 0 : s% pg% Grid1_file_interval = Grid1_file_interval
5979 0 : s% pg% Grid1_file_width = Grid1_file_width
5980 0 : s% pg% Grid1_file_aspect_ratio = Grid1_file_aspect_ratio
5981 :
5982 0 : s% pg% Grid2_win_flag = Grid2_win_flag
5983 0 : s% pg% Grid2_win_width = Grid2_win_width
5984 0 : s% pg% Grid2_win_aspect_ratio = Grid2_win_aspect_ratio
5985 0 : s% pg% Grid2_xleft = Grid2_xleft
5986 0 : s% pg% Grid2_xright = Grid2_xright
5987 0 : s% pg% Grid2_ybot = Grid2_ybot
5988 0 : s% pg% Grid2_ytop = Grid2_ytop
5989 0 : s% pg% Grid2_title = Grid2_title
5990 0 : s% pg% Grid2_txt_scale_factor = Grid2_txt_scale_factor
5991 0 : s% pg% Grid2_num_cols = Grid2_num_cols
5992 0 : s% pg% Grid2_num_rows = Grid2_num_rows
5993 0 : s% pg% Grid2_num_plots = Grid2_num_plots
5994 0 : s% pg% Grid2_plot_name = Grid2_plot_name
5995 0 : s% pg% Grid2_plot_row = Grid2_plot_row
5996 0 : s% pg% Grid2_plot_rowspan = Grid2_plot_rowspan
5997 0 : s% pg% Grid2_plot_col = Grid2_plot_col
5998 0 : s% pg% Grid2_plot_colspan = Grid2_plot_colspan
5999 0 : s% pg% Grid2_plot_pad_left = Grid2_plot_pad_left
6000 0 : s% pg% Grid2_plot_pad_right = Grid2_plot_pad_right
6001 0 : s% pg% Grid2_plot_pad_top = Grid2_plot_pad_top
6002 0 : s% pg% Grid2_plot_pad_bot = Grid2_plot_pad_bot
6003 0 : s% pg% Grid2_file_flag = Grid2_file_flag
6004 0 : s% pg% Grid2_file_dir = Grid2_file_dir
6005 0 : s% pg% Grid2_file_prefix = Grid2_file_prefix
6006 0 : s% pg% Grid2_file_interval = Grid2_file_interval
6007 0 : s% pg% Grid2_file_width = Grid2_file_width
6008 0 : s% pg% Grid2_file_aspect_ratio = Grid2_file_aspect_ratio
6009 :
6010 0 : s% pg% Grid3_win_flag = Grid3_win_flag
6011 0 : s% pg% Grid3_win_width = Grid3_win_width
6012 0 : s% pg% Grid3_win_aspect_ratio = Grid3_win_aspect_ratio
6013 0 : s% pg% Grid3_xleft = Grid3_xleft
6014 0 : s% pg% Grid3_xright = Grid3_xright
6015 0 : s% pg% Grid3_ybot = Grid3_ybot
6016 0 : s% pg% Grid3_ytop = Grid3_ytop
6017 0 : s% pg% Grid3_title = Grid3_title
6018 0 : s% pg% Grid3_txt_scale_factor = Grid3_txt_scale_factor
6019 0 : s% pg% Grid3_num_cols = Grid3_num_cols
6020 0 : s% pg% Grid3_num_rows = Grid3_num_rows
6021 0 : s% pg% Grid3_num_plots = Grid3_num_plots
6022 0 : s% pg% Grid3_plot_name = Grid3_plot_name
6023 0 : s% pg% Grid3_plot_row = Grid3_plot_row
6024 0 : s% pg% Grid3_plot_rowspan = Grid3_plot_rowspan
6025 0 : s% pg% Grid3_plot_col = Grid3_plot_col
6026 0 : s% pg% Grid3_plot_colspan = Grid3_plot_colspan
6027 0 : s% pg% Grid3_plot_pad_left = Grid3_plot_pad_left
6028 0 : s% pg% Grid3_plot_pad_right = Grid3_plot_pad_right
6029 0 : s% pg% Grid3_plot_pad_top = Grid3_plot_pad_top
6030 0 : s% pg% Grid3_plot_pad_bot = Grid3_plot_pad_bot
6031 0 : s% pg% Grid3_file_flag = Grid3_file_flag
6032 0 : s% pg% Grid3_file_dir = Grid3_file_dir
6033 0 : s% pg% Grid3_file_prefix = Grid3_file_prefix
6034 0 : s% pg% Grid3_file_interval = Grid3_file_interval
6035 0 : s% pg% Grid3_file_width = Grid3_file_width
6036 0 : s% pg% Grid3_file_aspect_ratio = Grid3_file_aspect_ratio
6037 :
6038 0 : s% pg% Grid4_win_flag = Grid4_win_flag
6039 0 : s% pg% Grid4_win_width = Grid4_win_width
6040 0 : s% pg% Grid4_win_aspect_ratio = Grid4_win_aspect_ratio
6041 0 : s% pg% Grid4_xleft = Grid4_xleft
6042 0 : s% pg% Grid4_xright = Grid4_xright
6043 0 : s% pg% Grid4_ybot = Grid4_ybot
6044 0 : s% pg% Grid4_ytop = Grid4_ytop
6045 0 : s% pg% Grid4_title = Grid4_title
6046 0 : s% pg% Grid4_txt_scale_factor = Grid4_txt_scale_factor
6047 0 : s% pg% Grid4_num_cols = Grid4_num_cols
6048 0 : s% pg% Grid4_num_rows = Grid4_num_rows
6049 0 : s% pg% Grid4_num_plots = Grid4_num_plots
6050 0 : s% pg% Grid4_plot_name = Grid4_plot_name
6051 0 : s% pg% Grid4_plot_row = Grid4_plot_row
6052 0 : s% pg% Grid4_plot_rowspan = Grid4_plot_rowspan
6053 0 : s% pg% Grid4_plot_col = Grid4_plot_col
6054 0 : s% pg% Grid4_plot_colspan = Grid4_plot_colspan
6055 0 : s% pg% Grid4_plot_pad_left = Grid4_plot_pad_left
6056 0 : s% pg% Grid4_plot_pad_right = Grid4_plot_pad_right
6057 0 : s% pg% Grid4_plot_pad_top = Grid4_plot_pad_top
6058 0 : s% pg% Grid4_plot_pad_bot = Grid4_plot_pad_bot
6059 0 : s% pg% Grid4_file_flag = Grid4_file_flag
6060 0 : s% pg% Grid4_file_dir = Grid4_file_dir
6061 0 : s% pg% Grid4_file_prefix = Grid4_file_prefix
6062 0 : s% pg% Grid4_file_interval = Grid4_file_interval
6063 0 : s% pg% Grid4_file_width = Grid4_file_width
6064 0 : s% pg% Grid4_file_aspect_ratio = Grid4_file_aspect_ratio
6065 :
6066 0 : s% pg% Grid5_win_flag = Grid5_win_flag
6067 0 : s% pg% Grid5_win_width = Grid5_win_width
6068 0 : s% pg% Grid5_win_aspect_ratio = Grid5_win_aspect_ratio
6069 0 : s% pg% Grid5_xleft = Grid5_xleft
6070 0 : s% pg% Grid5_xright = Grid5_xright
6071 0 : s% pg% Grid5_ybot = Grid5_ybot
6072 0 : s% pg% Grid5_ytop = Grid5_ytop
6073 0 : s% pg% Grid5_title = Grid5_title
6074 0 : s% pg% Grid5_txt_scale_factor = Grid5_txt_scale_factor
6075 0 : s% pg% Grid5_num_cols = Grid5_num_cols
6076 0 : s% pg% Grid5_num_rows = Grid5_num_rows
6077 0 : s% pg% Grid5_num_plots = Grid5_num_plots
6078 0 : s% pg% Grid5_plot_name = Grid5_plot_name
6079 0 : s% pg% Grid5_plot_row = Grid5_plot_row
6080 0 : s% pg% Grid5_plot_rowspan = Grid5_plot_rowspan
6081 0 : s% pg% Grid5_plot_col = Grid5_plot_col
6082 0 : s% pg% Grid5_plot_colspan = Grid5_plot_colspan
6083 0 : s% pg% Grid5_plot_pad_left = Grid5_plot_pad_left
6084 0 : s% pg% Grid5_plot_pad_right = Grid5_plot_pad_right
6085 0 : s% pg% Grid5_plot_pad_top = Grid5_plot_pad_top
6086 0 : s% pg% Grid5_plot_pad_bot = Grid5_plot_pad_bot
6087 0 : s% pg% Grid5_file_flag = Grid5_file_flag
6088 0 : s% pg% Grid5_file_dir = Grid5_file_dir
6089 0 : s% pg% Grid5_file_prefix = Grid5_file_prefix
6090 0 : s% pg% Grid5_file_interval = Grid5_file_interval
6091 0 : s% pg% Grid5_file_width = Grid5_file_width
6092 0 : s% pg% Grid5_file_aspect_ratio = Grid5_file_aspect_ratio
6093 :
6094 0 : s% pg% Grid6_win_flag = Grid6_win_flag
6095 0 : s% pg% Grid6_win_width = Grid6_win_width
6096 0 : s% pg% Grid6_win_aspect_ratio = Grid6_win_aspect_ratio
6097 0 : s% pg% Grid6_xleft = Grid6_xleft
6098 0 : s% pg% Grid6_xright = Grid6_xright
6099 0 : s% pg% Grid6_ybot = Grid6_ybot
6100 0 : s% pg% Grid6_ytop = Grid6_ytop
6101 0 : s% pg% Grid6_title = Grid6_title
6102 0 : s% pg% Grid6_txt_scale_factor = Grid6_txt_scale_factor
6103 0 : s% pg% Grid6_num_cols = Grid6_num_cols
6104 0 : s% pg% Grid6_num_rows = Grid6_num_rows
6105 0 : s% pg% Grid6_num_plots = Grid6_num_plots
6106 0 : s% pg% Grid6_plot_name = Grid6_plot_name
6107 0 : s% pg% Grid6_plot_row = Grid6_plot_row
6108 0 : s% pg% Grid6_plot_rowspan = Grid6_plot_rowspan
6109 0 : s% pg% Grid6_plot_col = Grid6_plot_col
6110 0 : s% pg% Grid6_plot_colspan = Grid6_plot_colspan
6111 0 : s% pg% Grid6_plot_pad_left = Grid6_plot_pad_left
6112 0 : s% pg% Grid6_plot_pad_right = Grid6_plot_pad_right
6113 0 : s% pg% Grid6_plot_pad_top = Grid6_plot_pad_top
6114 0 : s% pg% Grid6_plot_pad_bot = Grid6_plot_pad_bot
6115 0 : s% pg% Grid6_file_flag = Grid6_file_flag
6116 0 : s% pg% Grid6_file_dir = Grid6_file_dir
6117 0 : s% pg% Grid6_file_prefix = Grid6_file_prefix
6118 0 : s% pg% Grid6_file_interval = Grid6_file_interval
6119 0 : s% pg% Grid6_file_width = Grid6_file_width
6120 0 : s% pg% Grid6_file_aspect_ratio = Grid6_file_aspect_ratio
6121 :
6122 0 : s% pg% Grid7_win_flag = Grid7_win_flag
6123 0 : s% pg% Grid7_win_width = Grid7_win_width
6124 0 : s% pg% Grid7_win_aspect_ratio = Grid7_win_aspect_ratio
6125 0 : s% pg% Grid7_xleft = Grid7_xleft
6126 0 : s% pg% Grid7_xright = Grid7_xright
6127 0 : s% pg% Grid7_ybot = Grid7_ybot
6128 0 : s% pg% Grid7_ytop = Grid7_ytop
6129 0 : s% pg% Grid7_title = Grid7_title
6130 0 : s% pg% Grid7_txt_scale_factor = Grid7_txt_scale_factor
6131 0 : s% pg% Grid7_num_cols = Grid7_num_cols
6132 0 : s% pg% Grid7_num_rows = Grid7_num_rows
6133 0 : s% pg% Grid7_num_plots = Grid7_num_plots
6134 0 : s% pg% Grid7_plot_name = Grid7_plot_name
6135 0 : s% pg% Grid7_plot_row = Grid7_plot_row
6136 0 : s% pg% Grid7_plot_rowspan = Grid7_plot_rowspan
6137 0 : s% pg% Grid7_plot_col = Grid7_plot_col
6138 0 : s% pg% Grid7_plot_colspan = Grid7_plot_colspan
6139 0 : s% pg% Grid7_plot_pad_left = Grid7_plot_pad_left
6140 0 : s% pg% Grid7_plot_pad_right = Grid7_plot_pad_right
6141 0 : s% pg% Grid7_plot_pad_top = Grid7_plot_pad_top
6142 0 : s% pg% Grid7_plot_pad_bot = Grid7_plot_pad_bot
6143 0 : s% pg% Grid7_file_flag = Grid7_file_flag
6144 0 : s% pg% Grid7_file_dir = Grid7_file_dir
6145 0 : s% pg% Grid7_file_prefix = Grid7_file_prefix
6146 0 : s% pg% Grid7_file_interval = Grid7_file_interval
6147 0 : s% pg% Grid7_file_width = Grid7_file_width
6148 0 : s% pg% Grid7_file_aspect_ratio = Grid7_file_aspect_ratio
6149 :
6150 0 : s% pg% Grid8_win_flag = Grid8_win_flag
6151 0 : s% pg% Grid8_win_width = Grid8_win_width
6152 0 : s% pg% Grid8_win_aspect_ratio = Grid8_win_aspect_ratio
6153 0 : s% pg% Grid8_xleft = Grid8_xleft
6154 0 : s% pg% Grid8_xright = Grid8_xright
6155 0 : s% pg% Grid8_ybot = Grid8_ybot
6156 0 : s% pg% Grid8_ytop = Grid8_ytop
6157 0 : s% pg% Grid8_title = Grid8_title
6158 0 : s% pg% Grid8_txt_scale_factor = Grid8_txt_scale_factor
6159 0 : s% pg% Grid8_num_cols = Grid8_num_cols
6160 0 : s% pg% Grid8_num_rows = Grid8_num_rows
6161 0 : s% pg% Grid8_num_plots = Grid8_num_plots
6162 0 : s% pg% Grid8_plot_name = Grid8_plot_name
6163 0 : s% pg% Grid8_plot_row = Grid8_plot_row
6164 0 : s% pg% Grid8_plot_rowspan = Grid8_plot_rowspan
6165 0 : s% pg% Grid8_plot_col = Grid8_plot_col
6166 0 : s% pg% Grid8_plot_colspan = Grid8_plot_colspan
6167 0 : s% pg% Grid8_plot_pad_left = Grid8_plot_pad_left
6168 0 : s% pg% Grid8_plot_pad_right = Grid8_plot_pad_right
6169 0 : s% pg% Grid8_plot_pad_top = Grid8_plot_pad_top
6170 0 : s% pg% Grid8_plot_pad_bot = Grid8_plot_pad_bot
6171 0 : s% pg% Grid8_file_flag = Grid8_file_flag
6172 0 : s% pg% Grid8_file_dir = Grid8_file_dir
6173 0 : s% pg% Grid8_file_prefix = Grid8_file_prefix
6174 0 : s% pg% Grid8_file_interval = Grid8_file_interval
6175 0 : s% pg% Grid8_file_width = Grid8_file_width
6176 0 : s% pg% Grid8_file_aspect_ratio = Grid8_file_aspect_ratio
6177 :
6178 0 : s% pg% Grid9_win_flag = Grid9_win_flag
6179 0 : s% pg% Grid9_win_width = Grid9_win_width
6180 0 : s% pg% Grid9_win_aspect_ratio = Grid9_win_aspect_ratio
6181 0 : s% pg% Grid9_xleft = Grid9_xleft
6182 0 : s% pg% Grid9_xright = Grid9_xright
6183 0 : s% pg% Grid9_ybot = Grid9_ybot
6184 0 : s% pg% Grid9_ytop = Grid9_ytop
6185 0 : s% pg% Grid9_title = Grid9_title
6186 0 : s% pg% Grid9_txt_scale_factor = Grid9_txt_scale_factor
6187 0 : s% pg% Grid9_num_cols = Grid9_num_cols
6188 0 : s% pg% Grid9_num_rows = Grid9_num_rows
6189 0 : s% pg% Grid9_num_plots = Grid9_num_plots
6190 0 : s% pg% Grid9_plot_name = Grid9_plot_name
6191 0 : s% pg% Grid9_plot_row = Grid9_plot_row
6192 0 : s% pg% Grid9_plot_rowspan = Grid9_plot_rowspan
6193 0 : s% pg% Grid9_plot_col = Grid9_plot_col
6194 0 : s% pg% Grid9_plot_colspan = Grid9_plot_colspan
6195 0 : s% pg% Grid9_plot_pad_left = Grid9_plot_pad_left
6196 0 : s% pg% Grid9_plot_pad_right = Grid9_plot_pad_right
6197 0 : s% pg% Grid9_plot_pad_top = Grid9_plot_pad_top
6198 0 : s% pg% Grid9_plot_pad_bot = Grid9_plot_pad_bot
6199 0 : s% pg% Grid9_file_flag = Grid9_file_flag
6200 0 : s% pg% Grid9_file_dir = Grid9_file_dir
6201 0 : s% pg% Grid9_file_prefix = Grid9_file_prefix
6202 0 : s% pg% Grid9_file_interval = Grid9_file_interval
6203 0 : s% pg% Grid9_file_width = Grid9_file_width
6204 0 : s% pg% Grid9_file_aspect_ratio = Grid9_file_aspect_ratio
6205 :
6206 :
6207 0 : s% pg% annotation1_ci = annotation1_ci
6208 0 : s% pg% annotation1_ch = annotation1_ch
6209 0 : s% pg% annotation1_lw = annotation1_lw
6210 0 : s% pg% annotation1_cf = annotation1_cf
6211 0 : s% pg% annotation1_text = annotation1_text
6212 0 : s% pg% annotation1_side = annotation1_side
6213 0 : s% pg% annotation1_disp = annotation1_disp
6214 0 : s% pg% annotation1_coord = annotation1_coord
6215 0 : s% pg% annotation1_fjust = annotation1_fjust
6216 :
6217 0 : s% pg% annotation2_ci = annotation2_ci
6218 0 : s% pg% annotation2_ch = annotation2_ch
6219 0 : s% pg% annotation2_lw = annotation2_lw
6220 0 : s% pg% annotation2_cf = annotation2_cf
6221 0 : s% pg% annotation2_text = annotation2_text
6222 0 : s% pg% annotation2_side = annotation2_side
6223 0 : s% pg% annotation2_disp = annotation2_disp
6224 0 : s% pg% annotation2_coord = annotation2_coord
6225 0 : s% pg% annotation2_fjust = annotation2_fjust
6226 :
6227 0 : s% pg% annotation3_ci = annotation3_ci
6228 0 : s% pg% annotation3_ch = annotation3_ch
6229 0 : s% pg% annotation3_lw = annotation3_lw
6230 0 : s% pg% annotation3_cf = annotation3_cf
6231 0 : s% pg% annotation3_text = annotation3_text
6232 0 : s% pg% annotation3_side = annotation3_side
6233 0 : s% pg% annotation3_disp = annotation3_disp
6234 0 : s% pg% annotation3_coord = annotation3_coord
6235 0 : s% pg% annotation3_fjust = annotation3_fjust
6236 :
6237 0 : s% pg% read_extra_pgstar_inlist = read_extra_pgstar_inlist
6238 0 : s% pg% extra_pgstar_inlist_name = extra_pgstar_inlist_name
6239 :
6240 0 : end subroutine store_pgstar_controls
6241 :
6242 :
6243 0 : subroutine set_default_pgstar_controls
6244 :
6245 0 : Text_Summary1_name = ''
6246 0 : Text_Summary2_name = ''
6247 0 : Text_Summary3_name = ''
6248 0 : Text_Summary4_name = ''
6249 0 : Text_Summary5_name = ''
6250 0 : Text_Summary6_name = ''
6251 0 : Text_Summary7_name = ''
6252 0 : Text_Summary8_name = ''
6253 0 : Text_Summary9_name = ''
6254 :
6255 0 : profile_mass_point_q(:) = 0
6256 0 : profile_mass_point_color_index(:) = 0
6257 0 : profile_mass_point_symbol(:) = 0
6258 0 : profile_mass_point_symbol_scale(:) = 0
6259 0 : profile_mass_point_str(:) = ''
6260 0 : profile_mass_point_str_clr(:) = 0
6261 0 : profile_mass_point_str_scale(:) = 0
6262 :
6263 0 : Profile_Panels1_yaxis_name(:) = ''
6264 0 : Profile_Panels1_other_yaxis_name(:) = ''
6265 0 : Profile_Panels2_yaxis_name(:) = ''
6266 0 : Profile_Panels2_other_yaxis_name(:) = ''
6267 0 : Profile_Panels3_yaxis_name(:) = ''
6268 0 : Profile_Panels3_other_yaxis_name(:) = ''
6269 0 : Profile_Panels4_yaxis_name(:) = ''
6270 0 : Profile_Panels4_other_yaxis_name(:) = ''
6271 0 : Profile_Panels5_yaxis_name(:) = ''
6272 0 : Profile_Panels5_other_yaxis_name(:) = ''
6273 0 : Profile_Panels6_yaxis_name(:) = ''
6274 0 : Profile_Panels6_other_yaxis_name(:) = ''
6275 0 : Profile_Panels7_yaxis_name(:) = ''
6276 0 : Profile_Panels7_other_yaxis_name(:) = ''
6277 0 : Profile_Panels8_yaxis_name(:) = ''
6278 0 : Profile_Panels8_other_yaxis_name(:) = ''
6279 0 : Profile_Panels9_yaxis_name(:) = ''
6280 0 : Profile_Panels9_other_yaxis_name(:) = ''
6281 :
6282 0 : History_Panels1_yaxis_name(:) = ''
6283 0 : History_Panels1_other_yaxis_name(:) = ''
6284 0 : History_Panels1_yaxis_reversed(:) = .false.
6285 0 : History_Panels1_other_yaxis_reversed(:) = .false.
6286 0 : History_Panels1_yaxis_log(:) = .false.
6287 0 : History_Panels1_other_yaxis_log(:) = .false.
6288 0 : History_Panels1_same_yaxis_range(:) = .false.
6289 0 : History_Panels1_ymin(:) = 0
6290 0 : History_Panels1_other_ymin(:) = 0
6291 0 : History_Panels1_ymax(:) = 0
6292 0 : History_Panels1_other_ymax(:) = 0
6293 0 : History_Panels1_ymargin(:) = 0
6294 0 : History_Panels1_other_ymargin(:) = 0
6295 0 : History_Panels1_dymin(:) = 0
6296 0 : History_Panels1_other_dymin(:) = 0
6297 0 : History_Panels1_points_name(:) = ''
6298 :
6299 0 : History_Panels2_yaxis_name(:) = ''
6300 0 : History_Panels2_other_yaxis_name(:) = ''
6301 0 : History_Panels2_yaxis_reversed(:) = .false.
6302 0 : History_Panels2_other_yaxis_reversed(:) = .false.
6303 0 : History_Panels2_yaxis_log(:) = .false.
6304 0 : History_Panels2_other_yaxis_log(:) = .false.
6305 0 : History_Panels2_same_yaxis_range(:) = .false.
6306 0 : History_Panels2_ymin(:) = 0
6307 0 : History_Panels2_other_ymin(:) = 0
6308 0 : History_Panels2_ymax(:) = 0
6309 0 : History_Panels2_other_ymax(:) = 0
6310 0 : History_Panels2_ymargin(:) = 0
6311 0 : History_Panels2_other_ymargin(:) = 0
6312 0 : History_Panels2_dymin(:) = 0
6313 0 : History_Panels2_other_dymin(:) = 0
6314 0 : History_Panels2_points_name(:) = ''
6315 :
6316 0 : History_Panels3_yaxis_name(:) = ''
6317 0 : History_Panels3_other_yaxis_name(:) = ''
6318 0 : History_Panels3_yaxis_reversed(:) = .false.
6319 0 : History_Panels3_other_yaxis_reversed(:) = .false.
6320 0 : History_Panels3_yaxis_log(:) = .false.
6321 0 : History_Panels3_other_yaxis_log(:) = .false.
6322 0 : History_Panels3_same_yaxis_range(:) = .false.
6323 0 : History_Panels3_ymin(:) = 0
6324 0 : History_Panels3_other_ymin(:) = 0
6325 0 : History_Panels3_ymax(:) = 0
6326 0 : History_Panels3_other_ymax(:) = 0
6327 0 : History_Panels3_ymargin(:) = 0
6328 0 : History_Panels3_other_ymargin(:) = 0
6329 0 : History_Panels3_dymin(:) = 0
6330 0 : History_Panels3_other_dymin(:) = 0
6331 0 : History_Panels3_points_name(:) = ''
6332 :
6333 0 : History_Panels4_yaxis_name(:) = ''
6334 0 : History_Panels4_other_yaxis_name(:) = ''
6335 0 : History_Panels4_yaxis_reversed(:) = .false.
6336 0 : History_Panels4_other_yaxis_reversed(:) = .false.
6337 0 : History_Panels4_yaxis_log(:) = .false.
6338 0 : History_Panels4_other_yaxis_log(:) = .false.
6339 0 : History_Panels4_same_yaxis_range(:) = .false.
6340 0 : History_Panels4_ymin(:) = 0
6341 0 : History_Panels4_other_ymin(:) = 0
6342 0 : History_Panels4_ymax(:) = 0
6343 0 : History_Panels4_other_ymax(:) = 0
6344 0 : History_Panels4_ymargin(:) = 0
6345 0 : History_Panels4_other_ymargin(:) = 0
6346 0 : History_Panels4_dymin(:) = 0
6347 0 : History_Panels4_other_dymin(:) = 0
6348 0 : History_Panels4_points_name(:) = ''
6349 :
6350 0 : History_Panels5_yaxis_name(:) = ''
6351 0 : History_Panels5_other_yaxis_name(:) = ''
6352 0 : History_Panels5_yaxis_reversed(:) = .false.
6353 0 : History_Panels5_other_yaxis_reversed(:) = .false.
6354 0 : History_Panels5_yaxis_log(:) = .false.
6355 0 : History_Panels5_other_yaxis_log(:) = .false.
6356 0 : History_Panels5_same_yaxis_range(:) = .false.
6357 0 : History_Panels5_ymin(:) = 0
6358 0 : History_Panels5_other_ymin(:) = 0
6359 0 : History_Panels5_ymax(:) = 0
6360 0 : History_Panels5_other_ymax(:) = 0
6361 0 : History_Panels5_ymargin(:) = 0
6362 0 : History_Panels5_other_ymargin(:) = 0
6363 0 : History_Panels5_dymin(:) = 0
6364 0 : History_Panels5_other_dymin(:) = 0
6365 0 : History_Panels5_points_name(:) = ''
6366 :
6367 0 : History_Panels6_yaxis_name(:) = ''
6368 0 : History_Panels6_other_yaxis_name(:) = ''
6369 0 : History_Panels6_yaxis_reversed(:) = .false.
6370 0 : History_Panels6_other_yaxis_reversed(:) = .false.
6371 0 : History_Panels6_yaxis_log(:) = .false.
6372 0 : History_Panels6_other_yaxis_log(:) = .false.
6373 0 : History_Panels6_same_yaxis_range(:) = .false.
6374 0 : History_Panels6_ymin(:) = 0
6375 0 : History_Panels6_other_ymin(:) = 0
6376 0 : History_Panels6_ymax(:) = 0
6377 0 : History_Panels6_other_ymax(:) = 0
6378 0 : History_Panels6_ymargin(:) = 0
6379 0 : History_Panels6_other_ymargin(:) = 0
6380 0 : History_Panels6_dymin(:) = 0
6381 0 : History_Panels6_other_dymin(:) = 0
6382 0 : History_Panels6_points_name(:) = ''
6383 :
6384 0 : History_Panels7_yaxis_name(:) = ''
6385 0 : History_Panels7_other_yaxis_name(:) = ''
6386 0 : History_Panels7_yaxis_reversed(:) = .false.
6387 0 : History_Panels7_other_yaxis_reversed(:) = .false.
6388 0 : History_Panels7_yaxis_log(:) = .false.
6389 0 : History_Panels7_other_yaxis_log(:) = .false.
6390 0 : History_Panels7_same_yaxis_range(:) = .false.
6391 0 : History_Panels7_ymin(:) = 0
6392 0 : History_Panels7_other_ymin(:) = 0
6393 0 : History_Panels7_ymax(:) = 0
6394 0 : History_Panels7_other_ymax(:) = 0
6395 0 : History_Panels7_ymargin(:) = 0
6396 0 : History_Panels7_other_ymargin(:) = 0
6397 0 : History_Panels7_dymin(:) = 0
6398 0 : History_Panels7_other_dymin(:) = 0
6399 0 : History_Panels7_points_name(:) = ''
6400 :
6401 0 : History_Panels8_yaxis_name(:) = ''
6402 0 : History_Panels8_other_yaxis_name(:) = ''
6403 0 : History_Panels8_yaxis_reversed(:) = .false.
6404 0 : History_Panels8_other_yaxis_reversed(:) = .false.
6405 0 : History_Panels8_yaxis_log(:) = .false.
6406 0 : History_Panels8_other_yaxis_log(:) = .false.
6407 0 : History_Panels8_same_yaxis_range(:) = .false.
6408 0 : History_Panels8_ymin(:) = 0
6409 0 : History_Panels8_other_ymin(:) = 0
6410 0 : History_Panels8_ymax(:) = 0
6411 0 : History_Panels8_other_ymax(:) = 0
6412 0 : History_Panels8_ymargin(:) = 0
6413 0 : History_Panels8_other_ymargin(:) = 0
6414 0 : History_Panels8_dymin(:) = 0
6415 0 : History_Panels8_other_dymin(:) = 0
6416 0 : History_Panels8_points_name(:) = ''
6417 :
6418 0 : History_Panels9_yaxis_name(:) = ''
6419 0 : History_Panels9_other_yaxis_name(:) = ''
6420 0 : History_Panels9_yaxis_reversed(:) = .false.
6421 0 : History_Panels9_other_yaxis_reversed(:) = .false.
6422 0 : History_Panels9_yaxis_log(:) = .false.
6423 0 : History_Panels9_other_yaxis_log(:) = .false.
6424 0 : History_Panels9_same_yaxis_range(:) = .false.
6425 0 : History_Panels9_ymin(:) = 0
6426 0 : History_Panels9_other_ymin(:) = 0
6427 0 : History_Panels9_ymax(:) = 0
6428 0 : History_Panels9_other_ymax(:) = 0
6429 0 : History_Panels9_ymargin(:) = 0
6430 0 : History_Panels9_other_ymargin(:) = 0
6431 0 : History_Panels9_dymin(:) = 0
6432 0 : History_Panels9_other_dymin(:) = 0
6433 0 : History_Panels9_points_name(:) = ''
6434 :
6435 0 : Color_Magnitude1_yaxis1_name(:) = ''
6436 0 : Color_Magnitude1_other_yaxis1_name(:) = ''
6437 0 : Color_Magnitude1_yaxis2_name(:) = ''
6438 0 : Color_Magnitude1_other_yaxis2_name(:) = ''
6439 0 : Color_Magnitude1_yaxis_reversed(:) = .false.
6440 0 : Color_Magnitude1_other_yaxis_reversed(:) = .false.
6441 0 : Color_Magnitude1_yaxis_log(:) = .false.
6442 0 : Color_Magnitude1_other_yaxis_log(:) = .false.
6443 0 : Color_Magnitude1_ymin(:) = 0
6444 0 : Color_Magnitude1_other_ymin(:) = 0
6445 0 : Color_Magnitude1_ymax(:) = 0
6446 0 : Color_Magnitude1_other_ymax(:) = 0
6447 0 : Color_Magnitude1_ymargin(:) = 0
6448 0 : Color_Magnitude1_other_ymargin(:) = 0
6449 0 : Color_Magnitude1_dymin(:) = 0
6450 0 : Color_Magnitude1_other_dymin(:) = 0
6451 :
6452 0 : Color_Magnitude2_yaxis1_name(:) = ''
6453 0 : Color_Magnitude2_other_yaxis1_name(:) = ''
6454 0 : Color_Magnitude2_yaxis2_name(:) = ''
6455 0 : Color_Magnitude2_other_yaxis2_name(:) = ''
6456 0 : Color_Magnitude2_yaxis_reversed(:) = .false.
6457 0 : Color_Magnitude2_other_yaxis_reversed(:) = .false.
6458 0 : Color_Magnitude2_yaxis_log(:) = .false.
6459 0 : Color_Magnitude2_other_yaxis_log(:) = .false.
6460 0 : Color_Magnitude2_ymin(:) = 0
6461 0 : Color_Magnitude2_other_ymin(:) = 0
6462 0 : Color_Magnitude2_ymax(:) = 0
6463 0 : Color_Magnitude2_other_ymax(:) = 0
6464 0 : Color_Magnitude2_ymargin(:) = 0
6465 0 : Color_Magnitude2_other_ymargin(:) = 0
6466 0 : Color_Magnitude2_dymin(:) = 0
6467 0 : Color_Magnitude2_other_dymin(:) = 0
6468 :
6469 0 : Color_Magnitude3_yaxis1_name(:) = ''
6470 0 : Color_Magnitude3_other_yaxis1_name(:) = ''
6471 0 : Color_Magnitude3_yaxis2_name(:) = ''
6472 0 : Color_Magnitude3_other_yaxis2_name(:) = ''
6473 0 : Color_Magnitude3_yaxis_reversed(:) = .false.
6474 0 : Color_Magnitude3_other_yaxis_reversed(:) = .false.
6475 0 : Color_Magnitude3_yaxis_log(:) = .false.
6476 0 : Color_Magnitude3_other_yaxis_log(:) = .false.
6477 0 : Color_Magnitude3_ymin(:) = 0
6478 0 : Color_Magnitude3_other_ymin(:) = 0
6479 0 : Color_Magnitude3_ymax(:) = 0
6480 0 : Color_Magnitude3_other_ymax(:) = 0
6481 0 : Color_Magnitude3_ymargin(:) = 0
6482 0 : Color_Magnitude3_other_ymargin(:) = 0
6483 0 : Color_Magnitude3_dymin(:) = 0
6484 0 : Color_Magnitude3_other_dymin(:) = 0
6485 :
6486 0 : Color_Magnitude4_yaxis1_name(:) = ''
6487 0 : Color_Magnitude4_other_yaxis1_name(:) = ''
6488 0 : Color_Magnitude4_yaxis2_name(:) = ''
6489 0 : Color_Magnitude4_other_yaxis2_name(:) = ''
6490 0 : Color_Magnitude4_yaxis_reversed(:) = .false.
6491 0 : Color_Magnitude4_other_yaxis_reversed(:) = .false.
6492 0 : Color_Magnitude4_yaxis_log(:) = .false.
6493 0 : Color_Magnitude4_other_yaxis_log(:) = .false.
6494 0 : Color_Magnitude4_ymin(:) = 0
6495 0 : Color_Magnitude4_other_ymin(:) = 0
6496 0 : Color_Magnitude4_ymax(:) = 0
6497 0 : Color_Magnitude4_other_ymax(:) = 0
6498 0 : Color_Magnitude4_ymargin(:) = 0
6499 0 : Color_Magnitude4_other_ymargin(:) = 0
6500 0 : Color_Magnitude4_dymin(:) = 0
6501 0 : Color_Magnitude4_other_dymin(:) = 0
6502 :
6503 0 : Color_Magnitude5_yaxis1_name(:) = ''
6504 0 : Color_Magnitude5_other_yaxis1_name(:) = ''
6505 0 : Color_Magnitude5_yaxis2_name(:) = ''
6506 0 : Color_Magnitude5_other_yaxis2_name(:) = ''
6507 0 : Color_Magnitude5_yaxis_reversed(:) = .false.
6508 0 : Color_Magnitude5_other_yaxis_reversed(:) = .false.
6509 0 : Color_Magnitude5_yaxis_log(:) = .false.
6510 0 : Color_Magnitude5_other_yaxis_log(:) = .false.
6511 0 : Color_Magnitude5_ymin(:) = 0
6512 0 : Color_Magnitude5_other_ymin(:) = 0
6513 0 : Color_Magnitude5_ymax(:) = 0
6514 0 : Color_Magnitude5_other_ymax(:) = 0
6515 0 : Color_Magnitude5_ymargin(:) = 0
6516 0 : Color_Magnitude5_other_ymargin(:) = 0
6517 0 : Color_Magnitude5_dymin(:) = 0
6518 0 : Color_Magnitude5_other_dymin(:) = 0
6519 :
6520 0 : Color_Magnitude6_yaxis1_name(:) = ''
6521 0 : Color_Magnitude6_other_yaxis1_name(:) = ''
6522 0 : Color_Magnitude6_yaxis2_name(:) = ''
6523 0 : Color_Magnitude6_other_yaxis2_name(:) = ''
6524 0 : Color_Magnitude6_yaxis_reversed(:) = .false.
6525 0 : Color_Magnitude6_other_yaxis_reversed(:) = .false.
6526 0 : Color_Magnitude6_yaxis_log(:) = .false.
6527 0 : Color_Magnitude6_other_yaxis_log(:) = .false.
6528 0 : Color_Magnitude6_ymin(:) = 0
6529 0 : Color_Magnitude6_other_ymin(:) = 0
6530 0 : Color_Magnitude6_ymax(:) = 0
6531 0 : Color_Magnitude6_other_ymax(:) = 0
6532 0 : Color_Magnitude6_ymargin(:) = 0
6533 0 : Color_Magnitude6_other_ymargin(:) = 0
6534 0 : Color_Magnitude6_dymin(:) = 0
6535 0 : Color_Magnitude6_other_dymin(:) = 0
6536 :
6537 0 : Color_Magnitude7_yaxis1_name(:) = ''
6538 0 : Color_Magnitude7_other_yaxis1_name(:) = ''
6539 0 : Color_Magnitude7_yaxis2_name(:) = ''
6540 0 : Color_Magnitude7_other_yaxis2_name(:) = ''
6541 0 : Color_Magnitude7_yaxis_reversed(:) = .false.
6542 0 : Color_Magnitude7_other_yaxis_reversed(:) = .false.
6543 0 : Color_Magnitude7_yaxis_log(:) = .false.
6544 0 : Color_Magnitude7_other_yaxis_log(:) = .false.
6545 0 : Color_Magnitude7_ymin(:) = 0
6546 0 : Color_Magnitude7_other_ymin(:) = 0
6547 0 : Color_Magnitude7_ymax(:) = 0
6548 0 : Color_Magnitude7_other_ymax(:) = 0
6549 0 : Color_Magnitude7_ymargin(:) = 0
6550 0 : Color_Magnitude7_other_ymargin(:) = 0
6551 0 : Color_Magnitude7_dymin(:) = 0
6552 0 : Color_Magnitude7_other_dymin(:) = 0
6553 :
6554 0 : Color_Magnitude8_yaxis1_name(:) = ''
6555 0 : Color_Magnitude8_other_yaxis1_name(:) = ''
6556 0 : Color_Magnitude8_yaxis2_name(:) = ''
6557 0 : Color_Magnitude8_other_yaxis2_name(:) = ''
6558 0 : Color_Magnitude8_yaxis_reversed(:) = .false.
6559 0 : Color_Magnitude8_other_yaxis_reversed(:) = .false.
6560 0 : Color_Magnitude8_yaxis_log(:) = .false.
6561 0 : Color_Magnitude8_other_yaxis_log(:) = .false.
6562 0 : Color_Magnitude8_ymin(:) = 0
6563 0 : Color_Magnitude8_other_ymin(:) = 0
6564 0 : Color_Magnitude8_ymax(:) = 0
6565 0 : Color_Magnitude8_other_ymax(:) = 0
6566 0 : Color_Magnitude8_ymargin(:) = 0
6567 0 : Color_Magnitude8_other_ymargin(:) = 0
6568 0 : Color_Magnitude8_dymin(:) = 0
6569 0 : Color_Magnitude8_other_dymin(:) = 0
6570 :
6571 0 : Color_Magnitude9_yaxis1_name(:) = ''
6572 0 : Color_Magnitude9_other_yaxis1_name(:) = ''
6573 0 : Color_Magnitude9_yaxis2_name(:) = ''
6574 0 : Color_Magnitude9_other_yaxis2_name(:) = ''
6575 0 : Color_Magnitude9_yaxis_reversed(:) = .false.
6576 0 : Color_Magnitude9_other_yaxis_reversed(:) = .false.
6577 0 : Color_Magnitude9_yaxis_log(:) = .false.
6578 0 : Color_Magnitude9_other_yaxis_log(:) = .false.
6579 0 : Color_Magnitude9_ymin(:) = 0
6580 0 : Color_Magnitude9_other_ymin(:) = 0
6581 0 : Color_Magnitude9_ymax(:) = 0
6582 0 : Color_Magnitude9_other_ymax(:) = 0
6583 0 : Color_Magnitude9_ymargin(:) = 0
6584 0 : Color_Magnitude9_other_ymargin(:) = 0
6585 0 : Color_Magnitude9_dymin(:) = 0
6586 0 : Color_Magnitude9_other_dymin(:) = 0
6587 :
6588 0 : Summary_History_name(:) = ''
6589 0 : Summary_History_legend(:) = ''
6590 :
6591 0 : Grid1_plot_name(:) = ''
6592 0 : Grid1_txt_scale_factor(:) = 1
6593 0 : Grid1_plot_pad_left(:) = 0
6594 0 : Grid1_plot_pad_right(:) = 0
6595 0 : Grid1_plot_pad_top(:) = 0
6596 0 : Grid1_plot_pad_bot(:) = 0
6597 0 : Grid1_plot_row(:) = 0
6598 0 : Grid1_plot_rowspan(:) = 0
6599 0 : Grid1_plot_col(:) = 0
6600 0 : Grid1_plot_colspan(:) = 0
6601 :
6602 0 : Grid2_plot_name(:) = ''
6603 0 : Grid2_txt_scale_factor(:) = 1
6604 0 : Grid2_plot_pad_left(:) = 0
6605 0 : Grid2_plot_pad_right(:) = 0
6606 0 : Grid2_plot_pad_top(:) = 0
6607 0 : Grid2_plot_pad_bot(:) = 0
6608 0 : Grid2_plot_row(:) = 0
6609 0 : Grid2_plot_rowspan(:) = 0
6610 0 : Grid2_plot_col(:) = 0
6611 0 : Grid2_plot_colspan(:) = 0
6612 :
6613 0 : Grid3_plot_name(:) = ''
6614 0 : Grid3_txt_scale_factor(:) = 1
6615 0 : Grid3_plot_pad_left(:) = 0
6616 0 : Grid3_plot_pad_right(:) = 0
6617 0 : Grid3_plot_pad_top(:) = 0
6618 0 : Grid3_plot_pad_bot(:) = 0
6619 0 : Grid3_plot_row(:) = 0
6620 0 : Grid3_plot_rowspan(:) = 0
6621 0 : Grid3_plot_col(:) = 0
6622 0 : Grid3_plot_colspan(:) = 0
6623 :
6624 0 : Grid4_plot_name(:) = ''
6625 0 : Grid4_txt_scale_factor(:) = 1
6626 0 : Grid4_plot_pad_left(:) = 0
6627 0 : Grid4_plot_pad_right(:) = 0
6628 0 : Grid4_plot_pad_top(:) = 0
6629 0 : Grid4_plot_pad_bot(:) = 0
6630 0 : Grid4_plot_row(:) = 0
6631 0 : Grid4_plot_rowspan(:) = 0
6632 0 : Grid4_plot_col(:) = 0
6633 0 : Grid4_plot_colspan(:) = 0
6634 :
6635 0 : Grid5_plot_name(:) = ''
6636 0 : Grid5_txt_scale_factor(:) = 1
6637 0 : Grid5_plot_pad_left(:) = 0
6638 0 : Grid5_plot_pad_right(:) = 0
6639 0 : Grid5_plot_pad_top(:) = 0
6640 0 : Grid5_plot_pad_bot(:) = 0
6641 0 : Grid5_plot_row(:) = 0
6642 0 : Grid5_plot_rowspan(:) = 0
6643 0 : Grid5_plot_col(:) = 0
6644 0 : Grid5_plot_colspan(:) = 0
6645 :
6646 0 : Grid6_plot_name(:) = ''
6647 0 : Grid6_txt_scale_factor(:) = 1
6648 0 : Grid6_plot_pad_left(:) = 0
6649 0 : Grid6_plot_pad_right(:) = 0
6650 0 : Grid6_plot_pad_top(:) = 0
6651 0 : Grid6_plot_pad_bot(:) = 0
6652 0 : Grid6_plot_row(:) = 0
6653 0 : Grid6_plot_rowspan(:) = 0
6654 0 : Grid6_plot_col(:) = 0
6655 0 : Grid6_plot_colspan(:) = 0
6656 :
6657 0 : Grid7_plot_name(:) = ''
6658 0 : Grid7_txt_scale_factor(:) = 1
6659 0 : Grid7_plot_pad_left(:) = 0
6660 0 : Grid7_plot_pad_right(:) = 0
6661 0 : Grid7_plot_pad_top(:) = 0
6662 0 : Grid7_plot_pad_bot(:) = 0
6663 0 : Grid7_plot_row(:) = 0
6664 0 : Grid7_plot_rowspan(:) = 0
6665 0 : Grid7_plot_col(:) = 0
6666 0 : Grid7_plot_colspan(:) = 0
6667 :
6668 0 : Grid8_plot_name(:) = ''
6669 0 : Grid8_txt_scale_factor(:) = 1
6670 0 : Grid8_plot_pad_left(:) = 0
6671 0 : Grid8_plot_pad_right(:) = 0
6672 0 : Grid8_plot_pad_top(:) = 0
6673 0 : Grid8_plot_pad_bot(:) = 0
6674 0 : Grid8_plot_row(:) = 0
6675 0 : Grid8_plot_rowspan(:) = 0
6676 0 : Grid8_plot_col(:) = 0
6677 0 : Grid8_plot_colspan(:) = 0
6678 :
6679 0 : Grid9_plot_name(:) = ''
6680 0 : Grid9_txt_scale_factor(:) = 1
6681 0 : Grid9_plot_pad_left(:) = 0
6682 0 : Grid9_plot_pad_right(:) = 0
6683 0 : Grid9_plot_pad_top(:) = 0
6684 0 : Grid9_plot_pad_bot(:) = 0
6685 0 : Grid9_plot_row(:) = 0
6686 0 : Grid9_plot_rowspan(:) = 0
6687 0 : Grid9_plot_col(:) = 0
6688 0 : Grid9_plot_colspan(:) = 0
6689 :
6690 : include 'pgstar.defaults'
6691 :
6692 0 : end subroutine set_default_pgstar_controls
6693 :
6694 : end module pgstar_ctrls_io
|