CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ModuleChanger.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: Framework
4 // Class : ModuleChanger
5 //
6 // Implementation:
7 // [Notes on implementation]
8 //
9 // Original Author: Chris Jones
10 // Created: Thu Jul 15 15:05:10 EDT 2010
11 //
12 
13 // system include files
14 
15 // user include files
18 
19 using namespace edm;
20 //
21 // constants, enums and typedefs
22 //
23 
24 //
25 // static data member definitions
26 //
27 
28 //
29 // constructors and destructor
30 //
32 schedule_(iSchedule),
33 registry_(iRegistry)
34 {
35 }
36 
37 // ModuleChanger::ModuleChanger(const ModuleChanger& rhs)
38 // {
39 // // do actual copying here;
40 // }
41 
43 {
44 }
45 
46 //
47 // assignment operators
48 //
49 // const ModuleChanger& ModuleChanger::operator=(const ModuleChanger& rhs)
50 // {
51 // //An exception safe implementation is
52 // ModuleChanger temp(rhs);
53 // swap(rhs);
54 //
55 // return *this;
56 // }
57 
58 //
59 // member functions
60 //
61 
62 //
63 // const member functions
64 //
65 bool
67  const ParameterSet& iPSet) const
68 {
69  return schedule_->changeModule(iLabel,iPSet, *registry_);
70 }
71 
72 //
73 // static member functions
74 //
virtual ~ModuleChanger()
bool changeModule(std::string const &iLabel, ParameterSet const &iPSet, const ProductRegistry &iRegistry)
Definition: Schedule.cc:905
ModuleChanger(Schedule *, ProductRegistry const *iReg)
bool changeModule(const std::string &iLabel, const ParameterSet &iPSet) const
ProductRegistry const * registry_
Definition: ModuleChanger.h:55
Schedule * schedule_
Definition: ModuleChanger.h:54