This project is mirrored from https://github.com/mantidproject/mantid.git.
Pull mirroring updated .
- Apr 17, 2018
-
-
Verena Reimund authored
Refs #22197
-
- Apr 16, 2018
-
-
Martyn Gigg authored
Includes: - using stack allocation for tcp server - removal of unnecessary mutex - unused includes removed
-
Martyn Gigg authored
If the source stops sending data then the cancellation request has to wait until the receive loop completes before it is checked. Add the check in more places to improve the responsiveness.
-
Gagik Vardanyan authored
-
- Apr 13, 2018
-
-
Verena Reimund authored
- put each declaration of a variable in a single line - using const auto & to get x, y, e, dx - directly set the size and xerrors in setPointStandardDeviations Refs #22218
-
Verena Reimund authored
Refs #22197
-
- Apr 12, 2018
-
-
Zhou, Wenduo authored
-
Verena Reimund authored
- shorter tests by using std::vector equality check capacity - add test for !hasDx capability Refs #22218
-
Edward Brown authored
(cherry picked from commit 37621330)
-
Edward Brown authored
(cherry picked from commit da3f0d8f)
-
Edward Brown authored
(cherry picked from commit a2fca669)
-
Edward Brown authored
(cherry picked from commit 08b308ba)
-
reimundILL authored
-
reimundILL authored
-
Verena Reimund authored
Refs #22218
-
- Apr 11, 2018
-
-
Verena Reimund authored
Refs #22218
-
Matthew D Jones authored
(cherry picked from commit 93ca1a13)
-
Matthew D Jones authored
(cherry picked from commit 605b76f8)
-
Matthew D Jones authored
(cherry picked from commit 7f29fce2)
-
Matthew D Jones authored
(cherry picked from commit 225e2bf7)
-
Verena Reimund authored
Refs #22218
-
Verena Reimund authored
Refs #22218
-
Mathieu Doucet authored
(cherry picked from commit af337868)
-
Mathieu Doucet authored
(cherry picked from commit 982a1e6f)
-
Verena Reimund authored
- in WorkspaceCreationHelper: do not overload create2DWorkspaceBinned but use new method create2DWorkspaceNonUniformlyBinned Refs #22218
-
Verena Reimund authored
- documentation modified (description, usage exmple) - clang - performance test ConjoinXRunsTest (<6 sec with dx, without dx it would be 0.1 sec faster) - fix ConjoinXRuns (bracket did not close correcly) - add unit test without dx values in ConjoinXRuns (all other tests run with dx) Refs #22218
-
Matthew D Jones authored
(cherry picked from commit 9737a3dd)
-
Verena Reimund authored
I could have added something like Counts counts{{4, 9, 16}}; Points points{{0.4, 0.9, 1.1}}; ws6->setHistogram(3, points, counts); for (auto i = 0; i < 5; i++) { // modify all 5 spectra in terms of Dx ws6->setPointStandardDeviations(i, 3); auto dx = Mantid::Kernel::make_cow<HistogramDx>(3, 8.8); ws6->setSharedDx(i, dx); } But the current solution seems to be easier since I do not want to check Dx again here; if algorithm executed and did not throw is enough to test (->RunCombinationHelper). Refs #22218
-
- Apr 10, 2018
-
-
Verena Reimund authored
- now 90 percent of the ConjoinXRunsTest pass Refs #22218
-