CMS 3D CMS Logo

Functions

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/DQMServices/Components/src/DQMEventInfo.cc File Reference

#include "DQMEventInfo.h"
#include "FWCore/Framework/interface/LuminosityBlock.h"
#include "FWCore/Version/interface/GetReleaseVersion.h"
#include "FWCore/ParameterSet/interface/Registry.h"
#include <TSystem.h>
#include <stdio.h>
#include <sstream>
#include <math.h>

Go to the source code of this file.

Functions

static double stampToReal (edm::Timestamp time)
static double stampToReal (const timeval &time)

Function Documentation

static double stampToReal ( edm::Timestamp  time) [inline, static]

Definition at line 21 of file DQMEventInfo.cc.

References edm::Timestamp::value().

Referenced by DQMEventInfo::analyze(), DQMEventInfo::beginRun(), and DQMEventInfo::DQMEventInfo().

{ return (time.value() >> 32) + 1e-6*(time.value() & 0xffffffff); }
static double stampToReal ( const timeval &  time) [inline, static]

Definition at line 24 of file DQMEventInfo.cc.

{ return time.tv_sec + 1e-6*time.tv_usec; }