◆ verifyChecksums()
Compute the HDU and data checksums and compare them to the values in the header.
In case of error, a try {
hdu.verifyChecksums();
} catch (ChecksumError& e) {
if (e.data == ChecksumError::Status::Missing) {
// ...
}
}
|