Skip to content
Snippets Groups Projects
Commit c6ee541f authored by Johannes Pfeifer's avatar Johannes Pfeifer Committed by Houtan Bastani
Browse files

Correct setting of plot_shock_decomp.type

Closes #1548

(cherry picked from commit ff1ae57e)
parent 8f02ba04
Branches
Tags
No related merge requests found
......@@ -3047,16 +3047,16 @@ o_psd_fig_name : FIG_NAME EQUAL filename { driver.option_str("plot_shock_decomp.
o_psd_type : TYPE EQUAL QOQ
{ driver.option_str("plot_shock_decomp.type", "qoq"); }
| TYPE EQUAL YOY
{ driver.option_str("plot_shock_decomp.type", "qoq"); }
{ driver.option_str("plot_shock_decomp.type", "yoy"); }
| TYPE EQUAL AOA
{ driver.option_str("plot_shock_decomp.type", "qoq"); }
{ driver.option_str("plot_shock_decomp.type", "aoa"); }
;
o_icd_type : TYPE EQUAL QOQ
{ driver.option_str("initial_condition_decomp.type", "qoq"); }
| TYPE EQUAL YOY
{ driver.option_str("initial_condition_decomp.type", "qoq"); }
{ driver.option_str("initial_condition_decomp.type", "yoy"); }
| TYPE EQUAL AOA
{ driver.option_str("initial_condition_decomp.type", "qoq"); }
{ driver.option_str("initial_condition_decomp.type", "aoa"); }
;
o_icd_plot_init_date : PLOT_INIT_DATE EQUAL date_expr { driver.option_date("initial_condition_decomp.plot_init_date", $3); } ;
o_icd_plot_end_date : PLOT_END_DATE EQUAL date_expr { driver.option_date("initial_condition_decomp.plot_end_date", $3); } ;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment