OPAL (Object Oriented Parallel Accelerator Library) 2024.2
OPAL
TBeamline< T > Class Template Reference

#include <TBeamline.h>

Inheritance diagram for TBeamline< T >:
Collaboration diagram for TBeamline< T >:

Public Member Functions

 TBeamline ()
 Default constructor.
 TBeamline (const std::string &name)
 Constructor with given name.
 TBeamline (const TBeamline< T > &right)
virtual ~TBeamline ()
virtual void accept (BeamlineVisitor &) const
 Apply BeamlineVisitor to this line.
virtual void iterate (BeamlineVisitor &, bool r2l) const
 Apply visitor to all elements of the line.
virtual TBeamline< T > * clone () const
 Make clone.
virtual TBeamline< T > * copyStructure ()
 Make structure copy.
virtual void makeSharable ()
 Set sharable flag.
virtual BeamlineGeometrygetGeometry ()
 Get geometry.
virtual const BeamlineGeometrygetGeometry () const
 Get geometry.
virtual double getArcLength () const
 Get arc length.
virtual double getElementLength () const
 Get design length.
virtual double getOrigin () const
 Get origin position.
virtual double getEntrance () const
 Get entrance position.
virtual double getExit () const
 Get exit position.
virtual Euclid3D getTransform (double fromS, double toS) const
 Get transform.
virtual Euclid3D getTransform (double s) const
 Get transform.
virtual Euclid3D getTotalTransform () const
 Get transform.
virtual Euclid3D getEntranceFrame () const
 Get transform.
virtual Euclid3D getExitFrame () const
 Get transform.
virtual ElementType getType () const
 Get beamline type.
virtual void append (const T &)
 Append a T object.
virtual void prepend (const T &)
 Prepend a T object.
void setOrigin3D (const Vector_t &ori)
Vector_t getOrigin3D () const
void setInitialDirection (const Quaternion &rot)
Quaternion getInitialDirection () const
void setRelativeFlag (bool flag)
bool getRelativeFlag () const
size_t size () const
 Get the number of elements in the TBeamline.
virtual const std::string & getName () const
 Get element name.
virtual void setName (const std::string &name)
 Set element name.
std::string getTypeString () const
virtual void setElementLength (double length)
 Set design length.
virtual void getElementDimensions (double &begin, double &end) const
virtual Euclid3D getEntrancePatch () const
 Get patch.
virtual Euclid3D getExitPatch () const
 Get patch.
virtual double getAttribute (const std::string &aKey) const
 Get attribute value.
virtual bool hasAttribute (const std::string &aKey) const
 Test for existence of an attribute.
virtual void removeAttribute (const std::string &aKey)
 Remove an existing attribute.
virtual void setAttribute (const std::string &aKey, double val)
 Set value of an attribute.
virtual ChannelgetChannel (const std::string &aKey, bool create=false)
 Construct a read/write channel.
virtual const ConstChannelgetConstChannel (const std::string &aKey) const
 Construct a read-only channel.
bool isSharable () const
 Test if the element can be shared.
bool update (const AttributeSet &)
 Update element.
virtual void setBoundaryGeometry (BoundaryGeometry *geo)
virtual BoundaryGeometrygetBoundaryGeometry () const
 return the attached boundary geometrt object if there is any
virtual bool hasBoundaryGeometry () const
virtual void setWake (WakeFunction *wf)
 attach a wake field to the element
virtual WakeFunctiongetWake () const
 return the attached wake object if there is any
virtual bool hasWake () const
virtual void setParticleMatterInteraction (ParticleMatterInteractionHandler *spys)
virtual ParticleMatterInteractionHandlergetParticleMatterInteraction () const
virtual bool hasParticleMatterInteraction () const
void setCSTrafoGlobal2Local (const CoordinateSystemTrafo &ori)
CoordinateSystemTrafo getCSTrafoGlobal2Local () const
void releasePosition ()
void fixPosition ()
bool isPositioned () const
virtual CoordinateSystemTrafo getEdgeToBegin () const
virtual CoordinateSystemTrafo getEdgeToEnd () const
void setAperture (const ApertureType &type, const std::vector< double > &args)
std::pair< ApertureType, std::vector< double > > getAperture () const
virtual bool isInside (const Vector_t &r) const
void setMisalignment (const CoordinateSystemTrafo &cst)
void getMisalignment (double &x, double &y, double &s) const
CoordinateSystemTrafo getMisalignment () const
void setActionRange (const std::queue< std::pair< double, double > > &range)
void setCurrentSCoordinate (double s)
void setRotationAboutZ (double rotation)
 Set rotation about z axis in bend frame.
double getRotationAboutZ () const
virtual BoundingBox getBoundingBoxInLabCoords () const
virtual int getRequiredNumberOfTimeSteps () const
void setOutputFN (std::string fn)
 Set output filename.
std::string getOutputFN () const
 Get output filename.
void setFlagDeleteOnTransverseExit (bool=true)
bool getFlagDeleteOnTransverseExit () const
int addReference () const
 Increment reference count.
int removeReference () const
 Decrement the reference count.
bool isShared () const
 Test for sharing.
void setElementPosition (double elemedge)
 Access to ELEMEDGE attribute.
double getElementPosition () const
bool isElementPositionSet () const

Static Public Member Functions

static std::string getTypeString (ElementType type)

Public Attributes

elements
 STL member.

Protected Member Functions

bool isInsideTransverse (const Vector_t &r) const

Protected Attributes

BeamlineGeometry itsGeometry
 The beamline geometry.
Vector_t itsOrigin_m
Quaternion itsCoordTrafoTo_m
bool relativePositions_m
bool shareFlag
CoordinateSystemTrafo csTrafoGlobal2Local_m
CoordinateSystemTrafo misalignment_m
std::pair< ApertureType, std::vector< double > > aperture_m
double elementEdge_m
double rotationZAxis_m

Private Attributes

std::string elementID
AttributeSet userAttribs
WakeFunctionwake_m
BoundaryGeometrybgeometry_m
ParticleMatterInteractionHandlerparmatint_m
bool positionIsFixed
std::queue< std::pair< double, double > > actionRange_m
std::string outputfn_m
bool deleteOnTransverseExit_m = true
int refCount
double elementPosition_m
 ELEMEDGE attribute.
bool elemedgeSet_m

Static Private Attributes

static const std::map< ElementType, std::string > elementTypeToString_s

Detailed Description

template<class T>
class TBeamline< T >

Definition at line 33 of file TBeamline.h.

Constructor & Destructor Documentation

◆ TBeamline() [1/3]

template<class T>
TBeamline< T >::TBeamline ( )

Default constructor.

Definition at line 161 of file TBeamline.h.

References Beamline::Beamline(), itsCoordTrafoTo_m, itsGeometry, itsOrigin_m, and relativePositions_m.

Referenced by clone(), copyStructure(), and TBeamline().

Here is the call graph for this function:

◆ TBeamline() [2/3]

template<class T>
TBeamline< T >::TBeamline ( const std::string & name)
explicit

Constructor with given name.

Definition at line 172 of file TBeamline.h.

References Beamline::Beamline(), itsCoordTrafoTo_m, itsGeometry, itsOrigin_m, name, and relativePositions_m.

Here is the call graph for this function:

◆ TBeamline() [3/3]

template<class T>
TBeamline< T >::TBeamline ( const TBeamline< T > & right)

Definition at line 183 of file TBeamline.h.

References Beamline::Beamline(), itsCoordTrafoTo_m, itsGeometry, itsOrigin_m, relativePositions_m, and TBeamline().

Here is the call graph for this function:

◆ ~TBeamline()

template<class T>
TBeamline< T >::~TBeamline ( )
virtual

Definition at line 194 of file TBeamline.h.

Member Function Documentation

◆ accept()

template<class T>
void TBeamline< T >::accept ( BeamlineVisitor & visitor) const
virtual

Apply BeamlineVisitor to this line.

Implements ElementBase.

Definition at line 199 of file TBeamline.h.

References BeamlineVisitor::visitBeamline().

Here is the call graph for this function:

◆ addReference()

int RCObject::addReference ( ) const
inlineinherited

Increment reference count.

Definition at line 83 of file RCObject.h.

References refCount.

Referenced by Pointer< Object >::operator=(), Pointer< Object >::operator=(), and Pointer< Object >::unique().

◆ append()

template<class T>
void TBeamline< T >::append ( const T & obj)
inlinevirtual

Append a T object.

Definition at line 417 of file TBeamline.h.

Referenced by clone(), and copyStructure().

◆ clone()

template<class T>
TBeamline< T > * TBeamline< T >::clone ( ) const
virtual

Make clone.

Implements ElementBase.

Definition at line 221 of file TBeamline.h.

References append(), begin(), end(), ElementBase::getName(), itsCoordTrafoTo_m, itsOrigin_m, relativePositions_m, and TBeamline().

Here is the call graph for this function:

◆ copyStructure()

template<class T>
TBeamline< T > * TBeamline< T >::copyStructure ( )
virtual

Make structure copy.

Reimplemented from ElementBase.

Definition at line 241 of file TBeamline.h.

References append(), begin(), end(), ElementBase::getName(), ElementBase::isSharable(), itsCoordTrafoTo_m, itsOrigin_m, relativePositions_m, and TBeamline().

Here is the call graph for this function:

◆ fixPosition()

void ElementBase::fixPosition ( )
inlineinherited

◆ getAperture()

std::pair< ApertureType, std::vector< double > > ElementBase::getAperture ( ) const
inlineinherited

Definition at line 525 of file ElementBase.h.

References aperture_m.

Referenced by MeshGenerator::add(), and Offset::operator=().

◆ getArcLength()

template<class T>
double TBeamline< T >::getArcLength ( ) const
virtual

Get arc length.

Reimplemented from ElementBase.

Definition at line 288 of file TBeamline.h.

References begin(), and end().

Referenced by getExit(), and getOrigin().

Here is the call graph for this function:

◆ getAttribute()

double ElementBase::getAttribute ( const std::string & aKey) const
virtualinherited

Get attribute value.

Definition at line 187 of file ElementBase.cpp.

References getConstChannel().

Here is the call graph for this function:

◆ getBoundaryGeometry()

BoundaryGeometry * ElementBase::getBoundaryGeometry ( ) const
inlinevirtualinherited

return the attached boundary geometrt object if there is any

Definition at line 475 of file ElementBase.h.

References bgeometry_m.

◆ getBoundingBoxInLabCoords()

BoundingBox ElementBase::getBoundingBoxInLabCoords ( ) const
virtualinherited

Reimplemented in Bend2D.

Definition at line 313 of file ElementBase.cpp.

References csTrafoGlobal2Local_m, and getEdgeToBegin().

Here is the call graph for this function:

◆ getChannel()

◆ getConstChannel()

const ConstChannel * ElementBase::getConstChannel ( const std::string & aKey) const
virtualinherited

Construct a read-only channel.

Definition at line 233 of file ElementBase.cpp.

References ElementBase(), and getChannel().

Referenced by getAttribute(), and hasAttribute().

Here is the call graph for this function:

◆ getCSTrafoGlobal2Local()

◆ getEdgeToBegin()

CoordinateSystemTrafo ElementBase::getEdgeToBegin ( ) const
inlinevirtualinherited

◆ getEdgeToEnd()

CoordinateSystemTrafo ElementBase::getEdgeToEnd ( ) const
inlinevirtualinherited

Reimplemented in Bend2D, RFCavity, Solenoid, and TravelingWave.

Definition at line 511 of file ElementBase.h.

References getElementLength().

Here is the call graph for this function:

◆ getElementDimensions()

virtual void ElementBase::getElementDimensions ( double & begin,
double & end ) const
inlinevirtualinherited

Reimplemented in RFCavity, Solenoid, and TravelingWave.

Definition at line 174 of file ElementBase.h.

References begin(), end(), and getElementLength().

Referenced by MeshGenerator::add().

Here is the call graph for this function:

◆ getElementLength()

template<class T>
double TBeamline< T >::getElementLength ( ) const
virtual

Get design length.

Reimplemented from ElementBase.

Definition at line 301 of file TBeamline.h.

References begin(), and end().

Here is the call graph for this function:

◆ getElementPosition()

double ElementBase::getElementPosition ( ) const
inlineinherited

