1 | #pragma rtGlobals=3 // Use modern global access method and strict wave access. |
---|
2 | #pragma version=0.1 |
---|
3 | #pragma IgorVersion = 7.00 |
---|
4 | |
---|
5 | //*********************** |
---|
6 | // NOV 2015 Vers 0.1 |
---|
7 | // |
---|
8 | // Initialization procedures that must be run before anything |
---|
9 | // this is accomplished by placing: |
---|
10 | // |
---|
11 | // Initialize() |
---|
12 | // #include "includes" |
---|
13 | // |
---|
14 | // in the built-in procedure window of the .pxt (template) experiment |
---|
15 | // IGOR recognizes this, and executes Initialize() immediately after |
---|
16 | // compiling all of the included procedures. This is all done as the blank |
---|
17 | // template is opened |
---|
18 | // |
---|
19 | // Choosing initialize from the VSANS menu will do the same, and no harm is done |
---|
20 | // to the experiment by re- initializing. no data or folders are overwritten |
---|
21 | // |
---|
22 | //************************ |
---|
23 | |
---|
24 | Constant kVSANSVersion = 7.99 |
---|
25 | |
---|
26 | // DONE -- store all of the constant values here in the initialization routine. no need |
---|
27 | // to set up a separate file of "constants" or "globals" where the actual numbers are |
---|
28 | //stored. |
---|
29 | |
---|
30 | |
---|
31 | // for the change in July 2017 where the beam center is now defined in cm, rather than pixels. |
---|
32 | // this need not ever change from 1 |
---|
33 | // the back detector is always treated as a beam center in pixels, since it is the natural definition |
---|
34 | Constant kBCTR_CM = 1 //set to 1 to use beam center in cm. O to use pixels |
---|
35 | |
---|
36 | // // DONE: -- replace this constant with V_getDet_panel_gap(fname,detStr) |
---|
37 | //Constant kPanelTouchingGap = 10 // DONE -- gap when panels "touch", UNITS OF mm, not cm |
---|
38 | |
---|
39 | |
---|
40 | // the base data folder path where the raw data is loaded |
---|
41 | Strconstant ksBaseDFPath = "root:Packages:NIST:VSANS:RawVSANS:" |
---|
42 | |
---|
43 | |
---|
44 | // the list of WORK Folders |
---|
45 | // RawVSANS does not behave as a WORK folder, but it is local. so add it in explicitly to the list if needed |
---|
46 | // VCALC behaves *almost* as a WORK folder, but it is local. so add it in explicitly to the list if needed |
---|
47 | //Strconstant ksWorkFolderList = "RAW;SAM;EMP;BGD;COR;DIV;ABS;MSK;CAL;STO;SUB;DRK;ADJ;VCALC;RawVSANS;" |
---|
48 | Strconstant ksWorkFolderListShort = "RAW;SAM;EMP;BGD;COR;DIV;ABS;MSK;CAL;STO;SUB;DRK;ADJ;" |
---|
49 | |
---|
50 | |
---|
51 | // for defining which "bin type" corresponds to which set of extensions for I(q) data |
---|
52 | // !! see V_BinTypeStr2Num() for the numbering, not the order of the list |
---|
53 | // |
---|
54 | ////////////////// |
---|
55 | //Strconstant ksBinTypeStr = "One;Two;Four;Slit Mode;" |
---|
56 | Strconstant ksBinTypeStr = "F4-M4-B;F2-M2-B;F1-M1-B;F2-M1-B;F1-M2xTB-B;F2-M2xTB-B;SLIT-F2-M2-B;" |
---|
57 | Strconstant ksBinType1 = "FT;FB;FL;FR;MT;MB;ML;MR;B;" //these are the "active" extensions |
---|
58 | Strconstant ksBinType2 = "FTB;FLR;MTB;MLR;B;" |
---|
59 | Strconstant ksBinType3 = "FLRTB;MLRTB;B;" |
---|
60 | Strconstant ksBinType4 = "FL;FR;ML;MR;B;" //in SLIT mode, disregard the T/B panels |
---|
61 | Strconstant ksBinType5 = "FTB;FLR;MLRTB;B;" |
---|
62 | Strconstant ksBinType6 = "FLRTB;MLR;B;" |
---|
63 | Strconstant ksBinType7 = "FTB;FLR;MLR;B;" |
---|
64 | /////////////////// |
---|
65 | |
---|
66 | |
---|
67 | // for looping over each detector |
---|
68 | Strconstant ksDetectorListNoB = "FL;FR;FT;FB;ML;MR;MT;MB;" |
---|
69 | Strconstant ksDetectorListAll = "FL;FR;FT;FB;ML;MR;MT;MB;B;" |
---|
70 | |
---|
71 | |
---|
72 | // for Protocols |
---|
73 | Constant kNumProtocolSteps = 12 |
---|
74 | // for trimming of the I(q) data sets, and part of the protocol |
---|
75 | Strconstant ksPanelBinTypeList = "B;FT;FB;FL;FR;MT;MB;ML;MR;FTB;FLR;MTB;MLR;FLRTB;MLRTB;" |
---|
76 | Strconstant ksBinTrimBegDefault = "B=5;FT=3;FB=3;FL=3;FR=3;MT=3;MB=3;ML=3;MR=3;FTB=2;FLR=2;MTB=2;MLR=2;FLRTB=1;MLRTB=1;" |
---|
77 | Strconstant ksBinTrimEndDefault = "B=10;FT=5;FB=5;FL=5;FR=5;MT=5;MB=5;ML=5;MR=5;FTB=4;FLR=4;MTB=4;MLR=4;FLRTB=3;MLRTB=3;" |
---|
78 | |
---|
79 | |
---|
80 | |
---|
81 | //////// HIGH RESOLUTION DETECTOR /////////////// |
---|
82 | |
---|
83 | |
---|
84 | // |
---|
85 | // In May 2019 - after testing with Phil's procesing, the data from the detector has a |
---|
86 | // larger read noise value. It can also no longer be treated as a constant value, but rather |
---|
87 | // a detector file that is read in and subtracted pixel-by-pixel. |
---|
88 | // |
---|
89 | |
---|
90 | |
---|
91 | // the average read noise level of the back detector |
---|
92 | // taken from multiple runs with the beam off, 6-28-18 |
---|
93 | // runs sans12324 - sans12353 |
---|
94 | // |
---|
95 | // used in V_Raw_to_Work() |
---|
96 | // average of whole panel (tested several data files) = 208 +/- 14 |
---|
97 | // |
---|
98 | // 200 appears to be a better value - (empirical, based on teflon/converging pinhole data) |
---|
99 | //Constant kReadNoiseLevel_bin4 = 200 |
---|
100 | //Constant kReadNoiseLevel_Err_bin4 = 14 |
---|
101 | // after binning/processing changes from March 2019: |
---|
102 | Constant kReadNoiseLevel_bin4 = 3160 // from bkg area of sans30201 (a transmission measurement) |
---|
103 | Constant kReadNoiseLevel_Err_bin4 = 50 //estimated |
---|
104 | |
---|
105 | // TODOHIGHRES: these values are complete fiction |
---|
106 | Constant kReadNoiseLevel_bin1 = 20 |
---|
107 | Constant kReadNoiseLevel_Err_bin1 = 1 |
---|
108 | |
---|
109 | // Pixel shifts for the back detector to bring the three CCDs into registry |
---|
110 | // data from pinholes used to match up CCDs |
---|
111 | // 27 JUN 2018 |
---|
112 | // runs 12221,12225,27,33,34,35,38,42 |
---|
113 | // middle CCD is not moved |
---|
114 | // See V_ShiftBackDetImage() for implementation |
---|
115 | Constant kShift_TopX_bin4 = 7 |
---|
116 | Constant kShift_TopY_bin4 = 105 |
---|
117 | Constant kShift_BottomX_bin4 = 5 |
---|
118 | Constant kShift_BottomY_bin4 = 35 |
---|
119 | |
---|
120 | // TODOHIGHRES -- these values need to be verified. they are currently simply 4x the bin4 values |
---|
121 | Constant kShift_TopX_bin1 = 28 |
---|
122 | Constant kShift_TopY_bin1 = 420 |
---|
123 | Constant kShift_BottomX_bin1 = 20 |
---|
124 | Constant kShift_BottomY_bin1 = 130 |
---|
125 | |
---|
126 | |
---|
127 | |
---|
128 | |
---|
129 | |
---|
130 | |
---|
131 | |
---|
132 | |
---|
133 | Proc Initialize_VSANS() |
---|
134 | V_Initialize() |
---|
135 | End |
---|
136 | |
---|
137 | //this is the main initialization procedure that must be the first thing |
---|
138 | //done when opening a new Data reduction experiment |
---|
139 | // |
---|
140 | //sets up data folders, globals, protocols, and draws the main panel |
---|
141 | Proc V_Initialize() |
---|
142 | |
---|
143 | Variable curVersion = kVSANSVersion |
---|
144 | Variable oldVersion = NumVarOrDefault("root:VSANS_RED_VERSION",curVersion) |
---|
145 | |
---|
146 | if(oldVersion == curVersion) |
---|
147 | //must just be a new startup with the current version |
---|
148 | Variable/G root:VSANS_RED_VERSION=kVSANSVersion |
---|
149 | endif |
---|
150 | |
---|
151 | if(oldVersion < curVersion) |
---|
152 | String str = "This experiment was created with version "+num2str(oldVersion)+" of the macros. I'll try to make this work, but please start new work with a current template" |
---|
153 | DoAlert 0,str |
---|
154 | endif |
---|
155 | |
---|
156 | V_InitFolders() |
---|
157 | |
---|
158 | |
---|
159 | V_InitFakeProtocols() |
---|
160 | V_InitGlobals() |
---|
161 | V_InitFacilityGlobals() |
---|
162 | DoWindow/F Main_VSANS_Panel |
---|
163 | If(V_flag == 0) |
---|
164 | //draw panel |
---|
165 | Main_VSANS_Panel() |
---|
166 | Endif |
---|
167 | // V_ResizeCmdWindow() |
---|
168 | |
---|
169 | VC_Initialize_Space() //initialize folders for VCALC |
---|
170 | |
---|
171 | // TODO - be sure that NCNR is defined correctly |
---|
172 | //unload the NCNR_Package_Loader, if NCNR not defined |
---|
173 | UnloadNCNR_VSANS_Procedures() |
---|
174 | |
---|
175 | End |
---|
176 | |
---|
177 | //creates all the necessary data folders in the root folder |
---|
178 | //does not overwrite any existing folders of the same name |
---|
179 | //it leaves data in them untouched |
---|
180 | // |
---|
181 | // x-- make sure that I have all of the folders that I need |
---|
182 | // |
---|
183 | Function V_InitFolders() |
---|
184 | |
---|
185 | NewDataFolder/O root:Packages |
---|
186 | NewDataFolder/O root:Packages:NIST |
---|
187 | NewDataFolder/O root:Packages:NIST:VSANS |
---|
188 | |
---|
189 | // for the file catalog |
---|
190 | NewDataFolder/O root:Packages:NIST:VSANS:CatVSHeaderInfo |
---|
191 | // for the globals |
---|
192 | NewDataFolder/O root:Packages:NIST:VSANS:Globals |
---|
193 | NewDataFolder/O root:Packages:NIST:VSANS:Globals:Efficiency |
---|
194 | |
---|
195 | // for the raw nexus data (so I don't need to reload to get a single value) |
---|
196 | NewDataFolder/O root:Packages:NIST:VSANS:RawVSANS |
---|
197 | |
---|
198 | // folders for the reduction steps |
---|
199 | NewDataFolder/O root:Packages:NIST:VSANS:RAW |
---|
200 | NewDataFolder/O root:Packages:NIST:VSANS:SAM |
---|
201 | NewDataFolder/O root:Packages:NIST:VSANS:EMP |
---|
202 | NewDataFolder/O root:Packages:NIST:VSANS:BGD |
---|
203 | NewDataFolder/O root:Packages:NIST:VSANS:COR |
---|
204 | NewDataFolder/O root:Packages:NIST:VSANS:DIV |
---|
205 | NewDataFolder/O root:Packages:NIST:VSANS:MSK |
---|
206 | NewDataFolder/O root:Packages:NIST:VSANS:ABS |
---|
207 | NewDataFolder/O root:Packages:NIST:VSANS:CAL |
---|
208 | NewDataFolder/O root:Packages:NIST:VSANS:STO |
---|
209 | NewDataFolder/O root:Packages:NIST:VSANS:SUB |
---|
210 | NewDataFolder/O root:Packages:NIST:VSANS:DRK |
---|
211 | NewDataFolder/O root:Packages:NIST:VSANS:ADJ |
---|
212 | NewDataFolder/O root:Packages:NIST:VSANS:RealTime |
---|
213 | NewDataFolder/O root:Packages:NIST:VSANS:VCALC |
---|
214 | NewDataFolder/O root:Packages:NIST:VSANS:ReadNoise |
---|
215 | |
---|
216 | |
---|
217 | // ?? anything else |
---|
218 | |
---|
219 | // for simulation |
---|
220 | // NewDataFolder/O root:Packages:NIST:VSANS:SAS |
---|
221 | |
---|
222 | |
---|
223 | |
---|
224 | Return(0) |
---|
225 | End |
---|
226 | |
---|
227 | |
---|
228 | |
---|
229 | |
---|
230 | // |
---|
231 | //Global folder already exists... |
---|
232 | //adds appropriate globals to the newly created myGlobals folder |
---|
233 | //return data folder to root: before leaving |
---|
234 | // |
---|
235 | // |
---|
236 | Function V_InitGlobals() |
---|
237 | |
---|
238 | |
---|
239 | Variable/G root:Packages:NIST:VSANS:Globals:gIsLogScale = 0 |
---|
240 | String/G root:Packages:NIST:VSANS:Globals:gCurDispType = "RAW" |
---|
241 | |
---|
242 | //check platform, so Angstrom can be drawn correctly |
---|
243 | |
---|
244 | //TODO -- this is different on Igor 7. Macintosh # has been updated, but Windows has not |
---|
245 | // use Print char2num("Ã
") to find the magic number |
---|
246 | if(cmpstr("Macintosh",IgorInfo(2)) == 0) |
---|
247 | String/G root:Packages:NIST:VSANS:Globals:gAngstStr = num2char(197) |
---|
248 | String/G root:Packages:NIST:gAngstStr = num2char(197) |
---|
249 | Variable/G root:Packages:NIST:VSANS:Globals:gIsMac = 1 |
---|
250 | else |
---|
251 | //either Windows or Windows NT |
---|
252 | // String/G root:Packages:NIST:VSANS:Globals:gAngstStr = num2char(-59) |
---|
253 | // String/G root:Packages:NIST:gAngstStr = num2char(-59) |
---|
254 | String/G root:Packages:NIST:VSANS:Globals:gAngstStr = num2char(197) |
---|
255 | String/G root:Packages:NIST:gAngstStr = num2char(197) |
---|
256 | Variable/G root:Packages:NIST:VSANS:Globals:gIsMac = 0 |
---|
257 | //SetIgorOption to keep some PC's (graphics cards?) from smoothing the 2D image |
---|
258 | // SRK APRIL 2019 - removed this, does not exist in Igor 8 on WIN, and cause an error. |
---|
259 | // Execute "SetIgorOption WinDraw,forceCOLORONCOLOR=1" |
---|
260 | endif |
---|
261 | |
---|
262 | // DONE x- find the SANS preferences, copy over and update for VSANS |
---|
263 | // x- these are all in PlotUtilsMacro_v40.ipf as the preferences are set up as common |
---|
264 | // to all packages. I'm not sure that I want to do this with VSANS, but make the packages |
---|
265 | // separate entities. I'm seeing little benefit of the crossover, especially now that |
---|
266 | // Analysis is not mine. So for VSANS, there is a new, separate file: V_VSANS_Preferences.ipf |
---|
267 | |
---|
268 | //this is critical to initialize now - as it has the y/n flags for the detector correction steps |
---|
269 | Execute "Initialize_VSANSPreferences()" |
---|
270 | |
---|
271 | Execute "V_TubeZeroPointTables()" // correction to the beam center |
---|
272 | |
---|
273 | // set the lookup waves for log/lin display of the detector images |
---|
274 | V_MakeImageLookupTables(10000,0,1) |
---|
275 | |
---|
276 | |
---|
277 | |
---|
278 | //set flag if Demo Version is detected |
---|
279 | Variable/G root:Packages:NIST:VSANS:Globals:isDemoVersion = V_isDemo() |
---|
280 | |
---|
281 | |
---|
282 | // for testing |
---|
283 | // if this is set to 1, the OLD (incorrect) cos^3 solid angle will be applied to the tubes |
---|
284 | // and a lot of alerts will pop up... |
---|
285 | Variable/G root:Packages:NIST:VSANS:Globals:gDo_OLD_SolidAngleCor = 0 |
---|
286 | |
---|
287 | //set XML globals |
---|
288 | // String/G root:Packages:NIST:gXMLLoader_Title = "" |
---|
289 | |
---|
290 | Return(0) |
---|
291 | End |
---|
292 | |
---|
293 | // |
---|
294 | //num = number of points (10000 seeems to be a good number so far) |
---|
295 | // lo = lower value (between 0 and 1) |
---|
296 | // hi = upper value (between 0 and 1) |
---|
297 | // |
---|
298 | // note that it is currenty NOT OK for lo > hi (!= reversed color scale, right now log(negative) == bad) |
---|
299 | // |
---|
300 | // TODO hi, lo not used properly here, seems to mangle log display now that I'm switching the lo,hi of the ctab |
---|
301 | // |
---|
302 | Function V_MakeImageLookupTables(num,lo,hi) |
---|
303 | Variable num,lo,hi |
---|
304 | |
---|
305 | // lookup waves for log and linear display of images |
---|
306 | // this is used for the main data display. With this, I can use the original |
---|
307 | // detector data (no copy) and the zeros in the data set are tolerated when displaying |
---|
308 | // on log scale |
---|
309 | SetDataFolder root:Packages:NIST:VSANS:Globals |
---|
310 | Variable val,offset |
---|
311 | |
---|
312 | offset = 1/num //can't use 1/lo if lo == 0 |
---|
313 | |
---|
314 | Make/O/D/N=(num) logLookupWave,linearLookupWave |
---|
315 | |
---|
316 | linearLookupWave = (p+1)/num |
---|
317 | |
---|
318 | |
---|
319 | logLookupWave = log(linearLookupWave) |
---|
320 | val = logLookupWave[0] |
---|
321 | logLookupWave += -val + offset |
---|
322 | val = logLookupWave[num-1] |
---|
323 | logLookupWave /= val |
---|
324 | |
---|
325 | SetDataFolder root: |
---|
326 | |
---|
327 | return(0) |
---|
328 | end |
---|
329 | |
---|
330 | // |
---|
331 | // initializes globals that are specific to VSANS |
---|
332 | // |
---|
333 | // there really should be nothing here... all of this should now be in the Nexus data file |
---|
334 | // and not tethered to hard-wired constants. |
---|
335 | // |
---|
336 | // -- what was here was: |
---|
337 | // number of detector pixels |
---|
338 | // pixel size |
---|
339 | // deadtime |
---|
340 | // beamstop "tolerance" to identify Trans files |
---|
341 | // sample aperture offset |
---|
342 | // |
---|
343 | Function V_InitFacilityGlobals() |
---|
344 | |
---|
345 | // //Detector -specific globals |
---|
346 | // Variable/G root:myGlobals:gNPixelsX=128 |
---|
347 | // Variable/G root:myGlobals:gNPixelsY=128 |
---|
348 | // |
---|
349 | // // as of Jan2008, detector pixel sizes are read directly from the file header, so they MUST |
---|
350 | // // be set correctly in instr.cfg - these values are not used, but declared to avoid errors |
---|
351 | // Variable/G root:myGlobals:PixelResNG3_ILL = 1.0 //pixel resolution in cm |
---|
352 | // Variable/G root:myGlobals:PixelResNG5_ILL = 1.0 |
---|
353 | // Variable/G root:myGlobals:PixelResNG7_ILL = 1.0 |
---|
354 | // Variable/G root:myGlobals:PixelResNG3_ORNL = 0.5 |
---|
355 | // Variable/G root:myGlobals:PixelResNG5_ORNL = 0.5 |
---|
356 | // Variable/G root:myGlobals:PixelResNG7_ORNL = 0.5 |
---|
357 | // Variable/G root:myGlobals:PixelResNGB_ORNL = 0.5 |
---|
358 | //// Variable/G root:myGlobals:PixelResCGB_ORNL = 0.5 // fiction |
---|
359 | // |
---|
360 | // Variable/G root:myGlobals:PixelResDefault = 0.5 |
---|
361 | // |
---|
362 | // Variable/G root:myGlobals:DeadtimeNG3_ILL = 3.0e-6 //deadtime in seconds |
---|
363 | // Variable/G root:myGlobals:DeadtimeNG5_ILL = 3.0e-6 |
---|
364 | // Variable/G root:myGlobals:DeadtimeNG7_ILL = 3.0e-6 |
---|
365 | // Variable/G root:myGlobals:DeadtimeNGB_ILL = 4.0e-6 // fictional |
---|
366 | // Variable/G root:myGlobals:DeadtimeNG3_ORNL_VAX = 3.4e-6 //pre - 23-JUL-2009 used VAX |
---|
367 | // Variable/G root:myGlobals:DeadtimeNG3_ORNL_ICE = 1.5e-6 //post - 23-JUL-2009 used ICE |
---|
368 | // Variable/G root:myGlobals:DeadtimeNG5_ORNL = 0.6e-6 //as of 9 MAY 2002 |
---|
369 | // Variable/G root:myGlobals:DeadtimeNG7_ORNL_VAX = 3.4e-6 //pre 25-FEB-2010 used VAX |
---|
370 | // Variable/G root:myGlobals:DeadtimeNG7_ORNL_ICE = 2.3e-6 //post 25-FEB-2010 used ICE |
---|
371 | // Variable/G root:myGlobals:DeadtimeNGB_ORNL_ICE = 4.0e-6 //per JGB 16-JAN-2013, best value we have for the oscillating data |
---|
372 | // |
---|
373 | //// Variable/G root:myGlobals:DeadtimeCGB_ORNL_ICE = 1.5e-6 // fiction |
---|
374 | // |
---|
375 | // Variable/G root:myGlobals:DeadtimeDefault = 3.4e-6 |
---|
376 | // |
---|
377 | // //new 11APR07 |
---|
378 | // Variable/G root:myGlobals:BeamstopXTol = -8 // (cm) is BS Xpos is -5 cm or less, it's a trans measurement |
---|
379 | // // sample aperture offset is NOT stored in the VAX header, but it should be |
---|
380 | // // - when it is, remove the global and write an accessor AND make a place for |
---|
381 | // // it in the RealsRead |
---|
382 | // Variable/G root:myGlobals:apOff = 5.0 // (cm) distance from sample aperture to sample position |
---|
383 | |
---|
384 | End |
---|
385 | |
---|
386 | /////////////////////////////////////////////// |
---|
387 | // TODO |
---|
388 | ////////////// everything below needs to be re-written for VSANS |
---|
389 | // |
---|
390 | ////////////////////////////////////////////// |
---|
391 | |
---|
392 | |
---|
393 | // |
---|
394 | // do I need to make the protocols any longer for VSANS? (yes -- now 12 points) |
---|
395 | // What other options for processing / averaging / saving are needed?? |
---|
396 | // TODO |
---|
397 | // x- likely that I'll want to have #pts to cut from I(q) as input to NSORT within the protocol so that the |
---|
398 | // entire reduction can be automatic |
---|
399 | // |
---|
400 | // |
---|
401 | // x- creates the "base" protocols that should be available, after creating the data folder |
---|
402 | // x- all protocols are kept in the root:Packages:NIST:VSANS:Globals:Protocols folder, created here |
---|
403 | // |
---|
404 | // |
---|
405 | //*****as of 05_2017, protocols are 12 points long, [6] is used for work.drk, [7,8] are for trimmig points, and [9,11] are currently unused |
---|
406 | // |
---|
407 | Function V_InitFakeProtocols() |
---|
408 | |
---|
409 | NewDataFolder/O root:Packages:NIST:VSANS:Globals:Protocols |
---|
410 | Make/O/T $"root:Packages:NIST:VSANS:Globals:Protocols:Base"={"none","none","ask","ask","none","AVTYPE=Circular;SAVE=Yes;NAME=Auto;PLOT=Yes;BINTYPE=F4-M4-B;","DRK=none,DRKMODE=0,","","","","",""} |
---|
411 | Make/O/T $"root:Packages:NIST:VSANS:Globals:Protocols:DoAll"={"ask","ask","ask","ask","ask","AVTYPE=Circular;SAVE=Yes;NAME=Auto;PLOT=Yes;BINTYPE=F4-M4-B;","DRK=none,DRKMODE=0,","","","","",""} |
---|
412 | Make/O/T/N=(kNumProtocolSteps) $"root:Packages:NIST:VSANS:Globals:Protocols:CreateNew" //null wave |
---|
413 | //Initialize waves to store values in |
---|
414 | |
---|
415 | String/G root:Packages:NIST:VSANS:Globals:Protocols:gProtoStr="" |
---|
416 | String/G root:Packages:NIST:VSANS:Globals:Protocols:gNewStr="" |
---|
417 | String/G root:Packages:NIST:VSANS:Globals:Protocols:gAvgInfoStr = "AVTYPE=Circular;SAVE=Yes;NAME=Auto;PLOT=Yes;BINTYPE=F4-M4-B;" |
---|
418 | |
---|
419 | String/G root:Packages:NIST:VSANS:Globals:Protocols:gBegPtsStr="" |
---|
420 | String/G root:Packages:NIST:VSANS:Globals:Protocols:gEndPtsStr="" |
---|
421 | String/G root:Packages:NIST:VSANS:Globals:Protocols:gAbsStr="" |
---|
422 | |
---|
423 | Return(0) |
---|
424 | End |
---|
425 | |
---|
426 | //simple function to resize the comand window to a nice size, no matter what the resolution |
---|
427 | //need to test out on several different monitors and both platforms |
---|
428 | // |
---|
429 | // could easily be incorporated into the initialization routines to ensure that the |
---|
430 | // command window is always visible at startup of the macros. No need for a hook function |
---|
431 | // |
---|
432 | Function V_ResizeCmdWindow() |
---|
433 | |
---|
434 | String str=IgorInfo(0),rect="",platform=igorinfo(2) |
---|
435 | Variable depth,left,top,right,bottom,factor |
---|
436 | |
---|
437 | if(cmpstr(platform,"Macintosh")==0) |
---|
438 | factor=1 |
---|
439 | else |
---|
440 | factor = 0.6 //fudge factor to get command window on-screen on Windows |
---|
441 | endif |
---|
442 | rect = StringByKey("SCREEN1", str ,":",";") |
---|
443 | sscanf rect,"DEPTH=%d,RECT=%d,%d,%d,%d",depth, left,top,right,bottom |
---|
444 | MoveWindow/C (left+3)*factor,(bottom-150)*factor,(right-50)*factor,(bottom-10)*factor |
---|
445 | End |
---|
446 | |
---|
447 | // since the NCNR procedures can't be loaded concurrently with the other facility functions, |
---|
448 | // unload this procedure file, and add this to the functions that run at initialization of the |
---|
449 | // experiment |
---|
450 | // |
---|
451 | // TODO - be sure that this unloads correctly |
---|
452 | Function UnloadNCNR_VSANS_Procedures() |
---|
453 | |
---|
454 | #if (exists("NCNR_VSANS")==6) //defined in the main #includes file. |
---|
455 | //do nothing if an NCNR reduction experiment |
---|
456 | #else |
---|
457 | if(ItemsInList(WinList("NCNR_Package_Loader.ipf", ";","WIN:128"))) |
---|
458 | Execute/P "CloseProc /NAME=\"NCNR_Package_Loader.ipf\"" |
---|
459 | Execute/P "COMPILEPROCEDURES " |
---|
460 | endif |
---|
461 | #endif |
---|
462 | |
---|
463 | End |
---|
464 | |
---|
465 | //returns 1 if demo version, 0 if full version |
---|
466 | Function V_IsDemo() |
---|
467 | |
---|
468 | // create small offscreen graph |
---|
469 | Display/W=(3000,3000,3010,3010) |
---|
470 | DoWindow/C IsDemoGraph |
---|
471 | |
---|
472 | // try to save a PICT or bitmap of it to the clipboard |
---|
473 | SavePICT/Z as "Clipboard" |
---|
474 | Variable isDemo= V_Flag != 0 // if error: must be demo |
---|
475 | DoWindow/K IsDemoGraph |
---|
476 | return isDemo |
---|
477 | End |
---|
478 | |
---|
479 | // Clean out the RawVSANS folder before saving |
---|
480 | Function BeforeExperimentSaveHook(rN,fileName,path,type,creator,kind) |
---|
481 | Variable rN,kind |
---|
482 | String fileName,path,type,creator |
---|
483 | |
---|
484 | // clean out, so that the file SAVE is not slow due to the large experiment size |
---|
485 | // DONE - |
---|
486 | // |
---|
487 | // V_CleanOutRawVSANS() |
---|
488 | // present a progress window |
---|
489 | V_CleanupData_w_Progress(0,1) |
---|
490 | Printf "Hook cleaned out RawVSANS, experiment saved\r" |
---|
491 | |
---|
492 | NVAR/Z gHighResBinning = root:Packages:NIST:VSANS:Globals:gHighResBinning |
---|
493 | if(gHighResBinning == 1) |
---|
494 | // these KillDF are a bad idea - it wipes out all of the current work |
---|
495 | // whenever a save is done - which is the opposite of what you want |
---|
496 | // to happen when you save! |
---|
497 | |
---|
498 | Printf "Hook cleaned out WORK folders, experiment saved\r" |
---|
499 | |
---|
500 | KillDataFolder/Z root:Packages:NIST:VSANS:RAW |
---|
501 | KillDataFolder/Z root:Packages:NIST:VSANS:SAM |
---|
502 | KillDataFolder/Z root:Packages:NIST:VSANS:EMP |
---|
503 | KillDataFolder/Z root:Packages:NIST:VSANS:BGD |
---|
504 | KillDataFolder/Z root:Packages:NIST:VSANS:COR |
---|
505 | KillDataFolder/Z root:Packages:NIST:VSANS:DIV |
---|
506 | KillDataFolder/Z root:Packages:NIST:VSANS:MSK |
---|
507 | KillDataFolder/Z root:Packages:NIST:VSANS:ABS |
---|
508 | KillDataFolder/Z root:Packages:NIST:VSANS:CAL |
---|
509 | KillDataFolder/Z root:Packages:NIST:VSANS:STO |
---|
510 | KillDataFolder/Z root:Packages:NIST:VSANS:SUB |
---|
511 | KillDataFolder/Z root:Packages:NIST:VSANS:DRK |
---|
512 | KillDataFolder/Z root:Packages:NIST:VSANS:ADJ |
---|
513 | KillDataFolder/Z root:Packages:NIST:VSANS:VCALC |
---|
514 | |
---|
515 | endif |
---|
516 | // re-create anthing that was killed |
---|
517 | V_initFolders() |
---|
518 | |
---|
519 | End |
---|