CMS 3D CMS Logo

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 263 of file FastTimerService.h.

Constructor & Destructor Documentation

◆ ResourcesPerModule()

FastTimerService::ResourcesPerModule::ResourcesPerModule ( )
noexcept

Member Function Documentation

◆ operator+()

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

Definition at line 196 of file FastTimerService.cc.

References trackingPlots::other, and mps_fire::result.

197  {
198  ResourcesPerModule result(*this);
199  result += other;
200  return result;
201 }

◆ operator+=()

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

Definition at line 189 of file FastTimerService.cc.

References events, or, trackingPlots::other, and dqmMemoryStats::total.

189  {
190  total += other.total;
191  events += other.events;
192  has_acquire = has_acquire or other.has_acquire;
193  return *this;
194 }
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::EventID const &, edm::Timestamp const & > We also list in braces which AR_WATCH_USING_METHOD_ is used for those or
Definition: Activities.doc:12

◆ reset()

void FastTimerService::ResourcesPerModule::reset ( void  )
noexcept

Member Data Documentation

◆ events

unsigned FastTimerService::ResourcesPerModule::events

◆ has_acquire

bool FastTimerService::ResourcesPerModule::has_acquire

Definition at line 274 of file FastTimerService.h.

◆ total

Resources FastTimerService::ResourcesPerModule::total

Definition at line 272 of file FastTimerService.h.