including stride and block for selecting hyperslab

This commit is contained in:
2022-02-07 14:01:19 +01:00
parent 20f3fb19af
commit f228fde6f7
2 changed files with 24 additions and 7 deletions

View File

@ -213,8 +213,9 @@ void DataProcessor::CreateVirtualFile(
if (virtualFile_) {
delete virtualFile_;
}
gotthard25um = ((detectorType_ == GOTTHARD || detectorType_ == GOTTHARD2) &&
(numModX * numModY) == 2);
bool gotthard25um =
((detectorType_ == GOTTHARD || detectorType_ == GOTTHARD2) &&
(numModX * numModY) == 2);
virtualFile_ = new HDF5VirtualFile(hdf5Lib, gotthard25um);
uint64_t numImagesProcessed = GetProcessedIndex() + 1;