diff options
| -rw-r--r-- | fg21sim/configs/00-general.conf.spec | 13 | 
1 files changed, 4 insertions, 9 deletions
| diff --git a/fg21sim/configs/00-general.conf.spec b/fg21sim/configs/00-general.conf.spec index fe67d12..afbbb83 100644 --- a/fg21sim/configs/00-general.conf.spec +++ b/fg21sim/configs/00-general.conf.spec @@ -84,23 +84,18 @@ step = float(default=None, min=0.0)  # Configuration for output products  [output] -# Unit of the sky map pixel value -unit = option("K", default="K") - -  # Filename pattern for the output products, which will be finally  # formatted using `str.format()`.  filename_pattern = string(default="{prefix}_{frequency:06.2f}.fits") -# Whether calculate the checksum for the output file (e.g., "CHECKSUM" -# keyword in FITS header)? -# NOTE: -# FITS checksum calculation may account for half the time to output the data.  # Use single-precision float instead of double (to save spaces)  float32 = boolean(default=True) + +# Whether to calculate the checksum for the output FITS file? +# NOTE: May cost significantly more time on writing FITS file.  checksum = boolean(default=False) -# Whether overwrite existing files +# Whether to overwrite existing files (e.g., maps, catalogs, manifest, ...)  clobber = boolean(default=False)  # Filename of the simulation products manifest (JSON format), which | 
