-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfitOffsetWindow.pro
executable file
·133 lines (124 loc) · 4.68 KB
/
fitOffsetWindow.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
; *******************************************************************
; Polydefix stress, strain, and texture analysis for experiment in
; angle dispersive geometry
; Copyright (C) 2000-2011 S. Merkel, Universite Lille 1
; http://merkel.zoneo.net/Multifit/
;
; This program is free software; you can redistribute it and/or
; modify it under the terms of the GNU General Public License
; as published by the Free Software Foundation; either version 2
; of the License, or (at your option) any later version.
;
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
; GNU General Public License for more details.
;
; You should have received a copy of the GNU General Public License
; along with this program; if not, write to the Free Software
; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
;
; *******************************************************************
; ***************************************************************************
; plot BC function
; plots beam center position as a function of image number
; **************************************************************************
pro plotOffset, log, base
common experimentwindow, set, experiment
common default, defaultdir
; Setting up the legend
legend = ['Maximum stress direction']
; preparing arrays
fileindex = experiment->getfileindex()
n = n_elements(fileindex)
BC = fltarr(1,n)
BC[*,*] = !VALUES.F_NAN
j = 0
progressBar = Obj_New("SHOWPROGRESS", message='Calculating maximum stress directions, please wait...')
progressBar->Start
for i=0, n-1 do begin
index = 0
BC[0,i] = experiment->latticeStrainOffset(i)
percent = 100.*i/n
progressBar->Update, percent
endfor
print, BC
progressBar->Destroy
Obj_Destroy, progressBar
plotinteractive1D, base, fileindex, BC, title = 'Maximum stress direction vs. image number', xlabel='Image number', ylabel='Maximum stress direction', legend=legend
end
; ***************************************************************************
; refineQTxt
; verbose refinement of lattice strains parameters Q
; for each diffraction pattern:
; -> fits d0(hkl) and Q(hkl) for all peaks
; -> prints the results in the log window
; **************************************************************************
pro refineOffsetTxt, log
common experimentwindow, set, experiment
n = experiment->getNFitFiles()
logit, log, "Maximum stress direction refinements"
for i=0,n-1 do begin
logit, log, experiment->summaryOffset(i)
endfor
logit, log, "Finished..."
end
pro exportOffsetCSV, log
common experimentwindow, set, experiment
common default, defaultdir
result=dialog_pickfile(title='Save results as', path=defaultdir, DIALOG_PARENT=base, DEFAULT_EXTENSION='.csv', FILTER=['*.csv'], /WRITE, get_path = newdefaultdir)
if (result ne '') then begin
defaultdir = newdefaultdir
if (FILE_TEST(result) eq 1) then begin
tmp = DIALOG_MESSAGE("File exists. Overwrite?", /QUESTION)
if (tmp eq 'No') then return
endif
progressBar = Obj_New("SHOWPROGRESS", message='Calculating, please wait...')
progressBar->Start
openw, lun, result, /get_lun
text = experiment->summaryOffsetCSVAll(progressBar)
printascii, lun, text
free_lun, lun
progressBar->Destroy
Obj_Destroy, progressBar
endif
end
pro fitOffsetWindow_event, ev
; Get the 'stash' structure.
WIDGET_CONTROL, ev.TOP, GET_UVALUE=stash
WIDGET_CONTROL, ev.ID, GET_UVALUE=uval
CASE ev.id OF
stash.input:
else: begin
CASE uval OF
'REFINE': refineOffsetTxt, stash.log
'ASCII': exportOffsetCSV, stash.log
'PLOT': plotOffset, stash.log, stash.base
'DONE': WIDGET_CONTROL, stash.input, /DESTROY
else:
ENDCASE
endcase
endcase
end
pro fitOffsetWindow, base
common experimentwindow, set, experiment
common fonts, titlefont, boldfont, mainfont
; base GUI
input = WIDGET_BASE(Title='Maximum stress direction refinements', /COLUMN, GROUP_LEADER=base)
inputLa = WIDGET_LABEL(input, VALUE='Maximum stress direction refinements', /ALIGN_CENTER, FONT=titlefont)
fit = WIDGET_BASE(input, /ROW, FRAME=1)
; buttons1
buttons1 = WIDGET_BASE(fit,/COLUMN, /ALIGN_CENTER)
refine = WIDGET_BUTTON(buttons1, VALUE='Show details', UVALUE='REFINE')
export = WIDGET_BUTTON(buttons1, VALUE='Export to ASCII', UVALUE='ASCII')
plotit = WIDGET_BUTTON(buttons1, VALUE='Plot', UVALUE='PLOT')
; log
log = WIDGET_TEXT(fit, XSIZE=75, YSIZE=30, /ALIGN_CENTER, /EDITABLE, /WRAP, /SCROLL)
; buttons2
buttons2 = WIDGET_BASE(input,/ROW, /ALIGN_CENTER, /GRID_LAYOUT)
close = WIDGET_BUTTON(buttons2, VALUE='Close window', UVALUE='DONE')
stash = {base: base, input: input, log: log}
WIDGET_CONTROL, input, SET_UVALUE=stash
WIDGET_CONTROL, input, /REALIZE
XMANAGER, 'fitOffsetWindow', input
end