#include <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 |
edm::StatsCount::StatsCount | ( | ) |
Definition at line 130 of file ELmap.cc.
: n ( 0 ) , aggregateN ( 0 ) , ignoredFlag( false ) , context1 ( "" ) , context2 ( "" ) , contextLast( "" ) { }
void edm::StatsCount::add | ( | const ELstring & | context, |
bool | reactedTo | ||
) |
Definition at line 140 of file ELmap.cc.
References aggregateN, context1, context2, contextLast, ignoredFlag, and n.
{ ++n; ++aggregateN; ( (1 == n) ? context1 : (2 == n) ? context2 : contextLast ) = ELstring( context, 0, 16 ); if ( ! reactedTo ) ignoredFlag = true; } // add()