Definition at line 589 of file ElementBase.h.

References elemedgeSet_m, elementPosition_m, and getName().

Here is the call graph for this function:

◆ getEntrance()

template<class T>
double TBeamline< T >::getEntrance ( ) const
virtual

Get entrance position.

Reimplemented from ElementBase.

Definition at line 320 of file TBeamline.h.

References getOrigin().

Referenced by getEntranceFrame(), and getTransform().

Here is the call graph for this function:

◆ getEntranceFrame()

template<class T>
Euclid3D TBeamline< T >::getEntranceFrame ( ) const
virtual

Get transform.

Reimplemented from ElementBase.

Definition at line 399 of file TBeamline.h.

References getEntrance(), and getTransform().

Here is the call graph for this function:

◆ getEntrancePatch()

Euclid3D ElementBase::getEntrancePatch ( ) const
inlinevirtualinherited

Get patch.

Definition at line 455 of file ElementBase.h.

References BGeometryBase::getEntrancePatch(), and getGeometry().

Here is the call graph for this function:

◆ getExit()

template<class T>
double TBeamline< T >::getExit ( ) const
virtual

Get exit position.

Reimplemented from ElementBase.

Definition at line 326 of file TBeamline.h.

References getArcLength().

Referenced by getExitFrame(), and getTransform().

Here is the call graph for this function:

◆ getExitFrame()

template<class T>
Euclid3D TBeamline< T >::getExitFrame ( ) const
virtual

Get transform.

Reimplemented from ElementBase.

Definition at line 405 of file TBeamline.h.

References getExit(), and getTransform().

Here is the call graph for this function:

◆ getExitPatch()

Euclid3D ElementBase::getExitPatch ( ) const
inlinevirtualinherited

Get patch.

Definition at line 459 of file ElementBase.h.

References BGeometryBase::getExitPatch(), and getGeometry().

Here is the call graph for this function:

◆ getFlagDeleteOnTransverseExit()

bool ElementBase::getFlagDeleteOnTransverseExit ( ) const
inlineinherited

◆ getGeometry() [1/2]

template<class T>
BeamlineGeometry & TBeamline< T >::getGeometry ( )
inlinevirtual

Get geometry.

Implements ElementBase.

Definition at line 276 of file TBeamline.h.

References itsGeometry.

◆ getGeometry() [2/2]

template<class T>
const BeamlineGeometry & TBeamline< T >::getGeometry ( ) const
inlinevirtual

Get geometry.

Implements ElementBase.

Definition at line 282 of file TBeamline.h.

References itsGeometry.

◆ getInitialDirection()

template<class T>
Quaternion TBeamline< T >::getInitialDirection ( ) const
inlinevirtual

Reimplemented from Beamline.

Definition at line 443 of file TBeamline.h.

References itsCoordTrafoTo_m.

Referenced by ParallelTTracker::visitBeamline(), and ThickTracker::visitBeamline().

◆ getMisalignment() [1/2]

CoordinateSystemTrafo ElementBase::getMisalignment ( ) const
inlineinherited

Definition at line 541 of file ElementBase.h.

References misalignment_m.

◆ getMisalignment() [2/2]

void ElementBase::getMisalignment ( double & x,
double & y,
double & s ) const
inherited

◆ getName()

const std::string & ElementBase::getName ( ) const
virtualinherited

Get element name.

Definition at line 162 of file ElementBase.cpp.

References elementID.

Referenced by Ring::appendElement(), Cyclotron::apply(), Ring::apply(), Bend2D::calculateRefTrajectory(), OutputPlane::checkOne(), Vacuum::checkPressure(), TBeamline< T >::clone(), TBeamline< T >::copyStructure(), Stripper::doCheck(), CCollimator::doFinalise(), Stripper::doFinalise(), OutputPlane::doGoOffline(), Probe::doGoOffline(), PlaceRep::enter(), Cyclotron::finalise(), Degrader::finalise(), FlexibleCollimator::finalise(), Vacuum::finalise(), PyOpal::Field::getElementName(), getElementPosition(), RFCavity::getMomentaKick(), Bend2D::getOutline(), getOutputFN(), CavityAutophaser::getPhaseAtMaxEnergy(), Selector::handleElement(), Bend2D::initialise(), RBend3D::initialise(), RFCavity::initialise(), Ring::initialise(), Solenoid::initialise(), CSRIGFWakeFunction::initialize(), CSRWakeFunction::initialize(), OpalWake::initWakefunction(), PlaceRep::leave(), Offset::Offset(), operator<<(), Offset::operator=(), VariableRFCavity::operator=(), operator==(), Line::parse(), Sequence::print(), Vacuum::print(), Bend2D::readFieldMap(), PyOpal::PyLine_< TBeamline< FlaggedElmPtr > >::registerObject(), Ring::Ring(), ClassicField::SortAsc(), Component::trackBunch(), Component::trackMap(), RBend3D::trackRefParticleThrough(), OpalRBend3D::update(), OpalRBend::update(), OpalSBend::update(), Sequence::updateList(), ParallelTTracker::updateRFElement(), ParallelCyclotronTracker::visitCCollimator(), Replacer::visitFlaggedElmPtr(), ParallelCyclotronTracker::visitProbe(), ParallelCyclotronTracker::visitRFCavity(), ParallelCyclotronTracker::visitSeptum(), ParallelCyclotronTracker::visitStripper(), and ParallelTTracker::writePhaseSpace().

◆ getOrigin()

template<class T>
double TBeamline< T >::getOrigin ( ) const
virtual

Get origin position.

Reimplemented from ElementBase.

Definition at line 314 of file TBeamline.h.

References getArcLength().

Referenced by getEntrance().

Here is the call graph for this function:

◆ getOrigin3D()

template<class T>
Vector_t TBeamline< T >::getOrigin3D ( ) const
inlinevirtual

Reimplemented from Beamline.

Definition at line 433 of file TBeamline.h.

References itsOrigin_m.

Referenced by ParallelTTracker::visitBeamline(), and ThickTracker::visitBeamline().

◆ getOutputFN()

std::string ElementBase::getOutputFN ( ) const
inherited

Get output filename.

Definition at line 177 of file ElementBase.cpp.

References getName(), and outputfn_m.

Referenced by Probe::doInitialise(), Cyclotron::initialise(), FlexibleCollimator::initialise(), FlexibleCollimator::initialise(), Monitor::initialise(), PluginElement::initialise(), and Source::initialise().

Here is the call graph for this function:

◆ getParticleMatterInteraction()

ParticleMatterInteractionHandler * ElementBase::getParticleMatterInteraction ( ) const
inlinevirtualinherited

◆ getRelativeFlag()

template<class T>
bool TBeamline< T >::getRelativeFlag ( ) const
inlinevirtual

Reimplemented from Beamline.

Definition at line 453 of file TBeamline.h.

References relativePositions_m.

Referenced by ParallelTTracker::visitBeamline(), and ThickTracker::visitBeamline().

◆ getRequiredNumberOfTimeSteps()

int ElementBase::getRequiredNumberOfTimeSteps ( ) const
inlinevirtualinherited

Reimplemented in Drift, Marker, Monitor, Source, and Stripper.

Definition at line 603 of file ElementBase.h.

◆ getRotationAboutZ()

double ElementBase::getRotationAboutZ ( ) const
inlineinherited

Definition at line 574 of file ElementBase.h.

References rotationZAxis_m.

Referenced by OpalBeamline::compute3DLattice(), and Bend2D::setFieldCalcParam().

◆ getTotalTransform()

template<class T>
Euclid3D TBeamline< T >::getTotalTransform ( ) const
virtual

Get transform.

Reimplemented from ElementBase.

Definition at line 380 of file TBeamline.h.

References begin(), Euclid3D::dotBy(), and end().

Here is the call graph for this function:

◆ getTransform() [1/2]

template<class T>
Euclid3D TBeamline< T >::getTransform ( double fromS,
double toS ) const
virtual

Get transform.

Reimplemented from ElementBase.

Definition at line 332 of file TBeamline.h.

References begin(), ElementBase::ElementBase(), end(), ElementBase::getArcLength(), getEntrance(), getExit(), and ElementBase::getTransform().

Referenced by getEntranceFrame(), getExitFrame(), and getTransform().

