CMS 3D CMS Logo

SiStripPedestalsESSource.cc
Go to the documentation of this file.
6 #include <iostream>
7 
8 using namespace sistrip;
9 
10 // -----------------------------------------------------------------------------
11 //
13  setWhatProduced(this);
14  findingRecord<SiStripPedestalsRcd>();
15 }
16 
17 // -----------------------------------------------------------------------------
18 //
19 std::unique_ptr<SiStripPedestals> SiStripPedestalsESSource::produce(const SiStripPedestalsRcd&) {
20  SiStripPedestals* peds = makePedestals();
21 
22  if (!peds) {
23  edm::LogWarning(mlESSources_) << "[SiStripPedestalsESSource::" << __func__ << "]"
24  << " Null pointer to SiStripPedestals object!";
25  }
26 
27  std::unique_ptr<SiStripPedestals> ptr(peds);
28  return ptr;
29 }
30 
31 // -----------------------------------------------------------------------------
32 //
34  const edm::IOVSyncValue& iosv,
35  edm::ValidityInterval& oValidity) {
37  oValidity = infinity;
38 }
SiStripPedestalsESSource(const edm::ParameterSet &)
void setIntervalFor(const edm::eventsetup::EventSetupRecordKey &, const edm::IOVSyncValue &, edm::ValidityInterval &) override
static const IOVSyncValue & endOfTime()
Definition: IOVSyncValue.cc:82
virtual std::unique_ptr< SiStripPedestals > produce(const SiStripPedestalsRcd &)
sistrip classes
static const IOVSyncValue & beginOfTime()
Definition: IOVSyncValue.cc:88
const double infinity
Log< level::Warning, false > LogWarning
static const char mlESSources_[]