Skip to content
Snippets Groups Projects
Commit d6eec113 authored by Ansgar Philippsen's avatar Ansgar Philippsen
Browse files

fudged ccp4 to default to little endian when encountering unknown machine stamp

parent 62e4ec63
Branches
Tags
No related merge requests found
......@@ -483,7 +483,9 @@ public:
LOG_DEBUG("CCP4Import: reading little endian data");
return OST_LITTLE_ENDIAN;
} else{
throw(IOException("CCP4Import: Cray, Convex native and Fijitsu VP formats are not supported."));
LOG_VERBOSE("unknown machine stamp (" << (int)float_machst << "), using little endian");
return OST_LITTLE_ENDIAN;
//throw(IOException("CCP4Import: Cray, Convex native and Fijitsu VP formats are not supported."));
}
}
......@@ -495,7 +497,7 @@ public:
LOG_INFO("ccp4 header:");
header_base::Print();
LOG_INFO(" arms: " << arms);
LOG_INFO("arms: " << arms);
}
int lskflag;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment