diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-10-27 11:11:02 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-10-27 11:11:02 +0800 |
commit | 25853d9b6dccfd2c2e728ab6784c13511a922781 (patch) | |
tree | 323f022c90f1b60e376843a7fa8b325864dda780 | |
parent | 3ca78329f6b3df293cfd8b16ea90586cae02c278 (diff) | |
download | fg21sim-25853d9b6dccfd2c2e728ab6784c13511a922781.tar.bz2 |
configs/00-general.conf.spec: Add new option "checksum"
-rw-r--r-- | fg21sim/configs/00-general.conf.spec | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fg21sim/configs/00-general.conf.spec b/fg21sim/configs/00-general.conf.spec index d5a6962..e4a603a 100644 --- a/fg21sim/configs/00-general.conf.spec +++ b/fg21sim/configs/00-general.conf.spec @@ -66,6 +66,12 @@ filetype = option("fits", default="fits") # be finally formatted using `str.format()`. filename_pattern = string(default="{prefix}_{frequency:05.1f}") +# 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. +checksum = boolean(default=False) + # Whether overwrite existing files clobber = boolean(default=False) |