From bddfc53439f74b501ae2729bec19be64ec700ee4 Mon Sep 17 00:00:00 2001 From: erodrigu Date: Mon, 10 Jan 2022 15:51:33 +0100 Subject: [PATCH 01/10] Replace NewTupleTools with functorcollections --- .../DaVinciExamples/tupling/example-tupling-advanced-run-mc.py | 2 +- .../DaVinciExamples/tupling/option_davinci_configFuntuple.py | 2 +- .../tupling/option_davinci_tupling_from_spruce.py | 2 +- DaVinciTests/tests/options/option_davinci_filters.py | 2 +- DaVinciTests/tests/options/option_davinci_sprucing.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/DaVinciExamples/python/DaVinciExamples/tupling/example-tupling-advanced-run-mc.py b/DaVinciExamples/python/DaVinciExamples/tupling/example-tupling-advanced-run-mc.py index cfcba84b..cb9911e5 100644 --- a/DaVinciExamples/python/DaVinciExamples/tupling/example-tupling-advanced-run-mc.py +++ b/DaVinciExamples/python/DaVinciExamples/tupling/example-tupling-advanced-run-mc.py @@ -25,7 +25,7 @@ from DaVinci.standard_particles import make_detached_mumu, make_KsDD from DaVinci.reco_objects import upfront_reconstruction_from_file as upfront_reconstruction from FunTuple import FunctorCollection from FunTuple import FunTuple_Particles as Funtuple -from FunTuple.NewTupleTools import Kinematics +from FunTuple.functorcollections import Kinematics # Prepare the node with the selection dimuons = make_detached_mumu() diff --git a/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_configFuntuple.py b/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_configFuntuple.py index b2b14b4f..14547041 100644 --- a/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_configFuntuple.py +++ b/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_configFuntuple.py @@ -13,7 +13,7 @@ Example options to read the output of a Sprucing job with the new DaVinci config filtering on an HLT2 line decision. """ from FunTuple import FunctorCollection -from FunTuple.NewTupleTools import Kinematics +from FunTuple.functorcollections import Kinematics #FunTuple: define branches branches = { diff --git a/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_from_spruce.py b/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_from_spruce.py index 489a4302..271d55fa 100644 --- a/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_from_spruce.py +++ b/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_from_spruce.py @@ -13,7 +13,7 @@ Read the output of an Sprucing job with the new DaVinci configuration. """ from FunTuple import FunctorCollection from FunTuple import FunTuple_Particles as Funtuple -from FunTuple.NewTupleTools import Kinematics +from FunTuple.functorcollections import Kinematics from PyConf.application import make_data_with_FetchDataFromFile from DaVinci.algorithms import add_filter diff --git a/DaVinciTests/tests/options/option_davinci_filters.py b/DaVinciTests/tests/options/option_davinci_filters.py index 12b2ef47..81e6ac58 100644 --- a/DaVinciTests/tests/options/option_davinci_filters.py +++ b/DaVinciTests/tests/options/option_davinci_filters.py @@ -13,7 +13,7 @@ Read the output of an Sprucing job with the new DaVinci configuration. """ #from FunTuple import FunctorCollection #from FunTuple import FunTuple_Particles as Funtuple -#from FunTuple.NewTupleTools import Kinematics +#from FunTuple.functorcollections import Kinematics #from PyConf.application import make_data_with_FetchDataFromFile from DaVinci.algorithms import add_filter """ diff --git a/DaVinciTests/tests/options/option_davinci_sprucing.py b/DaVinciTests/tests/options/option_davinci_sprucing.py index fbc29f8d..618d21e6 100644 --- a/DaVinciTests/tests/options/option_davinci_sprucing.py +++ b/DaVinciTests/tests/options/option_davinci_sprucing.py @@ -13,7 +13,7 @@ Read the output of an Sprucing job with the new DaVinci configuration. """ from FunTuple import FunctorCollection from FunTuple import FunTuple_Particles as Funtuple -from FunTuple.NewTupleTools import Kinematics +from FunTuple.functorcollections import Kinematics from PyConf.application import make_data_with_FetchDataFromFile bd2dsk_line = make_data_with_FetchDataFromFile( -- GitLab From 4683e7598366d3673f6c8f41eb382579251b2155 Mon Sep 17 00:00:00 2001 From: Christoph Hasse Date: Mon, 10 Jan 2022 16:08:27 +0100 Subject: [PATCH 02/10] Apply 4 suggestion(s) to 4 file(s) --- .../DaVinciExamples/tupling/example-tupling-advanced-run-mc.py | 2 +- .../DaVinciExamples/tupling/option_davinci_configFuntuple.py | 2 +- DaVinciTests/tests/options/option_davinci_filters.py | 2 +- DaVinciTests/tests/options/option_davinci_sprucing.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/DaVinciExamples/python/DaVinciExamples/tupling/example-tupling-advanced-run-mc.py b/DaVinciExamples/python/DaVinciExamples/tupling/example-tupling-advanced-run-mc.py index cb9911e5..0c523953 100644 --- a/DaVinciExamples/python/DaVinciExamples/tupling/example-tupling-advanced-run-mc.py +++ b/DaVinciExamples/python/DaVinciExamples/tupling/example-tupling-advanced-run-mc.py @@ -1,5 +1,5 @@ ############################################################################### -# (c) Copyright 2021 CERN for the benefit of the LHCb Collaboration # +# (c) Copyright 2021-2022 CERN for the benefit of the LHCb Collaboration # # # # This software is distributed under the terms of the GNU General Public # # Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". # diff --git a/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_configFuntuple.py b/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_configFuntuple.py index 14547041..7f3ece67 100644 --- a/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_configFuntuple.py +++ b/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_configFuntuple.py @@ -1,5 +1,5 @@ ############################################################################### -# (c) Copyright 2021 CERN for the benefit of the LHCb Collaboration # +# (c) Copyright 2021-2022 CERN for the benefit of the LHCb Collaboration # # # # This software is distributed under the terms of the GNU General Public # # Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". # diff --git a/DaVinciTests/tests/options/option_davinci_filters.py b/DaVinciTests/tests/options/option_davinci_filters.py index 81e6ac58..921f1332 100644 --- a/DaVinciTests/tests/options/option_davinci_filters.py +++ b/DaVinciTests/tests/options/option_davinci_filters.py @@ -1,5 +1,5 @@ ############################################################################### -# (c) Copyright 2021 CERN for the benefit of the LHCb Collaboration # +# (c) Copyright 2021-2022 CERN for the benefit of the LHCb Collaboration # # # # This software is distributed under the terms of the GNU General Public # # Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". # diff --git a/DaVinciTests/tests/options/option_davinci_sprucing.py b/DaVinciTests/tests/options/option_davinci_sprucing.py index 618d21e6..f2919e91 100644 --- a/DaVinciTests/tests/options/option_davinci_sprucing.py +++ b/DaVinciTests/tests/options/option_davinci_sprucing.py @@ -1,5 +1,5 @@ ############################################################################### -# (c) Copyright 2021 CERN for the benefit of the LHCb Collaboration # +# (c) Copyright 2021-2022 CERN for the benefit of the LHCb Collaboration # # # # This software is distributed under the terms of the GNU General Public # # Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". # -- GitLab From 810afd09007ad0ea883c2a0638e89b71b13df4cf Mon Sep 17 00:00:00 2001 From: Christoph Hasse Date: Mon, 10 Jan 2022 16:08:40 +0100 Subject: [PATCH 03/10] Apply 1 suggestion(s) to 1 file(s) --- .../tupling/option_davinci_tupling_from_spruce.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_from_spruce.py b/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_from_spruce.py index 271d55fa..6bb179bb 100644 --- a/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_from_spruce.py +++ b/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_from_spruce.py @@ -1,5 +1,5 @@ ############################################################################### -# (c) Copyright 2021 CERN for the benefit of the LHCb Collaboration # +# (c) Copyright 2021-2022 CERN for the benefit of the LHCb Collaboration # # # # This software is distributed under the terms of the GNU General Public # # Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". # -- GitLab From 2eb0575f40adb97c917e4b6709502ff2903c4314 Mon Sep 17 00:00:00 2001 From: erodrigu Date: Mon, 10 Jan 2022 15:51:33 +0100 Subject: [PATCH 04/10] Replace NewTupleTools with functorcollections --- .../DaVinciExamples/tupling/example-tupling-advanced-run-mc.py | 2 +- .../DaVinciExamples/tupling/option_davinci_configFuntuple.py | 2 +- .../tupling/option_davinci_tupling_from_spruce.py | 2 +- DaVinciTests/tests/options/option_davinci_filters.py | 2 +- DaVinciTests/tests/options/option_davinci_sprucing.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/DaVinciExamples/python/DaVinciExamples/tupling/example-tupling-advanced-run-mc.py b/DaVinciExamples/python/DaVinciExamples/tupling/example-tupling-advanced-run-mc.py index cfcba84b..cb9911e5 100644 --- a/DaVinciExamples/python/DaVinciExamples/tupling/example-tupling-advanced-run-mc.py +++ b/DaVinciExamples/python/DaVinciExamples/tupling/example-tupling-advanced-run-mc.py @@ -25,7 +25,7 @@ from DaVinci.standard_particles import make_detached_mumu, make_KsDD from DaVinci.reco_objects import upfront_reconstruction_from_file as upfront_reconstruction from FunTuple import FunctorCollection from FunTuple import FunTuple_Particles as Funtuple -from FunTuple.NewTupleTools import Kinematics +from FunTuple.functorcollections import Kinematics # Prepare the node with the selection dimuons = make_detached_mumu() diff --git a/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_configFuntuple.py b/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_configFuntuple.py index b2b14b4f..14547041 100644 --- a/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_configFuntuple.py +++ b/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_configFuntuple.py @@ -13,7 +13,7 @@ Example options to read the output of a Sprucing job with the new DaVinci config filtering on an HLT2 line decision. """ from FunTuple import FunctorCollection -from FunTuple.NewTupleTools import Kinematics +from FunTuple.functorcollections import Kinematics #FunTuple: define branches branches = { diff --git a/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_from_spruce.py b/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_from_spruce.py index 489a4302..271d55fa 100644 --- a/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_from_spruce.py +++ b/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_from_spruce.py @@ -13,7 +13,7 @@ Read the output of an Sprucing job with the new DaVinci configuration. """ from FunTuple import FunctorCollection from FunTuple import FunTuple_Particles as Funtuple -from FunTuple.NewTupleTools import Kinematics +from FunTuple.functorcollections import Kinematics from PyConf.application import make_data_with_FetchDataFromFile from DaVinci.algorithms import add_filter diff --git a/DaVinciTests/tests/options/option_davinci_filters.py b/DaVinciTests/tests/options/option_davinci_filters.py index eac0cbab..4dcb60cb 100644 --- a/DaVinciTests/tests/options/option_davinci_filters.py +++ b/DaVinciTests/tests/options/option_davinci_filters.py @@ -13,7 +13,7 @@ Read the output of an Sprucing job with the new DaVinci configuration. """ #from FunTuple import FunctorCollection #from FunTuple import FunTuple_Particles as Funtuple -#from FunTuple.NewTupleTools import Kinematics +#from FunTuple.functorcollections import Kinematics #from PyConf.application import make_data_with_FetchDataFromFile from DaVinci.algorithms import add_filter """ diff --git a/DaVinciTests/tests/options/option_davinci_sprucing.py b/DaVinciTests/tests/options/option_davinci_sprucing.py index 14610b66..e40808fb 100644 --- a/DaVinciTests/tests/options/option_davinci_sprucing.py +++ b/DaVinciTests/tests/options/option_davinci_sprucing.py @@ -13,7 +13,7 @@ Read the output of an Sprucing job with the new DaVinci configuration. """ from FunTuple import FunctorCollection from FunTuple import FunTuple_Particles as Funtuple -from FunTuple.NewTupleTools import Kinematics +from FunTuple.functorcollections import Kinematics from PyConf.application import make_data_with_FetchDataFromFile from DaVinci.algorithms import add_filter -- GitLab From ea174ebb2baadc53998a378a2878c0c3c26db355 Mon Sep 17 00:00:00 2001 From: Christoph Hasse Date: Mon, 10 Jan 2022 16:08:27 +0100 Subject: [PATCH 05/10] Apply 4 suggestion(s) to 4 file(s) --- .../DaVinciExamples/tupling/example-tupling-advanced-run-mc.py | 2 +- .../DaVinciExamples/tupling/option_davinci_configFuntuple.py | 2 +- DaVinciTests/tests/options/option_davinci_filters.py | 2 +- DaVinciTests/tests/options/option_davinci_sprucing.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/DaVinciExamples/python/DaVinciExamples/tupling/example-tupling-advanced-run-mc.py b/DaVinciExamples/python/DaVinciExamples/tupling/example-tupling-advanced-run-mc.py index cb9911e5..0c523953 100644 --- a/DaVinciExamples/python/DaVinciExamples/tupling/example-tupling-advanced-run-mc.py +++ b/DaVinciExamples/python/DaVinciExamples/tupling/example-tupling-advanced-run-mc.py @@ -1,5 +1,5 @@ ############################################################################### -# (c) Copyright 2021 CERN for the benefit of the LHCb Collaboration # +# (c) Copyright 2021-2022 CERN for the benefit of the LHCb Collaboration # # # # This software is distributed under the terms of the GNU General Public # # Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". # diff --git a/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_configFuntuple.py b/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_configFuntuple.py index 14547041..7f3ece67 100644 --- a/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_configFuntuple.py +++ b/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_configFuntuple.py @@ -1,5 +1,5 @@ ############################################################################### -# (c) Copyright 2021 CERN for the benefit of the LHCb Collaboration # +# (c) Copyright 2021-2022 CERN for the benefit of the LHCb Collaboration # # # # This software is distributed under the terms of the GNU General Public # # Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". # diff --git a/DaVinciTests/tests/options/option_davinci_filters.py b/DaVinciTests/tests/options/option_davinci_filters.py index 4dcb60cb..fa6e19a3 100644 --- a/DaVinciTests/tests/options/option_davinci_filters.py +++ b/DaVinciTests/tests/options/option_davinci_filters.py @@ -1,5 +1,5 @@ ############################################################################### -# (c) Copyright 2021 CERN for the benefit of the LHCb Collaboration # +# (c) Copyright 2021-2022 CERN for the benefit of the LHCb Collaboration # # # # This software is distributed under the terms of the GNU General Public # # Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". # diff --git a/DaVinciTests/tests/options/option_davinci_sprucing.py b/DaVinciTests/tests/options/option_davinci_sprucing.py index e40808fb..0680ab4b 100644 --- a/DaVinciTests/tests/options/option_davinci_sprucing.py +++ b/DaVinciTests/tests/options/option_davinci_sprucing.py @@ -1,5 +1,5 @@ ############################################################################### -# (c) Copyright 2021 CERN for the benefit of the LHCb Collaboration # +# (c) Copyright 2021-2022 CERN for the benefit of the LHCb Collaboration # # # # This software is distributed under the terms of the GNU General Public # # Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". # -- GitLab From 1eb7e4fd1e42975eb94f856a6bb49eecc732cb6f Mon Sep 17 00:00:00 2001 From: Christoph Hasse Date: Mon, 10 Jan 2022 16:08:40 +0100 Subject: [PATCH 06/10] Apply 1 suggestion(s) to 1 file(s) --- .../tupling/option_davinci_tupling_from_spruce.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_from_spruce.py b/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_from_spruce.py index 271d55fa..6bb179bb 100644 --- a/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_from_spruce.py +++ b/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_from_spruce.py @@ -1,5 +1,5 @@ ############################################################################### -# (c) Copyright 2021 CERN for the benefit of the LHCb Collaboration # +# (c) Copyright 2021-2022 CERN for the benefit of the LHCb Collaboration # # # # This software is distributed under the terms of the GNU General Public # # Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". # -- GitLab From b60d1266d88ad276d5abf738cd89981970b23204 Mon Sep 17 00:00:00 2001 From: erodrigu Date: Thu, 13 Jan 2022 15:14:32 +0100 Subject: [PATCH 07/10] Update tests accordingly --- .../test_davinci_tupling_advanced.qmt | 95 ++++++++----------- 1 file changed, 42 insertions(+), 53 deletions(-) diff --git a/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_advanced.qmt b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_advanced.qmt index f65a4b00..94f0f3a7 100755 --- a/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_advanced.qmt +++ b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_advanced.qmt @@ -43,60 +43,49 @@ KsTuple SUCCESS ID=DecayTree Title="DecayTree" import sys, os, glob from ROOT import TFile -Jpsi_vars_stored = ['Jpsi_LOKI_E', - 'Jpsi_LOKI_MASS', - 'Jpsi_LOKI_MAXPT', - 'Jpsi_LOKI_Muonm_PT', - 'Jpsi_LOKI_Muonp_PT', - 'Jpsi_LOKI_NTRCKS_ABV_THRSHLD', - 'Jpsi_LOKI_P', - 'Jpsi_LOKI_PT', - 'Jpsi_LOKI_PX', - 'Jpsi_LOKI_PY', - 'Jpsi_LOKI_PZ', - 'Jpsi_THOR_FourMom_PE', - 'Jpsi_THOR_FourMom_PX', - 'Jpsi_THOR_FourMom_PY', - 'Jpsi_THOR_FourMom_PZ', - 'Jpsi_THOR_MASS', - 'Jpsi_THOR_P', - 'Jpsi_THOR_PE', - 'Jpsi_THOR_PT', - 'Jpsi_THOR_PX', - 'Jpsi_THOR_PY', - 'Jpsi_THOR_PZ', - 'MuPlus_LOKI_E', - 'MuPlus_LOKI_MASS', - 'MuPlus_LOKI_P', - 'MuPlus_LOKI_PT', - 'MuPlus_LOKI_PX', - 'MuPlus_LOKI_PY', - 'MuPlus_LOKI_PZ', - 'MuPlus_THOR_MASS', - 'MuPlus_THOR_P', - 'MuPlus_THOR_PT'] -Ks_vars_stored = ['KS_LOKI_E', - 'KS_LOKI_MASS', - 'KS_LOKI_MAXPT', +Jpsi_vars_stored = ['Jpsi_LOKI_MAXPT', + 'Jpsi_LOKI_Muonm_PT', + 'Jpsi_LOKI_Muonp_PT', + 'Jpsi_LOKI_NTRCKS_ABV_THRSHLD', + 'Jpsi_LOKI_PT', + 'Jpsi_THOR_E', + 'Jpsi_THOR_FourMom_PE', + 'Jpsi_THOR_FourMom_PX', + 'Jpsi_THOR_FourMom_PY', + 'Jpsi_THOR_FourMom_PZ', + 'Jpsi_THOR_MASS', + 'Jpsi_THOR_P', + 'Jpsi_THOR_PE', + 'Jpsi_THOR_PT', + 'Jpsi_THOR_PX', + 'Jpsi_THOR_PY', + 'Jpsi_THOR_PZ', + 'MuPlus_LOKI_PT', + 'MuPlus_THOR_E', + 'MuPlus_THOR_MASS', + 'MuPlus_THOR_P', + 'MuPlus_THOR_PT', + 'MuPlus_THOR_PX', + 'MuPlus_THOR_PY', + 'MuPlus_THOR_PZ'] + +Ks_vars_stored = ['KS_LOKI_MAXPT', 'KS_LOKI_Muonm_PT', - 'KS_LOKI_Muonp_PT', - 'KS_LOKI_NTRCKS_ABV_THRSHLD', - 'KS_LOKI_P', - 'KS_LOKI_PT', - 'KS_LOKI_PX', - 'KS_LOKI_PY', - 'KS_LOKI_PZ', - 'KS_THOR_FourMom_PE', - 'KS_THOR_FourMom_PX', - 'KS_THOR_FourMom_PY', - 'KS_THOR_FourMom_PZ', - 'KS_THOR_MASS', - 'KS_THOR_P', - 'KS_THOR_PE', - 'KS_THOR_PT', - 'KS_THOR_PX', - 'KS_THOR_PY', - 'KS_THOR_PZ'] + 'KS_LOKI_Muonp_PT', + 'KS_LOKI_NTRCKS_ABV_THRSHLD', + 'KS_LOKI_PT', + 'KS_THOR_E', + 'KS_THOR_FourMom_PE', + 'KS_THOR_FourMom_PX', + 'KS_THOR_FourMom_PY', + 'KS_THOR_FourMom_PZ', + 'KS_THOR_MASS', + 'KS_THOR_P', + 'KS_THOR_PE', + 'KS_THOR_PT', + 'KS_THOR_PX', + 'KS_THOR_PY', + 'KS_THOR_PZ'] #sort the expected vars Jpsi_vars_stored = sorted(Jpsi_vars_stored) -- GitLab From daf7921d556714858966c21a22ca65d5b23572b1 Mon Sep 17 00:00:00 2001 From: erodrigu Date: Thu, 13 Jan 2022 15:14:32 +0100 Subject: [PATCH 08/10] Update tests accordingly --- .../test_davinci_tupling_advanced.qmt | 99 +++++++++---------- 1 file changed, 44 insertions(+), 55 deletions(-) diff --git a/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_advanced.qmt b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_advanced.qmt index f65a4b00..46d735b5 100755 --- a/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_advanced.qmt +++ b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_advanced.qmt @@ -1,7 +1,7 @@