CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SimWatcherMakerBase.h
Go to the documentation of this file.
1 #ifndef Watcher_SimWatcherMakerBase_h
2 #define Watcher_SimWatcherMakerBase_h
3 // -*- C++ -*-
4 //
5 // Package: Watcher
6 // Class : SimWatcherMakerBase
7 //
17 //
18 // Original Author: Chris D Jones
19 // Created: Tue Nov 22 13:03:39 EST 2005
20 // $Id: SimWatcherMakerBase.h,v 1.2 2005/11/29 18:40:25 chrjones Exp $
21 //
22 
23 // system include files
24 #include "boost/shared_ptr.hpp"
25 
26 // user include files
27 
28 // forward declarations
30 namespace edm{
31  class ParameterSet;
32 }
33 class SimWatcher;
34 class SimProducer;
36 {
37 
38  public:
40  virtual ~SimWatcherMakerBase() {}
41 
42  // ---------- const member functions ---------------------
43  virtual void make(const edm::ParameterSet&,
45  boost::shared_ptr<SimWatcher>&,
46  boost::shared_ptr<SimProducer>&
47  ) const = 0;
48 };
49 
50 
51 #endif
virtual void make(const edm::ParameterSet &, SimActivityRegistry &, boost::shared_ptr< SimWatcher > &, boost::shared_ptr< SimProducer > &) const =0