Skip to content

Commit 31f0996

Browse files
authored
Add InputTag parameters to fillDescriptions method
Added new InputTag parameters for HepMC and RecoProtons.
1 parent c7a91a3 commit 31f0996

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Validation/CTPPS/plugins/CTPPSProtonReconstructionSimulationValidator.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -215,16 +215,16 @@ CTPPSProtonReconstructionSimulationValidator::CTPPSProtonReconstructionSimulatio
215215

216216
void CTPPSProtonReconstructionSimulationValidator::fillDescriptions(edm::ConfigurationDescriptions &descriptions) {
217217
edm::ParameterSetDescription desc;
218-
219218
desc.add<std::string>("lhcInfoLabel", "")->setComment("label of the LHCInfo record");
220219
desc.add<std::string>("lhcInfoPerLSLabel", "")->setComment("label of the LHCInfoPerLS record");
221220
desc.add<std::string>("lhcInfoPerFillLabel", "")->setComment("label of the LHCInfoPerFill record");
222221
desc.add<bool>("useNewLHCInfo", false)->setComment("flag whether to use new LHCInfoPer* records or old LHCInfo");
223-
222+
desc.add<edm::InputTag>("tagHepMCBeforeSmearing", edm::InputTag(""));
223+
desc.add<edm::InputTag>("tagHepMCAfterSmearing", edm::InputTag(""));
224+
desc.add<InputTag>("tagRecoProtonsSingleRP", edm::InputTag(""));
225+
desc.add<InputTag>("tagRecoProtonsMultiRP", edm::InputTag(""));
224226
desc.add<std::string>("outputFile", "output.root")->setComment("output file name");
225-
226227
desc.addUntracked<unsigned int>("verbosity", 0)->setComment("verbosity level");
227-
228228
descriptions.add("ctppsProtonReconstructionSimulationValidatorDefault", desc);
229229
}
230230

0 commit comments

Comments
 (0)