Here is the call graph for this function:

◆ getTransform() [2/2]

template<class T>
Euclid3D TBeamline< T >::getTransform ( double s) const
virtual

Get transform.

Reimplemented from ElementBase.

Definition at line 393 of file TBeamline.h.

References getTransform().

Here is the call graph for this function:

◆ getType()

template<class T>
ElementType TBeamline< T >::getType ( ) const
inlinevirtual

Get beamline type.

Implements ElementBase.

Definition at line 411 of file TBeamline.h.

References BEAMLINE.

◆ getTypeString() [1/2]

std::string ElementBase::getTypeString ( ) const
inlineinherited

Definition at line 579 of file ElementBase.h.

References getType(), and getTypeString().

Referenced by ParallelCyclotronTracker::execute(), getTypeString(), and OpalBeamline::visit().

Here is the call graph for this function:

◆ getTypeString() [2/2]

std::string ElementBase::getTypeString ( ElementType type)
staticinherited

Definition at line 240 of file ElementBase.cpp.

References elementTypeToString_s.

◆ getWake()

WakeFunction * ElementBase::getWake ( ) const
inlinevirtualinherited

return the attached wake object if there is any

Definition at line 467 of file ElementBase.h.

References wake_m.

◆ hasAttribute()

bool ElementBase::hasAttribute ( const std::string & aKey) const
virtualinherited

Test for existence of an attribute.

Definition at line 200 of file ElementBase.cpp.

References getConstChannel().

Referenced by ParallelCyclotronTracker::visitSolenoid().

Here is the call graph for this function:

◆ hasBoundaryGeometry()

bool ElementBase::hasBoundaryGeometry ( ) const
inlinevirtualinherited

Definition at line 479 of file ElementBase.h.

References bgeometry_m.

◆ hasParticleMatterInteraction()

bool ElementBase::hasParticleMatterInteraction ( ) const
inlinevirtualinherited

Definition at line 487 of file ElementBase.h.

References parmatint_m.

◆ hasWake()

bool ElementBase::hasWake ( ) const
inlinevirtualinherited

Definition at line 471 of file ElementBase.h.

References wake_m.

◆ isElementPositionSet()

bool ElementBase::isElementPositionSet ( ) const
inlineinherited

Definition at line 598 of file ElementBase.h.

References elemedgeSet_m.

◆ isInside()

bool ElementBase::isInside ( const Vector_t & r) const
inlinevirtualinherited

Reimplemented in Bend2D, Degrader, Monitor, Multipole, RBend3D, RFCavity, Solenoid, and TravelingWave.

Definition at line 530 of file ElementBase.h.

References getElementLength(), and isInsideTransverse().

Here is the call graph for this function:

◆ isInsideTransverse()

◆ isPositioned()

bool ElementBase::isPositioned ( ) const
inlineinherited

Definition at line 556 of file ElementBase.h.

References positionIsFixed.

Referenced by OpalRBend3D::update(), OpalRBend::update(), and OpalSBend::update().

◆ isSharable()

bool ElementBase::isSharable ( ) const
inlineinherited

Test if the element can be shared.

Definition at line 463 of file ElementBase.h.

References shareFlag.

Referenced by copyStructure(), TBeamline< T >::copyStructure(), and Sequence::updateList().

◆ isShared()

bool RCObject::isShared ( ) const
inlineinherited

Test for sharing.

Definition at line 93 of file RCObject.h.

References refCount.

◆ iterate()

template<class T>
void TBeamline< T >::iterate ( BeamlineVisitor & visitor,
bool r2l ) const
virtual

Apply visitor to all elements of the line.

Implements Beamline.

Definition at line 205 of file TBeamline.h.

References begin(), and end().

Referenced by ParallelCyclotronTracker::visitBeamline(), ParallelTTracker::visitBeamline(), and ThickTracker::visitBeamline().

Here is the call graph for this function:

◆ makeSharable()

template<class T>
void TBeamline< T >::makeSharable ( )
inlinevirtual

Set sharable flag.

Reimplemented from ElementBase.

Definition at line 265 of file TBeamline.h.

References begin(), end(), and ElementBase::shareFlag.

