Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:12:08

0001 #ifndef FWCore_Framework_Breakpoints_h
0002 #define FWCore_Framework_Breakpoints_h
0003 /*
0004   Functions used only as breakpoints only to aid debugging.
0005 
0006   They cannot be optimized away because they are
0007   in a separate compilation unit.
0008 
0009   Performance is not an issue because each of these functions
0010   is called only once per job.
0011 
0012 */
0013 
0014 namespace bk {
0015   void beginJob();
0016 
0017   void beginRuns();
0018 }  // namespace bk
0019 
0020 #endif