1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file Sim/Simulation/OffspecSimulation.h
//! @brief Defines class OffspecSimulation.
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2018
//! @authors Scientific Computing Group at MLZ (see CITATION, AUTHORS)
//
// ************************************************************************************************
#ifndef BORNAGAIN_SIM_SIMULATION_OFFSPECSIMULATION_H
#define BORNAGAIN_SIM_SIMULATION_OFFSPECSIMULATION_H
#include "Base/Type/OwningVector.h"
#include "Sim/Simulation/ISimulation.h"
class Datafield;
class OffspecDetector;
class PhysicalScan;
class Pixel;
class ScanElement;
//! Off-specular scattering simulation.
//!
//! Holds an instrument and sample model.
//! Computes reflected and scattered intensity as function of incident and final glancing angle.
class OffspecSimulation : public ISimulation {
public:
OffspecSimulation(const PhysicalScan& scan, const Sample& sample,
const OffspecDetector& detector);
~OffspecSimulation() override;
std::string className() const final { return "OffspecSimulation"; }
#ifndef SWIG
std::vector<const INode*> nodeChildren() const override;
const PhysicalScan* scan() const { return m_scan.get(); }
const OffspecDetector& detector() const { return *m_detector; }
private:
//... Overridden executors:
void prepareSimulation() override;
void initScanElementVector() override;
void runComputation(const ReSample& re_sample, size_t iElement, double weight) override;
//... Overridden getters:
bool force_polarized() const override;
size_t nElements() const override;
Datafield packResult() const override;
//... Model components:
std::unique_ptr<PhysicalScan> m_scan;
std::unique_ptr<OffspecDetector> m_detector;
//... Caches:
OwningVector<const Pixel> m_pixels; //!< All unmasked pixels inside ROI.
std::vector<ScanElement> m_eles;
#endif // SWIG
};
#endif // BORNAGAIN_SIM_SIMULATION_OFFSPECSIMULATION_H
|