StoreRun() public method

public StoreRun ( string saveFolder, int batchNumber, string pathToPattern, string pathToHardwareClass, Object>.Dictionary dict, Object>.Dictionary report, string externalFilePattern ) : void
saveFolder string
batchNumber int
pathToPattern string
pathToHardwareClass string
dict Object>.Dictionary
report Object>.Dictionary
externalFilePattern string
return void
Example #1
0
 private void save(MOTMasterScript script, string pathToPattern, ushort[,] imageData, Dictionary <String, Object> report)
 {
     ioHelper.StoreRun(motMasterDataPath, controllerWindow.GetSaveBatchNumber(), pathToPattern, hardwareClassPath,
                       script.Parameters, report, cameraAttributesPath, imageData);
 }
Example #2
0
 // ONGOING: these save functions should probably take a sequence argument
 private void save(MOTMasterSequence sequence, MOTMasterScript script, string pathToPattern, byte[][,] imageData, Dictionary <String, Object> report)
 {
     ioHelper.StoreRun(motMasterDataPath, controllerWindow.GetSaveBatchNumber(), pathToPattern, hardwareClassPath,
                       sequence, script.Parameters, report, cameraAttributesPath, imageData, externalFilesPath, config.ExternalFilePattern);
 }