mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-21 14:35:27 -04:00
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
//! \file distribution_angle.h
|
|
//! Angle distribution dependent on incident particle energy
|
|
|
|
#ifndef OPENMC_DISTRIBUTION_ANGLE_H
|
|
#define OPENMC_DISTRIBUTION_ANGLE_H
|
|
|
|
#include "hdf5.h"
|
|
|
|
#include "openmc/distribution.h"
|
|
#include "openmc/vector.h"
|
|
|
|
namespace openmc {
|
|
|
|
//==============================================================================
|
|
//! Angle distribution that depends on incident particle energy
|
|
//==============================================================================
|
|
|
|
class AngleDistribution {
|
|
public:
|
|
AngleDistribution() = default;
|
|
explicit AngleDistribution(hid_t group);
|
|
|
|
//! Sample an angle given an incident particle energy
|
|
//! \param[in] E Particle energy in [eV]
|
|
//! \param[inout] seed pseudorandom number seed pointer
|
|
//! \return Cosine of the angle in the range [-1,1]
|
|
double sample(double E, uint64_t* seed) const;
|
|
|
|
//! Determine whether angle distribution is empty
|
|
//! \return Whether distribution is empty
|
|
bool empty() const { return energy_.empty(); }
|
|
|
|
private:
|
|
vector<double> energy_;
|
|
vector<unique_ptr<Tabular>> distribution_;
|
|
};
|
|
|
|
} // namespace openmc
|
|
|
|
#endif // OPENMC_DISTRIBUTION_ANGLE_H
|