BornAgain  1.18.0
Simulate and fit neutron and x-ray scattering at grazing incidence
GISASSpecularComputation.h
Go to the documentation of this file.
1 // ************************************************************************** //
2 //
3 // BornAgain: simulate and fit scattering at grazing incidence
4 //
5 //! @file Core/Computation/GISASSpecularComputation.h
6 //! @brief Defines class GISASSpecularComputation.
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 #ifndef BORNAGAIN_CORE_COMPUTATION_GISASSPECULARCOMPUTATION_H
16 #define BORNAGAIN_CORE_COMPUTATION_GISASSPECULARCOMPUTATION_H
17 
18 class IFresnelMap;
19 class SimulationElement;
20 
21 //! Computes the specular signal in the bin where q_parallel = 0. Used by DWBAComputation.
22 //! @ingroup algorithms_internal
23 
25 {
26 public:
27  GISASSpecularComputation(const IFresnelMap* p_fresnel_map);
28 
29  void compute(SimulationElement& elem) const;
30 
31 private:
33 };
34 
35 #endif // BORNAGAIN_CORE_COMPUTATION_GISASSPECULARCOMPUTATION_H
Computes the specular signal in the bin where q_parallel = 0.
const IFresnelMap * mp_fresnel_map
void compute(SimulationElement &elem) const
GISASSpecularComputation(const IFresnelMap *p_fresnel_map)
Holds the necessary information to calculate the radiation wavefunction in every layer for different ...
Definition: IFresnelMap.h:30
Data stucture containing both input and output of a single detector cell.