OPAL (Object Oriented Parallel Accelerator Library)  2.2.0
OPAL
OpalVMonitor.h
Go to the documentation of this file.
1 #ifndef OPAL_OpalVMonitor_HH
2 #define OPAL_OpalVMonitor_HH
3 
4 // ------------------------------------------------------------------------
5 // $RCSfile: OpalVMonitor.h,v $
6 // ------------------------------------------------------------------------
7 // $Revision: 1.1.1.1 $
8 // ------------------------------------------------------------------------
9 // Copyright: see Copyright.readme
10 // ------------------------------------------------------------------------
11 //
12 // Class: OpalVMonitor
13 //
14 // ------------------------------------------------------------------------
15 //
16 // $Date: 2000/03/27 09:33:40 $
17 // $Author: Andreas Adelmann $
18 //
19 // ------------------------------------------------------------------------
20 
21 #include "Elements/OpalElement.h"
22 
23 
24 // Class OpalVMonitor
25 // ------------------------------------------------------------------------
27 
28 class OpalVMonitor: public OpalElement {
29 
30 public:
31 
33  OpalVMonitor();
34 
35  virtual ~OpalVMonitor();
36 
38  virtual OpalVMonitor *clone(const std::string &name);
39 
41  virtual void update();
42 
43 private:
44 
45  // Not implemented.
46  OpalVMonitor(const OpalVMonitor &);
47  void operator=(const OpalVMonitor &);
48 
49  // Clone constructor.
50  OpalVMonitor(const std::string &name, OpalVMonitor *parent);
51 };
52 
53 #endif // OPAL_OpalVMonitor_HH
OpalVMonitor()
Exemplar constructor.
virtual ~OpalVMonitor()
void operator=(const OpalVMonitor &)
virtual OpalVMonitor * clone(const std::string &name)
Make clone.
virtual void update()
Update the embedded CLASSIC monitor.
Base class for all beam line elements.
Definition: OpalElement.h:41
The VMONITOR element.
Definition: OpalVMonitor.h:28
const std::string name