Simulation of decay photons through the D1S method (#3235)

D1S FTW!
This commit is contained in:
Paul Romano 2025-02-21 11:47:38 -06:00 committed by GitHub
parent 2b788ea6e0
commit d643ad0c41
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
36 changed files with 1298 additions and 101 deletions

View file

@ -75,6 +75,7 @@ bool trigger_predict {false};
bool uniform_source_sampling {false};
bool ufs_on {false};
bool urr_ptables_on {true};
bool use_decay_photons {false};
bool weight_windows_on {false};
bool weight_window_checkpoint_surface {false};
bool weight_window_checkpoint_collision {true};
@ -1124,6 +1125,11 @@ void read_settings_xml(pugi::xml_node root)
get_node_value_bool(ww_checkpoints, "surface");
}
}
if (check_for_node(root, "use_decay_photons")) {
settings::use_decay_photons =
get_node_value_bool(root, "use_decay_photons");
}
}
void free_memory_settings()