CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
Profiler Class Reference
Inheritance diagram for Profiler:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 Profiler (const edm::ParameterSet &)
 
 ~Profiler ()
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

virtual void analyze (const edm::Event &, const edm::EventSetup &) override
 
virtual void beginJob () override
 
virtual void endJob () override
 

Private Attributes

int m_action
 
int m_evtCount
 
int m_firstEvent
 
int m_lastEvent
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Description: <one line="" class="" summary>="">

Implementation: <Notes on="" implementation>="">

Definition at line 39 of file CallgrindAnalyzer.cc.

Constructor & Destructor Documentation

Profiler::Profiler ( const edm::ParameterSet parameters)
explicit

Definition at line 68 of file CallgrindAnalyzer.cc.

References edm::ParameterSet::getParameter().

69 {
70  //now do what ever initialization is needed
71  m_firstEvent = parameters.getParameter<int>("firstEvent");
72  m_lastEvent = parameters.getParameter<int>("lastEvent");
73  m_action = parameters.getParameter<int>("action");
74  m_evtCount=0;
75 
76 }
T getParameter(std::string const &) const
Profiler::~Profiler ( )

Definition at line 79 of file CallgrindAnalyzer.cc.

80 {
81 
82  // do anything here that needs to be done at desctruction time
83  // (e.g. close files, deallocate resources etc.)
84 
85 }

Member Function Documentation

void Profiler::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivatevirtual

Implements edm::EDAnalyzer.

Definition at line 96 of file CallgrindAnalyzer.cc.

References gather_cfg::cout.

97 {
98 m_evtCount++;
100  {
101  switch (m_action)
102  {
103  case 0:
104  CALLGRIND_STOP_INSTRUMENTATION;
105  cout << "Stop Instr" << endl;
106  break;
107  case 1:
108  CALLGRIND_START_INSTRUMENTATION;
109  CALLGRIND_DUMP_STATS;
110  cout << "Start Instr" << endl;
111  break;
112  case 2:
113  CALLGRIND_DUMP_STATS;
114  cout << "Dump stat" << endl;
115  break;
116 
117  }
118 
119  }
120 }
tuple cout
Definition: gather_cfg.py:121
void Profiler::beginJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 126 of file CallgrindAnalyzer.cc.

127 {
128 }
void Profiler::endJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 132 of file CallgrindAnalyzer.cc.

132  {
133 }

Member Data Documentation

int Profiler::m_action
private

Definition at line 53 of file CallgrindAnalyzer.cc.

int Profiler::m_evtCount
private

Definition at line 54 of file CallgrindAnalyzer.cc.

int Profiler::m_firstEvent
private

Definition at line 51 of file CallgrindAnalyzer.cc.

int Profiler::m_lastEvent
private

Definition at line 52 of file CallgrindAnalyzer.cc.