MultiplyNumber_tool.cc
Go to the documentation of this file.
3 
4 namespace fhicl {
5  class ParameterSet;
6 }
7 
8 namespace arttest {
9  class MultiplyNumber : public OperationBase {
10  public:
11  explicit MultiplyNumber(fhicl::ParameterSet const&) {}
12 
13  private:
14  void
15  do_adjustNumber(int& i) const override
16  {
17  i *= 2;
18  }
19  };
20 } // namespace arttest
21 
#define DEFINE_ART_CLASS_TOOL(tool)
Definition: ToolMacros.h:42
MultiplyNumber(fhicl::ParameterSet const &)
void do_adjustNumber(int &i) const override