ATLAS Offline Software
Loading...
Searching...
No Matches
SgPyMsg.h
Go to the documentation of this file.
1// -*- C++ -*-
2
3/*
4 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
5*/
6
7#ifndef STOREGATEBINDINGS_SGPYMSG_H
8#define STOREGATEBINDINGS_SGPYMSG_H 1
9
10#include <iostream>
11
12// enable debugging printouts !!! INTERNAL!!! DO NOT USE !!!
13//#define _SGPY_DO_DEBUG 1
14#ifdef _SGPY_DO_DEBUG
15# define _SGPY_MSG(x) \
16 std::cerr \
17 << "_SGPY_DEBUGGING__:" \
18 << __LINE__ <<": " \
19 << x \
20 << "\n"
21#else
22# define _SGPY_MSG(x) \
23 do {} while (0)
24#endif
25// -----------
26
27#endif // !STOREGATEBINDINGS_SGPYMSG_H
28