diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
commit | fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch) | |
tree | bdda434976bc09c864f2e4fa6f16ba1952b1e555 /noao/rv/rvplots.h | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'noao/rv/rvplots.h')
-rw-r--r-- | noao/rv/rvplots.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/noao/rv/rvplots.h b/noao/rv/rvplots.h new file mode 100644 index 00000000..daee7088 --- /dev/null +++ b/noao/rv/rvplots.h @@ -0,0 +1,25 @@ +# Include file for the FFT Plot structure. A pointer is allocated in +# the main RV structure into this one. This sub-structure contains the +# parameters used for data filter while in Fourier space as well as +# the option flags for filter function types + +define SZ_PLOTSTRUCT 10 + +define RVP_PLOT Memi[RV_PLOTP($1)] # Plot type +define RVP_OVERLAY Memi[RV_PLOTP($1)+1] # Overlay filter? +define RVP_SPLIT_PLOT Memi[RV_PLOTP($1)+2] # Make a split-plot? +define RVP_ONE_IMAGE Memi[RV_PLOTP($1)+3] # What's in one plot? +define RVP_WHEN Memi[RV_PLOTP($1)+4] # Before/after filtering? +define RVP_LOG_SCALE Memi[RV_PLOTP($1)+5] # Log scale it? +define RVP_FFT_ZOOM Memr[P2R(RV_PLOTP($1)+6)] # FFT Zoom factor + +###################### END OF STRUCTURE DEFINITIONS ###################### + +# Plot type flags +define RV_PTYPES "|amplitude|phase|power|" +define AMPLITUDE_PLOT 1 # Plot type +define PHASE_PLOT 2 # Plot type +define POWER_PLOT 3 # Plot type + +define BEFORE 1 # Plot before filtering +define AFTER 2 # Plot after filtering |