source: trunk/G2AutoInt.py @ 4339

Last change on this file since 4339 was 4339, checked in by toby, 3 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
RevLine 
[4335]1'''
2*G2AutoInt: independent autointegration tool*
3---------------------------------------------
4
5Independent-running GSAS-II based auto-integration program with minimal
6GUI, no visualization but intended to implement significant levels of
7parallelization.
8'''
9from __future__ import division, print_function
10#import platform
11import time
12import math
13#import random as ran
14import copy
15import sys
16import os
17import wx
18import GSASIIpath
[4339]19GSASIIpath.SetVersionNumber("$Revision: 4339 $")
[4335]20import GSASIIautoInt as G2imG
21import GSASIIfiles as G2fil
22GSASIIpath.InvokeDebugOpts()
23
24App = wx.App()
25class 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
36if __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.