#include <HLTScalersClient.h>
Public Member Functions | |
CountLSFifo_t (unsigned int sz=3) | |
double | getCount (int ls) |
unsigned int | targetSize () |
void | update (const CountLS_t &T) |
Private Member Functions | |
void | trim_ () |
Private Attributes | |
bool | accumulate_ |
unsigned int | targetSize_ |
Definition at line 90 of file HLTScalersClient.h.
HLTScalersClient::CountLSFifo_t::CountLSFifo_t | ( | unsigned int | sz = 3 | ) | [inline] |
Definition at line 97 of file HLTScalersClient.h.
: std::deque<CountLS_t>(), targetSize_(sz) {}
double HLTScalersClient::CountLSFifo_t::getCount | ( | int | ls | ) | [inline] |
Definition at line 102 of file HLTScalersClient.h.
References begin, end, spr::find(), and AlCaHLTBitMon_ParallelJobs::p.
Referenced by HLTScalersClient::endLuminosityBlock().
unsigned int HLTScalersClient::CountLSFifo_t::targetSize | ( | ) | [inline] |
Definition at line 101 of file HLTScalersClient.h.
References targetSize_.
Referenced by HLTScalersClient::getSlope_().
{ return targetSize_; };
void HLTScalersClient::CountLSFifo_t::trim_ | ( | ) | [inline, private] |
Definition at line 127 of file HLTScalersClient.h.
References begin, end, findQualityFiles::size, python::multivaluedict::sort(), and targetSize_.
Referenced by update().
{ if ( this->size() > targetSize_ ) { std::sort(begin(), end()); while ( size() > targetSize_ ) { pop_front(); } } }
void HLTScalersClient::CountLSFifo_t::update | ( | const CountLS_t & | T | ) | [inline] |
Definition at line 113 of file HLTScalersClient.h.
References begin, end, spr::find(), AlCaHLTBitMon_ParallelJobs::p, and trim_().
Referenced by HLTScalersClient::endLuminosityBlock().
bool HLTScalersClient::CountLSFifo_t::accumulate_ [private] |
Definition at line 94 of file HLTScalersClient.h.
unsigned int HLTScalersClient::CountLSFifo_t::targetSize_ [private] |
Definition at line 93 of file HLTScalersClient.h.
Referenced by targetSize(), and trim_().