Skip to content

Commit

Permalink
mark some required changes/additions, re #10231
Browse files Browse the repository at this point in the history
  • Loading branch information
FedeMPouzols committed Jan 14, 2015
1 parent c0f1bcf commit 112cdd7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Expand Up @@ -30,6 +30,8 @@ struct FITSInfo {
string extension;
string filePath;
bool isFloat;
// TODO: move inside class
// TODO: add key (above), rotation and intensity
};

namespace Mantid {
Expand Down
8 changes: 6 additions & 2 deletions Code/Mantid/Framework/DataHandling/src/LoadFITS.cpp
Expand Up @@ -18,11 +18,15 @@ using Poco::BinaryReader;

namespace {
static const std::string BIT_DEPTH_NAME = "BitDepthName";
static const std::string ROTATION_NAME = "RotationName";
static const std::string AXIS_NAMES_NAME = "AxisNames";
static const std::string IMAGE_KEY_NAME = "ImageKeyName";

static const std::string HEADER_MAP_NAME = "HeaderMapFile";

// for specific use in tomography
static const std::string IMAGE_KEY_NAME = "ImageKeyName";
static const std::string ROTATION_NAME = "RotationName";
static const std::string INTENSITY_NAME = "IntensityName";

/**
* Used with find_if to check a string isn't a fits file (by checking extension)
* @param s string to check for extension
Expand Down

0 comments on commit 112cdd7

Please sign in to comment.