Skip to content

Commit 292ab4a

Browse files
author
Markus Jehl
committed
Adding function to get half filter width.
1 parent c69784c commit 292ab4a

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

src/include/stir/scatter/ScatterEstimation.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ class ScatterEstimation : public ParsingObject
174174

175175
inline void set_num_iterations(int);
176176

177+
inline unsigned int get_half_filter_width() const;
177178
inline void set_half_filter_width(unsigned int);
178179

179180
inline void

src/include/stir/scatter/ScatterEstimation.inl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,12 @@ ScatterEstimation::set_num_iterations(int arg)
6666
this->num_scatter_iterations = arg;
6767
}
6868

69+
unsigned int
70+
ScatterEstimation::get_half_filter_width() const
71+
{
72+
return this->half_filter_width;
73+
}
74+
6975
void
7076
ScatterEstimation::set_half_filter_width(unsigned int arg)
7177
{

0 commit comments

Comments
 (0)