MOTMaster.Controller.RunReplica C# (CSharp) Method

RunReplica() public method

This section is meant to be for the situation when you want to re-run exactly the same pattern you ran sometime in the past. armReplicaRun prompts you for a zip file which contains the run you want to replicate. It unzipps the file into a folder of the same name, picks out the dictionary and the script. These then get loaded in the usual way through Run(). disposeReplicaRun does some clean up after the experiment is finished.
public RunReplica ( ) : void
return void
        public void RunReplica()
        {
            armReplicaRun();
            Run();
            disposeReplicaRun();
        }

Usage Example

Example #1
0
 private void ReplicateScriptToolStripMenuItem_Click(object sender, EventArgs e)
 {
     controller.RunReplica();
 }