#!/usr/bin/env python

#
# PuTe
#

xmin = -30.
xmax =  30.
_fwhm = (xmax-xmin)/2.
_x0   = (xmax+xmin)/2.

meshes = [
    ( _x0,   0.1, _fwhm),  # overall mesh
    (   0,  0.05,    4.),  # slightly denser mesh for peaks within 2eV
    (   0, 0.005,   .25),  # n=5 : 27, GS
    (2.05,  0.01,   0.4),  # n=5 : 39-43
    (3.85,  0.02,   0.3),  # n=5 : 46
    ]

x0   = []
dx0  = []
fwhm = []

for center, step, width in meshes:
    x0.append(center)
    dx0.append(step)
    fwhm.append(width)
