CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Public Attributes
FastTimerService::ResourcesPerModule Struct Reference

Public Member Functions

ResourcesPerModule operator+ (ResourcesPerModule const &other) const
 
ResourcesPerModuleoperator+= (ResourcesPerModule const &other)
 
void reset () noexcept
 
 ResourcesPerModule () noexcept
 

Public Attributes

unsigned events
 
bool has_acquire
 
Resources total
 

Detailed Description

Definition at line 258 of file FastTimerService.h.

Constructor & Destructor Documentation

FastTimerService::ResourcesPerModule::ResourcesPerModule ( )
noexcept

Member Function Documentation

FastTimerService::ResourcesPerModule FastTimerService::ResourcesPerModule::operator+ ( ResourcesPerModule const &  other) const

Definition at line 195 of file FastTimerService.cc.

References mps_fire::result.

196  {
197  ResourcesPerModule result(*this);
198  result += other;
199  return result;
200 }
tuple result
Definition: mps_fire.py:311
FastTimerService::ResourcesPerModule & FastTimerService::ResourcesPerModule::operator+= ( ResourcesPerModule const &  other)

Definition at line 188 of file FastTimerService.cc.

References patZpeak::events, events, has_acquire, or, dqmMemoryStats::total, and total.

188  {
189  total += other.total;
190  events += other.events;
191  has_acquire = has_acquire or other.has_acquire;
192  return *this;
193 }
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e< void, edm::EventIDconst &, edm::Timestampconst & > We also list in braces which AR_WATCH_USING_METHOD_ is used for those or
Definition: Activities.doc:12
void FastTimerService::ResourcesPerModule::reset ( void  )
noexcept

Member Data Documentation

unsigned FastTimerService::ResourcesPerModule::events
bool FastTimerService::ResourcesPerModule::has_acquire

Definition at line 269 of file FastTimerService.h.

Referenced by operator+=().

Resources FastTimerService::ResourcesPerModule::total

Definition at line 267 of file FastTimerService.h.

Referenced by operator+=().