mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2026-02-01 21:14:56 +01:00
13 lines
260 B
C++
13 lines
260 B
C++
#include "aare/helpers.hpp"
|
|
|
|
namespace aare {
|
|
|
|
bool is_master_file(std::filesystem::path fpath) {
|
|
std::string stem = fpath.stem();
|
|
if (stem.find("_master_") != std::string::npos)
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
|
|
}// namespace aare
|