Skip to content
Snippets Groups Projects
Commit 0b94734f authored by Beerwerth, Randolf's avatar Beerwerth, Randolf
Browse files

Fix line length

parent cab4b400
No related branches found
No related tags found
No related merge requests found
...@@ -36,9 +36,11 @@ public: ...@@ -36,9 +36,11 @@ public:
//! Computes refraction angle reflection/transmission coefficients //! Computes refraction angle reflection/transmission coefficients
//! for given sliced multilayer and wavevector k //! for given sliced multilayer and wavevector k
ISpecularStrategy::coeffs_t Execute(const std::vector<Slice>& slices, const kvector_t& k) const; ISpecularStrategy::coeffs_t Execute(const std::vector<Slice>& slices,
const kvector_t& k) const;
ISpecularStrategy::coeffs_t Execute(const std::vector<Slice>& slices, const std::vector<complex_t>& kz) const; ISpecularStrategy::coeffs_t Execute(const std::vector<Slice>& slices,
const std::vector<complex_t>& kz) const;
}; // class SpecularMagneticStrategy_v1 }; // class SpecularMagneticStrategy_v1
......
...@@ -39,7 +39,8 @@ public: ...@@ -39,7 +39,8 @@ public:
//! Computes refraction angle reflection/transmission coefficients //! Computes refraction angle reflection/transmission coefficients
//! for given sliced multilayer and wavevector k //! for given sliced multilayer and wavevector k
ISpecularStrategy::coeffs_t Execute(const std::vector<Slice>& slices, const kvector_t& k) const; ISpecularStrategy::coeffs_t Execute(const std::vector<Slice>& slices,
const kvector_t& k) const;
//! Computes refraction angle reflection/transmission coefficients //! Computes refraction angle reflection/transmission coefficients
//! for given sliced multilayer and a set of kz projections corresponding to each slice //! for given sliced multilayer and a set of kz projections corresponding to each slice
......
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