BornAgain  1.18.0
Simulate and fit neutron and x-ray scattering at grazing incidence
CylindersBuilder.h
Go to the documentation of this file.
1 // ************************************************************************** //
2 //
3 // BornAgain: simulate and fit scattering at grazing incidence
4 //
5 //! @file Sample/StandardSamples/CylindersBuilder.h
6 //! @brief Defines classes of CylindersBuilder family.
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_STANDARDSAMPLES_CYLINDERSBUILDER_H
16 #define BORNAGAIN_CORE_STANDARDSAMPLES_CYLINDERSBUILDER_H
17 
19 
20 //! Builds sample: cylinder form factor in DWBA (IsGISAXS example #3, part I).
21 //! @ingroup standard_samples
22 
24 {
25 public:
27  MultiLayer* buildSample() const;
28 
29 private:
30  double m_height;
31  double m_radius;
32 };
33 
34 //! Builds sample: cylinder form factor in BA (IsGISAXS example #3, part II).
35 //! @ingroup standard_samples
36 
38 {
39 public:
41  MultiLayer* buildSample() const;
42 
43 private:
44  double m_height;
45  double m_radius;
46 };
47 
48 //! Builds sample with large cylinders for MC integration tests.
49 //! @ingroup standard_samples
50 
52 {
53 public:
55  MultiLayer* buildSample() const;
56 
57 private:
58  double m_height;
59  double m_radius;
60 };
61 
62 //! Builds sample: cylinder form factor in DWBA (IsGISAXS example #3, part I).
63 //! @ingroup standard_samples
64 
66 {
67 public:
69  MultiLayer* buildSample() const;
70 
71 private:
72  double m_height;
73  double m_radius;
74 };
75 
76 #endif // BORNAGAIN_CORE_STANDARDSAMPLES_CYLINDERSBUILDER_H
Defines pure virtual base class ISampleBuilder.
Builds sample: cylinder form factor in BA (IsGISAXS example #3, part II).
MultiLayer * buildSample() const
Builds sample: cylinder form factor in DWBA (IsGISAXS example #3, part I).
MultiLayer * buildSample() const
Interface to the class capable to build samples to simulate.
Builds sample with large cylinders for MC integration tests.
MultiLayer * buildSample() const
Our sample model: a stack of layers one below the other.
Definition: MultiLayer.h:42
Builds sample: cylinder form factor in DWBA (IsGISAXS example #3, part I).
MultiLayer * buildSample() const