From ceb987deceb3872a991b5a8f650d52d4fb414997 Mon Sep 17 00:00:00 2001 From: jmcarcell Date: Wed, 21 Feb 2024 18:43:53 +0100 Subject: [PATCH] Fix the RNTuple names --- scripts/createEDM4hepFile.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/createEDM4hepFile.py b/scripts/createEDM4hepFile.py index 2e41b8155..489dfa143 100644 --- a/scripts/createEDM4hepFile.py +++ b/scripts/createEDM4hepFile.py @@ -21,9 +21,7 @@ if args.rntuple: try: - writer = podio.root_io.ROOTNTupleWriter(output_file) - except AttributeError: - writer = podio.root_io.ROOTRNTupleWriter(output_file) + writer = podio.root_io.RNTupleWriter(output_file) except AttributeError: print('The RNTuple writer from podio is not available but was requested') sys.exit(1)