#ifndef ROOT_TProofDebug
#define ROOT_TProofDebug
#ifndef ROOT_Rtypes
#include "Rtypes.h"
#endif
class TProofDebug {
public:
enum EProofDebugMask {
kNone = 0,
kPacketizer = 1,
kLoop = 2,
kSelector = 4,
kOutput = 8,
kInput = 16,
kGlobal = 32,
kPackage = 64,
kFeedback = 128,
kCondor = 256,
kDraw = 512,
kAsyn = 1024,
kCache = 2048,
kAll = 0xFFFFFFFF
};
};
R__EXTERN TProofDebug::EProofDebugMask gProofDebugMask;
R__EXTERN Int_t gProofDebugLevel;
#define PDB(mask,level) \
if ((TProofDebug::mask & gProofDebugMask) && gProofDebugLevel >= (level))
#endif
Last change: Tue Jul 8 16:57:29 2008
Last generated: 2008-07-08 16:57
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.