23 virtual void execute()
override;
44 std::vector<const MooseVariableField<Real> *>
_fv_vars;
Base class for VectorPostprocessors that need to do "sampling" of values in the domain.
SideValueSampler(const InputParameters ¶meters)
std::vector< Real > _values
So we don't have to create and destroy this vector over and over again.
static InputParameters validParams()
virtual void finalize() override
Finalize the values.
virtual void threadJoin(const SamplerBase &y)
Join the values.
virtual void threadJoin(const UserObject &y) override
Must override.
virtual void execute() override
Execute method.
const InputParameters & parameters() const
Get the parameters of the object.
bool _qp_sampling
Whether to sample over side quadrature points or FaceInfos.
virtual void initialize() override
Initialize the datastructures.
std::vector< const MooseVariableField< Real > * > _fv_vars
Pointers to the FV variables to sample (if any)
Base class for user-specific data.