Update hooks and function names in Chemistry initialization

Max Luebke 2024-04-02 23:32:59 +02:00
parent 23d93f91cc
commit ade856e395

@ -90,8 +90,8 @@ Chemistry <- list(
hooks = list( # optional: List of hooks to run before and after certain steps
dht_fill = logical() <- function(numeric(), numeric()), # function to run before writing DHT
dht_fuzz = numeric() <- function(numeric()), # function to run before reading DHT
interp_pre_func = numeric() <- function(numeric(), list()), # function to run before interpolation
interp_post_func = logical() <- function(numeric()) # function to run after interpolation
interp_pre = numeric() <- function(numeric(), list()), # function to run before interpolation
interp_post = logical() <- function(numeric()) # function to run after interpolation
)
)
```