Here is the call graph for this function:

◆ prepend()

template<class T>
void TBeamline< T >::prepend ( const T & obj)
inlinevirtual

Prepend a T object.

Definition at line 423 of file TBeamline.h.

◆ releasePosition()

void ElementBase::releasePosition ( )
inlineinherited

Definition at line 546 of file ElementBase.h.

References positionIsFixed.

Referenced by OpalRBend3D::update(), OpalRBend::update(), and OpalSBend::update().

◆ removeAttribute()

void ElementBase::removeAttribute ( const std::string & aKey)
virtualinherited

Remove an existing attribute.

Definition at line 212 of file ElementBase.cpp.

References userAttribs.

◆ removeReference()

int RCObject::removeReference ( ) const
inlineinherited

Decrement the reference count.

Definition at line 88 of file RCObject.h.

References refCount.

◆ setActionRange()

void ElementBase::setActionRange ( const std::queue< std::pair< double, double > > & range)
inlineinherited

Definition at line 561 of file ElementBase.h.

References actionRange_m, and elementEdge_m.

◆ setAperture()

void ElementBase::setAperture ( const ApertureType & type,
const std::vector< double > & args )
inlineinherited

◆ setAttribute()

void ElementBase::setAttribute ( const std::string & aKey,
double val )
virtualinherited

Set value of an attribute.

Definition at line 217 of file ElementBase.cpp.

References getChannel(), and Channel::isSettable().

Referenced by TBeamline< FlaggedElmPtr >::getChannel(), and OpalElement::updateUnknown().

Here is the call graph for this function:

◆ setBoundaryGeometry()

void ElementBase::setBoundaryGeometry ( BoundaryGeometry * geo)
virtualinherited

attach a boundary geometry field to the element

Definition at line 270 of file ElementBase.cpp.

References bgeometry_m.

Referenced by OpalCavity::update(), OpalCyclotron::update(), and OpalDrift::update().

◆ setCSTrafoGlobal2Local()

void ElementBase::setCSTrafoGlobal2Local ( const CoordinateSystemTrafo & ori)
inlineinherited

◆ setCurrentSCoordinate()

void ElementBase::setCurrentSCoordinate ( double s)
inherited

Definition at line 278 of file ElementBase.cpp.

◆ setElementLength()

◆ setElementPosition()

void ElementBase::setElementPosition ( double elemedge)
inlineinherited

Access to ELEMEDGE attribute.

Definition at line 583 of file ElementBase.h.

References elemedgeSet_m, and elementPosition_m.

Referenced by OpalElement::update().

◆ setFlagDeleteOnTransverseExit()

void ElementBase::setFlagDeleteOnTransverseExit ( bool flag = true)
inlineinherited

Definition at line 608 of file ElementBase.h.

References deleteOnTransverseExit_m.

Referenced by OpalElement::update().

◆ setInitialDirection()

template<class T>
void TBeamline< T >::setInitialDirection ( const Quaternion & rot)
inline

Definition at line 438 of file TBeamline.h.

References itsCoordTrafoTo_m.

Referenced by Line::parse().

◆ setMisalignment()

void ElementBase::setMisalignment ( const CoordinateSystemTrafo & cst)
inlineinherited

Definition at line 536 of file ElementBase.h.

References misalignment_m.

Referenced by OpalElement::update().

◆ setName()

void ElementBase::setName ( const std::string & name)
virtualinherited

Set element name.

Definition at line 167 of file ElementBase.cpp.

References elementID, and name.

Referenced by Sequence::insertDrifts(), Offset::operator=(), and VariableRFCavity::operator=().

◆ setOrigin3D()

template<class T>
void TBeamline< T >::setOrigin3D ( const Vector_t & ori)
inline

Definition at line 428 of file TBeamline.h.

References itsOrigin_m.

Referenced by Line::parse().

◆ setOutputFN()

◆ setParticleMatterInteraction()

◆ setRelativeFlag()

template<class T>
void TBeamline< T >::setRelativeFlag ( bool flag)
inline

Definition at line 448 of file TBeamline.h.

References relativePositions_m.

Referenced by Line::parse().

◆ setRotationAboutZ()

