source: sasview/sansview/local_config.py @ 68c53a4

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 68c53a4 was 68c53a4, checked in by Gervaise Alina <gervyh@…>, 13 years ago

working on local config of sansview

  • Property mode set to 100644
File size: 2.3 KB
Line 
1"""
2    Application settings
3"""
4import time
5import os
6from sans.guiframe.gui_style import GUIFRAME
7# Version of the application
8__appname__ = "SansView"
9__version__ = 'Dev01042011'
10__download_page__ = 'http://danse.chem.utk.edu'
11__update_URL__ = 'http://danse.chem.utk.edu/sansview_version.php'
12
13
14# Debug message flag
15__EVT_DEBUG__ = False
16
17# Flag for automated testing
18__TEST__ = False
19
20# Debug message should be written to a file?
21__EVT_DEBUG_2_FILE__   = False
22__EVT_DEBUG_FILENAME__ = "debug.log"
23
24# About box info
25_do_aboutbox=True
26_acknowledgement =  \
27'''This software was developed by the University of Tennessee as part of the
28Distributed Data Analysis of Neutron Scattering Experiments (DANSE)
29project funded by the US National Science Foundation.
30
31'''
32_homepage = "http://danse.chem.utk.edu"
33_download = "http://danse.chem.utk.edu/sansview.html"
34_authors = []
35_paper = "http://danse.us/trac/sans/newticket"
36_license = "mailto:sansdanse@gmail.com"
37
38_nsf_logo = "images/nsf_logo.png"
39_danse_logo = "images/danse_logo.png"
40_inst_logo = "images/utlogo.gif"
41_nsf_url = "http://www.nsf.gov"
42_danse_url = "http://www.cacr.caltech.edu/projects/danse/release/index.html"
43_inst_url = "http://www.utk.edu"
44_corner_image = "images/angles_flat.png"
45_welcome_image = "images/SVwelcome.png"
46_copyright = "(c) 2009, University of Tennessee"
47#edit the list of file state your plugin can read
48PLUGIN_STATE_EXTENSIONS = ['.prv','.fitv', '.inv']
49APPLICATION_STATE_EXTENSION = '.svs'
50#
51WLIST = ['SansView files (*.svs)|*.svs',
52                  'P(r) files (*.prv)|*.prv',
53                  'Fitting files (*.fitv)|*.fitv',
54                  'Invariant files (*.inv)|*.inv']
55
56SPLASH_SCREEN_PATH = os.path.join("images","SVwelcome.png")
57DEFAULT_STYLE = GUIFRAME.MULTIPLE_APPLICATIONS|GUIFRAME.TOOL_ON
58SPLASH_SCREEN_WIDTH = 500
59SPLASH_SCREEN_HEIGHT = 300
60SS_MAX_DISPLAY_TIME = 3000 #3 sec
61PLOPANEL_WIDTH = 400
62PLOPANEL_HEIGTH = 400
63GUIFRAME_WIDTH = 1000
64GUIFRAME_HEIGHT = 800
65
66def printEVT(message):
67    if __EVT_DEBUG__:
68        print "%g%s" % (time.clock(), message)
69       
70        if __EVT_DEBUG_2_FILE__:
71            out = open(__EVT_DEBUG_FILENAME__, 'a')
72            out.write("%10g%s\n" % (time.clock(), message))
73            out.close()
74           
Note: See TracBrowser for help on using the repository browser.