From 4fb46c0989b91903a622bb09cfcac1e7e7ce1f38 Mon Sep 17 00:00:00 2001 From: robbietuk Date: Mon, 28 Oct 2024 12:39:49 -0700 Subject: [PATCH] Add forward projector parsing key --- src/scatter_buildblock/ScatterEstimation.cxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/scatter_buildblock/ScatterEstimation.cxx b/src/scatter_buildblock/ScatterEstimation.cxx index d11a2dd94..e555eef14 100644 --- a/src/scatter_buildblock/ScatterEstimation.cxx +++ b/src/scatter_buildblock/ScatterEstimation.cxx @@ -112,6 +112,10 @@ ScatterEstimation::initialise_keymap() this->parser.add_key("mask projdata filename", &this->mask_projdata_filename); this->parser.add_key("tail fitting parameter filename", &this->tail_mask_par_filename); // END MASK + + // Forward projector for mask projection + this->parser.add_parsing_key("forward projector type", &this->forward_projector_sptr); + this->parser.add_key("background projdata filename", &this->back_projdata_filename); this->parser.add_parsing_key("Normalisation type", &this->norm_3d_sptr); this->parser.add_key("attenuation correction factors filename", &this->atten_coeff_filename);