Changeset 939 for trunk/GSASIIsolve.py


Ignore:
Timestamp:
Jun 2, 2013 11:07:35 PM (10 years ago)
Author:
toby
Message:

fix & cleanup unit tests; add/change doc strings for sphinx; add all G2 py files to sphinx

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIsolve.py

    r927 r939  
    11# -*- coding: utf-8 -*-
    2 #GSASIIsolve - structure solving routines
     2'''
     3*GSASIIsolve - structure solving routines*
     4==========================================
     5
     6'''
    37########### SVN repository information ###################
    48# $Date$
     
    2226
    2327def ShowBanner():
     28    'Print authorship, copyright and citation notice'
    2429    print 80*'*'
    2530    print '    General Structure Analysis System-II Crystal Structure Solution'
     
    3136   
    3237def ShowControls(Controls):
     38    'Print controls information'
    3339    print ' Controls:'
    3440   
    3541def Solve(GPXfile):
     42    'perform the computation'
    3643    ShowBanner()
    3744    Controls = G2stIO.GetControls(GPXfile)
     
    3946       
    4047def main():
     48    'needs doc string'
    4149    arg = sys.argv
    4250    if len(arg) > 1:
Note: See TracChangeset for help on using the changeset viewer.