BornAgain  1.19.79
Simulate and fit neutron and x-ray scattering at grazing incidence
BoxItem Class Reference

Description

Definition at line 97 of file FormFactorItems.h.

Inheritance diagram for BoxItem:
[legend]
Collaboration diagram for BoxItem:
[legend]

Public Member Functions

 BoxItem ()
 
std::unique_ptr< IFormFactor > createFormFactor () const override
 
DoubleDescriptors geometryValues () const override
 
QVector< DoubleProperty * > serializationProperties () override
 
virtual void serialize (Streamer &s)
 

Constructor & Destructor Documentation

◆ BoxItem()

BoxItem::BoxItem ( )

Definition at line 64 of file FormFactorItems.cpp.

65 {
66  m_length.init("Length", "Length of the base", 20.0, Unit::nanometer, "length");
67  m_width.init("Width", "Width of the base", 16.0, Unit::nanometer, "width");
68  m_height.init("Height", "Height of the box", 13.0, Unit::nanometer, "height");
69 }
@ nanometer

References nanometer.

Member Function Documentation

◆ createFormFactor()

std::unique_ptr< IFormFactor > BoxItem::createFormFactor ( ) const
overridevirtual

Implements FormFactorItem.

Definition at line 71 of file FormFactorItems.cpp.

72 {
73  return std::make_unique<Box>(length(), width(), height());
74 }

◆ geometryValues()

DoubleDescriptors BoxItem::geometryValues ( ) const
inlineoverridevirtual

Implements FormFactorItem.

Definition at line 106 of file FormFactorItems.h.

106 { return {length(), width(), height()}; }

◆ serializationProperties()

QVector<DoubleProperty*> BoxItem::serializationProperties ( )
inlineoverridevirtual

Implements FormFactorItem.

Definition at line 107 of file FormFactorItems.h.

108  {
109  return {&m_length, &m_width, &m_height};
110  }

◆ serialize()

void FormFactorItem::serialize ( Streamer s)
virtualinherited

Definition at line 473 of file FormFactorItems.cpp.

474 {
475  s.assertVersion(0);
476  for (auto* p : serializationProperties())
477  Serialize::rwProperty(s, *p);
478 }
virtual QVector< DoubleProperty * > serializationProperties()=0
void assertVersion(unsigned expectedVersion) const
As reader, throws DeserializationException unless the expected version is read. As writer,...
Definition: Streamer.cpp:26
void rwProperty(Streamer &s, DoubleProperty &d)

References Streamer::assertVersion(), Serialize::rwProperty(), and FormFactorItem::serializationProperties().

Here is the call graph for this function:

The documentation for this class was generated from the following files: