CMS 3D CMS Logo

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

#include <PixelTimeFormatter.h>

Public Member Functions

struct timeval getImSecTime (void)
 
struct tm * getITime (void)
 
 PixelTimeFormatter (std::string source)
 
void stopTimer (void)
 

Static Public Member Functions

static std::string getmSecTime (void)
 
static std::string getTime (void)
 

Private Attributes

struct timeval endTime_
 
std::string origin_
 
struct timeval startTime_
 
bool verbose_
 

Detailed Description

Definition at line 25 of file PixelTimeFormatter.h.

Constructor & Destructor Documentation

pos::PixelTimeFormatter::PixelTimeFormatter ( std::string  source)
inline

Definition at line 30 of file PixelTimeFormatter.h.

References gather_cfg::cout, getImSecTime(), origin_, reco::return(), source, startTime_, and USE_TIMER_.

31  {
32  if( !USE_TIMER_) return ;
33  origin_ = source ;
34  std::cout << "[PixelTimeFormatter::PixelTimeFormatter()]\t\t Time counter started for " << origin_ << std::endl ;
36  }
struct timeval getImSecTime(void)
return(e1-e2)*(e1-e2)+dp *dp
tuple cout
Definition: gather_cfg.py:121
#define USE_TIMER_
static std::string const source
Definition: EdmProvDump.cc:43

Member Function Documentation

struct timeval pos::PixelTimeFormatter::getImSecTime ( void  )
inline

Definition at line 94 of file PixelTimeFormatter.h.

Referenced by PixelTimeFormatter(), and stopTimer().

95  {
96  struct timeval msecTime;
97  gettimeofday(&msecTime, (struct timezone *)0) ;
98 
99  return msecTime ;
100  }
struct tm* pos::PixelTimeFormatter::getITime ( void  )
inline

Definition at line 70 of file PixelTimeFormatter.h.

References cond::rpcobgas::time.

71  {
72  struct tm *thisTime;
73  time_t aclock;
74  time( &aclock );
75  thisTime = localtime( &aclock );
76  return thisTime ;
77  }
static std::string pos::PixelTimeFormatter::getmSecTime ( void  )
inlinestatic
static std::string pos::PixelTimeFormatter::getTime ( void  )
inlinestatic

Definition at line 48 of file PixelTimeFormatter.h.

References AlCaHLTBitMon_QueryRunRegistry::string, and cond::rpcobgas::time.

Referenced by pos::PixelFEDCard::writeXML(), pos::PixelDetectorConfig::writeXML(), pos::PixelNameTranslation::writeXML(), pos::PixelTTCciConfig::writeXMLHeader(), pos::PixelDelay25Calib::writeXMLHeader(), pos::PixelMaxVsf::writeXMLHeader(), pos::PixelPortCardConfig::writeXMLHeader(), pos::PixelMaskAllPixels::writeXMLHeader(), pos::PixelLowVoltageMap::writeXMLHeader(), pos::PixelLTCConfig::writeXMLHeader(), pos::PixelGlobalDelay25::writeXMLHeader(), pos::PixelFECConfig::writeXMLHeader(), pos::PixelTBMSettings::writeXMLHeader(), pos::PixelTrimAllPixels::writeXMLHeader(), pos::PixelFEDConfig::writeXMLHeader(), pos::PixelTKFECConfig::writeXMLHeader(), pos::PixelFEDCard::writeXMLHeader(), pos::PixelDetectorConfig::writeXMLHeader(), pos::PixelPortcardMap::writeXMLHeader(), pos::PixelDACSettings::writeXMLHeader(), pos::PixelNameTranslation::writeXMLHeader(), and pos::PixelCalibConfiguration::writeXMLHeader().

49  {
50  char theDate[20] ;
51  struct tm *thisTime;
52  time_t aclock;
53  std::string date ;
54  time( &aclock );
55  thisTime = localtime( &aclock );
56 
57  sprintf(theDate,
58  "%d-%02d-%02d %02d:%02d:%02d", thisTime->tm_year+1900,
59  thisTime->tm_mon+1,
60  thisTime->tm_mday,
61  thisTime->tm_hour,
62  thisTime->tm_min,
63  thisTime->tm_sec );
64  date = theDate ;
65  //std::cout << "[PixelTimeFormatter::getTime()]\t\t\t\t Time: " << date << std::endl ;
66  return date ;
67  }
void pos::PixelTimeFormatter::stopTimer ( void  )
inline

Definition at line 38 of file PixelTimeFormatter.h.

References gather_cfg::cout, endTime_, getImSecTime(), origin_, reco::return(), dqm_diff::start, startTime_, and USE_TIMER_.

39  {
40  if( !USE_TIMER_ ) return ;
42  double start = startTime_.tv_sec + startTime_.tv_usec/1000000. ;
43  double stop = endTime_.tv_sec + endTime_.tv_usec/1000000. ;
44  std::cout << "[PixelTimeFormatter::stopTimer()]\t\t\t Elapsed time: " << stop-start << " seconds for " << origin_ << std::endl ;
45  }
tuple start
Check for commandline option errors.
Definition: dqm_diff.py:58
struct timeval getImSecTime(void)
return(e1-e2)*(e1-e2)+dp *dp
tuple cout
Definition: gather_cfg.py:121
#define USE_TIMER_

Member Data Documentation

struct timeval pos::PixelTimeFormatter::endTime_
private

Definition at line 138 of file PixelTimeFormatter.h.

Referenced by stopTimer().

std::string pos::PixelTimeFormatter::origin_
private

Definition at line 139 of file PixelTimeFormatter.h.

Referenced by PixelTimeFormatter(), and stopTimer().

struct timeval pos::PixelTimeFormatter::startTime_
private

Definition at line 137 of file PixelTimeFormatter.h.

Referenced by PixelTimeFormatter(), and stopTimer().

bool pos::PixelTimeFormatter::verbose_
private

Definition at line 140 of file PixelTimeFormatter.h.