Skip to content

Commit

Permalink
changes needed to compile correctly: cms-sw#16461
Browse files Browse the repository at this point in the history
  • Loading branch information
mmusich committed Nov 21, 2016
1 parent 72dcd38 commit 76e944c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions SimCalorimetry/HcalSimProducers/src/HcalDigitizer.cc
Expand Up @@ -411,8 +411,6 @@ void HcalDigitizer::finalizeEvent(edm::Event& e, const edm::EventSetup& eventSet
std::unique_ptr<HODigiCollection> hoResult(new HODigiCollection());
std::unique_ptr<HFDigiCollection> hfResult(new HFDigiCollection());
std::unique_ptr<ZDCDigiCollection> zdcResult(new ZDCDigiCollection());
std::unique_ptr<HBHEUpgradeDigiCollection> hbheupgradeResult(new HBHEUpgradeDigiCollection());
std::unique_ptr<HFUpgradeDigiCollection> hfupgradeResult(new HFUpgradeDigiCollection());
std::unique_ptr<QIE10DigiCollection> hfQIE10Result(
new QIE10DigiCollection(
theHFQIE10DetIds.size()>0 ?
Expand Down
Expand Up @@ -128,8 +128,8 @@ void HcalRealisticZS::produce(edm::Event& e, const edm::EventSetup& eventSetup)
e.getByToken(tok_hbheQIE11_,hbheQIE11);

// create empty output
std::unique_ptr<HBHEUpgradeDigiCollection> zs_hbheUpgrade(new HBHEUpgradeDigiCollection);
std::unique_ptr<HFUpgradeDigiCollection> zs_hfUpgrade(new HFUpgradeDigiCollection);
std::unique_ptr<HBHEDigiCollection> zs_hbheUpgrade(new HBHEDigiCollection);
std::unique_ptr<HFDigiCollection> zs_hfUpgrade(new HFDigiCollection);
std::unique_ptr<QIE10DigiCollection> zs_hfQIE10(new QIE10DigiCollection(hfQIE10->samples()));
std::unique_ptr<QIE11DigiCollection> zs_hbheQIE11(new QIE11DigiCollection(hbheQIE11->samples()));

Expand Down

0 comments on commit 76e944c

Please sign in to comment.