Skip to content
Snippets Groups Projects
  1. Jun 21, 2021
    • Administrator's avatar
      Fix compiler error · 9999e3e5
      Administrator authored
      A static const class member in a cout statement results in an undefined symbol
      when linking an executable using the class.
      The solution is to do a static cast of the variable in the cout statement.
      9999e3e5
  2. Jun 17, 2021
  3. Jun 16, 2021
  4. Jun 09, 2021
    • Administrator's avatar
      Cleanup license headers · 131d9ce2
      Administrator authored
      Unify user names in the license header authors list.
      Remove duplicate users in the authors list.
      Cleanupo of some other inor issues.
      131d9ce2
  5. Jun 08, 2021
  6. Jun 05, 2021
    • Eoin Clerkin's avatar
      Add copyright header to author declared files. · a4888728
      Eoin Clerkin authored
      Pulls some author and date information from previous headers, adds this to information from the svn and git repositories.
      Inlude the standard copyright header to approximately 2000 files with institute of original committer as copyright holder.
      Contributing authors from previous declaration and repository records.
      a4888728
  7. May 31, 2021
    • Eoin Clerkin's avatar
      Short license declarations for .sh files · 6f6619b0
      Eoin Clerkin authored
      Inserts the declaration on the 1st or 2nd line of scripts.
      
      EMPTY LINE
      
      Short license declarations for .sh files
      
      Inserts the declaration on the 1st or 2nd line of scripts.
      
      EMPTY LINE
      
      Revert "Short license declarations for .sh files"
      
      This reverts commit d3dd8608dead032b12bc71798a2bd97bfca95442.
      
      Uses SPDX identifier
      
      Modifies declaration to use SPDX license identifier syntax
      
      Corrects file
      
      Empty line before hashbang removed
      6f6619b0
    • Eoin Clerkin's avatar
      Adds license header to .cxx, .cpp, .h, and .C files · f983bc0a
      Eoin Clerkin authored
      Files with detected previous copyright or authorship skipped.
      Copyright claimed for the current or last CBMC institute of the original commiter to the SVN or GIT repositories.
      File distributed under GNU public license version 3.0 declared.
      
      Revert "Adds license header to .cxx, .cpp, .h, and .C files"
      
      This reverts commit 94da1500.
      
      Removes one blank line
      
      Revert "Removes one blank line"
      
      This reverts commit a8e5e236.
      
      Preemptive empty lines removal
      
      If first two lines of a file are empty, or have spaces and tabs only then remove the lines.
      
      Revert "Preemptive empty lines removal"
      
      This reverts commit da38bf5d.
      
      Add empty line
      
      For stylistic reasons, an empty line is added after doxygen header.
      
      Revert "Add empty line"
      
      This reverts commit 30491934.
      
      Puts space between includes.
      
      Revert "Puts space between includes."
      
      This reverts commit 468b7024.
      
      Add multiple authors tag
      
      Lists authors in order of their contribution
      
      Revert "Add multiple authors tag"
      
      This reverts commit f5d3e748.
      
      Removes empty line on one file for clang format compliance.
      
      Revert "Removes empty line on one file for clang format compliance."
      
      This reverts commit fbac8bad.
      
      Small changes as per requested.
      
      Add small (o) to original commiters username.
      
      Adds running 10 percent instead of line count treshold for contributors.
      
      Revert "Small changes as per requested."
      
      This reverts commit 84af7b5f.
      
      Long form of names
      
      Word originator beside original committer of file.
      
      Revert "Long form of names"
      
      This reverts commit 759426e2.
      
      Add space between comma seperated double affilliation institutes
      f983bc0a
  8. May 27, 2021
  9. Apr 20, 2021
  10. Apr 07, 2021
  11. Apr 06, 2021
  12. Apr 01, 2021
  13. Mar 31, 2021
  14. Mar 29, 2021
  15. Mar 26, 2021
  16. Mar 25, 2021
    • Administrator's avatar
      Allow to use FairRoot from a Spack installation · fa8b3411
      Administrator authored
      Remove check for ZeroMQ.
      ZeroMQ isn't needed any longer.
      
      Fix installation of externals when using Spack.
      Pass extra flags flags to NicaFemto configuration if needed.
      Patch ipc source code. Add missing include file.
      Cleanup .gitignore in externals.
      
      Fix linking of CbmGlobalTraking library.
      Add missing link directory. In normal installation Vc probably was found in the
      ROOT installation. With Spack ROOT is build without builtin Vc.
      
      Use correct syntax for function call.
      With the latest FairMQ version the old backward compatibility layer was
      removed. Use now the new syntax to change the state.
      fa8b3411
  17. Mar 24, 2021
    • Administrator's avatar
      Apply clang-format · 667dc90e
      Administrator authored and Florian Uhlig's avatar Florian Uhlig committed
      667dc90e
    • Administrator's avatar
      Fix compiler warnings · 9e31d071
      Administrator authored and Florian Uhlig's avatar Florian Uhlig committed
      Cleanup filtering of compiler warnings for Nightly tests
      
      Remove unused variables, parameters and data members.
      Remove move statement to allow copy ellision.
      Use unsingned int in loop when comparing with size function of containers.
      Initialize all data members.
      
      Fix warning from rootcling.
      With newer root versions the parameter -c isn't supported any longer,
      so remove it.
      9e31d071
  18. Mar 23, 2021
  19. Mar 22, 2021
  20. Mar 08, 2021
  21. Feb 08, 2021
  22. Jan 20, 2021
  23. Dec 10, 2020
    • Administrator's avatar
      Adapt build system to new FairSoft and FairRoot versions · 4f5f304a
      Administrator authored
      Add support for C++17
      Check for c++ version c++11 or above (11, 14 or 17). With this change it
      becomes possible to compile CbmRoot with C++17.
      
      Add missing library.
      The FairMQ state machine is now in an extra library which has to be added
      for linking when using FairSoft nov20. Test if the library exist and create
      the list of dependencies accordingly.
      
      Add missing include directory.
      VMC is not any longer included in ROOT but a standealone package, so the
      include directory has to be added such that the header files are found.
      
      Add gtest as an optional external package.
      With the latest version of FairSoft googletest was removed due to a
      recommendation of the gtest developers. Since gtest is no longer part of
      FairSoft we have to provide an own version which is compiled as external
      project.
      
      Add proper dependency to external gtest project
      This dependency is needed to compile the test only if the gtest library is
      already available.
      
      Fix compilation error with FairRoot v18.4.2 on macosx
      In FairRoot v18.4.2 some linker settings were removed from the CMake setup.
      This breaks the compilation of CbmRoot. Put back the needed seetings for the
      linker on macosx in our build system.
      
      Fix NicaFemto installation
      4f5f304a
  24. Nov 26, 2020
Loading