![]() |
![]() |
00001 #ifndef FWCore_Services_Profiling_h 00002 #define FWCore_Services_Profiling_h 00003 // -*- C++ -*- 00004 // 00005 // Package: Services 00006 // Class : SimpleProfiling 00007 // 00008 // 00009 // Original Author: Jim Kowalkowski 00010 // $Id: Profiling.h,v 1.2 2007/06/14 21:03:39 wmtan Exp $ 00011 // 00012 00013 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00014 #include "FWCore/ServiceRegistry/interface/ActivityRegistry.h" 00015 00016 namespace edm { 00017 namespace service { 00018 class SimpleProfiling 00019 { 00020 public: 00021 SimpleProfiling(const ParameterSet&,ActivityRegistry&); 00022 ~SimpleProfiling(); 00023 00024 void postBeginJob(); 00025 void postEndJob(); 00026 00027 private: 00028 }; 00029 } 00030 } 00031 00032 00033 00034 #endif