Skip to content
Snippets Groups Projects
Commit 8afc5d2b authored by Van Herck, Walter's avatar Van Herck, Walter
Browse files

Fixed some compilation issues and moved source file

parent 79d2a9b7
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,8 @@
#define SPECULARMATRIX_H_
#include "Types.h"
#include "ISimulation.h"
#include "MultiLayer.h"
//! Implements the matrix formalism for the calculation of wave amplitudes of
//! the coherent wave solution in a multilayer
......@@ -50,13 +52,13 @@ public:
inline size_t size() const { return m_data.size(); }
inline void clear() { m_data.clear(); }
inline void resize(size_t size) { m_data.resize(size); }
private:
std::vector<LayerMatrixCoeff > m_data;
complex_t R; // total reflection coefficient
complex_t L11;
complex_t L12;
complex_t L21;
complex_t L22;
private:
std::vector<LayerMatrixCoeff > m_data;
};
typedef MultiLayerMatrixCoeff MultiLayerCoeff_t; // set of layer coefficients for matrix formalism
......
File moved
......@@ -72,6 +72,7 @@ SOURCES += \
Algorithms/src/ResolutionFunction2DSimple.cpp \
Algorithms/src/Simulation.cpp \
Algorithms/src/SizeSpacingCorrelationApproximationStrategy.cpp \
Algorithms/src/SpecularMatrix.cpp \
Algorithms/src/StrategyBuilder.cpp \
\
FormFactors/src/FormFactorBox.cpp \
......@@ -219,6 +220,7 @@ HEADERS += \
Algorithms/inc/Simulation.h \
Algorithms/inc/SimulationParameters.h \
Algorithms/inc/SizeSpacingCorrelationApproximationStrategy.h \
Algorithms/inc/SpecularMatrix.h \
Algorithms/inc/StrategyBuilder.h \
Algorithms/inc/ThreadInfo.h \
\
......
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