diff --git a/python_tools/void_python_tools/plotting/plotDefs.py b/python_tools/void_python_tools/plotting/plotDefs.py index 9872fc8..1980cdc 100644 --- a/python_tools/void_python_tools/plotting/plotDefs.py +++ b/python_tools/void_python_tools/plotting/plotDefs.py @@ -20,9 +20,8 @@ LIGHT_SPEED = 299792.458 colorList = ['r', 'b', 'g', 'y', 'c', 'm', - 'brown', 'grey', - 'darkred', 'orange', 'pink', 'darkblue', - 'lightblue', 'chocolate', + 'darkred', 'grey', + 'orange', 'darkblue', 'indigo', 'lightseagreen', 'maroon', 'olive', 'royalblue', 'palevioletred', 'seagreen', 'tomato', 'aquamarine', 'darkslateblue', diff --git a/python_tools/void_python_tools/xcor/xcorlib.py b/python_tools/void_python_tools/xcor/xcorlib.py index d5b489a..d70ebad 100644 --- a/python_tools/void_python_tools/xcor/xcorlib.py +++ b/python_tools/void_python_tools/xcor/xcorlib.py @@ -70,4 +70,4 @@ def shellavg( f, dx, Nmesh, Nbin = 100, xmin = 0., xmax = 1., scale = 'lin' ): fm = np.histogram(x, bins = bins, weights = f)[0]/Nm fs = np.sqrt((np.histogram(x, bins = bins, weights = f**2)[0]/Nm - fm**2)/(Nm-1)) - return (Nm, xm, fm, fs) \ No newline at end of file + return (Nm, xm, fm, fs)