Last change
on this file since 4347 was
4339,
checked in by toby, 5 years ago
|
set svn flags; improve compare F-test & add info & covariance plot
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Date Author Revision URL Id
|
File size:
1.0 KB
|
Line | |
---|
1 | ''' |
---|
2 | *G2AutoInt: independent autointegration tool* |
---|
3 | --------------------------------------------- |
---|
4 | |
---|
5 | Independent-running GSAS-II based auto-integration program with minimal |
---|
6 | GUI, no visualization but intended to implement significant levels of |
---|
7 | parallelization. |
---|
8 | ''' |
---|
9 | from __future__ import division, print_function |
---|
10 | #import platform |
---|
11 | import time |
---|
12 | import math |
---|
13 | #import random as ran |
---|
14 | import copy |
---|
15 | import sys |
---|
16 | import os |
---|
17 | import wx |
---|
18 | import GSASIIpath |
---|
19 | GSASIIpath.SetVersionNumber("$Revision: 4339 $") |
---|
20 | import GSASIIautoInt as G2imG |
---|
21 | import GSASIIfiles as G2fil |
---|
22 | GSASIIpath.InvokeDebugOpts() |
---|
23 | |
---|
24 | App = wx.App() |
---|
25 | class dummyClass(object): |
---|
26 | def __init__(self): |
---|
27 | # find all the exporter files |
---|
28 | self.exporterlist = G2fil.LoadExportRoutines(self) |
---|
29 | self.Image = None |
---|
30 | self.GSASprojectfile = '/tmp/x.gpx' |
---|
31 | self.LastExportDir = '' |
---|
32 | self.LastGPXdir = '' |
---|
33 | self.PauseIntegration = False |
---|
34 | pass |
---|
35 | |
---|
36 | if __name__ == "__main__": |
---|
37 | G2frame = dummyClass() |
---|
38 | frm = G2imG.AutoIntFrame(G2frame,5) |
---|
39 | App.GetTopWindow().Show(True) |
---|
40 | App.MainLoop() |
---|
Note: See
TracBrowser
for help on using the repository browser.