Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
garsoft
CoreUtils
ProviderUtil.h
Go to the documentation of this file.
1
/**
2
* @file ProviderUtil.h
3
* @brief Simple utilities for service providers
4
* @date November 30, 2015
5
* @author Gianluca Petrillo (petrillo@fnal.gov)
6
*
7
* Currently this header is written so that it does not need a implementation
8
* file.
9
*/
10
11
#ifndef DETECTORINFO_PROVIDERUTIL_H
12
#define DETECTORINFO_PROVIDERUTIL_H 1
13
14
// C/C++ standard libraries
15
#include <string>
16
#include <set>
17
18
19
namespace
gar
{
20
21
/** **************************************************************************
22
* @brief Returns a list of configuration keys that providers should ignore
23
* @return a reference to a key list
24
*
25
* This function may be used for parameter validation, like in:
26
*
27
* fhicl::Table<Config> cfg { pset, gar::IgnorableProviderConfigKeys() };
28
*
29
* where `pset` is a `fhicl::ParameterSet`. This will inform `cfg` that some
30
* keys can be unexpectedly present, or missing.
31
*
32
* This implementation includes:
33
* * art framework service keywords
34
*/
35
inline
std::set<std::string>
const
&
IgnorableProviderConfigKeys
()
36
{
37
static
std::set<std::string>
const
ignorable {
38
"service_type"
,
// added by art: service name (possibly interface)
39
"service_provider"
// art: service implementation name
40
};
41
return
ignorable;
42
}
// IgnorableProviderConfigKeys()
43
44
45
46
}
// namespace gar
47
48
49
#endif // DETECTORINFO_PROVIDERUTIL_H
gar::IgnorableProviderConfigKeys
std::set< std::string > const & IgnorableProviderConfigKeys()
Returns a list of configuration keys that providers should ignore.
Definition:
ProviderUtil.h:35
gar
General GArSoft Utilities.
Definition:
anatest_module.cc:57
Generated by
1.8.11