30 std::vector<edm::ParameterSet>
data = iConfig.
getParameter<std::vector<edm::ParameterSet> >(
"input");
31 std::vector<edm::ParameterSet>::iterator request = data.begin();
32 for (; request != data.end(); ++request) {
37 if (objectName ==
"Pedestals") {
39 findingRecord<HcalPedestalsRcd>();
40 }
else if (objectName ==
"PedestalWidths") {
42 findingRecord<HcalPedestalWidthsRcd>();
43 }
else if (objectName ==
"EffectivePedestals") {
47 findingRecord<HcalPedestalsRcd>();
48 }
else if (objectName ==
"EffectivePedestalWidths") {
52 findingRecord<HcalPedestalWidthsRcd>();
53 }
else if (objectName ==
"Gains") {
55 findingRecord<HcalGainsRcd>();
56 }
else if (objectName ==
"GainWidths") {
58 findingRecord<HcalGainWidthsRcd>();
59 }
else if (objectName ==
"QIEData") {
61 findingRecord<HcalQIEDataRcd>();
62 }
else if (objectName ==
"QIETypes") {
64 findingRecord<HcalQIETypesRcd>();
65 }
else if (objectName ==
"ChannelQuality") {
68 findingRecord<HcalChannelQualityRcd>();
69 }
else if (objectName ==
"ZSThresholds") {
71 findingRecord<HcalZSThresholdsRcd>();
72 }
else if (objectName ==
"RespCorrs") {
74 findingRecord<HcalRespCorrsRcd>();
75 }
else if (objectName ==
"LUTCorrs") {
77 findingRecord<HcalLUTCorrsRcd>();
78 }
else if (objectName ==
"PFCorrs") {
80 findingRecord<HcalPFCorrsRcd>();
81 }
else if (objectName ==
"TimeCorrs") {
83 findingRecord<HcalTimeCorrsRcd>();
84 }
else if (objectName ==
"L1TriggerObjects") {
86 findingRecord<HcalL1TriggerObjectsRcd>();
87 }
else if (objectName ==
"ElectronicsMap") {
89 findingRecord<HcalElectronicsMapRcd>();
90 }
else if (objectName ==
"FrontEndMap") {
92 findingRecord<HcalFrontEndMapRcd>();
93 }
else if (objectName ==
"ValidationCorrs") {
95 findingRecord<HcalValidationCorrsRcd>();
96 }
else if (objectName ==
"LutMetadata") {
98 findingRecord<HcalLutMetadataRcd>();
99 }
else if (objectName ==
"DcsValues") {
101 findingRecord<HcalDcsRcd>();
102 }
else if (objectName ==
"DcsMap") {
104 findingRecord<HcalDcsMapRcd>();
105 }
else if (objectName ==
"RecoParams") {
107 findingRecord<HcalRecoParamsRcd>();
108 }
else if (objectName ==
"TimingParams") {
110 findingRecord<HcalTimingParamsRcd>();
111 }
else if (objectName ==
"LongRecoParams") {
113 findingRecord<HcalLongRecoParamsRcd>();
114 }
else if (objectName ==
"ZDCLowGainFractions") {
116 findingRecord<HcalZDCLowGainFractionsRcd>();
117 }
else if (objectName ==
"MCParams") {
119 findingRecord<HcalMCParamsRcd>();
120 }
else if (objectName ==
"FlagHFDigiTimeParams") {
122 findingRecord<HcalFlagHFDigiTimeParamsRcd>();
123 }
else if (objectName ==
"SiPMParameters") {
125 findingRecord<HcalSiPMParametersRcd>();
126 }
else if (objectName ==
"SiPMCharacteristics") {
128 findingRecord<HcalSiPMCharacteristicsRcd>();
129 }
else if (objectName ==
"TPChannelParameters") {
131 findingRecord<HcalTPChannelParametersRcd>();
132 }
else if (objectName ==
"TPParameters") {
134 findingRecord<HcalTPParametersRcd>();
136 std::cerr <<
"HcalTextCalibrations-> Unknown object name '" << objectName <<
"', known names are: "
137 <<
"Pedestals PedestalWidths Gains GainWidths QIEData QIETypes ChannelQuality ElectronicsMap "
138 <<
"FrontEndMap ZSThresholds RespCorrs LUTCorrs PFCorrs TimeCorrs L1TriggerObjects "
139 <<
"ValidationCorrs LutMetadata DcsValues DcsMap "
140 <<
"RecoParams LongRecoParams ZDCLowGainFraction FlagHFDigiTimeParams MCParams "
141 <<
"SiPMParameters SiPMCharacteristics TPChannelParameters TPParameters" << std::endl;
159 template <
class T,
template <
class>
class F>
161 std::ifstream inStream(fFile.c_str());
162 if (!inStream.good()) {
163 std::cerr <<
"HcalTextCalibrations-> Unable to open file '" << fFile <<
"'" << std::endl;
164 throw cms::Exception(
"FileNotFound") <<
"Unable to open '" << fFile <<
"'" << std::endl;
166 auto result = F<T>(topo)(inStream);
168 std::cerr <<
"HcalTextCalibrations-> Can not read object from file '" << fFile <<
"'" << std::endl;
169 throw cms::Exception(
"ReadError") <<
"Can not read object from file '" << fFile <<
"'" << std::endl;
174 std::unique_ptr<T> get_impl(
const std::string& fFile) {
175 return produce_impl<T, HcalTextCalibrations::CheckGetObject>(fFile);
179 return produce_impl<T, HcalTextCalibrations::CheckGetObjectTopo>(fFile, topo);
182 std::unique_ptr<T> create_impl(
const std::string& fFile) {
183 return produce_impl<T, HcalTextCalibrations::CheckCreateObject>(fFile);
189 return get_impl_topo<HcalPedestals>(mInputs[
n], &rcd.
get(mTokens[n]));
194 return get_impl_topo<HcalPedestalWidths>(mInputs[
n], &rcd.
get(mTokens[n]));
199 return get_impl_topo<HcalPedestals>(mInputs[
n], &rcd.
get(mTokens[n]));
205 return get_impl_topo<HcalPedestalWidths>(mInputs[
n], &rcd.
get(mTokens[n]));
210 return get_impl_topo<HcalGains>(mInputs[
n], &rcd.
get(mTokens[n]));
215 return get_impl_topo<HcalGainWidths>(mInputs[
n], &rcd.
get(mTokens[n]));
220 return get_impl_topo<HcalQIEData>(mInputs[
n], &rcd.
get(mTokens[n]));
225 return get_impl_topo<HcalQIETypes>(mInputs[
n], &rcd.
get(mTokens[n]));
230 return get_impl_topo<HcalChannelQuality>(mInputs[
n], &rcd.
get(mTokens[n]));
235 return get_impl_topo<HcalZSThresholds>(mInputs[
n], &rcd.
get(mTokens[n]));
240 return get_impl_topo<HcalRespCorrs>(mInputs[
n], &rcd.
get(mTokens[n]));
245 return get_impl_topo<HcalLUTCorrs>(mInputs[
n], &rcd.
get(mTokens[n]));
250 return get_impl_topo<HcalPFCorrs>(mInputs[
n], &rcd.
get(mTokens[n]));
255 return get_impl_topo<HcalTimeCorrs>(mInputs[
n], &rcd.
get(mTokens[n]));
260 return get_impl_topo<HcalL1TriggerObjects>(mInputs[
n], &rcd.
get(mTokens[n]));
264 return create_impl<HcalElectronicsMap>(mInputs[
"ElectronicsMap"]);
268 return create_impl<HcalFrontEndMap>(mInputs[
"FrontEndMap"]);
273 return get_impl_topo<HcalValidationCorrs>(mInputs[
n], &rcd.
get(mTokens[n]));
278 return get_impl_topo<HcalLutMetadata>(mInputs[
n], &rcd.
get(mTokens[n]));
282 return get_impl<HcalDcsValues>(mInputs[
"DcsValues"]);
286 return create_impl<HcalDcsMap>(mInputs[
"DcsMap"]);
291 return get_impl_topo<HcalRecoParams>(mInputs[
n], &rcd.
get(mTokens[n]));
296 return get_impl_topo<HcalLongRecoParams>(mInputs[
n], &rcd.
get(mTokens[n]));
302 return get_impl_topo<HcalZDCLowGainFractions>(mInputs[
n], &rcd.
get(mTokens[n]));
307 return get_impl_topo<HcalTimingParams>(mInputs[
n], &rcd.
get(mTokens[n]));
311 return get_impl_topo<HcalMCParams>(mInputs[
n], &rcd.
get(mTokens[n]));
317 return get_impl_topo<HcalFlagHFDigiTimeParams>(mInputs[
n], &rcd.
get(mTokens[n]));
322 return get_impl_topo<HcalSiPMParameters>(mInputs[
n], &rcd.
get(mTokens[n]));
327 return create_impl<HcalSiPMCharacteristics>(mInputs[
"SiPMCharacteristics"]);
333 return get_impl_topo<HcalTPChannelParameters>(mInputs[
n], &rcd.
get(mTokens[n]));
337 return get_impl<HcalTPParameters>(mInputs[
"TPParameters"]);
std::unique_ptr< HcalPedestals > producePedestals(const HcalPedestalsRcd &rcd)
std::unique_ptr< HcalGainWidths > produceGainWidths(const HcalGainWidthsRcd &rcd)
std::unique_ptr< HcalZDCLowGainFractions > produceZDCLowGainFractions(const HcalZDCLowGainFractionsRcd &rcd)
std::unique_ptr< HcalPedestals > produceEffectivePedestals(const HcalPedestalsRcd &rcd)
std::unique_ptr< HcalL1TriggerObjects > produceL1TriggerObjects(const HcalL1TriggerObjectsRcd &rcd)
std::unique_ptr< HcalPedestalWidths > producePedestalWidths(const HcalPedestalWidthsRcd &rcd)
std::unique_ptr< HcalLongRecoParams > produceLongRecoParams(const HcalLongRecoParamsRcd &rcd)
std::unique_ptr< HcalMCParams > produceMCParams(const HcalMCParamsRcd &rcd)
std::unique_ptr< HcalLUTCorrs > produceLUTCorrs(const HcalLUTCorrsRcd &rcd)
std::unique_ptr< HcalPFCorrs > producePFCorrs(const HcalPFCorrsRcd &rcd)
static const IOVSyncValue & endOfTime()
std::unique_ptr< HcalDcsValues > produceDcsValues(HcalDcsRcd const &rcd)
std::unique_ptr< HcalQIEData > produceQIEData(const HcalQIEDataRcd &rcd)
std::pair< Time_t, Time_t > ValidityInterval
void setIntervalFor(const edm::eventsetup::EventSetupRecordKey &, const edm::IOVSyncValue &, edm::ValidityInterval &) override
std::unique_ptr< HcalSiPMCharacteristics > produceSiPMCharacteristics(const HcalSiPMCharacteristicsRcd &rcd)
std::unique_ptr< T > produce_impl(const std::string &fFile)
std::unique_ptr< HcalZSThresholds > produceZSThresholds(const HcalZSThresholdsRcd &rcd)
std::unique_ptr< HcalSiPMParameters > produceSiPMParameters(const HcalSiPMParametersRcd &rcd)
ProductT const & get(ESGetToken< ProductT, DepRecordT > const &iToken) const
std::unique_ptr< HcalDcsMap > produceDcsMap(const HcalDcsMapRcd &rcd)
static const IOVSyncValue & beginOfTime()
std::unique_ptr< HcalRecoParams > produceRecoParams(const HcalRecoParamsRcd &rcd)
std::unique_ptr< HcalChannelQuality > produceChannelQuality(const HcalChannelQualityRcd &rcd)
std::unique_ptr< HcalPedestalWidths > produceEffectivePedestalWidths(const HcalPedestalWidthsRcd &rcd)
HcalTextCalibrations(const edm::ParameterSet &)
const char * name() const
std::unique_ptr< HcalTPChannelParameters > produceTPChannelParameters(const HcalTPChannelParametersRcd &rcd)
std::unique_ptr< HcalQIETypes > produceQIETypes(const HcalQIETypesRcd &rcd)
std::unique_ptr< HcalTimingParams > produceTimingParams(const HcalTimingParamsRcd &rcd)
std::unique_ptr< HcalTPParameters > produceTPParameters(const HcalTPParametersRcd &rcd)
std::unique_ptr< HcalElectronicsMap > produceElectronicsMap(const HcalElectronicsMapRcd &rcd)
T getParameter(std::string const &) const
std::unique_ptr< HcalGains > produceGains(const HcalGainsRcd &rcd)
char data[epos_bytes_allocation]
std::unique_ptr< HcalRespCorrs > produceRespCorrs(const HcalRespCorrsRcd &rcd)
std::unique_ptr< HcalFrontEndMap > produceFrontEndMap(const HcalFrontEndMapRcd &rcd)
std::string fullPath() const
static uInt32 F(BLOWFISH_CTX *ctx, uInt32 x)
std::unique_ptr< HcalLutMetadata > produceLutMetadata(const HcalLutMetadataRcd &rcd)
std::unique_ptr< HcalTimeCorrs > produceTimeCorrs(const HcalTimeCorrsRcd &rcd)
~HcalTextCalibrations() override
std::unique_ptr< HcalFlagHFDigiTimeParams > produceFlagHFDigiTimeParams(const HcalFlagHFDigiTimeParamsRcd &rcd)
std::unique_ptr< HcalValidationCorrs > produceValidationCorrs(const HcalValidationCorrsRcd &rcd)