This project is mirrored from https://github.com/mantidproject/mantid.git.
Pull mirroring updated .
- 22 Sep, 2021 1 commit
-
-
David Fairbrother authored
Fixes instances with missing assignment operator or copy constructor. These are dangerous cases with dynamic memory as it's not obvious what will happen, but the compiler will try anyway. In many cases we can simply switch to unique_ptr or disable the copy when it makes sense. But one or two cases required additional thought. This fixes several memory leaks or sources of corruption if the fields fall out of sync
-
- 16 Sep, 2021 1 commit
-
-
David Fairbrother authored
Modernises the codebase from nested workspaces to modern form. E.g.: namespace A{ namespace B {} } Becomes namespace A::B{ } This will allow us to specify in the coding standards to prefer the simple form instead
-
- 06 Sep, 2021 1 commit
-
-
Mathieu Tillet authored
-
- 09 Jun, 2021 2 commits
-
-
Mathieu Tillet authored
Add an option to load all the logs in a nexus event file, instead of only those approved by LoadNexusLogs, which are not nearly enough for ILL's usage.
-
Mathieu Tillet authored
-
- 24 May, 2021 1 commit
-
-
Danny Hindson authored
C4996. Warning that std::shared_ptr::unique() has been deprecated Added a suppression to the MSVCSetup.cmake file. This is a bit of a stop gap while an alternative solution is investigated C4250. Warning that Algorithm and all the derived classes inherit various methods "by dominance" PropertyManagerOwner has been added to the Algorithm class by composition instead of by inheritance which removes the diamond Lots of instances of IAlgorithm_sptr type have been replaced with "auto" to provide some extra flexibility around the arrangement of the class\interface hierarchy in future Also remove a couple of references to PropertyManagerOwner in case its removed in future (merged into Algorithm)
-
- 31 Mar, 2021 2 commits
-
-
Peterson, Peter authored
-
Samuel Jones authored
-
- 12 Feb, 2021 3 commits
-
-
- 31 Jan, 2021 3 commits
-
-
Zhang, Chen authored
-
Zhang, Chen authored
-
Zhang, Chen authored
-
- 05 Aug, 2020 1 commit
-
-
Neil Vaytet authored
-
- 04 Aug, 2020 2 commits
-
-
Neil Vaytet authored
-
Neil Vaytet authored
-
- 03 Aug, 2020 2 commits
-
-
Neil Vaytet authored
-
Neil Vaytet authored
-
- 21 Jul, 2020 1 commit
-
-
Neil Vaytet authored
-
- 13 Jul, 2020 2 commits
-
-
Neil Vaytet authored
-
Neil Vaytet authored
According to the Nexus standard, if the offset is not present, it implies the offset is and absolute timestamp, which is relative to the start of Unix epoch (https://manual.nexusformat.org/classes/base_classes/NXlog.html) So instead fo throwing an error, we use unix epoch.
-
- 09 Apr, 2020 2 commits
-
-
William F Godoy authored
-
William F Godoy authored
-
- 08 Apr, 2020 8 commits
-
-
William F Godoy authored
-
William F Godoy authored
-
William F Godoy authored
-
William F Godoy authored
-
William F Godoy authored
Expose m_fileInfo from NexusFileLoader
-
William F Godoy authored
-
William F Godoy authored
-
William F Godoy authored
-
- 07 Apr, 2020 1 commit
-
-
In places other substitutions have been made, e.g Clang does not yet specialize std::shared_ptr for T[]. Vector has been used instead. The operator[] methods were incorrectly marked const but returning a non-const reference - this has been fixed. Refs #25842
-
- 25 Mar, 2020 1 commit
-
-
David Fairbrother authored
Runs clang-tidy pass by ref across the codebase to fix-up various warnings we are seeing in cppcheck
-
- 20 Mar, 2020 1 commit
-
-
Nick Draper authored
Also updated class_maker.py
-
- 28 Feb, 2020 1 commit
-
-
William F Godoy authored
Reuse map from NeXus file getEntries prevents creation and destruction of std::map addressing clang-format
-
- 20 Jan, 2020 1 commit
-
-
Nick Draper authored
-
- 17 Jan, 2020 2 commits
-
-
Nick Draper authored
-
Nick Draper authored
It defaults to 500 bins. This allows event data to be plotted without rebinning first. This is a change from before when it would all be in one bin. It does not change the underlying data that remains in events. Includes unit test, and doc changes.
-
- 08 Nov, 2019 1 commit
-
-
Nick Draper authored
re #27319
-