00001 #ifndef FWCore_Framework_Breakpoints_h 00002 #define FWCore_Framework_Breakpoints_h 00003 /* 00004 Functions used only as breakpoints only to aid debugging. 00005 00006 They cannot be optimized away because they are 00007 in a separate compilation unit. 00008 00009 Performance is not an issue because each of these functions 00010 is called only once per job. 00011 00012 */ 00013 00014 namespace bk { 00015 void 00016 beginJob(); 00017 00018 void 00019 beginRuns(); 00020 } 00021 00022 #endif