Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/mantidproject/mantid.git. Pull mirroring updated .
  1. Oct 05, 2015
  2. Apr 17, 2015
  3. Apr 16, 2015
  4. Dec 16, 2014
  5. Jul 17, 2013
  6. May 17, 2013
  7. May 16, 2013
  8. Feb 14, 2013
  9. Nov 02, 2012
  10. Oct 25, 2012
  11. Oct 12, 2012
  12. Sep 21, 2012
  13. Sep 20, 2012
  14. Aug 21, 2012
    • Peter Parker's avatar
      Refs #5212 - Fix the second of the two MultipleFileProperty issues. · 5d7d1409
      Peter Parker authored
      Ensure that input into a MultipleFileProperty properly survies a "round
      trip", i.e. what you put in is what you get out, and that using the output
      again, as input into another MultipleFileProperty gives the same results.
      
      Proper functionality in a large number of use cases is assured by vastly
      improved coverage of unit tests, which was lacking previously.
      
      Simplify parts of the MultipleFileProperty class, including the filename
      generation functors I introduced that weren't doing anybody any favours.
      5d7d1409
  15. Jul 29, 2012
  16. Jul 27, 2012
    • Peter Parker's avatar
      Refs #5205 - Revert multifile stuff for now. · 4fe9cd9d
      Peter Parker authored
      This reverts commit a9c8a59a.
      4fe9cd9d
    • Peter Parker's avatar
      Refs #5212 - Fix non-win builds. · a9c8a59a
      Peter Parker authored
      a9c8a59a
    • Peter Parker's avatar
      Refs #5212, #5441 - Better parsing when multifile loading. Hist Fixed. · 5b78e0e5
      Peter Parker authored
      Allow filenames specified with the format <<short><operator>>...<short>
      where:
      
      <short> = <dir><inst><underscore><runs><ext>
      <operator> = "+" or ","
      <runs> = lists and/or ranges of (possibly added) runs e.g. "12,13+14,15:20".
      
      See header file of MultipleFileProperty for more info on syntax.
      
      This enables workspaces loaded through the algorithm to have a history that
      can be used to reproduce the workspace properly.
      
      MWRunFiles widget of LoadDialog now remembers the exact text a user typed -
      in this way any user who types "INST0-50", clicks "Run" and reopens the
      dialog is not met by a huge string containing a list of all 51 fully
      resolved files, but rather their original input.
      
      Changed the vector<vector<string>> templated versions of the toString and
      toValue functions to accept customised delimiters.  This enables us to add
      an option for the user to turn off multifile parsing if they are crazy
      enough to want to load files with a plus or a comma in their path.
      
      Changed the inner workings of Load for multi files.  No longer calling sub
      algorithms with setChild or alwaysStoreInADS.  All workspaces are
      essentially created outside the ADS and managed by the algorithm, right up
      until the OutputWorkspaces are set.
      
      Tests added where appropriate, but the majority of parsing cases are already
      covered by MultiFileNameParser.
      5b78e0e5
  17. Apr 11, 2012
  18. Mar 02, 2012
    • Peter Parker's avatar
      Refs #4820 - Final clean up of make_pair fixes. · 921f1aaa
      Peter Parker authored
      Incorrectly diagnosed the problem with the make_pair errors.  The first
      instance of make_pair was okay to be left in, just minus the template
      parameters.  The second instance was unnecessary anyway, as the constructor
      could be used to init the object in that case.
      921f1aaa
  19. Feb 29, 2012
  20. Feb 15, 2012
  21. Feb 14, 2012
    • Peter Parker's avatar
      Refs #1419 - Changes to finally support multi file loading. · 6039c89a
      Peter Parker authored
      MultiFileProperty changed to store a vector of vectors of file names. File
      names that share a vector are to be added. Old functionality can be produced
      by calling "flattenFileNames".  See source code for more info.
      
      MultiFileProperty was used in one place previously (MDMergeFiles), this has
      been modified to relect these changes.
      
      Load now implemented in terms of MultiFileProperty, though its interface is
      unchanged.  "Filename" input is now parsed as a multi file, and if that
      fails old functionality is attempted.  Error reports will output the result
      of both attempts.
      
      Some additional template specialisations / "toString" overloads
      surrounding the Property class heirachy were necessary to properly support
      std::vector<std::vector<std::string> >.
      6039c89a
  22. Feb 11, 2012
  23. Feb 10, 2012
  24. Nov 25, 2011
Loading