ATLAS Offline Software
Loading...
Searching...
No Matches
TestDisplayHI.py
Go to the documentation of this file.
1# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
2
3
4from DataQualityUtils.DQWebDisplayConfig import DQWebDisplayConfig
5import os
6from ._resolve_data_path import resolve_data_path
7
8dqconfig = DQWebDisplayConfig()
9dqconfig.config = "TEST"
10
11# Use this setup to test your new han configuration before committing it. Set "hcfg_dir" manually if the default doesn't work for you.
12# You can change these settings in your local working copy of this file, but please do not commit the change to SVN.
13hcfg_dir = resolve_data_path('DataQualityConfigurations')
14if hcfg_dir:
15 print ("Found DataQualityConfigurations data directory %s, using it" % hcfg_dir)
16else:
17 hcfg_dir = os.getcwd()
18 print ("DataQualityConfigurations data directory not found, using $PWD instead.")
19print ("Looking for heavyions_*.hcfg files in %s" % (hcfg_dir))
20
21dqconfig.hcfg = "%s/heavyions_run.hcfg" % (hcfg_dir)
22dqconfig.hcfg_min10 = "%s/heavyions_minutes10.hcfg" % (hcfg_dir)
23dqconfig.hcfg_min30 = "%s/heavyions_minutes30.hcfg" % (hcfg_dir)
24
25dqconfig.histogramCache = "/afs/cern.ch/user/a/atlasdqm/w1/histogram_web_display_cache"
26dqconfig.hanResultsDir = "/afs/cern.ch/user/a/atlasdqm/dqmdisk/han_results/test"
27dqconfig.htmlDir = "/afs/cern.ch/user/a/atlasdqm/dqmdisk/www/test"
28dqconfig.htmlWeb = "http://atlasdqm.web.cern.ch/atlasdqm/test"
29dqconfig.runlist = "runlist_TEST.xml"
30dqconfig.indexFile = "results_TEST.html"
31dqconfig.lockFile = "DQWebDisplay_TEST.lock"
32dqconfig.doHandi = False