Skip to content

Commit

Permalink
add ScatterEstimation::set_recompute_mask_image
Browse files Browse the repository at this point in the history
if STIR is recent enough
  • Loading branch information
KrisThielemans authored Jul 16, 2024
1 parent 24540cf commit f3fabf8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/xSTIR/cSTIR/include/sirf/STIR/stir_x.h
Original file line number Diff line number Diff line change
Expand Up @@ -910,10 +910,12 @@ The actual algorithm is described in
{
stir::ScatterEstimation::set_mask_proj_data_sptr(arg->data());
}
void set_recompute_mask_image(bool arg)
#if STIR_VERSION >= 060200
void set_recompute_mask_image(bool arg)
{
stir::ScatterEstimation::set_recompute_mask_image(arg);
}
#endif

//! Set prefix for filenames with scatter estimates.
/*!
Expand Down

0 comments on commit f3fabf8

Please sign in to comment.