BornAgain  1.18.0
Simulate and fit neutron and x-ray scattering at grazing incidence
LLData.cpp
Go to the documentation of this file.
1 // ************************************************************************** //
2 //
3 // BornAgain: simulate and fit scattering at grazing incidence
4 //
5 //! @file Device/Data/LLData.cpp
6 //! @brief Implements template specializations for LLData.
7 //!
8 //! @homepage http://www.bornagainproject.org
9 //! @license GNU General Public License v3 or higher (see COPYING)
10 //! @copyright Forschungszentrum Jülich GmbH 2018
11 //! @authors Scientific Computing Group at MLZ (see CITATION, AUTHORS)
12 //
13 // ************************************************************************** //
14 
15 #include "Device/Data/LLData.h"
16 
17 template <> Eigen::Matrix2d LLData<Eigen::Matrix2d>::getZeroElement() const
18 {
19  Eigen::Matrix2d result = Eigen::Matrix2d::Zero();
20  return result;
21 }
Defines class LLData.
T getZeroElement() const
Definition: LLData.h:262