OPAL (Object Oriented Parallel Accelerator Library) 2022.1
OPAL
|
Interface for general corrector. More...
#include <Corrector.h>
Public Types | |
enum | Plane { OFF , X , Y , XY } |
Plane selection. More... | |
Public Member Functions | |
Corrector (const std::string &name) | |
Constructor with given name. More... | |
Corrector () | |
Corrector (const Corrector &right) | |
virtual | ~Corrector () |
virtual void | accept (BeamlineVisitor &) const |
Apply a visitor to Corrector. More... | |
virtual BDipoleField & | getField ()=0 |
Return the corrector field. More... | |
virtual const BDipoleField & | getField () const =0 |
Return the corrector field. More... | |
virtual StraightGeometry & | getGeometry ()=0 |
Return the corrector geometry. More... | |
virtual const StraightGeometry & | getGeometry () const =0 |
Return the corrector geometry. Version for const object. More... | |
virtual Plane | getPlane () const =0 |
Return the plane on which the corrector acts. More... | |
virtual bool | apply (const size_t &i, const double &t, Vector_t &E, Vector_t &B) |
virtual bool | apply (const Vector_t &R, const Vector_t &P, const double &t, Vector_t &E, Vector_t &B) |
virtual void | initialise (PartBunchBase< double, 3 > *bunch, double &startField, double &endField) |
virtual void | goOnline (const double &kineticEnergy) |
virtual void | finalise () |
virtual bool | bends () const |
virtual ElementType | getType () const |
Get element type std::string. More... | |
virtual void | getDimensions (double &zBegin, double &zEnd) const |
void | setKickX (double k) |
void | setKickY (double k) |
virtual void | setDesignEnergy (const double &ekin, bool changeable=true) |
double | getKickX () const |
double | getKickY () const |
void | setKickField (const Vector_t &k0) |
Public Member Functions inherited from Component | |
Component (const std::string &name) | |
Constructor with given name. More... | |
Component () | |
Component (const Component &right) | |
virtual | ~Component () |
virtual EMField & | getField ()=0 |
Return field. More... | |
virtual const EMField & | getField () const =0 |
Return field. More... | |
EVector | Efield (const Point3D &P) const |
Return the field in a point. More... | |
BVector | Bfield (const Point3D &P) const |
Return the field in a point. More... | |
EVector | Efield (const Point3D &P, double t) const |
Return the field in a point. More... | |
BVector | Bfield (const Point3D &P, double t) const |
Return the field in a point. More... | |
EBVectors | EBfield (const Point3D &P) const |
Return the field in a point. More... | |
EBVectors | EBfield (const Point3D &P, double t) const |
Return the field in a point. More... | |
virtual bool | apply (const size_t &i, const double &t, Vector_t &E, Vector_t &B) |
virtual bool | apply (const Vector_t &R, const Vector_t &P, const double &t, Vector_t &E, Vector_t &B) |
virtual bool | applyToReferenceParticle (const Vector_t &R, const Vector_t &P, const double &t, Vector_t &E, Vector_t &B) |
virtual bool | getPotential (const Vector_t &, const double &, Vector_t &, double &) |
virtual double | getDesignEnergy () const |
virtual void | setDesignEnergy (const double &energy, bool changeable=true) |
virtual void | initialise (PartBunchBase< double, 3 > *bunch, double &startField, double &endField)=0 |
virtual void | finalise ()=0 |
virtual bool | bends () const =0 |
virtual void | goOnline (const double &kineticEnergy) |
virtual void | goOffline () |
virtual bool | Online () |
virtual void | getDimensions (double &zBegin, double &zEnd) const =0 |
virtual ElementType | getType () const |
Get element type std::string. More... | |
virtual const ElementBase & | getDesign () const |
Return design element. More... | |
virtual void | trackBunch (PartBunchBase< double, 3 > *bunch, const PartData &, bool revBeam, bool revTrack) const |
Track particle bunch. More... | |
virtual void | trackMap (FVps< double, 6 > &map, const PartData &, bool revBeam, bool revTrack) const |
Track a map. More... | |
void | setExitFaceSlope (const double &) |
Public Member Functions inherited from ElementBase | |
ElementBase (const std::string &name) | |
Constructor with given name. More... | |
ElementBase () | |
ElementBase (const ElementBase &) | |
virtual | ~ElementBase () |
virtual const std::string & | getName () const |
Get element name. More... | |
virtual void | setName (const std::string &name) |
Set element name. More... | |
virtual ElementType | getType () const =0 |
Get element type std::string. More... | |
std::string | getTypeString () const |
virtual BGeometryBase & | getGeometry ()=0 |
Get geometry. More... | |
virtual const BGeometryBase & | getGeometry () const =0 |
Get geometry. More... | |
virtual double | getArcLength () const |
Get arc length. More... | |
virtual double | getElementLength () const |
Get design length. More... | |
virtual void | setElementLength (double length) |
Set design length. More... | |
virtual void | getElementDimensions (double &begin, double &end) const |
virtual double | getOrigin () const |
Get origin position. More... | |
virtual double | getEntrance () const |
Get entrance position. More... | |
virtual double | getExit () const |
Get exit position. More... | |
virtual Euclid3D | getTransform (double fromS, double toS) const |
Get transform. More... | |
virtual Euclid3D | getTransform (double s) const |
Get transform. More... | |
virtual Euclid3D | getTotalTransform () const |
Get transform. More... | |
virtual Euclid3D | getEntranceFrame () const |
Get transform. More... | |
virtual Euclid3D | getExitFrame () const |
Get transform. More... | |
virtual Euclid3D | getEntrancePatch () const |
Get patch. More... | |
virtual Euclid3D | getExitPatch () const |
Get patch. More... | |
virtual double | getAttribute (const std::string &aKey) const |
Get attribute value. More... | |
virtual bool | hasAttribute (const std::string &aKey) const |
Test for existence of an attribute. More... | |
virtual void | removeAttribute (const std::string &aKey) |
Remove an existing attribute. More... | |
virtual void | setAttribute (const std::string &aKey, double val) |
Set value of an attribute. More... | |
virtual Channel * | getChannel (const std::string &aKey, bool create=false) |
Construct a read/write channel. More... | |
virtual const ConstChannel * | getConstChannel (const std::string &aKey) const |
Construct a read-only channel. More... | |
virtual void | accept (BeamlineVisitor &visitor) const =0 |
Apply visitor. More... | |
virtual ElementBase * | clone () const =0 |
Return clone. More... | |
virtual ElementBase * | copyStructure () |
Make a structural copy. More... | |
bool | isSharable () const |
Test if the element can be shared. More... | |
virtual void | makeSharable () |
Set sharable flag. More... | |
bool | update (const AttributeSet &) |
Update element. More... | |
virtual void | setBoundaryGeometry (BoundaryGeometry *geo) |
virtual BoundaryGeometry * | getBoundaryGeometry () const |
return the attached boundary geometrt object if there is any More... | |
virtual bool | hasBoundaryGeometry () const |
virtual void | setWake (WakeFunction *wf) |
attach a wake field to the element More... | |
virtual WakeFunction * | getWake () const |
return the attached wake object if there is any More... | |
virtual bool | hasWake () const |
virtual void | setParticleMatterInteraction (ParticleMatterInteractionHandler *spys) |
virtual ParticleMatterInteractionHandler * | getParticleMatterInteraction () 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. More... | |
double | getRotationAboutZ () const |
virtual BoundingBox | getBoundingBoxInLabCoords () const |
virtual int | getRequiredNumberOfTimeSteps () const |
void | setOutputFN (std::string fn) |
Set output filename. More... | |
std::string | getOutputFN () const |
Get output filename. More... | |
void | setFlagDeleteOnTransverseExit (bool=true) |
bool | getFlagDeleteOnTransverseExit () const |
void | setElementPosition (double elemedge) |
Access to ELEMEDGE attribute. More... | |
double | getElementPosition () const |
bool | isElementPositionSet () const |
Public Member Functions inherited from RCObject | |
int | addReference () const |
Increment reference count. More... | |
int | removeReference () const |
Decrement the reference count. More... | |
bool | isShared () const |
Test for sharing. More... | |
Protected Member Functions | |
void | operator= (const Corrector &) |
Protected Member Functions inherited from ElementBase | |
bool | isInsideTransverse (const Vector_t &r) const |
Protected Member Functions inherited from RCObject | |
RCObject () | |
Default constructor. More... | |
RCObject (const RCObject &) | |
Copy constructor. More... | |
virtual | ~RCObject ()=0 |
RCObject & | operator= (const RCObject &right) |
Protected Attributes | |
Plane | plane_m |
Protected Attributes inherited from Component | |
double | exit_face_slope_m |
PartBunchBase< double, 3 > * | RefPartBunch_m |
bool | online_m |
Protected Attributes inherited from ElementBase | |
bool | shareFlag |
CoordinateSystemTrafo | csTrafoGlobal2Local_m |
CoordinateSystemTrafo | misalignment_m |
std::pair< ApertureType, std::vector< double > > | aperture_m |
double | elementEdge_m |
double | rotationZAxis_m |
Private Attributes | |
double | kickX_m |
double | kickY_m |
double | designEnergy_m |
bool | designEnergyChangeable_m |
bool | kickFieldSet_m |
Vector_t | kickField_m |
Additional Inherited Members | |
Static Public Member Functions inherited from ElementBase | |
static std::string | getTypeString (ElementType type) |
Static Protected Attributes inherited from Component | |
static const std::vector< double > | defaultAperture_m |
Interface for general corrector.
Definition at line 35 of file Corrector.h.
enum Corrector::Plane |
|
explicit |
Constructor with given name.
Definition at line 48 of file Corrector.cpp.
Corrector::Corrector | ( | ) |
Definition at line 32 of file Corrector.cpp.
Corrector::Corrector | ( | const Corrector & | right | ) |
Definition at line 37 of file Corrector.cpp.
|
virtual |
Definition at line 59 of file Corrector.cpp.
|
virtual |
Apply a visitor to Corrector.
Implements ElementBase.
Definition at line 63 of file Corrector.cpp.
References BeamlineVisitor::visitCorrector().
Reimplemented from Component.
Definition at line 67 of file Corrector.cpp.
References apply(), PartBunchBase< T, Dim >::P, PartBunchBase< T, Dim >::R, Attrib::Distribution::R, and Component::RefPartBunch_m.
Referenced by apply().
|
virtual |
Reimplemented from Component.
Definition at line 74 of file Corrector.cpp.
References Physics::c, PartBunchBase< T, Dim >::getdT(), ElementBase::getElementLength(), ElementBase::getFlagDeleteOnTransverseExit(), Util::getGamma(), ElementBase::isInsideTransverse(), kickField_m, Attrib::Distribution::R, and Component::RefPartBunch_m.
|
virtual |
Implements Component.
Definition at line 141 of file Corrector.cpp.
|
virtual |
Implements Component.
Definition at line 105 of file Corrector.cpp.
|
virtual |
Implements Component.
Definition at line 145 of file Corrector.cpp.
References ElementBase::getElementLength().
|
pure virtual |
|
pure virtual |
|
pure virtual |
Return the corrector geometry. Version for const object.
Implements ElementBase.
Implemented in CorrectorRep.
|
pure virtual |
Return the corrector geometry.
Implements ElementBase.
Implemented in CorrectorRep.
Referenced by goOnline(), and setDesignEnergy().
|
inline |
Definition at line 142 of file Corrector.h.
References kickX_m.
|
inline |
Definition at line 147 of file Corrector.h.
References kickY_m.
|
pure virtual |
Return the plane on which the corrector acts.
Implemented in CorrectorRep, XCorrectorRep, and YCorrectorRep.
|
virtual |
Get element type std::string.
Reimplemented from Component.
Definition at line 151 of file Corrector.cpp.
References CORRECTOR.
|
virtual |
Reimplemented from Component.
Definition at line 108 of file Corrector.cpp.
References Physics::c, designEnergy_m, PartBunchBase< T, Dim >::getdT(), StraightGeometry::getElementLength(), getGeometry(), PartBunchBase< T, Dim >::getM(), kickFieldSet_m, pow(), Component::RefPartBunch_m, and sqrt().
|
virtual |
Implements Component.
Definition at line 100 of file Corrector.cpp.
References ElementBase::getElementLength(), and Component::RefPartBunch_m.
|
protected |
|
virtual |
Reimplemented from Component.
Definition at line 126 of file Corrector.cpp.
References designEnergy_m, designEnergyChangeable_m, StraightGeometry::getElementLength(), getGeometry(), PartBunchBase< T, Dim >::getM(), kickFieldSet_m, pow(), Component::RefPartBunch_m, and sqrt().
Referenced by OpalHKicker::update(), OpalKicker::update(), and OpalVKicker::update().
|
inline |
Definition at line 152 of file Corrector.h.
References kickField_m, and kickFieldSet_m.
Referenced by OpalHKicker::update(), OpalKicker::update(), and OpalVKicker::update().
|
inline |
Definition at line 132 of file Corrector.h.
References kickX_m.
Referenced by OpalHKicker::update(), and OpalKicker::update().
|
inline |
Definition at line 137 of file Corrector.h.
References kickY_m.
Referenced by OpalKicker::update(), and OpalVKicker::update().
|
private |
Definition at line 117 of file Corrector.h.
Referenced by goOnline(), and setDesignEnergy().
|
private |
Definition at line 118 of file Corrector.h.
Referenced by setDesignEnergy().
|
private |
Definition at line 121 of file Corrector.h.
Referenced by apply(), and setKickField().
|
private |
Definition at line 119 of file Corrector.h.
Referenced by goOnline(), setDesignEnergy(), and setKickField().
|
private |
Definition at line 115 of file Corrector.h.
Referenced by getKickX(), and setKickX().
|
private |
Definition at line 116 of file Corrector.h.
Referenced by getKickY(), and setKickY().
|
protected |
Definition at line 128 of file Corrector.h.