#include <FWCore/MessageLogger/interface/ELmap.h>
Public Member Functions | |
void | add (const ELstring &context, bool reactedTo) |
StatsCount () | |
Public Attributes | |
int | aggregateN |
ELstring | context1 |
ELstring | context2 |
ELstring | contextLast |
bool | ignoredFlag |
int | n |
Definition at line 79 of file ELmap.h.
edm::StatsCount::StatsCount | ( | ) |
Definition at line 127 of file ELmap.cc.
00128 : n ( 0 ) 00129 , aggregateN ( 0 ) 00130 , ignoredFlag( false ) 00131 , context1 ( "" ) 00132 , context2 ( "" ) 00133 , contextLast( "" ) 00134 { }
Definition at line 137 of file ELmap.cc.
References aggregateN, context1, context2, contextLast, ignoredFlag, and n.
00137 { 00138 00139 ++n; ++aggregateN; 00140 00141 ( (1 == n) ? context1 00142 : (2 == n) ? context2 00143 : contextLast 00144 ) = ELstring( context, 0, 16 ); 00145 00146 if ( ! reactedTo ) 00147 ignoredFlag = true; 00148 00149 } // add()