ATLAS Offline Software
LArDisplay.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
2 
3 from DataQualityUtils.DQWebDisplayConfig import DQWebDisplayConfig
4 import os
5 from ._resolve_data_path import resolve_data_path
6 
7 
8 dqconfig = DQWebDisplayConfig()
9 dqconfig.config = "larcomm"
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.
13 hcfg_dir = resolve_data_path('DataQualityConfigurations')
14 if hcfg_dir:
15  print ("Found DataQualityConfigurations data directory %s, using it" % hcfg_dir)
16 else:
17  hcfg_dir = os.getcwd()
18  print ("DataQualityConfigurations data directory not found, using $PWD instead.")
19 print ("Looking for collisions_*.hcfg files in %s" % (hcfg_dir))
20 
21 dqconfig.hcfg = "%s/collisions_run.hcfg" % (hcfg_dir)
22 dqconfig.hcfg_min10 = "%s/collisions_minutes10.hcfg" % (hcfg_dir)
23 dqconfig.hcfg_min30 = "%s/collisions_minutes30.hcfg" % (hcfg_dir)
24 
25 dqconfig.histogramCache = "/afs/cern.ch/user/a/atlasdqm/dqmdisk1/histogram_web_display_cache"
26 dqconfig.hanResultsDir = "/eos/atlas/atlascerngroupdisk/data-dqm/han_results/larcomm"
27 dqconfig.htmlDir = "/eos/atlas/atlascerngroupdisk/data-dqm/han_results/larcomm"
28 dqconfig.htmlWeb = "http://cern.ch/atlasdqm/larcomm"
29 dqconfig.runlist = "runlist_larcomm.xml"
30 dqconfig.indexFile = "results_larcomm.html"
31 dqconfig.lockFile = "DQWebDisplay_larcomm.lock"
32 dqconfig.doHandi = False
python._resolve_data_path.resolve_data_path
def resolve_data_path(fin)
Definition: DataQualityConfigurations/python/_resolve_data_path.py:6