File indexing completed on 2024-04-06 12:06:59
0001 import os.path, socket
0002 CONFIGDIR = os.path.normcase(os.path.abspath(__file__)).rsplit('/', 1)[0]
0003 PORT = 8060
0004
0005 envsetup = """
0006 source ~cmssw/cmsset_default.sh
0007 source /nfshome0/barvic/rpms/slc4_ia32_gcc345/cms/webtools/1.0.0/etc/profile.d/dependencies-setup.sh
0008 """
0009
0010 server = DQMServerSpec (
0011 port = PORT,
0012 localBase = '%s:%d' % (socket.gethostname(), PORT),
0013 serverDir = '/nfshome0/barvic/gui',
0014 baseUrl = '/dqm/online',
0015 title = 'CMS – Online data quality',
0016 backends = [
0017 DQMBackendSpec('dqm', 'Client', [ '--collector localhost:9090' ], waitFor = 'commands'),
0018
0019 ])