IBaseData.java

Go to the documentation of this file.
00001 package edu.rice.cs.hpc.data.experiment.extdata;
00002 
00003 public interface IBaseData {
00004     
00005     /***
00006      * retrieve trace data header and record size
00007      * @return
00008      */
00009     public int getHeaderSize();
00010     
00011     /***
00012      * retrieve the list of rank names ( usual format: process.thread )
00013      * @return
00014      */
00015     public String []getListOfRanks();
00016     
00017     /****
00018      * retrieve the number of ranks 
00019      * @return
00020      */
00021     public int getNumberOfRanks();
00022     
00027     public int getFirstIncluded();
00028     public int getLastIncluded();
00030     public boolean isDenseBetweenFirstAndLast();
00031     
00035     public boolean isHybridRank();
00036     /****
00037      * Disposing native resources
00038      */
00039     public void dispose();
00040 }

Generated on 5 May 2015 for HPCVIEWER by  doxygen 1.6.1