@@ -208,9 +208,9 @@ void AnalysisSupportHelpers::addMissingOutputsToBuilder(std::vector<InputSpec> c
208208}
209209
210210void AnalysisSupportHelpers::addMissingOutputsToAnalysisCCDBFetcher (
211- std::vector<OutputSpec> const & providedTimestampedCDBObjects,
212- std::vector<InputSpec> const & requestedTimestampedCCDBObjects,
213- DataProcessorSpec& publisher)
211+ std::vector<OutputSpec> const & providedTimestampedCDBObjects,
212+ std::vector<InputSpec> const & requestedTimestampedCCDBObjects,
213+ DataProcessorSpec& publisher)
214214{
215215 for (auto & input : requestedTimestampedCCDBObjects) {
216216 auto concrete = DataSpecUtils::asConcreteDataMatcher (input);
@@ -220,16 +220,16 @@ void AnalysisSupportHelpers::addMissingOutputsToAnalysisCCDBFetcher(
220220 if ((i.type == VariantType::String) && (i.name .find (" input:" ) != std::string::npos)) {
221221 auto value = i.defaultValue .get <std::string>();
222222 std::cout << " XXX " << value << std::endl;
223- // auto spec = DataSpecUtils::fromMetadataString(i.defaultValue.get<std::string>());
224- // auto j = std::find_if(publisher.inputs.begin(), publisher.inputs.end(), [&](auto x) { return x.binding == spec.binding; });
225- // if (j == publisher.inputs.end()) {
226- // publisher.inputs.push_back(spec);
227- // }
228- // if (DataSpecUtils::partialMatch(spec, AODOrigins)) {
229- // DataSpecUtils::updateInputList(requestedAODs, std::move(spec));
230- // } else if (DataSpecUtils::partialMatch(spec, header::DataOrigin{"DYN"})) {
231- // DataSpecUtils::updateInputList(requestedDYNs, std::move(spec));
232- // }
223+ // auto spec = DataSpecUtils::fromMetadataString(i.defaultValue.get<std::string>());
224+ // auto j = std::find_if(publisher.inputs.begin(), publisher.inputs.end(), [&](auto x) { return x.binding == spec.binding; });
225+ // if (j == publisher.inputs.end()) {
226+ // publisher.inputs.push_back(spec);
227+ // }
228+ // if (DataSpecUtils::partialMatch(spec, AODOrigins)) {
229+ // DataSpecUtils::updateInputList(requestedAODs, std::move(spec));
230+ // } else if (DataSpecUtils::partialMatch(spec, header::DataOrigin{"DYN"})) {
231+ // DataSpecUtils::updateInputList(requestedDYNs, std::move(spec));
232+ // }
233233 }
234234 }
235235 }
0 commit comments