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 // Make sure the logging macros are available
0010 #include "detray/utils/logging.hpp"
0011 
0012 // Allow to temporarily disable macro based logging.
0013 // Note: Has to be followed up by an include of "quiet_log_end"!
0014 #if defined(__GNUC__) && !defined(__IN_QUIET_LOG_SECTION__)
0015 
0016 // TODO: Define a macro for this instead of using headers
0017 #define __IN_QUIET_LOG_SECTION__
0018 
0019 #pragma push_macro("DETRAY_VERBOSE_HOST")
0020 #pragma push_macro("DETRAY_VERBOSE_DEVICE")
0021 #pragma push_macro("DETRAY_VERBOSE_HOST_DEVICE")
0022 #pragma push_macro("DETRAY_DEBUG_HOST")
0023 #pragma push_macro("DETRAY_DEBUG_DEVICE")
0024 #pragma push_macro("DETRAY_DEBUG_HOST_DEVICE")
0025 
0026 #undef DETRAY_VERBOSE_HOST
0027 #undef DETRAY_VERBOSE_DEVICE
0028 #undef DETRAY_VERBOSE_HOST_DEVICE
0029 #undef DETRAY_DEBUG_HOST
0030 #undef DETRAY_DEBUG_DEVICE
0031 #undef DETRAY_DEBUG_HOST_DEVICE
0032 
0033 #define DETRAY_VERBOSE_HOST(x)
0034 #define DETRAY_VERBOSE_DEVICE(x)
0035 #define DETRAY_VERBOSE_HOST_DEVICE(x)
0036 #define DETRAY_DEBUG_HOST(x)
0037 #define DETRAY_DEBUG_DEVICE(x)
0038 #define DETRAY_DEBUG_HOST_DEVICE(x)
0039 
0040 #endif