Skip to content

Commit

Permalink
Add default arguments for clicRec_e4h_input
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Jan 30, 2025
1 parent 38b167e commit 7f7e4de
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
12 changes: 9 additions & 3 deletions k4MarlinWrapper/examples/clicRec_e4h_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,15 @@
parser.add_argument(
"--iosvc", action="store_true", default=False, help="Use IOSvc instead of PodioDataSvc"
)
parser.add_argument("--rec-output", help="Output file name for the REC file")
parser.add_argument("--dst-output", help="Output file name for the DST file")
parser.add_argument("--gaudi-output", help="Output file name for the Gaudi file")
parser.add_argument(
"--rec-output", default="Output_REC_e4h_input.slcio", help="Output file name for the REC file"
)
parser.add_argument(
"--dst-output", default="Output_DST_e4h_input.slcio", help="Output file name for the DST file"
)
parser.add_argument(
"--gaudi-output", default="my_output.root", help="Output file name for the Gaudi file"
)

args = parser.parse_known_args()[0]

Expand Down
1 change: 0 additions & 1 deletion k4MarlinWrapper/src/components/Lcio2EDM4hep.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,6 @@ StatusCode Lcio2EDM4hepTool::convertCollections(lcio::LCEventImpl* the_event) {
}

// Set the ParticleID meta information
// TODO: Clean up
if (m_podioDataSvc) {
auto& metadataFrame = m_podioDataSvc->getMetaDataFrame();
for (const auto& [collName, pidInfo] : pidInfos) {
Expand Down

0 comments on commit 7f7e4de

Please sign in to comment.