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