![]() |
![]() |
00001 #include <memory> 00002 #include "boost/shared_ptr.hpp" 00003 #include <fstream> 00004 00005 #include "CondFormats/CSCObjects/interface/CSCL1TPParameters.h" 00006 #include "CondFormats/DataRecord/interface/CSCL1TPParametersRcd.h" 00007 #include "CalibMuon/CSCCalibration/interface/CSCL1TPParametersConditions.h" 00008 00009 00010 CSCL1TPParametersConditions::CSCL1TPParametersConditions(const edm::ParameterSet& iConfig) 00011 { 00012 //the following line is needed to tell the framework what 00013 // data is being produced 00014 CSCl1TPParameters = prefillCSCL1TPParameters(); 00015 // added by Zhen (changed since 1_2_0) 00016 setWhatProduced(this,&CSCL1TPParametersConditions::produceCSCL1TPParameters); 00017 findingRecord<CSCL1TPParametersRcd>(); 00018 //now do what ever other initialization is needed 00019 } 00020 00021 00022 CSCL1TPParametersConditions::~CSCL1TPParametersConditions() 00023 { 00024 00025 // do anything here that needs to be done at desctruction time 00026 // (e.g. close files, deallocate resources etc.) 00027 delete CSCl1TPParameters; 00028 } 00029 00030 00031 // 00032 // member functions 00033 // 00034 00035 // ------------ method called to produce the data ------------ 00036 CSCL1TPParametersConditions::ReturnType 00037 CSCL1TPParametersConditions::produceCSCL1TPParameters(const CSCL1TPParametersRcd& iRecord) 00038 { 00039 //need a new object so to not be deleted at exit 00040 CSCL1TPParameters* mydata=new CSCL1TPParameters( *CSCl1TPParameters); 00041 return mydata; 00042 00043 } 00044 00045 void CSCL1TPParametersConditions::setIntervalFor(const edm::eventsetup::EventSetupRecordKey &, const edm::IOVSyncValue&, 00046 edm::ValidityInterval & oValidity) 00047 { 00048 oValidity = edm::ValidityInterval(edm::IOVSyncValue::beginOfTime(),edm::IOVSyncValue::endOfTime()); 00049 00050 }