source: trunk/gsasmenu.tcl @ 38

Last change on this file since 38 was 31, checked in by toby, 14 years ago

# on 1999/01/20 19:44:43, toby did:
remove unused stuff
add SaveOptions?
remove New_expnam

  • Property rcs:author set to toby
  • Property rcs:date set to 1999/01/20 19:44:43
  • Property rcs:lines set to +7 -23
  • Property rcs:rev set to 1.4
  • Property rcs:state set to Exp
  • Property svn:keywords set to Author Date Revision Id
File size: 6.9 KB
Line 
1# $Revision: 31 $ $Date: 2009-12-04 22:59:13 +0000 (Fri, 04 Dec 2009) $
2# menu information for GSAS programs
3
4# menu items to be created (N.B. File, Options & Help already exist)
5set expgui(menunames) {Powder Xtal Graphs Results Calc Import/Export}
6
7# contents of each menu
8array set expgui_menulist {
9    file {
10        convert
11        dlst
12    }
13    option {
14        {liveplot_options}
15    }
16    powder {
17        expedt
18        powpref
19        genles
20        powplot
21        rawplot
22        fitspec
23        tofnorm
24    }
25    xtal {
26        expedt
27        genles
28        scabs
29        scmerge
30        sxtldata
31    }
32    graphs {
33        forplot
34        polfplot
35        powplot
36        ortep
37        rawplot
38        fourier
39        forsrh
40        liveplot
41        widplt 
42    }
43    calc {
44        cllchg
45        fprime
46        hklgen
47        rducll
48        spcgroup
49        unimol
50    }
51    import/export {
52        exp2shelx
53        exp2xtl
54        gsas2cif
55        hklsort
56        pubtable
57        convert
58        cad4rd
59        dbwscnv
60        x17bcnv
61        p3r3data
62        sxtldata
63    }
64    results {
65        bijcalc
66        disagl
67        reflist
68        geometry
69        hstdmp
70        istats
71        rcalc
72        composition
73        sexp
74        slst
75        lstview
76        last_r
77    }
78}
79
80array set expgui_cmdlist {
81
82    Save {- {
83        Saves modifications to the current experiment file to disk}
84    }
85
86    {Save As} {- {
87        Saves modifications to the current experiment file to disk
88        under a new file name }
89    }
90
91    {Reread .EXP file} {- {
92        Reread the last saved version of the experiment file from disk.
93
94        This causes any unsaved changes to be lost.}
95    }
96
97    {Sort atoms by}  {- {
98        Determines the order that atoms are displayed on the "Phase" page
99        Atoms may be displayed sorted by atom number, atom type, 
100        or by x, y or z}
101    }
102
103    {Sort histograms by}  {- {
104        Determines the order that histograms are displayed on the
105        Histogram, Scaling and Profile pages
106
107        Histograms may be sorted by histogram number, histogram type, 
108        original bank number, or diffraction angle/wavelength}
109    }
110
111    {Multiple hist. selection}  {- {
112        When this mode is off, it is possible to modify parameters
113        and refinement flags for only a single histogram. For other settings,
114        it is possible to modify parameters and flags for groups of
115        histograms (see help for Mouse actions).
116
117        It does not make sense, however, to globally modify
118        instrument-related parameters and flags for different histogram types.
119        So global actions can be limited to a single class of histogram types
120        (e.g. TOF, CW Neutron,...), which allows these parameters to be set
121        for groups of similar histograms. Thus, if this mode is set to "All"
122        the Histogram and Profile pages are disabled.}
123    }
124
125    {Mouse actions}  {- {
126        A range of atoms or (in multiple selection mode) histograms may be
127        selected by dragging (holding down) the left mouse button. It is also
128        possible to select a range by using the Shift key with the
129        left mouse button. To select or deselect individual entries, use the
130        Control key with the left mouse button. The right mouse button selects
131        all entries.}
132   }
133
134    expnam {readnewexp {
135        Select an existing or new GSAS experiment to be used}
136    }
137
138    {archive EXP} {- {
139        Toggles archiving of .EXP files. When on, files are
140        saved prior to each save or run of expedt in a file named
141
142        <expnam>.EXP.xxx.gz where xxx = 000, 001 (UNIX) 
143
144        or in a file named <expnam>.ZIP or  <expnam>.xxx (Windows) }
145    }
146
147    showhelp    {showhelp {
148        Show the help information for commands and actions}
149    }
150
151    powpref     {{runGSASwEXP $cmd} {
152        Powder data preparation}   
153    }
154
155    bijcalc     {{runGSASwEXP $cmd} {
156        Thermal parameter analysis} 
157    }
158
159    powplot     {{runGSASwEXP $cmd} {
160        Display powder patterns}
161    }
162
163    cllchg      {{runGSASwEXP $cmd} {
164        Transform unit cell}
165    }
166
167    expedt      {{runGSASwEXP $cmd} {
168        Run GSAS experiment editor}
169    }
170
171    genles      {{runGSASwEXP $cmd} {
172        Run General Least Squares program}
173    }
174
175    disagl      {{runGSASwEXP $cmd} {
176        Distance/angle calculations}
177    }
178
179    forplot     {{runGSASwEXP $cmd} {
180        Display Fourier maps (set Fourier options in EXPEDT
181        and then compute with FOURIER)}
182    }
183
184    hstdmp      {{runGSASwEXP $cmd} {
185        List powder histogram data}
186    }
187
188    cad4rd      {{runGSASwEXP $cmd} {
189        Prepare CAD4 single crystal data}
190    }
191
192    fourier     {{runGSASwEXP $cmd} {
193        Generate Fourier map}
194    }
195
196    geometry    {{runGSASwEXP $cmd} {
197        Molecular geometry calculations}
198    }
199
200    ortep       {{runGSASwEXP $cmd} {
201        Draw crystal structure}
202    }
203
204    rawplot     {{runGSASprog $cmd} {
205        Plot powder data}
206    }
207
208
209    p3r3data    {{runGSASwEXP $cmd} {
210        Prepare Siemens/Brucker P3R3 single crystal data}
211    }
212
213    forsrh      {{runGSASwEXP $cmd} {
214        Search Fourier map for peaks}
215    }
216
217    hklsort     {{runGSASwEXP $cmd} {
218        Prepare HKL tables}
219    }
220
221    polfplot    {{runGSASwEXP $cmd} {
222        Display polefigures}
223    }
224
225    rducll      {{runGSASprog $cmd} {
226        Unit cell reduction}
227    }
228
229    sxtldata    {{runGSASwEXP $cmd} {
230        Prepare generic single crystal data}
231    }
232
233    scabs       {{runGSASwEXP $cmd} {
234        Single crystal absorption}
235    }
236
237    istats      {{runGSASwEXP $cmd} {
238        HKL Intensity statistics}
239    }
240
241    reflist     {{runGSASwEXP $cmd} {
242        List reflection data}
243    }
244
245    scmerge     {{runGSASwEXP $cmd} {
246        Sort and merge single crystal data}
247    }
248
249    pubtable    {{runGSASwEXP $cmd} {
250        Prepare atom parameter tables}
251    }
252
253    spcgroup    {{runGSASprog $cmd} {
254        Space group symbol interpreter}
255    }
256
257    rcalc       {{runGSASwEXP $cmd} {
258        Compute reflection resuduals}
259    }
260
261    unimol      {{runGSASwEXP $cmd} {
262        Unique molecule assembler}
263    }
264
265    gsas2cif    {{runGSASwEXP $cmd} {
266        Prepare IUCr crystallographic information (CIF) file}
267    }
268
269    fitspec     {{runGSASprog $cmd} {
270        Fit a TOF vanadium scattering spectrum}
271    }
272
273    tofnorm     {{runGSASprog $cmd} {
274        Normalize a TOF spectrum}
275    }
276
277    fprime      {{runGSASprog $cmd} {
278        Compute f, f', f'' and mu/rho for an element for a range of x-ray wavelengths}
279    }
280
281    dbwscnv     {{runGSASprog $cmd} {
282        Convert a powder diffraction data file from DBWS format}
283    }
284
285    x17bcnv     {{runGSASprog $cmd} {
286        Convert an energy dispersive diffractogram data file from NSLS X17b}
287    }
288
289    liveplot    {{liveplot} {
290        Create a plot of powder data (automatically updated) }
291    }
292
293    {liveplot_options} {liveplotopt {
294        Used to set options for liveplot, for example, the
295        histogram to be plotted}
296    }
297   
298    convert     {convfile {
299        Convert a standard ASCII file to the direct access format used by GSAS (and for UNIX, the reverse)}
300    }
301
302    lstview     {lstview {
303        Create a box with scrollbars containing the current .LST file}
304    }
305
306    widplt      {widplt {
307        Displays the FWHM as a function of Q, 2Theta,... for UVWXY values input or read from an EXP file}
308    }
309
310    "Override backspace" {- {
311        This option is available in UNIX only, as there are different
312        ways that backspace can be implemented. When option is set
313        as "On," the backspace key is overridden to send a "delete" 
314        character. If backspace does not work in a program such as
315        EXPEDT, change try the other setting for this option.} 
316    }
317    SaveOptions {- {
318        Save the current values for "Override backspace", 
319        "Sort atoms by", "Sort histograms by" and "archive EXP"
320        in ~/.gsas_config (c:\.gsas_config)}
321    }
322    exit        {- {
323        Exit EXPGUI}
324    }
325}
326
327# not implemented (yet)
328#    newest     {}
329#composition    {{} {}}
330#exp2shelx      {{} {}}
331#exp2xtl        {{} {}}
332#dlst   {{delconf .LST} {}}
333
334set expgui(buttonlist) {
335        expnam
336        expedt
337        genles
338        powpref
339        powplot
340        lstview
341        liveplot
342}       
Note: See TracBrowser for help on using the repository browser.