NestedClassTool.h
Go to the documentation of this file.
1 #ifndef art_test_Utilities_tools_NestedClassTool_h
2 #define art_test_Utilities_tools_NestedClassTool_h
3 
7 
8 namespace arttest {
10  public:
11  explicit NestedClassTool(fhicl::ParameterSet const& ps) : pset_{ps} {}
12 
13  int
14  callThroughToAddOne(int const i)
15  {
16  auto t = art::make_tool<ClassTool>(pset_);
17  return t->addOne(i);
18  }
19 
20  private:
22  };
23 } // namespace arttest
24 
25 #endif /* art_test_Utilities_tools_NestedClassTool_h */
26 
27 // Local variables:
28 // mode: c++
29 // End:
NestedClassTool(fhicl::ParameterSet const &ps)
fhicl::ParameterSet pset_
static constexpr double ps
Definition: Units.h:99
int callThroughToAddOne(int const i)