/******************************************************************************* * This file is part of SWIFT. * Coypright (c) 2022 Bert Vandenbroucke (bert.vandenbroucke@gmail.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * ******************************************************************************/ #ifndef SWIFT_COOLING_DEBUG_H #define SWIFT_COOLING_DEBUG_H /* Config parameters. */ #include /* Import the debug routines of the right cooling definition */ #if defined(COOLING_NONE) #include "./cooling/none/cooling_debug.h" #elif defined(COOLING_CONST_DU) #include "./cooling/const_du/cooling_debug.h" #elif defined(COOLING_CONST_LAMBDA) #include "./cooling/const_lambda/cooling_debug.h" #elif defined(COOLING_COMPTON) #include "./cooling/Compton/cooling_debug.h" #elif defined(COOLING_GRACKLE) #include "./cooling/grackle/cooling_debug.h" #elif defined(COOLING_QLA) #include "./cooling/QLA/cooling_debug.h" #elif defined(COOLING_QLA_EAGLE) #include "./cooling/QLA_EAGLE/cooling_debug.h" #elif defined(COOLING_EAGLE) #include "./cooling/EAGLE/cooling_debug.h" #elif defined(COOLING_PS2020) #include "./cooling/PS2020/cooling_debug.h" #else #error "Invalid choice of cooling function." #endif #endif /* SWIFT_COOLING_DEBUG_H */