Reconfigurable.h
Go to the documentation of this file.
1 ///
2 /// \file EventDisplayBase/Reconfigurable.h
3 /// \brief Interface class to services that are intended to be reconfigurable through the event display
4 /// \author knoepfel@fnal.gov
5 ///
6 #ifndef EVDB_RECONFIGURABLE_H
7 #define EVDB_RECONFIGURABLE_H
8 
9 namespace fhicl { class ParameterSet; }
10 
11 namespace evdb {
12 
14  public:
15 
16  explicit Reconfigurable(fhicl::ParameterSet const& ps);
17  void do_reconfigure(fhicl::ParameterSet const& pset) { reconfigure(pset); }
18 
19  private:
20  virtual void reconfigure(fhicl::ParameterSet const&) = 0;
21  };
22 
23 }
24 
25 #endif
26 ////////////////////////////////////////////////////////////////////////
static const double ps
Definition: Units.h:103
Manage all things related to colors for the event display.
parameter set interface
void do_reconfigure(fhicl::ParameterSet const &pset)