Skip to content
Snippets Groups Projects
Commit 4c5c7964 authored by Pospelov, Gennady's avatar Pospelov, Gennady
Browse files

OffSpecInstrumentItem added.

parent dca7c774
No related branches found
No related tags found
No related merge requests found
......@@ -36,8 +36,8 @@ const QString GISASInstrumentItem::P_BEAM = "Beam";
const QString GISASInstrumentItem::P_DETECTOR = "Detector";
const QString GISASInstrumentItem::P_BACKGROUND = "Background";
GISASInstrumentItem::GISASInstrumentItem()
: InstrumentItem(Constants::GISASInstrumentType)
GISASInstrumentItem::GISASInstrumentItem(const QString& modelType)
: InstrumentItem(modelType)
{
addGroupProperty(P_BEAM, Constants::BeamType);
......@@ -105,3 +105,9 @@ QStringList GISASInstrumentItem::translateList(const QStringList& list) const
}
return result;
}
OffSpecInstrumentItem::OffSpecInstrumentItem()
: GISASInstrumentItem(Constants::OffSpecInstrumentType)
{
}
......@@ -37,7 +37,7 @@ public:
static const QString P_BEAM;
static const QString P_DETECTOR;
static const QString P_BACKGROUND;
GISASInstrumentItem();
explicit GISASInstrumentItem(const QString& modelType = Constants::GISASInstrumentType);
BeamItem* beamItem() const;
DetectorItem* detectorItem() const;
......@@ -54,4 +54,10 @@ public:
QStringList translateList(const QStringList& list) const override;
};
class BA_CORE_API_ OffSpecInstrumentItem : public GISASInstrumentItem
{
public:
OffSpecInstrumentItem();
};
#endif // INSTRUMENTITEMS_H
......@@ -78,6 +78,7 @@ ItemFactory::ItemMap_t initializeItemMap() {
result[Constants::InterferenceFunction2DLatticeType] = &createInstance<InterferenceFunction2DLatticeItem>;
result[Constants::InterferenceFunction1DLatticeType] = &createInstance<InterferenceFunction1DLatticeItem>;
result[Constants::GISASInstrumentType] = &createInstance<GISASInstrumentItem>;
result[Constants::OffSpecInstrumentType] = &createInstance<OffSpecInstrumentItem>;
result[Constants::BeamType] = &createInstance<BeamItem>;
result[Constants::BackgroundNoneType] = &createInstance<BackgroundNoneItem>;
result[Constants::ConstantBackgroundType] = &createInstance<ConstantBackgroundItem>;
......
......@@ -40,6 +40,7 @@ const ModelType InterferenceFunction2DParaCrystalType = "Interference2DParaCryst
const ModelType InterferenceFunction1DLatticeType = "Interference1DLattice";
const ModelType InterferenceFunction2DLatticeType = "Interference2DLattice";
const ModelType GISASInstrumentType = "GISASInstrument";
const ModelType OffSpecInstrumentType = "OffSpecInstrument";
const ModelType BeamType = "Beam";
const ModelType FormFactorType = "FormFactor";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment