CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Public Attributes | Private Member Functions | Private Attributes
cscdqm::Configuration Class Reference

CSCDQM Framework Global Configuration. More...

#include <CSCDQM_Configuration.h>

Public Member Functions

 Configuration ()
 Constructor. More...
 
 Configuration (const bool printStats)
 Constructor. More...
 
void copyChamberCounterValue (const ChamberCounterType counter_from, const ChamberCounterType counter_to, const HwId crateId, const HwId dmbId)
 Copy Chamber counter value from one counter to another. More...
 
void eventProcessTimer (const bool start)
 Switch on/off event processing timer. More...
 
const uint32_t getChamberCounterValue (const ChamberCounterType counter, const HwId crateId, const HwId dmbId) const
 Get Chamber counter value. More...
 
const unsigned long getNEvents () const
 
const unsigned long getNEventsBad () const
 
const unsigned long getNEventsCSC () const
 
const unsigned long getNEventsGood () const
 
const unsigned long getNUnpackedCSC () const
 
void incChamberCounter (const ChamberCounterType counter, const HwId crateId, const HwId dmbId)
 Increment Chamber counter by 1. More...
 
void incNEvents ()
 
void incNEventsBad ()
 
void incNEventsCSC ()
 
void incNEventsGood ()
 
void incNUnpackedCSC ()
 
const bool needBookMO (const std::string name) const
 Check if MO is not excluded by MO Filter. More...
 
void printStats ()
 Print Statistics on Exit (Destruction) More...
 
void reset ()
 Reset counters. More...
 
void setChamberCounterValue (const ChamberCounterType counter, const HwId crateId, const HwId dmbId, const uint32_t value)
 Set Chamber counter value. More...
 
void updateEffTimer (const bool start)
 Switch on/off efficiency MO processing timer. More...
 
void updateFraTimer (const bool start)
 Switch on/off fractional MO processing timer. More...
 
 ~Configuration ()
 Destructor. More...
 

Public Attributes

boost::function< MonitorObject
*(const HistoBookRequest &) > 
fnBook
 
boost::function< bool(const
HistoId id, const HwId &id1,
const HwId &id2, const HwId
&id3, MonitorObject *&mo) > 
fnGetCacheCSCHisto
 
boost::function< bool(const
HistoId id, const HwId &id1,
MonitorObject *&mo) > 
fnGetCacheDDUHisto
 
boost::function< bool(const
HistoId id, MonitorObject *&mo) > 
fnGetCacheEMUHisto
 
boost::function< bool(const
HistoId id, const HwId &id1,
MonitorObject *&mo) > 
fnGetCacheFEDHisto
 
boost::function< bool(const
HistoId id, MonitorObject *&mo) > 
fnGetCacheParHisto
 
boost::function< bool(const
unsigned int, const unsigned
int, CSCDetId &) > 
fnGetCSCDetId
 
boost::function< bool(const
HistoDef &histoT,
MonitorObject *&) > 
fnGetHisto
 
boost::function< bool(unsigned
int &, unsigned int &) > 
fnIsBookedCSC
 
boost::function< bool(unsigned
int &) > 
fnIsBookedDDU
 
boost::function< bool(unsigned
int &) > 
fnIsBookedFED
 
boost::function< bool(unsigned
int &, unsigned int
&, unsigned int &) > 
fnNextBookedCSC
 
boost::function< void(const
HistoDef &histoT,
MonitorObject *&) > 
fnPutHisto
 

Private Member Functions

void init ()
 Initialize parameter values and reset counters (used by constructors) More...
 

Private Attributes

ChamberMapCounterMapType chamberCounters
 
unsigned long effCount
 
boost::timer effTimer
 
double effTimeSum
 
boost::timer eventTimer
 
double eventTimeSum
 
unsigned long fraCount
 
boost::timer fraTimer
 
double fraTimeSum
 
boost::timer globalTimer
 
std::vector< MOFilterItemMOFilterItems
 
unsigned long nEvents
 
unsigned long nEventsBad
 
unsigned long nEventsCSC
 
unsigned long nEventsGood
 
unsigned long nUnpackedCSC
 
unsigned short printStatsLocal
 

Detailed Description

CSCDQM Framework Global Configuration.

Definition at line 221 of file CSCDQM_Configuration.h.

Constructor & Destructor Documentation

cscdqm::Configuration::Configuration ( )
inline

Constructor.

Parameter Getters Parameter Setters

Definition at line 279 of file CSCDQM_Configuration.h.

References init(), and printStatsLocal.

279  {
280  init();
281  printStatsLocal = 0;
282  }
void init()
Initialize parameter values and reset counters (used by constructors)
cscdqm::Configuration::Configuration ( const bool  printStats)
inline

Constructor.

Parameters
printStatsPrint statistics on exit or not (overrides configuration parameter)

Definition at line 288 of file CSCDQM_Configuration.h.

References init(), and printStatsLocal.

288  {
289  init();
290  if (printStats) {
291  printStatsLocal = 1;
292  } else {
293  printStatsLocal = 2;
294  }
295  }
void printStats()
Print Statistics on Exit (Destruction)
void init()
Initialize parameter values and reset counters (used by constructors)
cscdqm::Configuration::~Configuration ( )
inline

Destructor.

Definition at line 300 of file CSCDQM_Configuration.h.

References printStats(), and printStatsLocal.

300  {
301  if ((PRINT_STATS_ON_EXIT && printStatsLocal == 0) || printStatsLocal == 1) {
302  printStats();
303  }
304  }
void printStats()
Print Statistics on Exit (Destruction)

Member Function Documentation

void cscdqm::Configuration::copyChamberCounterValue ( const ChamberCounterType  counter_from,
const ChamberCounterType  counter_to,
const HwId  crateId,
const HwId  dmbId 
)
inline

Copy Chamber counter value from one counter to another.

Parameters
counter_fromCounter Type to copy value from
counter_toCounter Type to copy value to
crateIdCSC Crate ID
dmbIdCSC DMB ID
Returns

Definition at line 658 of file CSCDQM_Configuration.h.

References getChamberCounterValue(), and setChamberCounterValue().

Referenced by cscdqm::EventProcessor::processCSC(), and cscdqm::EventProcessor::processExaminer().

658  {
659  setChamberCounterValue(counter_from, crateId, dmbId, getChamberCounterValue(counter_from, crateId, dmbId));
660  }
void setChamberCounterValue(const ChamberCounterType counter, const HwId crateId, const HwId dmbId, const uint32_t value)
Set Chamber counter value.
const uint32_t getChamberCounterValue(const ChamberCounterType counter, const HwId crateId, const HwId dmbId) const
Get Chamber counter value.
void cscdqm::Configuration::eventProcessTimer ( const bool  start)
inline

Switch on/off event processing timer.

Parameters
starttimer action (true - start, false - stop)
Returns

Definition at line 517 of file CSCDQM_Configuration.h.

References eventTimer, and eventTimeSum.

517  {
518  if (start) {
519  eventTimer.restart();
520  } else {
521  eventTimeSum += eventTimer.elapsed();
522  }
523  }
tuple start
Check for commandline option errors.
Definition: dqm_diff.py:58
const uint32_t cscdqm::Configuration::getChamberCounterValue ( const ChamberCounterType  counter,
const HwId  crateId,
const HwId  dmbId 
) const
inline

Get Chamber counter value.

Parameters
counterCounter Type
crateIdCSC Crate ID
dmbIdCSC DMB ID
Returns
current counter value

Definition at line 669 of file CSCDQM_Configuration.h.

References chamberCounters.

Referenced by copyChamberCounterValue(), incChamberCounter(), cscdqm::EventProcessor::processCSC(), cscdqm::EventProcessor::processExaminer(), and cscdqm::EventProcessor::updateFractionHistos().

669  {
670  ChamberMapCounterMapType::iterator it = chamberCounters.find(boost::make_tuple(crateId, dmbId));
671  if (it == chamberCounters.end()) return 0;
672  ChamberCounterMapType::const_iterator itc = it->counters.find(counter);
673  if (itc == it->counters.end()) return 0;
674  return itc->second;
675  }
ChamberMapCounterMapType chamberCounters
static std::atomic< unsigned int > counter
const unsigned long cscdqm::Configuration::getNEvents ( ) const
inline
const unsigned long cscdqm::Configuration::getNEventsBad ( ) const
inline

Definition at line 595 of file CSCDQM_Configuration.h.

References nEventsBad.

595 { return nEventsBad; }
const unsigned long cscdqm::Configuration::getNEventsCSC ( ) const
inline

Definition at line 597 of file CSCDQM_Configuration.h.

References nEventsCSC.

Referenced by cscdqm::Dispatcher::updateFractionAndEfficiencyHistosAuto().

597 { return nEventsCSC; }
const unsigned long cscdqm::Configuration::getNEventsGood ( ) const
inline

Definition at line 596 of file CSCDQM_Configuration.h.

References nEventsGood.

596 { return nEventsGood; }
const unsigned long cscdqm::Configuration::getNUnpackedCSC ( ) const
inline

Definition at line 598 of file CSCDQM_Configuration.h.

References nUnpackedCSC.

598 { return nUnpackedCSC; }
void cscdqm::Configuration::incChamberCounter ( const ChamberCounterType  counter,
const HwId  crateId,
const HwId  dmbId 
)
inline

Increment Chamber counter by 1.

Parameters
counterCounter Type
crateIdCSC Crate ID
dmbIdCSC DMB ID
Returns

Definition at line 624 of file CSCDQM_Configuration.h.

References getChamberCounterValue(), and setChamberCounterValue().

Referenced by cscdqm::EventProcessor::processExaminer().

624  {
625  setChamberCounterValue(counter, crateId, dmbId, getChamberCounterValue(counter, crateId, dmbId) + 1);
626  }
void setChamberCounterValue(const ChamberCounterType counter, const HwId crateId, const HwId dmbId, const uint32_t value)
Set Chamber counter value.
const uint32_t getChamberCounterValue(const ChamberCounterType counter, const HwId crateId, const HwId dmbId) const
Get Chamber counter value.
static std::atomic< unsigned int > counter
void cscdqm::Configuration::incNEvents ( )
inline

Increments (by 1) for Global Counters.

Definition at line 604 of file CSCDQM_Configuration.h.

References getNEvents(), LOG_INFO, and nEvents.

Referenced by CSCOfflineClient::dqmEndJob(), and cscdqm::EventProcessor::preProcessEvent().

604  {
605  nEvents++;
606  if (getEVENTS_ECHO() > 0) {
607  if (getNEvents() % getEVENTS_ECHO() == 0) {
608  LOG_INFO << "(echo) Events processed: " << std::setw(12) << getNEvents();
609  }
610  }
611  }
const unsigned long getNEvents() const
#define LOG_INFO
Definition: CSCDQM_Logger.h:43
void cscdqm::Configuration::incNEventsBad ( )
inline

Definition at line 612 of file CSCDQM_Configuration.h.

References nEventsBad.

Referenced by cscdqm::EventProcessor::processExaminer().

612 { nEventsBad++; }
void cscdqm::Configuration::incNEventsCSC ( )
inline

Definition at line 614 of file CSCDQM_Configuration.h.

References nEventsCSC.

614 { nEventsCSC++; }
void cscdqm::Configuration::incNEventsGood ( )
inline

Definition at line 613 of file CSCDQM_Configuration.h.

References nEventsGood.

613 { nEventsGood++; }
void cscdqm::Configuration::incNUnpackedCSC ( )
inline

Definition at line 615 of file CSCDQM_Configuration.h.

References nUnpackedCSC.

Referenced by cscdqm::EventProcessor::processCSC().

615 { nUnpackedCSC++; }
void cscdqm::Configuration::init ( void  )
inlineprivate

Initialize parameter values and reset counters (used by constructors)

Define parameters

Returns

Assign default values to parameters

Definition at line 237 of file CSCDQM_Configuration.h.

References CONFIG_PARAMETER_DEFAULT_MACRO, CONFIG_PARAMETERS_SEQ, and reset().

Referenced by Configuration().

237  {
239  BOOST_PP_SEQ_FOR_EACH_I(CONFIG_PARAMETER_DEFAULT_MACRO, _, CONFIG_PARAMETERS_SEQ)
240  reset();
241  }
#define CONFIG_PARAMETERS_SEQ
#define CONFIG_PARAMETER_DEFAULT_MACRO(r, data, i, elem)
void reset()
Reset counters.
const bool cscdqm::Configuration::needBookMO ( const std::string  name) const
inline

Check if MO is not excluded by MO Filter.

Parameters
nameMO name to book
Returns
true if MO is not excluded, false - otherwise

Definition at line 558 of file CSCDQM_Configuration.h.

References i, cscdqm::MOFilterItem::include, MOFilterItems, cscdqm::MOFilterItem::pattern, cscdqm::Utility::regexMatch(), and query::result.

Referenced by cscdqm::Collection::book().

558  {
559  bool result = true;
560  for (unsigned int i = 0; i < MOFilterItems.size(); i++) {
561  const MOFilterItem* filter = &MOFilterItems.at(i);
562  if (Utility::regexMatch(filter->pattern, name)) result = filter->include;
563  }
564  return result;
565  }
int i
Definition: DBlmapReader.cc:9
static bool regexMatch(const std::string &expression, const std::string &message)
Match RegExp expression string against string message and return result.
tuple result
Definition: query.py:137
std::vector< MOFilterItem > MOFilterItems
void cscdqm::Configuration::printStats ( )
inline

Print Statistics on Exit (Destruction)

Returns

Definition at line 461 of file CSCDQM_Configuration.h.

References effCount, effTimeSum, eventTimeSum, fraCount, fraTimeSum, globalTimer, conddblib::logger, nEvents, nEventsBad, nEventsCSC, nEventsGood, nUnpackedCSC, SEPFIELD, and STATFIELD.

Referenced by ~Configuration().

461  {
462 
463  double allTime = globalTimer.elapsed();
464  LogInfo logger;
465  logger << std::endl;
466 
467  STATFIELD("Events processed", nEvents, "")
468  STATFIELD("Bad events", nEventsBad, "")
469  STATFIELD("Good events", nEventsGood, "")
470  STATFIELD("CSC DCC events", nEventsCSC, "")
471  STATFIELD("Unpacked CSCs", nUnpackedCSC, "")
472 
473  SEPFIELD
474 
476  double eventTimeAverage = (nEvents > 0 ? eventTimeSum / nEvents : -1.0);
477  STATFIELD("Avg. event time", eventTimeAverage, "s")
478  double eventRateAverage = (eventTimeSum > 0 ? nEvents / eventTimeSum : -1.0);
479  STATFIELD("Avg. event rate", eventRateAverage, "Hz")
480  double chamberRateAverage = (eventTimeSum > 0 ? nUnpackedCSC / eventTimeSum : -1.0);
481  STATFIELD("Avg. chamber rate", chamberRateAverage, "Hz")
482 
483  SEPFIELD
484 
485  STATFIELD("All fra update time", fraTimeSum, "s")
486  STATFIELD("All fra update count", fraCount, "")
487  double fraTimeAverage = (fraCount > 0 ? fraTimeSum / fraCount : -1.0);
488  STATFIELD("Avg. fra update time", fraTimeAverage, "s")
489 
490  SEPFIELD
491 
492  STATFIELD("All eff update time", effTimeSum, "s")
493  STATFIELD("All eff update count", effCount, "")
494  double effTimeAverage = (effCount > 0 ? effTimeSum / effCount : -1.0);
495  STATFIELD("Avg. eff update time", effTimeAverage, "s")
496 
497  SEPFIELD
498 
499  STATFIELD("All time", allTime, "s")
500  double allTimeAverage = (nEvents > 0 ? allTime / nEvents : -1.0);
501  STATFIELD("Avg. event all time", allTimeAverage, "s")
502  double allRateAverage = (allTime > 0 ? nEvents / allTime : -1.0);
503  STATFIELD("Avg. event all rate", allRateAverage, "Hz")
504  double chamberAllRateAverage = (allTime > 0 ? nUnpackedCSC / allTime : -1.0);
505  STATFIELD("Avg. chamber all rate", chamberAllRateAverage, "Hz")
506 
507  }
tuple logger
Definition: conddblib.py:20
#define STATFIELD(caption, value, units)
#define SEPFIELD
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
</a ></td >< td >< ahref="RecoLocalMuon_CSCRecHit.html"> csc2DRecHits</a ></td >< tdclass="description"> CSC(x, y) rechits</td >< td >T.Cox</td ></tr >< tr >< td >< a href
double rate(double x)
Definition: Constants.cc:3
tuple events
Definition: patZpeak.py:19
#define update(a, b)
void cscdqm::Configuration::reset ( void  )
inline

Reset counters.

Counters section.

Returns

Definition at line 577 of file CSCDQM_Configuration.h.

References effCount, effTimeSum, eventTimeSum, fraCount, fraTimeSum, nEvents, nEventsBad, nEventsCSC, nEventsGood, and nUnpackedCSC.

Referenced by init().

577  {
578  nEvents = 0;
579  nEventsBad = 0;
580  nEventsGood = 0;
581  nEventsCSC = 0;
582  nUnpackedCSC = 0;
583  fraCount = 0;
584  effCount = 0;
585  eventTimeSum = 0.0;
586  fraTimeSum = 0.0;
587  effTimeSum = 0.0;
588  }
void cscdqm::Configuration::setChamberCounterValue ( const ChamberCounterType  counter,
const HwId  crateId,
const HwId  dmbId,
const uint32_t  value 
)
inline

Set Chamber counter value.

Parameters
counterCounter Type
crateIdCSC Crate ID
dmbIdCSC DMB ID
valuevalue to set
Returns

Definition at line 636 of file CSCDQM_Configuration.h.

References chamberCounters, fwrapper::cs, and relativeConstraints::value.

Referenced by copyChamberCounterValue(), incChamberCounter(), and cscdqm::EventProcessor::processCSC().

636  {
637  ChamberMapCounterMapType::iterator it = chamberCounters.find(boost::make_tuple(crateId, dmbId));
638  if (it == chamberCounters.end()) {
639  it = chamberCounters.insert(chamberCounters.end(), ChamberCounterKeyType(crateId, dmbId, ChamberCounterMapType()));
640  }
641  ChamberCounterMapType* cs = const_cast<ChamberCounterMapType*>(&it->counters);
642  ChamberCounterMapType::iterator itc = cs->find(counter);
643  if (itc == cs->end()) {
644  cs->insert(std::make_pair(counter, value));
645  } else {
646  itc->second = value;
647  }
648  }
auto_ptr< ClusterSequence > cs
std::map< ChamberCounterType, uint32_t > ChamberCounterMapType
ChamberMapCounterMapType chamberCounters
static std::atomic< unsigned int > counter
void cscdqm::Configuration::updateEffTimer ( const bool  start)
inline

Switch on/off efficiency MO processing timer.

Parameters
starttimer action (true - start, false - stop)
Returns

Definition at line 544 of file CSCDQM_Configuration.h.

References effCount, effTimer, and effTimeSum.

Referenced by cscdqm::EventProcessorMutex::updateFractionAndEfficiencyHistos().

544  {
545  if (start) {
546  effTimer.restart();
547  } else {
548  effTimeSum += effTimer.elapsed();
549  effCount++;
550  }
551  }
tuple start
Check for commandline option errors.
Definition: dqm_diff.py:58
void cscdqm::Configuration::updateFraTimer ( const bool  start)
inline

Switch on/off fractional MO processing timer.

Parameters
starttimer action (true - start, false - stop)
Returns

Definition at line 530 of file CSCDQM_Configuration.h.

References fraCount, fraTimer, and fraTimeSum.

Referenced by cscdqm::EventProcessorMutex::updateFractionAndEfficiencyHistos().

530  {
531  if (start) {
532  fraTimer.restart();
533  } else {
534  fraTimeSum += fraTimer.elapsed();
535  fraCount++;
536  }
537  }
tuple start
Check for commandline option errors.
Definition: dqm_diff.py:58

Member Data Documentation

ChamberMapCounterMapType cscdqm::Configuration::chamberCounters
private

Map of chamber counters

Definition at line 705 of file CSCDQM_Configuration.h.

Referenced by getChamberCounterValue(), and setChamberCounterValue().

unsigned long cscdqm::Configuration::effCount
private

Number of Efficiency MO updates

Definition at line 702 of file CSCDQM_Configuration.h.

Referenced by printStats(), reset(), and updateEffTimer().

boost::timer cscdqm::Configuration::effTimer
private

Efficiency MO update Timer

Definition at line 423 of file CSCDQM_Configuration.h.

Referenced by updateEffTimer().

double cscdqm::Configuration::effTimeSum
private

Efficiency MO update time cummulative

Definition at line 432 of file CSCDQM_Configuration.h.

Referenced by printStats(), reset(), and updateEffTimer().

boost::timer cscdqm::Configuration::eventTimer
private

Event processing Timer

Definition at line 417 of file CSCDQM_Configuration.h.

Referenced by eventProcessTimer().

double cscdqm::Configuration::eventTimeSum
private

Event processing time cummulative

Definition at line 426 of file CSCDQM_Configuration.h.

Referenced by eventProcessTimer(), printStats(), and reset().

boost::function< MonitorObject* (const HistoBookRequest&) > cscdqm::Configuration::fnBook

Pointer to Collection Book Function

Definition at line 265 of file CSCDQM_Configuration.h.

Referenced by cscdqm::Collection::book(), and cscdqm::Dispatcher::commonConstruct().

