Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #include <fstream>
0002 #include <memory>
0003 
0004 #include "CalibMuon/CSCCalibration/interface/CSCGainsDBConditions.h"
0005 #include "CondFormats/CSCObjects/interface/CSCDBGains.h"
0006 #include "CondFormats/DataRecord/interface/CSCDBGainsRcd.h"
0007 
0008 CSCGainsDBConditions::CSCGainsDBConditions(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, &CSCGainsDBConditions::produceDBGains);
0013   findingRecord<CSCDBGainsRcd>();
0014   // now do what ever other initialization is needed
0015 }
0016 
0017 CSCGainsDBConditions::~CSCGainsDBConditions() {
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 CSCGainsDBConditions::ReturnType CSCGainsDBConditions::produceDBGains(const CSCDBGainsRcd &iRecord) {
0028   // need a new object so to not be deleted at exit
0029   return CSCGainsDBConditions::ReturnType(prefillDBGains());
0030 }
0031 
0032 void CSCGainsDBConditions::setIntervalFor(const edm::eventsetup::EventSetupRecordKey &,
0033                                           const edm::IOVSyncValue &,
0034                                           edm::ValidityInterval &oValidity) {
0035   oValidity = edm::ValidityInterval(edm::IOVSyncValue::beginOfTime(), edm::IOVSyncValue::endOfTime());
0036 }