Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-27 07:24:05

0001 // This file is part of the ACTS project.
0002 //
0003 // Copyright (C) 2016 CERN for the benefit of the ACTS project
0004 //
0005 // This Source Code Form is subject to the terms of the Mozilla Public
0006 // License, v. 2.0. If a copy of the MPL was not distributed with this
0007 // file, You can obtain one at https://mozilla.org/MPL/2.0/.
0008 
0009 #include "detray/utils/logging.hpp"
0010 
0011 // Allow to temporarily disable macro based logging.
0012 // Note: Has to be preceded by an include of "quiet_log_start"!
0013 #if defined(__GNUC__) && defined(__IN_QUIET_LOG_SECTION__)
0014 
0015 #undef DETRAY_VERBOSE_HOST
0016 #undef DETRAY_VERBOSE_DEVICE
0017 #undef DETRAY_VERBOSE_HOST_DEVICE
0018 #undef DETRAY_DEBUG_HOST
0019 #undef DETRAY_DEBUG_DEVICE
0020 #undef DETRAY_DEBUG_HOST_DEVICE
0021 
0022 #pragma pop_macro("DETRAY_VERBOSE_HOST")
0023 #pragma pop_macro("DETRAY_VERBOSE_DEVICE")
0024 #pragma pop_macro("DETRAY_VERBOSE_HOST_DEVICE")
0025 #pragma pop_macro("DETRAY_DEBUG_HOST")
0026 #pragma pop_macro("DETRAY_DEBUG_DEVICE")
0027 #pragma pop_macro("DETRAY_DEBUG_HOST_DEVICE")
0028 
0029 #undef __IN_QUIET_LOG_SECTION__
0030 
0031 #endif