void ElementBase::setRotationAboutZ ( double rotation)
inlineinherited

Set rotation about z axis in bend frame.

Definition at line 569 of file ElementBase.h.

References rotationZAxis_m.

Referenced by OpalElement::update().

◆ setWake()

void ElementBase::setWake ( WakeFunction * wf)
virtualinherited

◆ size()

template<class T>
size_t TBeamline< T >::size ( ) const

Get the number of elements in the TBeamline.

Definition at line 458 of file TBeamline.h.

References begin(), and end().

Here is the call graph for this function:

◆ update()

bool ElementBase::update ( const AttributeSet & set)
inherited

Update element.

Definition at line 258 of file ElementBase.cpp.

Referenced by Monitor::driftToCorrectPositionAndSave().

Member Data Documentation

◆ actionRange_m

std::queue<std::pair<double, double> > ElementBase::actionRange_m
privateinherited

Definition at line 399 of file ElementBase.h.

Referenced by setActionRange().

◆ aperture_m

◆ bgeometry_m

BoundaryGeometry* ElementBase::bgeometry_m
privateinherited

◆ csTrafoGlobal2Local_m

◆ deleteOnTransverseExit_m

bool ElementBase::deleteOnTransverseExit_m = true
privateinherited

◆ elemedgeSet_m

bool ElementBase::elemedgeSet_m
privateinherited

◆ elementEdge_m

double ElementBase::elementEdge_m
protectedinherited

◆ elementID

std::string ElementBase::elementID
privateinherited

Definition at line 381 of file ElementBase.h.

Referenced by ElementBase(), getName(), and setName().

◆ elementPosition_m

double ElementBase::elementPosition_m
privateinherited

ELEMEDGE attribute.

Definition at line 396 of file ElementBase.h.

Referenced by ElementBase(), getElementPosition(), and setElementPosition().

◆ elements

T std::list< T >::elements
inherited

STL member.

◆ elementTypeToString_s

const std::map< ElementType, std::string > ElementBase::elementTypeToString_s
staticprivateinherited

Definition at line 71 of file ElementBase.h.

Referenced by getTypeString().

◆ itsCoordTrafoTo_m

template<class T>
Quaternion TBeamline< T >::itsCoordTrafoTo_m
protected

◆ itsGeometry

template<class T>
BeamlineGeometry TBeamline< T >::itsGeometry
protected

The beamline geometry.

Definition at line 149 of file TBeamline.h.

Referenced by getGeometry(), getGeometry(), TBeamline(), TBeamline(), and TBeamline().

◆ itsOrigin_m

template<class T>
Vector_t TBeamline< T >::itsOrigin_m
protected

◆ misalignment_m

CoordinateSystemTrafo ElementBase::misalignment_m
protectedinherited

Definition at line 367 of file ElementBase.h.

Referenced by ElementBase(), getMisalignment(), and setMisalignment().

◆ outputfn_m

std::string ElementBase::outputfn_m
privateinherited

The name of the outputfile

Definition at line 401 of file ElementBase.h.

Referenced by ElementBase(), getOutputFN(), and setOutputFN().

◆ parmatint_m

ParticleMatterInteractionHandler* ElementBase::parmatint_m
privateinherited

◆ positionIsFixed

bool ElementBase::positionIsFixed
privateinherited

◆ refCount

int RCObject::refCount
mutableprivateinherited

Definition at line 76 of file RCObject.h.

Referenced by addReference(), isShared(), RCObject(), RCObject(), and removeReference().

◆ relativePositions_m

template<class T>
bool TBeamline< T >::relativePositions_m
protected

◆ rotationZAxis_m

double ElementBase::rotationZAxis_m
protectedinherited

◆ shareFlag

bool ElementBase::shareFlag
mutableprotectedinherited

◆ userAttribs

AttributeSet ElementBase::userAttribs
privateinherited

Definition at line 386 of file ElementBase.h.

Referenced by ElementBase(), getChannel(), and removeAttribute().

◆ wake_m

WakeFunction* ElementBase::wake_m
privateinherited

Definition at line 388 of file ElementBase.h.

Referenced by ElementBase(), getWake(), hasWake(), and setWake().


The documentation for this class was generated from the following file: