Skip to content

Commit

Permalink
Code check
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunanda committed Mar 11, 2022
1 parent 345dc4d commit dfaa9eb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions FastSimulation/Validation/plugins/EmptySimHits.cc
Expand Up @@ -27,10 +27,9 @@ class EmptySimHits : public edm::one::EDProducer<> {
const std::vector<std::string> pCaloHitInstanceLabels;
};

EmptySimHits::EmptySimHits(const edm::ParameterSet& iConfig) :
pSimHitInstanceLabels(iConfig.getParameter<std::vector<std::string> >("pSimHitInstanceLabels")),
EmptySimHits::EmptySimHits(const edm::ParameterSet& iConfig)
: pSimHitInstanceLabels(iConfig.getParameter<std::vector<std::string> >("pSimHitInstanceLabels")),
pCaloHitInstanceLabels(iConfig.getParameter<std::vector<std::string> >("pCaloHitInstanceLabels")) {

for (size_t i = 0; i < pSimHitInstanceLabels.size(); i++) {
produces<edm::PSimHitContainer>(pSimHitInstanceLabels[i]);
}
Expand Down

0 comments on commit dfaa9eb

Please sign in to comment.