1#ifndef DEFAULTNUISANCEPATHSPROVIDER_H
2#define DEFAULTNUISANCEPATHSPROVIDER_H
24 std::shared_ptr<IPathsProvider> paths_provider = std::make_shared<DefaultPathsProvider>()
26 : paths_provider_(
std::move(paths_provider)) {}
35 return paths_provider_->default_nuisances();
45 return paths_provider_->user_nuisances();
49 std::shared_ptr<IPathsProvider> paths_provider_;
Interface for locating nuisance-parameter configuration files.
Abstract provider for default and user nuisance-file paths.
Hash specialization for SymbolId<Tag>.
fs::path default_nuisances_path() const override
Returns the path to the built-in nuisance definition file.
fs::path user_nuisances_path() const override
Returns the path to the user override nuisance definition file.
DefaultNuisancePathsProvider(std::shared_ptr< IPathsProvider > paths_provider=std::make_shared< DefaultPathsProvider >())