OPAL (Object Oriented Parallel Accelerator Library) 2022.1
OPAL
ElementBase.cpp
Go to the documentation of this file.
1//
2// Class ElementBase
3// The very base class for beam line representation objects. A beam line
4// is modelled as a composite structure having a single root object
5// (the top level beam line), which contains both ``single'' leaf-type
6// elements (Components), as well as sub-lines (composites).
7//
8// Interface for basic beam line object.
9// This class defines the abstract interface for all objects which can be
10// contained in a beam line. ElementBase forms the base class for two distinct
11// but related hierarchies of objects:
12// [OL]
13// [LI]
14// A set of concrete accelerator element classes, which compose the standard
15// accelerator component library (SACL).
16// [LI]
17// [/OL]
18// Instances of the concrete classes for single elements are by default
19// sharable. Instances of beam lines and integrators are by
20// default non-sharable, but they may be made sharable by a call to
21// [b]makeSharable()[/b].
22// [p]
23// An ElementBase object can return two lengths, which may be different:
24// [OL]
25// [LI]
26// The arc length along the geometry.
27// [LI]
28// The design length, often measured along a straight line.
29// [/OL]
30// Class ElementBase contains a map of name versus value for user-defined
31// attributes (see file AbsBeamline/AttributeSet.hh). The map is primarily
32// intended for processes that require algorithm-specific data in the
33// accelerator model.
34// [P]
35// The class ElementBase has as base class the abstract class RCObject.
36// Virtual derivation is used to make multiple inheritance possible for
37// derived concrete classes. ElementBase implements three copy modes:
38// [OL]
39// [LI]
40// Copy by reference: Call RCObject::addReference() and use [b]this[/b].
41// [LI]
42// Copy structure: use ElementBase::copyStructure().
43// During copying of the structure, all sharable items are re-used, while
44// all non-sharable ones are cloned.
45// [LI]
46// Copy by cloning: use ElementBase::clone().
47// This returns a full deep copy.
48// [/OL]
49//
50// Copyright (c) 200x - 2021, Paul Scherrer Institut, Villigen PSI, Switzerland
51// All rights reserved
52//
53// This file is part of OPAL.
54//
55// OPAL is free software: you can redistribute it and/or modify
56// it under the terms of the GNU General Public License as published by
57// the Free Software Foundation, either version 3 of the License, or
58// (at your option) any later version.
59//
60// You should have received a copy of the GNU General Public License
61// along with OPAL. If not, see <https://www.gnu.org/licenses/>.
62//
64
65#include "Channels/Channel.h"
69
70#include <boost/filesystem.hpp>
71
72
73const std::map<ElementType, std::string> ElementBase::elementTypeToString_s = {
74 {ElementType::ANY, "Any"},
75 {ElementType::BEAMLINE, "Beamline"},
76 {ElementType::CCOLLIMATOR, "CCollimator"},
77 {ElementType::CORRECTOR, "Corrector"},
78 {ElementType::CYCLOTRON, "Cyclotron"},
79 {ElementType::DEGRADER, "Degrader"},
80 {ElementType::DRIFT, "Drift"},
81 {ElementType::FLEXIBLECOLLIMATOR, "FlexibleCollimator"},
82 {ElementType::MARKER, "Marker"},
83 {ElementType::MONITOR, "Monitor"},
84 {ElementType::MPSPLITINTEGRATOR, "MPSplitIntegrator"},
85 {ElementType::MULTIPOLE, "Multipole"},
86 {ElementType::MULTIPOLET, "MultipoleT"},
87 {ElementType::OFFSET, "Offset"},
88 {ElementType::PROBE, "Probe"},
89 {ElementType::RBEND, "RBend"},
90 {ElementType::RBEND3D, "RBend3D"},
91 {ElementType::RFCAVITY, "RFCavity"},
92 {ElementType::RING, "Ring"},
93 {ElementType::SBEND, "SBend"},
94 {ElementType::SBEND3D, "SBend3D"},
95 {ElementType::SEPTUM, "Septum"},
96 {ElementType::SOLENOID, "Solenoid"},
97 {ElementType::SOURCE, "Source"},
98 {ElementType::STRIPPER, "Stripper"},
99 {ElementType::TRAVELINGWAVE, "TravelingWave"},
100 {ElementType::UNDULATOR, "Undulator"},
101 {ElementType::VACUUM, "Vacuum"},
102 {ElementType::VARIABLERFCAVITY, "VariableRFCavity"}
103};
104
106 ElementBase("")
107{}
108
109
111 RCObject(),
112 shareFlag(true),
113 csTrafoGlobal2Local_m(right.csTrafoGlobal2Local_m),
114 misalignment_m(right.misalignment_m),
115 aperture_m(right.aperture_m),
116 elementEdge_m(right.elementEdge_m),
117 rotationZAxis_m(right.rotationZAxis_m),
118 elementID(right.elementID),
119 userAttribs(right.userAttribs),
120 wake_m(right.wake_m),
121 bgeometry_m(right.bgeometry_m),
122 parmatint_m(right.parmatint_m),
123 positionIsFixed(right.positionIsFixed),
124 elementPosition_m(right.elementPosition_m),
125 elemedgeSet_m(right.elemedgeSet_m),
126 outputfn_m(right.outputfn_m),
127 deleteOnTransverseExit_m(right.deleteOnTransverseExit_m)
128{
129
130 if (parmatint_m) {
132 }
133 if (bgeometry_m) {
135 }
136}
137
138
139ElementBase::ElementBase(const std::string &name):
140 RCObject(),
141 shareFlag(true),
142 csTrafoGlobal2Local_m(),
143 misalignment_m(),
144 elementEdge_m(0),
145 rotationZAxis_m(0.0),
146 elementID(name),
147 userAttribs(),
148 wake_m(nullptr),
149 bgeometry_m(nullptr),
150 parmatint_m(nullptr),
151 positionIsFixed(false),
152 elementPosition_m(0.0),
153 elemedgeSet_m(false),
154 outputfn_m("")
155{}
156
157
159
160{}
161
162
163const std::string &ElementBase::getName() const {
164 return elementID;
165}
166
167
168void ElementBase::setName(const std::string &name) {
169 elementID = name;
170}
171
172
173void ElementBase::setOutputFN(const std::string fn) {
174 outputfn_m = fn;
175}
176
177
178std::string ElementBase::getOutputFN() const {
179 if (outputfn_m.empty()) {
180 return getName();
181 } else {
182 boost::filesystem::path filePath(outputfn_m);
183 return filePath.replace_extension().native();
184 }
185}
186
187
188double ElementBase::getAttribute(const std::string &aKey) const {
189 const ConstChannel *aChannel = getConstChannel(aKey);
190
191 if (aChannel != nullptr) {
192 double val = *aChannel;
193 delete aChannel;
194 return val;
195 } else {
196 return 0.0;
197 }
198}
199
200
201bool ElementBase::hasAttribute(const std::string &aKey) const {
202 const ConstChannel *aChannel = getConstChannel(aKey);
203
204 if (aChannel != nullptr) {
205 delete aChannel;
206 return true;
207 } else {
208 return false;
209 }
210}
211
212
213void ElementBase::removeAttribute(const std::string &aKey) {
215}
216
217
218void ElementBase::setAttribute(const std::string &aKey, double val) {
219 Channel *aChannel = getChannel(aKey, true);
220
221 if (aChannel != nullptr && aChannel->isSettable()) {
222 *aChannel = val;
223 delete aChannel;
224 } else
225 std::cout << "Channel nullptr or not Settable" << std::endl;
226}
227
228
229Channel *ElementBase::getChannel(const std::string &aKey, bool create) {
230 return userAttribs.getChannel(aKey, create);
231}
232
233
234const ConstChannel *ElementBase::getConstChannel(const std::string &aKey) const {
235 // Use const_cast to allow calling the non-const method GetChannel().
236 // The const return value of this method will nevertheless inhibit set().
237 return const_cast<ElementBase *>(this)->getChannel(aKey);
238}
239
240
242 return elementTypeToString_s.at(type);
243}
244
246 if (isSharable()) {
247 return this;
248 } else {
249 return clone();
250 }
251}
252
253
255 shareFlag = true;
256}
257
258
260 for (AttributeSet::const_iterator i = set.begin(); i != set.end(); ++i) {
261 setAttribute(i->first, i->second);
262 }
263
264 return true;
265}
266
268 wake_m = wk;//->clone(getName() + std::string("_wake")); }
269}
270
272 bgeometry_m = geo;//->clone(getName() + std::string("_wake")); }
273}
274
276 parmatint_m = parmatint;
277}
278
280 if (!actionRange_m.empty() && actionRange_m.front().second < s) {
281 actionRange_m.pop();
282 if (!actionRange_m.empty()) {
283 elementEdge_m = actionRange_m.front().first;
284 }
285 }
286}
287
289{
290 const double &xLimit = aperture_m.second[0];
291 const double &yLimit = aperture_m.second[1];
292 double factor = 1.0;
295 Vector_t rRelativeToBegin = getEdgeToBegin().transformTo(r);
296 double fractionLength = rRelativeToBegin(2) / getElementLength();
297 factor = fractionLength * aperture_m.second[2];
298 }
299
300 switch(aperture_m.first) {
302 return (std::abs(r[0]) < xLimit && std::abs(r[1]) < yLimit);
304 return (std::pow(r[0] / xLimit, 2) + std::pow(r[1] / yLimit, 2) < 1.0);
306 return (std::abs(r[0]) < factor * xLimit && std::abs(r[1]) < factor * yLimit);
308 return (std::pow(r[0] / (factor * xLimit), 2) + std::pow(r[1] / (factor * yLimit), 2) < 1.0);
309 default:
310 return false;
311 }
312}
313
317
318 const double &x = aperture_m.second[0];
319 const double &y = aperture_m.second[1];
320 const double &f = aperture_m.second[2];
321
322 std::vector<Vector_t> corners(8);
323 for (int i = -1; i < 2; i += 2) {
324 for (int j = -1; j < 2; j += 2) {
325 unsigned int idx = (i + 1)/2 + (j + 1);
326 corners[idx] = toBegin.transformFrom(Vector_t(i * x, j * y, 0.0));
327 corners[idx + 4] = toEnd.transformFrom(Vector_t(i * f * x, j * f * y, 0.0));
328 }
329 }
330
331 return BoundingBox::getBoundingBox(corners);
332}
ElementType
Definition: ElementBase.h:88
Tps< T > pow(const Tps< T > &x, int y)
Integer power.
Definition: TpsMath.h:76
PETE_TUTree< FnAbs, typename T::PETE_Expr_t > abs(const PETE_Expr< T > &l)
Inform & endl(Inform &inf)
Definition: Inform.cpp:42
const std::string name
boost::function< boost::tuple< double, bool >(arguments_t)> type
Definition: function.hpp:21
Map of std::string versus double value.
Definition: AttributeSet.h:41
void removeAttribute(const std::string &aKey)
Remove an existing attribute.
const_iterator begin() const
Iterator accessing first member.
Definition: AttributeSet.h:105
NameMap::const_iterator const_iterator
An iterator for a map of name versus value.
Definition: AttributeSet.h:49
Channel * getChannel(const std::string &aKey, bool create=false)
Construct a read/write channel.
const_iterator end() const
Iterator marking the end of the list.
Definition: AttributeSet.h:108
virtual void setBoundaryGeometry(BoundaryGeometry *geo)
virtual ~ElementBase()
virtual Channel * getChannel(const std::string &aKey, bool create=false)
Construct a read/write channel.
virtual void setName(const std::string &name)
Set element name.
virtual const std::string & getName() const
Get element name.
virtual void removeAttribute(const std::string &aKey)
Remove an existing attribute.
static const std::map< ElementType, std::string > elementTypeToString_s
Definition: ElementBase.h:382
virtual double getElementLength() const
Get design length.
Definition: ElementBase.h:414
bool update(const AttributeSet &)
Update element.
std::string outputfn_m
Definition: ElementBase.h:400
ParticleMatterInteractionHandler * parmatint_m
Definition: ElementBase.h:391
virtual const ConstChannel * getConstChannel(const std::string &aKey) const
Construct a read-only channel.
virtual ElementBase * clone() const =0
Return clone.
virtual void setAttribute(const std::string &aKey, double val)
Set value of an attribute.
bool isInsideTransverse(const Vector_t &r) const
std::string getOutputFN() const
Get output filename.
void setOutputFN(std::string fn)
Set output filename.
std::pair< ApertureType, std::vector< double > > aperture_m
Definition: ElementBase.h:368
virtual void setParticleMatterInteraction(ParticleMatterInteractionHandler *spys)
virtual void makeSharable()
Set sharable flag.
virtual bool hasAttribute(const std::string &aKey) const
Test for existence of an attribute.
WakeFunction * wake_m
Definition: ElementBase.h:387
std::queue< std::pair< double, double > > actionRange_m
Definition: ElementBase.h:398
virtual CoordinateSystemTrafo getEdgeToBegin() const
Definition: ElementBase.h:502
std::string getTypeString() const
Definition: ElementBase.h:578
AttributeSet userAttribs
Definition: ElementBase.h:385
virtual ElementBase * copyStructure()
Make a structural copy.
BoundaryGeometry * bgeometry_m
Definition: ElementBase.h:389
bool isSharable() const
Test if the element can be shared.
Definition: ElementBase.h:462
bool shareFlag
Definition: ElementBase.h:363
void setCurrentSCoordinate(double s)
std::string elementID
Definition: ElementBase.h:380
virtual double getAttribute(const std::string &aKey) const
Get attribute value.
virtual CoordinateSystemTrafo getEdgeToEnd() const
Definition: ElementBase.h:510
virtual void setWake(WakeFunction *wf)
attach a wake field to the element
double elementEdge_m
Definition: ElementBase.h:370
virtual BoundingBox getBoundingBoxInLabCoords() const
CoordinateSystemTrafo csTrafoGlobal2Local_m
Definition: ElementBase.h:365
Vector_t transformFrom(const Vector_t &r) const
Vector_t transformTo(const Vector_t &r) const
Abstract interface for read/write access to variable.
Definition: Channel.h:32
virtual bool isSettable() const
Test if settable.
Definition: Channel.cpp:36
Abstract interface for read-only access to variable.
Definition: ConstChannel.h:29
Abstract base class for reference counted objects.
Definition: RCObject.h:40
static BoundingBox getBoundingBox(const std::vector< Vector_t > &positions)
Definition: BoundingBox.cpp:31
void updateElement(ElementBase *element)
Vektor< double, 3 > Vector_t
Definition: Vektor.h:6