CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Classes | Functions
DQMHarvestingMetadata.cc File Reference
#include "DQMServices/Core/interface/DQMEDHarvester.h"
#include "FWCore/Version/interface/GetReleaseVersion.h"
#include "FWCore/Framework/interface/MakerMacros.h"

Go to the source code of this file.

Classes

class  DQMHarvestingMetadata
 

Functions

static const
edm::ParameterSetDescriptionFillerPluginFactory::PMaker
< edm::ParameterSetDescriptionFiller
< DQMHarvestingMetadata > > 
s_filler__LINE__ ("DQMHarvestingMetadata")
 
static const
edm::MakerPluginFactory::PMaker
< edm::WorkerMaker
< DQMHarvestingMetadata > > 
s_maker__LINE__ ("DQMHarvestingMetadata")
 
static double stampToReal (edm::Timestamp time)
 
static double stampToReal (const timeval &time)
 

Function Documentation

static const edm::ParameterSetDescriptionFillerPluginFactory::PMaker<edm::ParameterSetDescriptionFiller< DQMHarvestingMetadata > > s_filler__LINE__ ( "DQMHarvestingMetadata"  )
static
static const edm::MakerPluginFactory ::PMaker< edm::WorkerMaker< DQMHarvestingMetadata > > s_maker__LINE__ ( "DQMHarvestingMetadata"  )
static
static double stampToReal ( edm::Timestamp  time)
inlinestatic

Definition at line 45 of file DQMHarvestingMetadata.cc.

References alignCSCRings::e, and edm::Timestamp::value().

45  {
46  return (time.value() >> 32) + 1e-6 * (time.value() & 0xffffffff);
47 }
TimeValue_t value() const
Definition: Timestamp.h:45
static double stampToReal ( const timeval &  time)
inlinestatic

Definition at line 49 of file DQMHarvestingMetadata.cc.

References alignCSCRings::e.

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