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
  • Loading branch information
stuartcampbell committed Nov 27, 2012
1 parent 6c67321 commit 22412c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,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 22412c9

Please sign in to comment.