Skip to content

Commit

Permalink
Merge branch 'feature/7263_improve_load_selection_performance' into d…
Browse files Browse the repository at this point in the history
…evelop

Refs #7263
Conflicts:
	Code/Mantid/Framework/API/inc/MantidAPI/IFileLoader.h
	Code/Mantid/Framework/API/inc/MantidAPI/IHDFFileLoader.h
	Code/Mantid/Framework/DataHandling/inc/MantidDataHandling/LoadILL.h
	Code/Mantid/Framework/DataHandling/src/LoadILL.cpp
	Code/Mantid/Framework/DataHandling/src/LoadSassena.cpp
  • Loading branch information
martyngigg committed Jul 5, 2013
2 parents 014f1fe + 04e1697 commit 10264ab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Code/Mantid/Framework/API/inc/MantidAPI/IFileLoader.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ namespace Mantid
class MANTID_API_DLL IFileLoader : public Algorithm
{
public:
/// Virtual destructor (required by linker on some versions of OS X/Intel compiler)
virtual ~IFileLoader() {}
/// Returns a confidence value that this algorithm can load a file
virtual int confidence(Kernel::FileDescriptor & descriptor) const = 0;
};
Expand Down
2 changes: 2 additions & 0 deletions Code/Mantid/Framework/API/inc/MantidAPI/IHDFFileLoader.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ namespace Mantid
class DLLExport IHDFFileLoader : public API::Algorithm
{
public:
/// Virtual destructor (required by linker on some versions of OS X/Intel compiler)
virtual ~IHDFFileLoader() {}
/// Returns a confidence value that this algorithm can load a file
virtual int confidence(Kernel::HDFDescriptor & descriptor) const = 0;
};
Expand Down
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/DataHandling/src/LoadILL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ LoadILL::LoadILL() :
/ (2 * PhysicalConstants::NeutronMass * wavelength * wavelength
* 1e-20) / PhysicalConstants::meV;
return e;
}
}


double LoadILL::getL1() {
Expand Down

0 comments on commit 10264ab

Please sign in to comment.