- Timestamp:
- May 18, 2018 10:32:22 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sans/Dev/trunk/NCNR_User_Procedures/Reduction/VSANS/V_MultipleReduce.ipf
r1092 r1100 162 162 //input filenames must be full path:file;ext, so they can be found on disk 163 163 164 String cmdTemplate = "V_ExecuteProtocol(\"" + gMredProtoStr + "\",\"%s\")"164 // String cmdTemplate = "V_ExecuteProtocol(\"" + gMredProtoStr + "\",\"%s\")" 165 165 String theItem 166 166 Variable index=0 … … 170 170 theItem = StringFromList(index,list,",") //COMMA separated list 171 171 if(strlen(theItem)!=0) 172 sprintf cmd,cmdTemplate,theItem //null string items will be skipped172 //sprintf cmd,cmdTemplate,theItem //null string items will be skipped 173 173 //Print "cmd = ",cmd 174 Execute cmd 174 //Execute cmd 175 V_ExecuteProtocol(gMredProtoStr,theItem) 175 176 endif 176 177 index +=1 … … 265 266 Function/S V_GetValidMRedPopupList() 266 267 267 // String semiList = V_GetSAMList()268 268 269 269 String commaList="",semiList="",fname="",purpose="" 270 270 SVAR numList=root:Packages:NIST:VSANS:Globals:MRED:gFileNumList 271 272 // if a "*" is entered, return all of the SAMPLE+SCATTERING files 273 if(cmpstr(numList,"*") == 0) 274 semiList = V_GetSAMList() 275 return(semiList) 276 endif 271 277 272 278 commaList = V_ParseRunNumberList(numList)
Note: See TracChangeset
for help on using the changeset viewer.