-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild
76 lines (70 loc) · 2.92 KB
/
build
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
; *******************************************************************
; Multfit efficient processing of 2D diffraction images
; 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.
;
; *******************************************************************
; RESET IDL Session
.RESET_SESSION
; Compile project files
.COMPILE 'getInteger.pro'
.COMPILE 'plotinteractive1d.pro'
.COMPILE 'changesWindow.pro'
.COMPILE 'intformat.pro'
.COMPILE 'getindex.pro'
.COMPILE 'minmaxval.pro'
.COMPILE 'utils.pro'
; .COMPILE 'id6_functions.pro'
.COMPILE 'mpfitfun.pro'
.COMPILE 'mpfitpeak.pro'
.COMPILE 'mpfit.pro'
.COMPILE 'binarydata.pro'
.COMPILE 'chifiles.pro'
.COMPILE 'dioptasfiles.pro'
.COMPILE 'compareFit1DWindow.pro'
.COMPILE 'compareFitWindow.pro'
.COMPILE 'createModelWindow.pro'
.COMPILE 'encode_key.pro'
.COMPILE 'fdecomp.pro'
.COMPILE 'fitAutoWindow.pro'
.COMPILE 'fitJCPDSWindow.pro'
.COMPILE 'fitMultiplePeaks.pro'
.COMPILE 'fitPatternModel.pro'
.COMPILE 'fitPatternObject.pro'
.COMPILE 'fitpeaks.pro'
.COMPILE 'fitSubPatternObject.pro'
.COMPILE 'fitwindow.pro'
.COMPILE 'fourier.pro'
.COMPILE 'gaussNpeaksbg.pro'
.COMPILE 'gettok.pro'
.COMPILE 'fit2dmacros.pro'
.COMPILE 'gui.pro'
.COMPILE 'JCPDSObject.pro'
.COMPILE 'peakModel.pro'
.COMPILE 'plot.pro'
.COMPILE 'plotResultsWindow.pro'
.COMPILE 'plotwindow.pro'
.COMPILE 'printdataesg.pro'
.COMPILE 'showprogress.pro'
.COMPILE 'subPatternModel.pro'
.COMPILE 'multifit.pro'
; Resolve all routines
RESOLVE_ALL, /CONTINUE_ON_ERROR
CALDAT, SYSTIME(), month, day, year
PRINT, SYSTIME(), format = '(C(CMOI2.2, "/", CDI2.2, "/", CYI))'
; Create the project save file
SAVE, /ROUTINES, FILENAME='multifit.sav', /VERBOSE, DESCRIPTION=SYSTIME()