00001 // 00002 // Original Author: Fedor Ratnikov Oct 21, 2005 00003 // $Id: HcalHardcodeCalibrations.h,v 1.18 2011/10/26 14:00:29 xiezhen Exp $ 00004 // 00005 // ESSource to generate default HCAL calibration objects 00006 // 00007 #include <map> 00008 #include <string> 00009 00010 #include "FWCore/Framework/interface/ESProducer.h" 00011 #include "FWCore/Framework/interface/EventSetupRecordIntervalFinder.h" 00012 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00013 00014 #include "CondFormats/HcalObjects/interface/AllObjects.h" 00015 class ParameterSet; 00016 00017 class HcalPedestalsRcd; 00018 class HcalPedestalWidthsRcd; 00019 class HcalGainsRcd; 00020 class HcalGainWidthsRcd; 00021 class HcalQIEDataRcd; 00022 class HcalChannelQualityRcd; 00023 class HcalElectronicsMapRcd; 00024 class HcalRespCorrsRcd; 00025 class HcalZSThresholdsRcd; 00026 class HcalL1TriggerObjectsRcd; 00027 class HcalTimeCorrsRcd; 00028 class HcalLUTCorrsRcd; 00029 class HcalPFCorrsRcd; 00030 class HcalValidationCorrsRcd; 00031 class HcalLutMetadataRcd; 00032 class HcalDcsRcd; 00033 class HcalDcsMapRcd; 00034 class HcalRecoParamsRcd; 00035 class HcalLongRecoParamsRcd; 00036 class HcalMCParamsRcd; 00037 class HcalFlagHFDigiTimeParamsRcd; 00038 class HcalTimingParamsRcd; 00039 00040 class HcalHardcodeCalibrations : public edm::ESProducer, 00041 public edm::EventSetupRecordIntervalFinder 00042 { 00043 public: 00044 HcalHardcodeCalibrations (const edm::ParameterSet& ); 00045 ~HcalHardcodeCalibrations (); 00046 00047 void produce () {}; 00048 00049 protected: 00050 virtual void setIntervalFor(const edm::eventsetup::EventSetupRecordKey&, 00051 const edm::IOVSyncValue& , 00052 edm::ValidityInterval&) ; 00053 00054 std::auto_ptr<HcalPedestals> producePedestals (const HcalPedestalsRcd& rcd); 00055 std::auto_ptr<HcalPedestalWidths> producePedestalWidths (const HcalPedestalWidthsRcd& rcd); 00056 std::auto_ptr<HcalGains> produceGains (const HcalGainsRcd& rcd); 00057 std::auto_ptr<HcalGainWidths> produceGainWidths (const HcalGainWidthsRcd& rcd); 00058 std::auto_ptr<HcalQIEData> produceQIEData (const HcalQIEDataRcd& rcd); 00059 std::auto_ptr<HcalChannelQuality> produceChannelQuality (const HcalChannelQualityRcd& rcd); 00060 std::auto_ptr<HcalElectronicsMap> produceElectronicsMap (const HcalElectronicsMapRcd& rcd); 00061 00062 std::auto_ptr<HcalRespCorrs> produceRespCorrs (const HcalRespCorrsRcd& rcd); 00063 std::auto_ptr<HcalZSThresholds> produceZSThresholds (const HcalZSThresholdsRcd& rcd); 00064 std::auto_ptr<HcalL1TriggerObjects> produceL1TriggerObjects (const HcalL1TriggerObjectsRcd& rcd); 00065 std::auto_ptr<HcalTimeCorrs> produceTimeCorrs (const HcalTimeCorrsRcd& rcd); 00066 std::auto_ptr<HcalLUTCorrs> produceLUTCorrs (const HcalLUTCorrsRcd& rcd); 00067 std::auto_ptr<HcalPFCorrs> producePFCorrs (const HcalPFCorrsRcd& rcd); 00068 00069 std::auto_ptr<HcalValidationCorrs> produceValidationCorrs (const HcalValidationCorrsRcd& rcd); 00070 std::auto_ptr<HcalLutMetadata> produceLutMetadata (const HcalLutMetadataRcd& rcd); 00071 std::auto_ptr<HcalDcsValues> produceDcsValues (const HcalDcsRcd& rcd); 00072 std::auto_ptr<HcalDcsMap> produceDcsMap (const HcalDcsMapRcd& rcd); 00073 00074 std::auto_ptr<HcalRecoParams> produceRecoParams (const HcalRecoParamsRcd& rcd); 00075 std::auto_ptr<HcalTimingParams> produceTimingParams (const HcalTimingParamsRcd& rcd); 00076 std::auto_ptr<HcalLongRecoParams> produceLongRecoParams (const HcalLongRecoParamsRcd& rcd); 00077 std::auto_ptr<HcalMCParams> produceMCParams (const HcalMCParamsRcd& rcd); 00078 std::auto_ptr<HcalFlagHFDigiTimeParams> produceFlagHFDigiTimeParams (const HcalFlagHFDigiTimeParamsRcd& rcd); 00079 00080 bool h2mode_; 00081 }; 00082