Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:22

0001 #include <fstream>
0002 #include <memory>
0003 
0004 #include "CalibMuon/CSCCalibration/interface/CSCPedestalsDBConditions.h"
0005 #include "CondFormats/CSCObjects/interface/CSCDBPedestals.h"
0006 #include "CondFormats/DataRecord/interface/CSCDBPedestalsRcd.h"
0007 
0008 CSCPedestalsDBConditions::CSCPedestalsDBConditions(const edm::ParameterSet &iConfig) {
0009   // the following line is needed to tell the framework what
0010   // data is being produced
0011   // added by Zhen (changed since 1_2_0)
0012   setWhatProduced(this, &CSCPedestalsDBConditions::produceDBPedestals);
0013   findingRecord<CSCDBPedestalsRcd>();
0014   // now do what ever other initialization is needed
0015 }
0016 
0017 CSCPedestalsDBConditions::~CSCPedestalsDBConditions() {
0018   // do anything here that needs to be done at desctruction time
0019   // (e.g. close files, deallocate resources etc.)
0020 }
0021 
0022 //
0023 // member functions
0024 //
0025 
0026 // ------------ method called to produce the data  ------------
0027 CSCPedestalsDBConditions::ReturnType CSCPedestalsDBConditions::produceDBPedestals(const CSCDBPedestalsRcd &iRecord) {
0028   // need a new object so to not be deleted at exit
0029   return CSCPedestalsDBConditions::ReturnType(prefillDBPedestals());
0030 }
0031 
0032 void CSCPedestalsDBConditions::setIntervalFor(const edm::eventsetup::EventSetupRecordKey &,
0033                                               const edm::IOVSyncValue &,
0034                                               edm::ValidityInterval &oValidity) {
0035   oValidity = edm::ValidityInterval(edm::IOVSyncValue::beginOfTime(), edm::IOVSyncValue::endOfTime());
0036 }