Skip to content
Snippets Groups Projects
  1. Mar 16, 2018
  2. Dec 06, 2017
  3. Nov 28, 2017
  4. Nov 27, 2017
  5. Sep 26, 2017
  6. Jul 30, 2017
  7. Mar 20, 2017
  8. Dec 19, 2016
  9. Dec 14, 2016
  10. Nov 26, 2016
  11. Nov 08, 2016
  12. Oct 08, 2016
  13. Sep 28, 2016
  14. Sep 07, 2016
  15. Jul 28, 2016
  16. Jul 11, 2016
  17. Jun 28, 2016
  18. Jun 15, 2016
  19. Jun 13, 2016
    • Marco Clemencic's avatar
      added IJobOptionsSvc::getProperty(client, name) · d6177619
      Marco Clemencic authored
      Allow retrieval of single properties from `JobOptionsSvc`.
      
      Also removed the need of `PropertyMgr` in `RFileCnv`.
      d6177619
    • Marco Clemencic's avatar
      changed PropertyMgr to use it in multiple inheritance · 51106f89
      Marco Clemencic authored
      Changed PropertyMgr to allow to use it to implement IProperty interface via
      multiple inheritance.
      
      For example:
      
          ```.cpp
          class Algorithm: public implements<IProperty, INamedInterface, ...>,
                          public PropertyMgr {  // implements IProperty
            ...
          };
          ```
      
      Changing from composition to (multiple) inheritance allowed removal of ~200
      lines of code.
      51106f89
  20. Jun 03, 2016
  21. Mar 11, 2016
  22. Mar 03, 2016
  23. Jan 22, 2016
  24. Oct 13, 2015
  25. Oct 08, 2015
  26. Sep 30, 2015
  27. Sep 26, 2015
  28. Sep 21, 2015
  29. Sep 11, 2015
    • Gerhard Raven's avatar
      Provide (and use) C++11 smart pointer 'look and feel' for SmartIF · 71408483
      Gerhard Raven authored
        - use explict bool conversion instead of .isValid()
        - add SmartIF::as<IFace>(), to return a SmartIF to an alternate
          interface -- which (together with move) encourages the use of auto
        - add ServiceManager::service<IFace>() which return SmartIF<IFace> which encourages
          the use of auto
      
      And add a few other C++11 modernizations (eg. prefer STL over raw loop)
      71408483
  30. Sep 09, 2015
  31. Aug 10, 2015
  32. Aug 09, 2015
    • Gerhard Raven's avatar
      Modernize RootHistCnv · 15075e69
      Gerhard Raven authored
         - avoid copy if const& will suffice
         - prefer std::to_string over ostringstream
         - prefer emplace_back over push_back
      15075e69
Loading