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 // $Id: ModuleChanger.cc,v 1.1 2010/07/22 15:00:28 chrjones Exp $
12 //
13 
14 // system include files
15 
16 // user include files
19 
20 using namespace edm;
21 //
22 // constants, enums and typedefs
23 //
24 
25 //
26 // static data member definitions
27 //
28 
29 //
30 // constructors and destructor
31 //
33 schedule_(iSchedule)
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
66 ModuleChanger::changeModule(const std::string& iLabel,
67  const ParameterSet& iPSet) const
68 {
69  return schedule_->changeModule(iLabel,iPSet);
70 }
71 
72 //
73 // static member functions
74 //
ModuleChanger(Schedule *)
bool changeModule(std::string const &iLabel, ParameterSet const &iPSet)
Definition: Schedule.cc:1173
virtual ~ModuleChanger()
bool changeModule(const std::string &iLabel, const ParameterSet &iPSet) const
Schedule * schedule_
Definition: ModuleChanger.h:54