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

Description

Definition at line 81 of file FormFactorItems.h.

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

Public Member Functions

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

Constructor & Destructor Documentation

◆ BarLorentzItem()

BarLorentzItem::BarLorentzItem ( )

Definition at line 50 of file FormFactorItems.cpp.

51 {
52  m_length.init("Length", "Length of the base", 20.0, Unit::nanometer, "length");
53  m_width.init("Width", "Width of the base", 16.0, Unit::nanometer, "width");
54  m_height.init("Height", "Height of the box", 13.0, Unit::nanometer, "height");
55 }
@ nanometer

References nanometer.

Member Function Documentation

◆ createFormFactor()

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

Implements FormFactorItem.

Definition at line 57 of file FormFactorItems.cpp.

58 {
59  return std::make_unique<BarLorentz>(length(), width(), height());
60 }

◆ geometryValues()

DoubleDescriptors BarLorentzItem::geometryValues ( ) const
inlineoverridevirtual

Implements FormFactorItem.

Definition at line 90 of file FormFactorItems.h.

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

◆ serializationProperties()

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

Implements FormFactorItem.

Definition at line 91 of file FormFactorItems.h.

92  {
93  return {&m_length, &m_width, &m_height};
94  }

◆ 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: