Skip to content

Commit

Permalink
Fixes in PSetBlobProducer functionality for use in HLT
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin-Grunewald committed May 27, 2020
1 parent 043e3b5 commit 514b10b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions EventFilter/Utilities/src/EvFOutputModule.cc
Expand Up @@ -111,7 +111,7 @@ namespace evf {
streamLabel_(ps.getParameter<std::string>("@module_label")),
trToken_(consumes<edm::TriggerResults>(edm::InputTag("TriggerResults"))),
psetToken_(consumes<edm::SendJobHeader::ParameterSetMap, edm::InRun>(
ps.getUntrackedParameter<edm::InputTag>("hltPSetMap"))) {
ps.getUntrackedParameter<edm::InputTag>("psetMap"))) {
//replace hltOutoputA with stream if the HLT menu uses this convention
std::string testPrefix = "hltOutput";
if (streamLabel_.find(testPrefix) == 0)
Expand Down Expand Up @@ -140,7 +140,7 @@ namespace evf {
edm::ParameterSetDescription desc;
edm::StreamerOutputModuleCommon::fillDescription(desc);
EvFOutputModuleType::fillDescription(desc);
desc.addUntracked<edm::InputTag>("psetMap", {"psetMap"})
desc.addUntracked<edm::InputTag>("psetMap", {"hltPSetMap"})
->setComment("Optionally allow the map of ParameterSets to be calculated externally.");
descriptions.addDefault(desc);
}
Expand Down

0 comments on commit 514b10b

Please sign in to comment.