Changeset 667
- Timestamp:
- Apr 6, 2010 5:33:41 PM (12 years ago)
- Location:
- sans/Dev/trunk/NCNR_User_Procedures/Reduction/USANS
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sans/Dev/trunk/NCNR_User_Procedures/Reduction/USANS/Main_USANS.ipf
r665 r667 123 123 Variable/G root:Packages:NIST:USANS:Globals:MainPanel:gDQv = 0.117 //divergence, in terms of Q (1/A) (NOV 2004) 124 124 125 String/G root:Packages:NIST:gXMLLoader_Title 126 125 127 //initializes preferences. this includes XML y/n, and SANS Reduction items. 126 128 // if they already exist, they won't be overwritten 129 127 130 Execute "init_pref()" 128 131 -
sans/Dev/trunk/NCNR_User_Procedures/Reduction/USANS/USANSCatNotebook.ipf
r570 r667 77 77 78 78 // remove .cor, .dsm reduced data files 79 tmp = ListMatch(list,"*.cor",";") 79 // should also catch .corx, .dsmx if they are generated 80 tmp = ListMatch(list,"*.cor*",";") 80 81 list = RemoveFromList(tmp, list ,";") 81 tmp = ListMatch(list,"*.dsm ",";")82 tmp = ListMatch(list,"*.dsm*",";") 82 83 list = RemoveFromList(tmp, list ,";") 83 84 tmp = ListMatch(list,"*.pxp",";") -
sans/Dev/trunk/NCNR_User_Procedures/Reduction/USANS/WriteUSANSData.ipf
r624 r667 245 245 if(dialog) 246 246 PathInfo/S catPathName 247 fullPath = DoSaveFileDialog("Save data as" )247 fullPath = DoSaveFileDialog("Save data as",fname="",suffix="."+type+"x") 248 248 If(cmpstr(fullPath,"")==0) 249 249 //user cancel, don't write out a file … … 254 254 Endif 255 255 256 SVAR samFiles = $("root:Packages:NIST:"+type+":fileList")257 256 //actually open the file here 258 257 //Open refNum as fullpath … … 388 387 389 388 if(dialog) 390 Open/D refnum as fullpath+".dsm " //won't actually open the file389 Open/D refnum as fullpath+".dsmx" //won't actually open the file 391 390 If(cmpstr(S_filename,"")==0) 392 391 //user cancel, don't write out a file
Note: See TracChangeset
for help on using the changeset viewer.