Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/mantidproject/mantid.git. Pull mirroring updated .
  1. Jun 20, 2018
  2. May 14, 2018
  3. May 10, 2018
  4. 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
    • Peterson, Peter's avatar
      Only reuse params from peaks that fit · 3c817e2e
      Peterson, Peter authored
      Refs #22286
      3c817e2e
    • Peterson, Peter's avatar
      Fix race condition in setting values in workspace · ca549684
      Peterson, Peter authored
      It was corrupting the values in the workspace and nothing was
      getting set correctly. Refs #22286
      ca549684
    • 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
    • Peterson, Peter's avatar
      Set unique workspace names for each test · 9fdbf865
      Peterson, Peter authored
      Refs #22286
      9fdbf865
    • Peterson, Peter's avatar
      Add check for peak positions · 115fe2aa
      Peterson, Peter authored
      This is in an effort to sort out platform dependencies
      Refs #22286
      115fe2aa
    • 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
    • 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
    • Anthony Lim's avatar
    • Anthony Lim's avatar
  5. May 08, 2018
Loading