CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/FWCore/Utilities/src/DebugMacros.cc

Go to the documentation of this file.
00001 
00002 #include "FWCore/Utilities/interface/DebugMacros.h"
00003 
00004 #include <cstdlib>
00005 
00006 namespace edm {
00007 
00008   debugvalue::debugvalue():
00009     cvalue_(getenv("PROC_DEBUG")),
00010     value_(cvalue_==0 ? 0 : atoi(cvalue_))
00011   { }
00012   
00013   debugvalue debugit;
00014   
00015 }