OPAL (Object Oriented Parallel Accelerator Library) 2022.1
OPAL
SeptumRep.h
Go to the documentation of this file.
1//
2// Class SeptumRep
3// Representation for Septum.
4//
5// Copyright (c) 200x - 2020, Paul Scherrer Institut, Villigen PSI, Switzerland
6// All rights reserved
7//
8// This file is part of OPAL.
9//
10// OPAL is free software: you can redistribute it and/or modify
11// it under the terms of the GNU General Public License as published by
12// the Free Software Foundation, either version 3 of the License, or
13// (at your option) any later version.
14//
15// You should have received a copy of the GNU General Public License
16// along with OPAL. If not, see <https://www.gnu.org/licenses/>.
17//
18#ifndef CLASSIC_SeptumRep_HH
19#define CLASSIC_SeptumRep_HH
20
21#include "AbsBeamline/Septum.h"
23#include "Fields/NullField.h"
24
25class SeptumRep: public Septum {
26
27public:
28
30 explicit SeptumRep(const std::string &name);
31
32 SeptumRep();
33 SeptumRep(const SeptumRep &);
34 virtual ~SeptumRep();
35
37 // Return an identical deep copy of the element.
38 virtual ElementBase *clone() const;
39
41 // This method constructs a Channel permitting read/write access to
42 // the attribute [b]aKey[/b] and returns it.
43 // If the attribute does not exist, it returns nullptr.
44 virtual Channel *getChannel(const std::string &aKey, bool = false);
45
47 // Version for non-constant object.
48 virtual NullField &getField();
49
51 // Version for constant object.
52 virtual const NullField &getField() const;
53
55 // Return the element geometry.
56 // Version for non-constant object.
58 // Return the element geometry.
59 // Version for non-constant object.
61
63 // Return the element geometry
64 // Version for constant object.
65 virtual const StraightGeometry &getGeometry() const;
66
68 virtual void setActive(bool = true);
69
70protected:
71
74
77
79 bool active;
80
81private:
82
83 // Not implemented.
84 void operator=(const SeptumRep &);
85
86
87
88};
89
90#endif // CLASSIC_SeptumRep_HH
const std::string name
Definition: Septum.h:23
virtual StraightGeometry & getGeometry()
Get geometry.
Definition: SeptumRep.cpp:81
NullField field
The zero magnetic field.
Definition: SeptumRep.h:73
StraightGeometry geometry
The septa's geometry.
Definition: SeptumRep.h:76
void operator=(const SeptumRep &)
virtual void setActive(bool=true)
Set active flag.
Definition: SeptumRep.cpp:90
bool active
The active/inactive flag.
Definition: SeptumRep.h:79
virtual ElementBase * clone() const
Return clone.
Definition: SeptumRep.cpp:58
virtual NullField & getField()
Get field.
Definition: SeptumRep.cpp:73
virtual ~SeptumRep()
Definition: SeptumRep.cpp:54
virtual Channel * getChannel(const std::string &aKey, bool=false)
Construct a read/write channel.
Definition: SeptumRep.cpp:63
A geometry representing a straight line.
Abstract interface for read/write access to variable.
Definition: Channel.h:32
A zero electromagnetic field.
Definition: NullField.h:30