Changeset 939 for trunk/GSASIIsolve.py
- Timestamp:
- Jun 2, 2013 11:07:35 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIsolve.py
r927 r939 1 1 # -*- coding: utf-8 -*- 2 #GSASIIsolve - structure solving routines 2 ''' 3 *GSASIIsolve - structure solving routines* 4 ========================================== 5 6 ''' 3 7 ########### SVN repository information ################### 4 8 # $Date$ … … 22 26 23 27 def ShowBanner(): 28 'Print authorship, copyright and citation notice' 24 29 print 80*'*' 25 30 print ' General Structure Analysis System-II Crystal Structure Solution' … … 31 36 32 37 def ShowControls(Controls): 38 'Print controls information' 33 39 print ' Controls:' 34 40 35 41 def Solve(GPXfile): 42 'perform the computation' 36 43 ShowBanner() 37 44 Controls = G2stIO.GetControls(GPXfile) … … 39 46 40 47 def main(): 48 'needs doc string' 41 49 arg = sys.argv 42 50 if len(arg) > 1:
Note: See TracChangeset
for help on using the changeset viewer.