edu.georgetown.gucs.experiment
Class AddTrials

java.lang.Object
  extended by edu.georgetown.gucs.experiment.AddTrials

public class AddTrials
extends java.lang.Object

The AddTrials class adds additional trials to the results of an existing experiment. This can be used to improve the precision of results. NOTE: I am not sure that this has been fully tested.

Author:
Clay Shields

Constructor Summary
AddTrials(java.lang.String newDataset, int experimentID, int numberOfTrials)
          AddTrials is the constructor that specifies the parameters to use for the new trials
 
Method Summary
static void main(java.lang.String[] args)
          A main function that can be run from the command line to add additional trials to an experiment.
 void showSettings()
          Display the settings currently in use.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AddTrials

public AddTrials(java.lang.String newDataset,
                 int experimentID,
                 int numberOfTrials)
AddTrials is the constructor that specifies the parameters to use for the new trials

Parameters:
newDataset - This specifies the data set to be used. It is necessary as the database is separated into different tables based on the dataset name.
experimentID - The ID of the experiment to add trials to
numberOfTrials - The number of trials to add
Method Detail

showSettings

public void showSettings()
Display the settings currently in use. Should be those extracted from the database.


main

public static void main(java.lang.String[] args)
A main function that can be run from the command line to add additional trials to an experiment.

Parameters:
args - A vector of strings containing the command line arguments, which should be the dataset, experimentID, and number of trials to add