boost::function< bool (const HistoId id, const HwId& id1, const HwId& id2, const HwId& id3, MonitorObject*& mo) > cscdqm::Configuration::fnGetCacheCSCHisto
boost::function< bool (const HistoId id, const HwId& id1, MonitorObject*& mo) > cscdqm::Configuration::fnGetCacheDDUHisto
boost::function< bool (const HistoId id, MonitorObject*& mo) > cscdqm::Configuration::fnGetCacheEMUHisto

Pointers to Cache Functions

Definition at line 253 of file CSCDQM_Configuration.h.

Referenced by cscdqm::Dispatcher::commonConstruct(), and cscdqm::EventProcessor::getEMUHisto().

boost::function< bool (const HistoId id, const HwId& id1, MonitorObject*& mo) > cscdqm::Configuration::fnGetCacheFEDHisto
boost::function< bool (const HistoId id, MonitorObject*& mo) > cscdqm::Configuration::fnGetCacheParHisto
boost::function< bool (const unsigned int, const unsigned int, CSCDetId&) > cscdqm::Configuration::fnGetCSCDetId
boost::function< bool (const HistoDef& histoT, MonitorObject*&) > cscdqm::Configuration::fnGetHisto
boost::function< bool (unsigned int&, unsigned int&) > cscdqm::Configuration::fnIsBookedCSC

Definition at line 260 of file CSCDQM_Configuration.h.

Referenced by cscdqm::Dispatcher::commonConstruct().

boost::function< bool (unsigned int&) > cscdqm::Configuration::fnIsBookedDDU

Definition at line 261 of file CSCDQM_Configuration.h.

Referenced by cscdqm::Dispatcher::commonConstruct().

boost::function< bool (unsigned int&) > cscdqm::Configuration::fnIsBookedFED

Definition at line 262 of file CSCDQM_Configuration.h.

Referenced by cscdqm::Dispatcher::commonConstruct().

boost::function< bool (unsigned int&, unsigned int&, unsigned int&) > cscdqm::Configuration::fnNextBookedCSC
boost::function< void (const HistoDef& histoT, MonitorObject*&) > cscdqm::Configuration::fnPutHisto
unsigned long cscdqm::Configuration::fraCount
private

Number of Fractional MO updates

Definition at line 699 of file CSCDQM_Configuration.h.

Referenced by printStats(), reset(), and updateFraTimer().

boost::timer cscdqm::Configuration::fraTimer
private

Fractional MO update Timer

Definition at line 420 of file CSCDQM_Configuration.h.

Referenced by updateFraTimer().

double cscdqm::Configuration::fraTimeSum
private

Fractional MO update time cummulative

Definition at line 429 of file CSCDQM_Configuration.h.

Referenced by printStats(), reset(), and updateFraTimer().

boost::timer cscdqm::Configuration::globalTimer
private

Statistics collection and printing sectionGlobal Timer

Definition at line 414 of file CSCDQM_Configuration.h.

Referenced by printStats().

std::vector<MOFilterItem> cscdqm::Configuration::MOFilterItems
private

Map of MO Filters

Definition at line 228 of file CSCDQM_Configuration.h.

Referenced by needBookMO().

unsigned long cscdqm::Configuration::nEvents
private

Global Counters.Number of events

Definition at line 684 of file CSCDQM_Configuration.h.

Referenced by getNEvents(), incNEvents(), looper.Looper::loop(), printStats(), and reset().

unsigned long cscdqm::Configuration::nEventsBad
private

Number of bad events

Definition at line 687 of file CSCDQM_Configuration.h.

Referenced by getNEventsBad(), incNEventsBad(), printStats(), and reset().

unsigned long cscdqm::Configuration::nEventsCSC
private

Number of events that have CSC data (used in Global DQM)

Definition at line 693 of file CSCDQM_Configuration.h.

Referenced by getNEventsCSC(), incNEventsCSC(), printStats(), and reset().

unsigned long cscdqm::Configuration::nEventsGood
private

Number of good events

Definition at line 690 of file CSCDQM_Configuration.h.

Referenced by getNEventsGood(), incNEventsGood(), printStats(), and reset().

unsigned long cscdqm::Configuration::nUnpackedCSC
private

number of unpacked chambers

Definition at line 696 of file CSCDQM_Configuration.h.

Referenced by getNUnpackedCSC(), incNUnpackedCSC(), printStats(), and reset().

unsigned short cscdqm::Configuration::printStatsLocal
private

Definition at line 225 of file CSCDQM_Configuration.h.

Referenced by Configuration(), and ~Configuration().