Skip to content
Snippets Groups Projects
  1. Mar 17, 2025
  2. Mar 14, 2025
    • Administrator's avatar
      Remove non ASCII characters · 8b6daa94
      Administrator authored and Pierre-Alain Loizeau's avatar Pierre-Alain Loizeau committed
      The most non ASCII characters were used in comments but some were also used
      for screen output. The most common non ASCII character was µ which was
      exchanged by mu or micro.
      8b6daa94
  3. Mar 13, 2025
  4. Feb 07, 2025
  5. Jan 24, 2025
  6. Jan 23, 2025
  7. Nov 14, 2024
  8. 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
  9. 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
  10. Sep 02, 2024
  11. Aug 22, 2024
  12. Aug 21, 2024
  13. Jul 09, 2024
  14. Jul 04, 2024
  15. Jun 05, 2024
  16. May 29, 2024
  17. Apr 26, 2024
  18. Mar 19, 2024
  19. Feb 26, 2024
  20. Nov 17, 2023
  21. Nov 07, 2023
  22. Oct 31, 2023
  23. Oct 12, 2023
  24. Oct 04, 2023
  25. Aug 03, 2023
  26. 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
  27. 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
  28. Nov 01, 2022
  29. 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
  30. Sep 26, 2022
  31. 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
  32. Jul 25, 2022
  33. Jul 21, 2022
Loading