#include <CaloOnlineTools/HcalOnlineDb/interface/XMLZeroSuppression.h>
Public Member Functions | |
_ZeroSuppressionConfig () | |
Public Attributes | |
string | CFGBrickSet |
int | crate |
string | creationstamp |
string | creationtag |
int | fiber |
int | generalizedindex |
string | pattern_spec_name |
int | slot |
int | topbottom |
Definition at line 64 of file XMLZeroSuppression.h.
XMLZeroSuppression::ZeroSuppressionConfig::_ZeroSuppressionConfig | ( | ) |
Definition at line 62 of file XMLZeroSuppression.cc.
References CFGBrickSet, crate, creationstamp, creationtag, fiber, generalizedindex, pattern_spec_name, slot, and topbottom.
00063 { 00064 CFGBrickSet = "example"; 00065 crate = 0; 00066 slot = 13; 00067 topbottom = 0; 00068 fiber = 1; 00069 generalizedindex = slot*100 + topbottom*10 + fiber; 00070 creationtag = "example"; 00071 00072 char timebuf[50]; 00073 //time_t _time = time( NULL ); 00074 time_t _time = 1193697120; 00075 //strftime( timebuf, 50, "%c", gmtime( &_time ) ); 00076 strftime( timebuf, 50, "%Y-%m-%d %H:%M:%S.0", gmtime( &_time ) ); 00077 creationstamp = timebuf; 00078 00079 pattern_spec_name = "example"; 00080 }