diff options
author | Aaron LI <aly@aaronly.me> | 2017-08-26 11:18:04 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2017-08-26 11:18:04 +0800 |
commit | d7b89bda5845677e4b7bd68f7dceafac0855ca15 (patch) | |
tree | d80b4932de4f518f40914801cb5cb993bde9edc8 | |
parent | 2760364f39688437437beb94215e3690ecc1c02a (diff) | |
download | fg21sim-d7b89bda5845677e4b7bd68f7dceafac0855ca15.tar.bz2 |
configs: Remove unused option "unit", and minor cleanups
-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 |