You can plot the DOS spectrum with two different methods. There is an option to select the Gauissian or tetrahedron spectrum, but the current version doesn't include it in the GUI.
See
https://docs.quantumatk.com/manual/Types/DensityOfStates/DensityOfStates.html#densityofstates-cYou can plot it such as the below one:
# read DOS object from file
dos = nlread('CNT70.hdf5', DensityOfStates)[0]
# make list of energies
energies = numpy.arange(-14,5,0.01)*eV
# calculate the DOS spectrum with two different methods
dos_t = dos.tetrahedronSpectrum(energies)
dos_g = dos.gaussianSpectrum(energies, broadening = 0.2*eV)
#plot the spectra using pylab
import pylab
pylab.figure()
pylab.plot(energies.inUnitsOf(eV), dos_t.inUnitsOf(eV**-1))
pylab.plot(energies.inUnitsOf(eV), dos_g.inUnitsOf(eV**-1))
pylab.xlabel("Energy (eV)")
pylab.ylabel("DOS (1/eV)")
pylab.show()