test
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 bool
64  const ParameterSet& iPSet)
65 {
66  return schedule_->changeModule(iLabel,iPSet, *registry_);
67 }
68 
69 //
70 // const member functions
71 //
72 
73 //
74 // static member functions
75 //
virtual ~ModuleChanger()
edm::propagate_const< Schedule * > schedule_
Definition: ModuleChanger.h:55
ModuleChanger(Schedule *, ProductRegistry const *iReg)
ProductRegistry const * registry_
Definition: ModuleChanger.h:56
bool changeModule(const std::string &iLabel, const ParameterSet &iPSet)