ATLAS Offline Software
Loading...
Searching...
No Matches
Debugger.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3 */
4
5#ifndef IDDICT_Debugger_H
6#define IDDICT_Debugger_H
7
9{
10public:
11 static bool get_debug_state() {
12 if (::getenv("IDDEBUG") != 0) {
13 return true;
14 }
15 return false;
16 }
17
18 static bool debug() {
19 static const bool debug_state = get_debug_state();
20
21 return debug_state;
22 }
23};
24
25#endif
static bool get_debug_state()
Definition Debugger.h:11
static bool debug()
Definition Debugger.h:18