CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ModuleChanger.h
Go to the documentation of this file.
1 #ifndef FWCore_Framework_ModuleChanger_h
2 #define FWCore_Framework_ModuleChanger_h
3 // -*- C++ -*-
4 //
5 // Package: Framework
6 // Class : ModuleChanger
7 //
17 //
18 // Original Author: Chris Jones
19 // Created: Thu Jul 15 15:05:17 EDT 2010
20 //
21 
22 // system include files
23 #include <string>
24 
25 // user include files
26 
27 // forward declarations
28 
29 namespace edm {
30  class ParameterSet;
31  class Schedule;
32 
33  class ModuleChanger {
34 
35  public:
37  virtual ~ModuleChanger();
38 
39  // ---------- const member functions ---------------------
40  bool changeModule(const std::string& iLabel,
41  const ParameterSet& iPSet) const;
42 
43  // ---------- static member functions --------------------
44 
45  // ---------- member functions ---------------------------
46 
47  private:
48  ModuleChanger(const ModuleChanger&); // stop default
49 
50  const ModuleChanger& operator=(const ModuleChanger&); // stop default
51 
52  // ---------- member data --------------------------------
54  };
55 }
56 #endif
const ModuleChanger & operator=(const ModuleChanger &)
ModuleChanger(Schedule *)
virtual ~ModuleChanger()
bool changeModule(const std::string &iLabel, const ParameterSet &iPSet) const
Schedule * schedule_
Definition: ModuleChanger.h:53