This project is mirrored from https://github.com/mantidproject/mantid.git.
Pull mirroring updated .
- Jan 31, 2008
-
-
Nick Draper authored
Cleared error due to a / in the wrong direction
-
Anders Markvardsen authored
-
- Jan 29, 2008
-
-
Nick Draper authored
Improveed handling if properties file missing. Changed VS build to use dynamic loading
-
Matt Clarke authored
-
Matt Clarke authored
-
Nick Draper authored
Improved windows running of datahandling tests
-
Dickon Champion authored
re #58
-
Dickon Champion authored
Algorithm::store changed to allow multiple out and multiple inout workspaces to be saved in the ADS, instead of breaking after a true result the loop continues. history structure is built up according to the plan, with a history for one object containing all the constituent history processes on other workspaces re #58
-
- Jan 28, 2008
-
-
Nick Draper authored
Extended iterator and workspaces to include E2 values. This has resulted in a further 20% slowdown on iterator speed. Benchmark now 1.4s
-
- Jan 25, 2008
-
-
Nick Draper authored
Added test and fixed scope issue
-
Nick Draper authored
Calculation now performed through the errorHelper class All errorhelper classes are currently defaulted to Gaussian in the Workspace class
-
Russell Taylor authored
triple_iterator now uses const_iterators underneath and holds a const pointer to its workspace when it is used a const_iterator. Hence the workspace data is accessed via the const methods. You can now use const workspaces with the iterators, but there's still an issue with using the getProperty() method to assign to a const workspace. It boils down to there being no AnalysisDataService::addOrReplace method that takes a const workspace. Re #86.
-
Freddie Akeroyd authored
-
Nick Draper authored
-
Nick Draper authored
-
- Jan 24, 2008
-
-
Freddie Akeroyd authored
-
Matt Clarke authored
-
Matt Clarke authored
-
Matt Clarke authored
-
Matt Clarke authored
-
Matt Clarke authored
-
Matt Clarke authored
-
Matt Clarke authored
-
Matt Clarke authored
-
Matt Clarke authored
-
Freddie Akeroyd authored
-
- Jan 23, 2008
-
-
Freddie Akeroyd authored
-
Nick Draper authored
missed adding a file
-
Nick Draper authored
removed extra qualification!
-
Nick Draper authored
Altered Plus, Minus, Multiply and Divide to inherit from BinaryOperation and CommutativeBinaryOperation. BinaryOpHelper has been removed. Triple Iterator can now loop iterate in both orientations (although this has imposed a small (<10%) performance hit. The operations can now add heterogenous workspaces in both orientations.
-
- Jan 21, 2008
-
-
Matt Clarke authored
-
Nick Draper authored
build fixed
-
Anders Markvardsen authored
-
Nick Draper authored
build fixed
-
Nick Draper authored
This should even be possible (This is now tested!) Worskspace_sptr wsResult = (ws1+ws2)/(ws1-ws2);
-
Nick Draper authored
Added some missing files
-
Nick Draper authored
Added operator overloads so that now you can perform workspace +,-,*,/ operations within algoriths using the following syntax. Worskspace_sptr wsResult = ws1+ws2; This should even be possible (untested) Worskspace_sptr wsResult = (ws1+ws2)/(ws1-ws2);
-
- Jan 18, 2008
-
-
Nick Draper authored
removed compiler warnings in gcc
-
Nick Draper authored
+,-,* and / can now take heterogenous workspaces as input
-
Russell Taylor authored
-