FinalizeMetricVisitor.java

Go to the documentation of this file.
00001 package edu.rice.cs.hpc.data.experiment.scope.visitors;
00002 
00003 import edu.rice.cs.hpc.data.experiment.metric.BaseMetric;
00004 import edu.rice.cs.hpc.data.experiment.scope.Scope;
00005 
00006 
00007 /***
00008  * Visitor to finalize metrics
00009  * Only aggregate metrics will be finalized
00010  * @author laksonoadhianto
00011  *
00012  */
00013 public class FinalizeMetricVisitor extends AbstractFinalizeMetricVisitor {
00014 
00015 
00016     public FinalizeMetricVisitor(BaseMetric[] _metrics) {
00017         super(_metrics);
00018     }
00019 
00020 
00021     protected void setValue(Scope scope) {
00022         super.setValue_internal(scope);
00023     }
00024 }

Generated on 5 May 2015 for HPCVIEWER by  doxygen 1.6.1