Skip to content
Snippets Groups Projects
  1. Mar 13, 2025
  2. Feb 07, 2025
  3. Jan 24, 2025
  4. Jan 23, 2025
  5. Nov 14, 2024
  6. Nov 01, 2024
    • Administrator's avatar
      Remove usage of std::binary_function · 7beb79fd
      Administrator authored
      The usage of std::binary_function is really old legacy to define the functions
      used in STL algorithms like std::sort. std::binary_function was deprecated with
      C++11 and removed from C++ with C++17. Obviously it is still supported by some
      compilers since compilation errors only occured with newer Apple clang versions.
      
      Switch to the modern implementation using lambdas in the STL algorithms.
      This also increase code readability since the code is located at the same place
      where it is used.
      
      The change was confirmed to not introduce changes in the output by comparing
      the produced TTrees before and after the commit in all produced ROOT files.
      7beb79fd
  7. Sep 27, 2024
    • Pierre-Alain Loizeau's avatar
      [BugFix] Add [KfCore/CaCore/Algo]Offline libraries to remove feed down of... · 7095bcdc
      Pierre-Alain Loizeau authored
      [BugFix] Add [KfCore/CaCore/Algo]Offline libraries to remove feed down of NO_ROOT flag to libraries in reco folder
      
      - Build AlgoOffline library only if not in CBM_ONLINE_STANDALONE (aka not online container mode)
      - Build [Ca/Kf]CoreOffline libs only if not in CBM_ONLINE_STANDALONE (aka not online container mode)
      - Use AlgoOffline as dep for libs CbmSimDigitizationSteer CbmAtConverterSteer CbmRecoOfflineSteer
      7095bcdc
  8. Sep 02, 2024
  9. Aug 22, 2024
  10. Aug 21, 2024
  11. Jul 09, 2024
  12. Jul 04, 2024
  13. Jun 05, 2024
  14. May 29, 2024
  15. Apr 26, 2024
  16. Mar 19, 2024
  17. Feb 26, 2024
  18. Nov 17, 2023
  19. Nov 07, 2023
  20. Oct 31, 2023
  21. Oct 12, 2023
  22. Oct 04, 2023
  23. Aug 03, 2023
  24. Nov 18, 2022
    • Administrator's avatar
      Prepare for FairRoot v18.8 · e55f8bf2
      Administrator authored
      Add missing include statements and forward declarations.
      In FairRoot a serious cleanup of include statements was done which needs fixes
      in our code base.
      e55f8bf2
  25. Nov 08, 2022
    • Administrator's avatar
      Move rich local reconstruction code · 5a0b86b0
      Administrator authored
      There were rich ring finders in the L1 code base which were compiled and linked
      into libL1. With the change in the build system this results in a circular
      dependency between the L1 and CbmRichReco libraries which was resolved by
      removing the classes from compilation.
      With this commit the classes are moved from the L1 code base into the rich
      reconstruction code base.
      5a0b86b0
    • Administrator's avatar
      Use Logger instead of FairLogger · 6e12722f
      Administrator authored
      6e12722f
  26. Nov 01, 2022
  27. Oct 24, 2022
    • Omveer's avatar
      Move to Modern CMake(Reco Dir) · 799b017a
      Omveer authored
      Files moved to NO_DICT_SRC:
      L1Algo/L1Event.cxx
      L1Algo/L1EventMatch.cxx
      
      Files are commented for time being in L1 target:
      OffLineInterface/CbmL1RichENNRingFinder.cxx
      OffLineInterface/CbmL1RichENNRingFinderParallel.cxx
      
      xpu git tag version modified
      Vc package finding moved to top level CMakeLists.txt
      799b017a
  28. Sep 26, 2022
  29. Aug 02, 2022
    • Administrator's avatar
      Add several compiler warnings · 66f89a15
      Administrator authored
      Use struct instead of class for forward declarations if the object is defined
      as struct.
      Remove unused data members, variables and parameters.
      Remove an explicite usage of std::move to allow copy ellision.
      Correct type in printf statements.
      Add missing virtual destructor in some class.
      Fix two issues where closing braces were at the wrong place.
      66f89a15
  30. Jul 25, 2022
  31. Jul 21, 2022
  32. Jul 18, 2022
Loading