From 2bad63aea638ca77e1ac592a4189a36634beea18 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 22 Feb 2013 13:01:40 -0500 Subject: [PATCH] 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. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.26.2