#ifndef SWIFT_DUST_CHEMISTRY_COUPLING_H #define SWIFT_DUST_CHEMISTRY_COUPLING_H /** * @file src/dust_chemistry_coupling.h * @brief Branches between the different dust evolution models. */ /* Config parameters. */ #include /* Import the correct dust definition */ #if defined(DUST_NONE) #include "./dust/none/dust_chemistry_coupling.h" #elif defined(DUST_T20) #error Invalid dust model #include "./dust/T20/dust_chemistry_coupling.h" #elif defined(DUST_T20MS) #include "./dust/T20ms/dust_chemistry_coupling.h" #elif defined(DUST_M16) #error Invalid dust model #include "./dust/M16/dust_chemistry_coupling.h" #else #error "Invalid choice of dust model." #endif #endif /* SWIFT_DUST_CHEMISTRY_COUPLING_H */