Skip to content

Commit 269cd30

Browse files
authored
Merge pull request #49280 from adzel-werk/patch-1
Add InputTag parameters to fillDescriptions method for ctppsProtonReconstructionSimulationValidator_cfi
2 parents 56d428f + 0593f89 commit 269cd30

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("generator", "unsmeared"));
223+
desc.add<edm::InputTag>("tagHepMCAfterSmearing", edm::InputTag("beamDivergenceVtxGenerator"));
224+
desc.add<InputTag>("tagRecoProtonsSingleRP", edm::InputTag("ctppsProtons", "singleRP"));
225+
desc.add<InputTag>("tagRecoProtonsMultiRP", edm::InputTag("ctppsProtons", "multiRP"));
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)