Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/mantidproject/mantid.git. Pull mirroring updated .
  1. May 10, 2018
  2. May 09, 2018
    • McDonnell, Marshall's avatar
      Fixed OpenMP error for signed int · 3325640a
      McDonnell, Marshall authored
      3325640a
    • McDonnell, Marshall's avatar
      Fixed clang formatting · 5a8efad6
      McDonnell, Marshall authored
      5a8efad6
    • McDonnell, Marshall's avatar
    • McDonnell, Marshall's avatar
      Fixed clang formatting · 13d484c8
      McDonnell, Marshall authored
      13d484c8
    • McDonnell, Marshall's avatar
      Fixed using namespace in header · 0007d5c8
      McDonnell, Marshall authored
      0007d5c8
    • Martyn Gigg's avatar
      Merge pull request #22386 from mantidproject/22383_conjoin_x_runs_segfaults · f9693ede
      Martyn Gigg authored
      Prevent crash - missing error handling in `RunCombinationHelper`
    • Martyn Gigg's avatar
      Merge pull request #22304 from mantidproject/22275_QENSFitSequential · 05c26bca
      Martyn Gigg authored
      Indirect - QENS Fitting - QENSFitSequential algorithm
    • McDonnell, Marshall's avatar
      Extra clean up and clang formatting · 3d031d36
      McDonnell, Marshall authored
      3d031d36
    • McDonnell, Marshall's avatar
      Clean up unnecessary includes · a35f1cf8
      McDonnell, Marshall authored
      a35f1cf8
    • Martyn Gigg's avatar
      aa1faabd
    • Verena Reimund's avatar
      Add ; at end of line · 4a02c34d
      Verena Reimund authored
      Refs #22383
      4a02c34d
    • Verena Reimund's avatar
      Attempt to fix build failures · bc6eedb6
      Verena Reimund authored
      Refs #22383
      
      OSX
      FAILED: Framework/SINQ/test/CMakeFiles/PSISINQTest.dir/PoldiIndexKnownCompoundsTest.cpp.o
      In file included from Framework/SINQ/test/PoldiIndexKnownCompoundsTest.cpp:17:
      PoldiIndexKnownCompoundsTest.h:40:5: error: no matching function for call to 'storeWS'
          WorkspaceCreationHelper::storeWS(
      WorkspaceCreationHelper.h:114:33: note: candidate function [with WSType = boost::shared_ptr<Mantid::DataObjects::TableWorkspace>] not viable: expects an l-value for 2nd argument
      template <typename WSType> void storeWS(const std::string &name, WSType &ws) {
      In file included from Framework/SINQ/test/PoldiIndexKnownCompoundsTest.cpp:17:
      PoldiIndexKnownCompoundsTest.h:43:5: error: no matching function for call to 'storeWS'
          WorkspaceCreationHelper::storeWS(
      WorkspaceCreationHelper.h:114:33: note: candidate function [with WSType = boost::shared_ptr<Mantid::DataObjects::TableWorkspace>] not viable: expects an l-value for 2nd argument
      template <typename WSType> void storeWS(const std::string &name, WSType &ws) {
      In file included from Framework/SINQ/test/PoldiIndexKnownCompoundsTest.cpp:17:
      PoldiIndexKnownCompoundsTest.h:673:7: error: no matching function for call to 'storeWS'
            WorkspaceCreationHelper::storeWS(
      WorkspaceCreationHelper.h:114:33: note: candidate function [with WSType = boost::shared_ptr<Mantid::DataObjects::Workspace2D>] not viable: expects an l-value for 2nd argument
      template <typename WSType> void storeWS(const std::string &name, WSType &ws) {
      3 errors generated.
      
      Linux
      PoldiIndexKnownCompoundsTest.h:42:66: error: invalid initialization of non-const reference of type ‘boost::shared_ptr<Mantid::DataObjects::TableWorkspace>&’ from an rvalue of type ‘Mantid::DataObjects::TableWorkspace_sptr {aka boost::shared_ptr<Mantid::DataObjects::TableWorkspace>}’
                PoldiPeakCollectionHelpers::createPoldiPeakTableWorkspace());
      PoldiIndexKnownCompoundsTest.cpp:17:
      WorkspaceCreationHelper.h:114:33: note:   initializing argument 2 of ‘void WorkspaceCreationHelper::storeWS(const string&, WSType&) [with WSType = boost::shared_ptr<Mantid::DataObjects::TableWorkspace>; std::__cxx11::string = std::__cxx11::basic_string<char>]’
      10:35:30  template <typename WSType> void storeWS(const std::string &name, WSType &ws) {
      PoldiIndexKnownCompoundsTest.cpp:17:0:
      PoldiIndexKnownCompoundsTest.h:46:31: error: invalid initialization of non-const reference of type ‘boost::shared_ptr<Mantid::DataObjects::TableWorkspace>&’ from an rvalue of type ‘Mantid::DataObjects::TableWorkspace_sptr {aka boost::shared_ptr<Mantid::DataObjects::TableWorkspace>}’
                    ->asTableWorkspace());
      WorkspaceCreationHelper.h:114:33: note:   initializing argument 2 of ‘void WorkspaceCreationHelper::storeWS(const string&, WSType&) [with WSType = boost::shared_ptr<Mantid::DataObjects::TableWorkspace>; std::__cxx11::string = std::__cxx11::basic_string<char>]’
        template <typename WSType> void storeWS(const std::string &name, WSType &ws) {
      PoldiIndexKnownCompoundsTest.cpp:17:0:
      PoldiIndexKnownCompoundsTest.h: In member function ‘void PoldiIndexKnownCompoundsTest::storeRandomWorkspaces(const std::vector<std::__cxx11::basic_string<char> >&)’:
      PoldiIndexKnownCompoundsTest.h:674:65: error
      bc6eedb6
    • Verena Reimund's avatar
      Add ITableWorkspace include · ef757a8d
      Verena Reimund authored
      Refs #22383
      ef757a8d
    • Verena Reimund's avatar
      Clang format & delete added empty line · b9a05fb3
      Verena Reimund authored
      Refs #22383
      b9a05fb3
    • Verena Reimund's avatar
      Tests of corresponding error messages for current changes · 54d9da19
      Verena Reimund authored
      - Doxygen updated (throws)
      - Templated storeWS
      
      Running ConjoinXRunsTest for testTableInputWorkspaceInGroupThrows:
      ConjoinXRuns-[Warning] Invalid value for InputWorkspaces: Workspace table is not a MatrixWorkspace
      
      showing the need to check !ws and + input + works (ll 128,130 in ConjoinXRuns.cpp)
      
      Refs #22383
      54d9da19
    • Martyn Gigg's avatar
      Merge pull request #22116 from mantidproject/21412_refactor_DirectILLCollectData · 02c505e3
      Martyn Gigg authored
      Remove the EPPWorkspace input property from DirectILLCollectData
    • Martyn Gigg's avatar
      Merge pull request #22298 from mantidproject/21779_MaxEntFDARefactor · e11c41f4
      Martyn Gigg authored
      Refactor MuonMaxEnt in Frequency Domain Analysis
  3. May 08, 2018
  4. May 07, 2018
  5. May 05, 2018
  6. May 04, 2018
Loading