Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 84f32ef3 authored by snuverink_j's avatar snuverink_j
Browse files

throw exception if designenergy not defined or zero

parent 50bf3359
No related branches found
No related tags found
No related merge requests found
...@@ -568,7 +568,8 @@ void OpalElement::update() { ...@@ -568,7 +568,8 @@ void OpalElement::update() {
rotation = rotTheta * (rotPhi * rotPsi); rotation = rotTheta * (rotPhi * rotPsi);
} else { } else {
if (itsAttr[ORIENTATION]) { if (itsAttr[ORIENTATION]) {
throw OpalException("Line::parse","Parameter orientation is array of 3 values (theta, phi, psi);\n" + throw OpalException("OpalElement::update",
"Parameter orientation is array of 3 values (theta, phi, psi);\n" +
std::to_string(dir.size()) + " values provided"); std::to_string(dir.size()) + " values provided");
} }
} }
...@@ -577,7 +578,8 @@ void OpalElement::update() { ...@@ -577,7 +578,8 @@ void OpalElement::update() {
origin = Vector_t(ori[0], ori[1], ori[2]); origin = Vector_t(ori[0], ori[1], ori[2]);
} else { } else {
if (itsAttr[ORIGIN]) { if (itsAttr[ORIGIN]) {
throw OpalException("Line::parse","Parameter origin is array of 3 values (x, y, z);\n" + throw OpalException("OpalElement::update",
"Parameter origin is array of 3 values (x, y, z);\n" +
std::to_string(ori.size()) + " values provided"); std::to_string(ori.size()) + " values provided");
} }
} }
......
...@@ -24,7 +24,6 @@ ...@@ -24,7 +24,6 @@
#include "Structure/OpalWake.h" #include "Structure/OpalWake.h"
#include "Structure/ParticleMatterInteraction.h" #include "Structure/ParticleMatterInteraction.h"
#include "Utilities/OpalException.h" #include "Utilities/OpalException.h"
#include <cmath>
OpalRBend::OpalRBend(): OpalRBend::OpalRBend():
OpalBend("RBEND", OpalBend("RBEND",
...@@ -47,10 +46,8 @@ OpalRBend::OpalRBend(const std::string &name, OpalRBend *parent): ...@@ -47,10 +46,8 @@ OpalRBend::OpalRBend(const std::string &name, OpalRBend *parent):
OpalRBend::~OpalRBend() { OpalRBend::~OpalRBend() {
if(owk_m) delete owk_m;
delete owk_m; delete parmatint_m;
if(parmatint_m)
delete parmatint_m;
} }
...@@ -131,7 +128,7 @@ void OpalRBend::update() { ...@@ -131,7 +128,7 @@ void OpalRBend::update() {
double k0s = itsAttr[K0S] ? Attributes::getReal(itsAttr[K0S]) : 0.0; double k0s = itsAttr[K0S] ? Attributes::getReal(itsAttr[K0S]) : 0.0;
//JMJ 4/10/2000: above line replaced //JMJ 4/10/2000: above line replaced
// length ? angle / length : angle; // length ? angle / length : angle;
// to avoid closed orbit created by RBEND with defalt K0. // to avoid closed orbit created by RBEND with default K0.
field.setNormalComponent(1, factor * k0); field.setNormalComponent(1, factor * k0);
field.setSkewComponent(1, factor * Attributes::getReal(itsAttr[K0S])); field.setSkewComponent(1, factor * Attributes::getReal(itsAttr[K0S]));
field.setNormalComponent(2, factor * Attributes::getReal(itsAttr[K1])); field.setNormalComponent(2, factor * Attributes::getReal(itsAttr[K1]));
...@@ -177,8 +174,11 @@ void OpalRBend::update() { ...@@ -177,8 +174,11 @@ void OpalRBend::update() {
} }
// Energy in eV. // Energy in eV.
if(itsAttr[DESIGNENERGY]) { if(itsAttr[DESIGNENERGY] && Attributes::getReal(itsAttr[DESIGNENERGY]) != 0.0) {
bend->setDesignEnergy(Attributes::getReal(itsAttr[DESIGNENERGY]), false); bend->setDesignEnergy(Attributes::getReal(itsAttr[DESIGNENERGY]), false);
} else if (bend->getName() != "RBEND") {
throw OpalException("OpalRBend::update",
"RBend requires non-zero DESIGNENERGY");
} }
bend->setFullGap(Attributes::getReal(itsAttr[GAP])); bend->setFullGap(Attributes::getReal(itsAttr[GAP]));
......
...@@ -72,10 +72,8 @@ OpalRBend3D::OpalRBend3D(const std::string &name, OpalRBend3D *parent): ...@@ -72,10 +72,8 @@ OpalRBend3D::OpalRBend3D(const std::string &name, OpalRBend3D *parent):
} }
OpalRBend3D::~OpalRBend3D() { OpalRBend3D::~OpalRBend3D() {
if(owk_m) delete owk_m;
delete owk_m; delete parmatint_m;
if(parmatint_m)
delete parmatint_m;
} }
OpalRBend3D *OpalRBend3D::clone(const std::string &name) { OpalRBend3D *OpalRBend3D::clone(const std::string &name) {
...@@ -130,8 +128,11 @@ void OpalRBend3D::update() { ...@@ -130,8 +128,11 @@ void OpalRBend3D::update() {
bend->setEntranceAngle(e1); bend->setEntranceAngle(e1);
// Energy in eV. // Energy in eV.
if(itsAttr[DESIGNENERGY]) { if(itsAttr[DESIGNENERGY] && Attributes::getReal(itsAttr[DESIGNENERGY]) != 0.0) {
bend->setDesignEnergy(Attributes::getReal(itsAttr[DESIGNENERGY]), false); bend->setDesignEnergy(Attributes::getReal(itsAttr[DESIGNENERGY]), false);
} else if (bend->getName() != "RBEND3D") {
throw OpalException("OpalRBend3D::update",
"RBend3D requires non-zero DESIGNENERGY");
} }
bend->setFullGap(Attributes::getReal(itsAttr[GAP])); bend->setFullGap(Attributes::getReal(itsAttr[GAP]));
......
...@@ -24,7 +24,6 @@ ...@@ -24,7 +24,6 @@
#include "Structure/OpalWake.h" #include "Structure/OpalWake.h"
#include "Structure/ParticleMatterInteraction.h" #include "Structure/ParticleMatterInteraction.h"
#include "Utilities/OpalException.h" #include "Utilities/OpalException.h"
#include <cmath>
OpalSBend::OpalSBend(): OpalSBend::OpalSBend():
OpalBend("SBEND", OpalBend("SBEND",
...@@ -47,10 +46,8 @@ OpalSBend::OpalSBend(const std::string &name, OpalSBend *parent): ...@@ -47,10 +46,8 @@ OpalSBend::OpalSBend(const std::string &name, OpalSBend *parent):
OpalSBend::~OpalSBend() { OpalSBend::~OpalSBend() {
if(owk_m) delete owk_m;
delete owk_m; delete parmatint_m;
if(parmatint_m)
delete parmatint_m;
} }
...@@ -131,7 +128,7 @@ void OpalSBend::update() { ...@@ -131,7 +128,7 @@ void OpalSBend::update() {
double k0s = itsAttr[K0S] ? Attributes::getReal(itsAttr[K0S]) : 0.0; double k0s = itsAttr[K0S] ? Attributes::getReal(itsAttr[K0S]) : 0.0;
//JMJ 4/10/2000: above line replaced //JMJ 4/10/2000: above line replaced
// length ? angle / length : angle; // length ? angle / length : angle;
// to avoid closed orbit created by SBEND with defalt K0. // to avoid closed orbit created by SBEND with default K0.
field.setNormalComponent(1, factor * k0); field.setNormalComponent(1, factor * k0);
field.setSkewComponent(1, factor * Attributes::getReal(itsAttr[K0S])); field.setSkewComponent(1, factor * Attributes::getReal(itsAttr[K0S]));
field.setNormalComponent(2, factor * Attributes::getReal(itsAttr[K1])); field.setNormalComponent(2, factor * Attributes::getReal(itsAttr[K1]));
...@@ -163,11 +160,11 @@ void OpalSBend::update() { ...@@ -163,11 +160,11 @@ void OpalSBend::update() {
if(itsAttr[GREATERTHANPI]) if(itsAttr[GREATERTHANPI])
throw OpalException("OpalSBend::update", throw OpalException("OpalSBend::update",
"GREATERTHANPI not supportet any more"); "GREATERTHANPI not supported anymore");
if(itsAttr[ROTATION]) if(itsAttr[ROTATION])
throw OpalException("OpalSBend::update", throw OpalException("OpalSBend::update",
"ROTATION not supportet any more; use PSI instead"); "ROTATION not supported anymore; use PSI instead");
if(itsAttr[FMAPFN]) if(itsAttr[FMAPFN])
bend->setFieldMapFN(Attributes::getString(itsAttr[FMAPFN])); bend->setFieldMapFN(Attributes::getString(itsAttr[FMAPFN]));
...@@ -183,15 +180,18 @@ void OpalSBend::update() { ...@@ -183,15 +180,18 @@ void OpalSBend::update() {
bend->setExitAngle(e2); bend->setExitAngle(e2);
// Units are eV. // Units are eV.
if(itsAttr[DESIGNENERGY]) { if(itsAttr[DESIGNENERGY] && Attributes::getReal(itsAttr[DESIGNENERGY]) != 0.0) {
bend->setDesignEnergy(Attributes::getReal(itsAttr[DESIGNENERGY]), false); bend->setDesignEnergy(Attributes::getReal(itsAttr[DESIGNENERGY]), false);
} else if (bend->getName() != "SBEND") {
throw OpalException("OpalSBend::update",
"SBend requires non-zero DESIGNENERGY");
} }
bend->setFullGap(Attributes::getReal(itsAttr[GAP])); bend->setFullGap(Attributes::getReal(itsAttr[GAP]));
if(itsAttr[APERT]) if(itsAttr[APERT])
throw OpalException("OpalRBend::fillRegisteredAttributes", throw OpalException("OpalSBend::update",
"APERTURE in RBEND not supported; use GAP and HAPERT instead"); "APERTURE in SBEND not supported; use GAP and HAPERT instead");
if(itsAttr[HAPERT]) { if(itsAttr[HAPERT]) {
double hapert = Attributes::getReal(itsAttr[HAPERT]); double hapert = Attributes::getReal(itsAttr[HAPERT]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment