BornAgain  1.19.79
Open-source research software to simulate and fit neutron and x-ray reflectometry and grazing-incidence small-angle scattering
ReadReflectometry.h
Go to the documentation of this file.
1 // ************************************************************************************************
2 //
3 // BornAgain: simulate and fit reflection and scattering
4 //
5 //! @file Device/IO/ReadReflectometry.h
6 //! @brief Defines ReadReflectometry
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 #ifdef SWIG
16 #error no need to expose this header to Swig
17 #endif
18 
19 #ifndef USER_API
20 #ifndef BORNAGAIN_DEVICE_IO_READREFLECTOMETRY_H
21 #define BORNAGAIN_DEVICE_IO_READREFLECTOMETRY_H
22 
23 #include <istream>
24 
25 class Datafield;
26 
27 //! Class for reading reflectometry data from ASCII file.
28 
30 public:
31  Datafield* readDatafield(std::istream& inStream);
32 };
33 
34 #endif // BORNAGAIN_DEVICE_IO_READREFLECTOMETRY_H
35 #endif // USER_API
Stores radiation power per bin.
Definition: Datafield.h:30
Class for reading reflectometry data from ASCII file.
Datafield * readDatafield(std::istream &inStream)