Last change
on this file since 2967 was
2967,
checked in by toby, 5 years ago
|
misc changes for sphinx docs
|
-
Property svn:eol-style set to
native
-
Property svn:executable set to
*
-
Property svn:keywords set to
Date Author Revision URL Id
|
File size:
753 bytes
|
Line | |
---|
1 | #!/usr/bin/env python |
---|
2 | # -*- coding: utf-8 -*- |
---|
3 | #GSASII |
---|
4 | ########### SVN repository information ################### |
---|
5 | # $Date: 2017-08-07 19:17:51 +0000 (Mon, 07 Aug 2017) $ |
---|
6 | # $Author: toby $ |
---|
7 | # $Revision: 2967 $ |
---|
8 | # $URL: branch/2frame/GSASII.py $ |
---|
9 | # $Id: GSASII.py 2967 2017-08-07 19:17:51Z toby $ |
---|
10 | ########### SVN repository information ################### |
---|
11 | ''' |
---|
12 | *GSAS-II GUI Script* |
---|
13 | ===================== |
---|
14 | |
---|
15 | Script to start the GSAS-II graphical user interface. This script imports GSASIIpath, |
---|
16 | sets a few misc. values and then launches :func:`GSASIIdataGUI.GSASIImain`, which |
---|
17 | creates a wx.Application which in turns creates the GUI. |
---|
18 | ''' |
---|
19 | |
---|
20 | import GSASIIpath |
---|
21 | |
---|
22 | __version__ = '1.0.0' |
---|
23 | |
---|
24 | if __name__ == '__main__': |
---|
25 | GSASIIpath.SetBinaryPath() |
---|
26 | GSASIIpath.SetVersionNumber("$Revision: 2967 $") |
---|
27 | GSASIIpath.InvokeDebugOpts() |
---|
28 | import GSASIIdataGUI as G2gd |
---|
29 | G2gd.GSASIImain() # start the GUI |
---|
Note: See
TracBrowser
for help on using the repository browser.