Skip to content
Snippets Groups Projects

Always use EOS data paths in QMT tests

Merged Christopher Rob Jones requested to merge always-use-eos-data-in-tests into master
All threads resolved!
4 files
+ 24
20
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -13,17 +13,18 @@ import os
from Moore import options
# Get test name
myName = os.getenv("QMTTEST_NAME")
options.set_input_and_conds_from_testfiledb("rich-decode-2022-panoptes")
jonPath = "/usera/jonesc/NFS/data/RunIII/Hlt2/LHCb/RefIndexCalib/2022/"
if os.path.exists(jonPath):
if not myName and os.path.exists(jonPath):
options.input_files = [jonPath + "data-{i:04d}.mdf".format(i=i) for i in range(38)]
print("Data :-", options.input_files)
options.evt_max = 1000
options.print_freq = 100
# Get test name
myName = os.getenv("QMTTEST_NAME", "RichRefIndexCalib")
# If required force use of trunk geom
if "trunk_geom" in myName:
if myName and "trunk_geom" in myName:
options.geometry_version = "run3/trunk"
Loading