https://mooseframework.inl.gov
Loading...
Searching...
No Matches
RepeatableRayStudy.h
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
3//*
4//* All rights reserved, see COPYRIGHT for full restrictions
5//* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6//*
7//* Licensed under LGPL 2.1, please see LICENSE for details
8//* https://www.gnu.org/licenses/lgpl-2.1.html
9
10#pragma once
11
13
14#include "Ray.h"
15
20{
21public:
23
25
26protected:
27 virtual void defineRays() override;
28
30 const std::vector<std::string> _names;
32 const std::vector<Point> _start_points;
34 const std::vector<Point> * const _end_points;
36 const std::vector<Point> * const _directions;
38 const std::vector<Real> * const _max_distances;
40 const std::vector<RayDataIndex> _ray_data_indices;
42 const std::vector<std::vector<Real>> * const _initial_ray_data;
44 const std::vector<RayDataIndex> _ray_aux_data_indices;
46 const std::vector<std::vector<Real>> * const _initial_ray_aux_data;
47};
const InputParameters & parameters() const
A RayTracingStudy that generates and traces Rays repeatedly that a user defines only once.
A RayTracingStudy in which the user defines a set of Rays that can be traced repeatedly.
const std::vector< Point > _start_points
The points to start the Rays from.
const std::vector< RayDataIndex > _ray_data_indices
The Ray data indices (if defined)
const std::vector< Real > *const _max_distances
The Ray max distances (if defined)
static InputParameters validParams()
const std::vector< Point > *const _directions
The Ray directions (if defined)
const std::vector< Point > *const _end_points
The Ray end points (if defined)
const std::vector< std::string > _names
The Ray names.
const std::vector< RayDataIndex > _ray_aux_data_indices
The Ray aux data indices (if defined)
const std::vector< std::vector< Real > > *const _initial_ray_aux_data
The initial Ray data to set (if defined)
virtual void defineRays() override
Entry point for the user to create Rays.
const std::vector< std::vector< Real > > *const _initial_ray_data
The initial Ray data to set (if defined)