NestedFunctionTool.cc
Go to the documentation of this file.
3 
4 namespace arttest {
5  int
6  callThroughToAddOne(fhicl::ParameterSet const& pset, int const i)
7  {
8  auto addOne = art::make_tool<int(int)>(pset, "addOne");
9  return addOne(i);
10  }
11 } // namespace arttest
int addOne(int const i)
Definition: FunctionTool.cc:5
int callThroughToAddOne(fhicl::ParameterSet const &pset, int const i)