somewhere

This commit is contained in:
Dhanya Maliakal
2017-02-10 10:08:00 +01:00
parent c89f6e649c
commit b260d08225
18 changed files with 1076 additions and 356 deletions

View File

@ -220,14 +220,17 @@ void UDPBaseImplementation::setFlippedData(int axis, int enable){
void UDPBaseImplementation::setFileFormat(const fileFormat f){
FILE_LOG(logDEBUG) << __AT__ << " starting";
if(f!=HDF5)
fileFormatType = f;
switch(f){
#ifdef HDF5C
else if((f==HDF5) && (myDetectorType == EIGER || myDetectorType == JUNGFRAU))
case HDF5:
fileFormatType = f;
#endif
default:
fileFormatType = f;
break;
}
FILE_LOG(logINFO) << "File Index:" << fileIndex;
FILE_LOG(logINFO) << "File Format:" << getFileFormatType(fileFormatType);
}