Skip to content
Snippets Groups Projects

algo: Update STS GPU Reco

Merged Felix Weiglhofer requested to merge fweig/cbmroot:bump-xpu into master
Compare and
35 files
+ 1822
900
Compare changes
  • Side-by-side
  • Inline

Files

+ 18
0
/* Copyright (C) 2023 FIAS Frankfurt Institute for Advanced Studies, Frankfurt / Main
SPDX-License-Identifier: GPL-3.0-only
Authors: Felix Weiglhofer [committer] */
#ifndef CBM_ALGO_BASE_FILESYSTEM_H
#define CBM_ALGO_BASE_FILESYSTEM_H
#include <boost/filesystem.hpp>
namespace cbm::algo
{
// Use boost::filesystem by default instead of std::filesystem for
// compatibility with older compilers and ROOT versions
namespace fs = boost::filesystem;
} // namespace cbm::algo
#endif // CBM_ALGO_BASE_FILESYSTEM_H
Loading