00001 package edu.rice.cs.hpc.data.experiment; 00002 00003 import java.io.File; 00004 00005 import edu.rice.cs.hpc.data.experiment.scope.RootScope; 00006 import edu.rice.cs.hpc.data.filter.IFilterData; 00007 import edu.rice.cs.hpc.data.util.IUserData; 00008 00009 /************************************* 00010 * 00011 * Experiment class without metrics 00012 * 00013 *************************************/ 00014 public class ExperimentWithoutMetrics extends BaseExperiment 00015 { 00016 00017 public void open(File fileExperiment, IUserData<String, String> userData) 00018 throws Exception 00019 { 00020 super.open(fileExperiment, userData, false); 00021 } 00022 00023 00024 /* 00025 * (non-Javadoc) 00026 * @see edu.rice.cs.hpc.data.experiment.IExperiment#duplicate() 00027 */ 00028 public ExperimentWithoutMetrics duplicate() { 00029 00030 ExperimentWithoutMetrics copy = new ExperimentWithoutMetrics(); 00031 00032 copy.configuration = configuration; 00033 copy.databaseRepresentation = databaseRepresentation; 00034 00035 return copy; 00036 } 00037 00038 00039 @Override 00040 protected void filter_finalize(RootScope rootMain, 00041 IFilterData filter) { } 00042 00043 00044 @Override 00045 protected void open_finalize() { 00046 } 00047 00048 }