From: W. Trevor King Date: Fri, 22 Feb 2013 18:01:40 +0000 (-0500) Subject: Makefile: Use the cyclic 'hsv' color map for angle-vs-y0-E.png X-Git-Url: http://git.tremily.us/?p=assignment-template.git;a=commitdiff_plain;h=refs%2Fheads%2Fphys305%2Fgaussian-bumps Makefile: Use the cyclic 'hsv' color map for angle-vs-y0-E.png This avoids an artificial discontinuity where the angle wraps around from -pi to +pi. --- diff --git a/Makefile b/Makefile index 7a535c8..d508dbb 100644 --- a/Makefile +++ b/Makefile @@ -192,7 +192,7 @@ time-vs-y0-E.png: plot_image.py final-vs-y0-E.data cut -d ' ' -f 1,2,3 final-vs-y0-E.data | $(PYTHON) ./plot_image.py --xyz -t 'Time vs impact parameter and energy' -o "$@" angle-vs-y0-E.png: plot_image.py final-vs-y0-E.data - cut -d ' ' -f 1,2,4 final-vs-y0-E.data | $(PYTHON) ./plot_image.py --xyz -t 'Angle vs impact parameter and energy' -o "$@" + cut -d ' ' -f 1,2,4 final-vs-y0-E.data | $(PYTHON) ./plot_image.py --xyz -t 'Angle vs impact parameter and energy' --color-map hsv -o "$@" # Pattern rule for compiling object files from C++ source # There is an implicit rule for this in GNU make