//--------------------------------------------------------------------
//SAVEMODE: tell what we are saving
//--------------------------------------------------------------------
//
// TIFF		#save the data as an ome-tiff
// PNG		#save the data as a png
// 

savemode:	PNG

//--------------------------------------------------------------------
//STACKMODE: tell what kind of stacks if any we want, 
//--------------------------------------------------------------------
//
// For TIFF:
//
// SINGLE_TIFFS			#this splits z-series, channels and timepoints as individual tiff files
// Z_STACK_TIFFS		#this splits channels and time as individual z-series tiff stack files
// ZC_STACK_TIFFS		#this splits time as individual z-series and multichannels tiff stack files
// ZCT_STACK_TIFFS		#this creates a single tiff stack for the z-series, mutlichannels and timepoints
//
//
// For PNG:
//
// SINGLE_PNG			#this splits Z, C, T over individual PNGs
// MULTICHANNEL_PNG		#this splits Z, T over individual PNGs and allows for channels in the color component of PNG files
//

stackmode:	SINGLE_PNG