Skip to content
Snippets Groups Projects
  1. Nov 15, 2024
  2. 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
  3. Oct 29, 2024
  4. Oct 24, 2024
  5. Oct 14, 2024
  6. 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
  7. Sep 11, 2024
  8. Aug 30, 2024
  9. Aug 26, 2024
  10. Aug 01, 2024
  11. Jul 15, 2024
  12. Jul 09, 2024
  13. Jul 03, 2024
    • Sergei Zharko's avatar
      BUGFIX: · 49233621
      Sergei Zharko authored
      1. CbmPVFinderKFGlobal: fix of track access
      2. reco_mcbm.sh: default parameter path for the online binary is ${VMCWORKDIR}/parameters/online (explicit pass is not required anymore)
      3. mcbm_event_reco_L1.C optional PV-finder routine
      4. CbmGlobalTrack.h: TODO is added
      49233621
  14. Jun 19, 2024
  15. Jun 12, 2024
    • Sergei Zharko's avatar
      Offline QA: · c4af5376
      Sergei Zharko authored and Sergei Zharko's avatar Sergei Zharko committed
      1) possibility for giving a supporting message to the checked criteria, if they are not passed
      2) cleaning-up of the CA input QA
      c4af5376
    • Sergei Zharko's avatar
      Offline-QA clean-up: · 3dbbdd76
      Sergei Zharko authored and Sergei Zharko's avatar Sergei Zharko committed
      The functions InitDataBranches and InitHistograms are merged into the InitQa function,
      the functions FillHistograms and InitTimeslice are merged into the ExecQa function.
      3dbbdd76
    • Sergei Zharko's avatar
      Offline QA: specific configuration of the QA task · 024a19d9
      Sergei Zharko authored and Sergei Zharko's avatar Sergei Zharko committed
      The commit introduces the possibility of the specific QA task configuration withing the QA-config yaml file.
      In the yaml-file, the configuration should be defined under qa/<task name>/specific node. On the task side
      the configuration is represented with a plain structure (Config), which can be defined using the function
      std::optional<Config> CbmQaTask::ReadSpecificConfig<Config>() in the task initialization function (for
      expample see the CbmCaInputQaBase class implementation).
      
      The specific configuration feature is optional and can rely on the default-initialized Config structure, so the "specific" branch
      of the QA-configuration file is not mandatory.
      024a19d9
  16. May 29, 2024
Loading