Skip to content

Commit

Permalink
refs #6240. Added additional check for .nxs.h5 files.
Browse files Browse the repository at this point in the history
(cherry picked from commit 22412c9)
  • Loading branch information
stuartcampbell authored and Michael Reuter committed Dec 10, 2012
1 parent 7652d1f commit e74bc4d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ namespace Mantid

std::string loadAlgName("");
std::string fileProp("");
if (boost::ends_with(runFileName, "_event.nxs"))
if (boost::ends_with(runFileName, "_event.nxs") || boost::ends_with(runFileName, ".nxs.h5"))
{
g_log.notice() << "Loading NeXus monitors" << std::endl;
loadAlgName = "LoadNexusMonitors";
Expand Down

0 comments on commit e74bc4d

Please sign in to comment.