from gavo.helpers import processing


class PreviewMaker(processing.SpectralPreviewMaker):
	sdmId = "build_sdm_data"

	def iterIdentifiers(self):
		for id in processing.SpectralPreviewMaker.iterIdentifiers(self):
			if id.endswith(".mt"):
				yield id


if __name__=="__main__":
	processing.procmain(PreviewMaker, "flashheros/q", "import")

