Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
#include <fstream>
#include <memory>

#include "CalibMuon/CSCCalibration/interface/CSCL1TPParametersConditions.h"
#include "CondFormats/CSCObjects/interface/CSCL1TPParameters.h"
#include "CondFormats/DataRecord/interface/CSCL1TPParametersRcd.h"

CSCL1TPParametersConditions::CSCL1TPParametersConditions(const edm::ParameterSet &iConfig) {
  // the following line is needed to tell the framework what
  // data is being produced
  // added by Zhen (changed since 1_2_0)
  setWhatProduced(this, &CSCL1TPParametersConditions::produceCSCL1TPParameters);
  findingRecord<CSCL1TPParametersRcd>();
  // now do what ever other initialization is needed
}

CSCL1TPParametersConditions::~CSCL1TPParametersConditions() {
  // do anything here that needs to be done at desctruction time
  // (e.g. close files, deallocate resources etc.)
}

//
// member functions
//

// ------------ method called to produce the data  ------------
CSCL1TPParametersConditions::ReturnType CSCL1TPParametersConditions::produceCSCL1TPParameters(
    const CSCL1TPParametersRcd &iRecord) {
  // need a new object so to not be deleted at exit
  return CSCL1TPParametersConditions::ReturnType(prefillCSCL1TPParameters());
}

void CSCL1TPParametersConditions::setIntervalFor(const edm::eventsetup::EventSetupRecordKey &,
                                                 const edm::IOVSyncValue &,
                                                 edm::ValidityInterval &oValidity) {
  oValidity = edm::ValidityInterval(edm::IOVSyncValue::beginOfTime(), edm::IOVSyncValue::endOfTime());
}