Skip to content
Snippets Groups Projects
Commit 73a510ae authored by Pospelov, Gennady's avatar Pospelov, Gennady
Browse files

Warning message in MultiLayer if top layer has thickness defined.

parent 63399aa4
No related branches found
No related tags found
No related merge requests found
...@@ -13,12 +13,12 @@ ...@@ -13,12 +13,12 @@
// //
// ************************************************************************** // // ************************************************************************** //
#include "MultiLayer.h"
#include "MessageService.h"
#include <algorithm> #include <algorithm>
#include <stdexcept> #include <stdexcept>
#include <iomanip> #include <iomanip>
#include "MultiLayer.h"
MultiLayer::MultiLayer() : m_crossCorrLength(0) MultiLayer::MultiLayer() : m_crossCorrLength(0)
{ {
setName("MultiLayer"); setName("MultiLayer");
...@@ -174,6 +174,12 @@ void MultiLayer::addLayerWithTopRoughness( ...@@ -174,6 +174,12 @@ void MultiLayer::addLayerWithTopRoughness(
addAndRegisterLayer(p_new_layer); addAndRegisterLayer(p_new_layer);
m_layers_z.push_back(m_layers_z.back() - layer.getThickness() ); m_layers_z.push_back(m_layers_z.back() - layer.getThickness() );
return; return;
} else {
if(p_new_layer->getThickness() != 0.0) {
msglog(MSG::ERROR) << "MultiLayer::addLayer() -> Attempt to add top layer with "
<< "thickness defined. The layer is semi-infinite. Thickness will be ignored.";
p_new_layer->setThickness(0.0);
}
} }
addAndRegisterLayer(p_new_layer); addAndRegisterLayer(p_new_layer);
m_layers_z.push_back(0.0); m_layers_z.push_back(0.0);
......
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