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 72 73 74 75 76 77 78 79 80 81
|
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file Sim/Simulation/DepthprobeSimulation.h
//! @brief Defines class DepthprobeSimulation.
//!
//! @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_DEPTHPROBESIMULATION_H
#define BORNAGAIN_SIM_SIMULATION_DEPTHPROBESIMULATION_H
#include "Sim/Simulation/ISimulation.h"
class BeamScan;
class IFootprint;
class Scale;
class ScanElement;
extern const int ZDirection_None;
extern const int ZDirection_Reflected;
extern const int ZDirection_Transmitted;
extern const int WaveProperty_Intensity;
extern const int WaveProperty_Modulus;
extern const int WaveProperty_Phase;
//! Simulation of radiation depth profile.
//!
//! Holds an instrument and sample model.
//! Computes radiation intensity as function of incoming glancing angle and penetration depth.
//! Scattered rays are neglected.
//! Only refraction, reflection and attenuation of the incoming beam are accounted for.
class DepthprobeSimulation : public ISimulation {
public:
DepthprobeSimulation(const BeamScan& scan, const Sample& sample, const Scale& zaxis,
int flags = 0);
~DepthprobeSimulation() override;
std::string className() const final { return "DepthprobeSimulation"; }
#ifndef SWIG
const BeamScan* scan() const { return m_scan.get(); }
const Scale& z_axis() const { return *m_z_axis.get(); }
std::vector<const INode*> nodeChildren() const override;
private:
//... Overridden executors:
void initScanElementVector() override;
void runComputation(const ReSample& re_sample, size_t iElement, double weight) override;
//... Overridden getters:
bool force_polarized() const override { return false; }
//! Returns the number of elements this simulation needs to calculate
size_t nElements() const override;
size_t nOutChannels() const override;
Datafield packResult() const override;
//... Model components:
std::unique_ptr<BeamScan> m_scan;
std::unique_ptr<Scale> m_z_axis;
const int m_flags;
//... Caches:
std::vector<ScanElement> m_eles;
#endif // SWIG
};
#endif // BORNAGAIN_SIM_SIMULATION_DEPTHPROBESIMULATION_H
|