Chi-Tech
CBC_SPDS.h
Go to the documentation of this file.
1#ifndef CHITECH_CBC_SPDS_H
2#define CHITECH_CBC_SPDS_H
3
5
7
8namespace lbs
9{
10
11/**Cell-by-Cell (CBC) Sweep Plane Data Structure*/
13{
14public:
15 CBC_SPDS(const chi_mesh::Vector3& omega,
16 const chi_mesh::MeshContinuum& grid,
17 bool cycle_allowance_flag,
18 bool verbose);
19
20 const std::vector<chi_mesh::sweep_management::Task>& TaskList() const;
21
22protected:
23 std::vector<chi_mesh::sweep_management::Task> task_list_;
24};
25
26} // namespace lbs
27
28#endif // CHITECH_CBC_SPDS_H
const std::vector< chi_mesh::sweep_management::Task > & TaskList() const
Definition: CBC_SPDS.cc:151
std::vector< chi_mesh::sweep_management::Task > task_list_
Definition: CBC_SPDS.h:23
CBC_SPDS(const chi_mesh::Vector3 &omega, const chi_mesh::MeshContinuum &grid, bool cycle_allowance_flag, bool verbose)
Definition: CBC_SPDS.cc:15