From a6078d444a2ad13067936ffc938f2eafc7284d2a Mon Sep 17 00:00:00 2001
From: Sebastien Ponce <sebastien.ponce@cern.ch>
Date: Fri, 13 Jan 2023 10:44:05 +0100
Subject: [PATCH] fixed ntuple file name in test_davinci_tupling_tistos

---
 .../tests/qmtest/tupling.qms/test_davinci_tupling_tistos.qmt | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_tistos.qmt b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_tistos.qmt
index b3bf5858a..809587c17 100644
--- a/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_tistos.qmt
+++ b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_tistos.qmt
@@ -19,7 +19,8 @@
   </set></argument>
   <argument name="options_yaml_fn"><text>$DAVINCIEXAMPLESROOT/example_data/test_tistos.yaml</text></argument>
   <argument name="extra_options_yaml"><text>
-    ntuple_file: tuple_tistos.root
+    histo_file: tistos_histos.root
+    ntuple_file: tistos_ntuple.root
     print_freq: 1
   </text></argument>
   <argument name="reference"><text>../refs/test_davinci_tupling_tistos.ref</text></argument>
@@ -39,7 +40,7 @@ B_vars_stored += ['RUNNUMBER', 'EVENTNUMBER']
 B_vars_stored = sorted(B_vars_stored)
 
 #open the TFile and TTree
-ntuple = './tuple_tistos.root'
+ntuple = './tistos_ntuple.root'
 if not os.path.isfile(ntuple): raise Exception(f"File: {ntuple} does not exist!")
 f      = TFile.Open(ntuple)
 t_B    = f.Get('Tuple/DecayTree')
-- 
GitLab