Package org.jlab.io.hipo
Class HipoDataBank
java.lang.Object
org.jlab.io.hipo.HipoDataBank
- All Implemented Interfaces:
DataBank
- Author:
- gavalian
-
Constructor Summary
ConstructorsConstructorDescriptionHipoDataBank
(HipoDataDescriptor desc, int size) HipoDataBank
(org.jlab.jnp.hipo4.data.Bank bank) -
Method Summary
Modifier and TypeMethodDescriptionvoid
allocate
(int rows) Allocates all variables for the the bank. the names are taken from the descriptor object.void
appendByte
(String path, byte[] arr) void
appendDouble
(String path, double[] arr) Appends an array to existing array with the same name.void
appendFloat
(String path, float[] arr) void
void
appendLong
(String path, long[] arr) void
appendShort
(String path, short[] arr) int
columns()
Returns the number of columns in the bank. columns are number of variables.org.jlab.jnp.hipo4.data.Bank
getBank()
byte[]
byte
String[]
Get the names of the columns in the bank.Returns the descriptor of the bank, that contains names of the variables and their types.double[]
Returns a native array of doubles for given name.double
float[]
float
int[]
int
long[]
long
short[]
short
getTableModel
(String mask) Returns a table model for displaying the bank informationvoid
reset()
Clears the content of the bank. all columns are removed.int
rows()
returns the number of rows in the bank, assuming all columns have the same length.void
void
void
Adds array of doubles into the bank under the name.void
void
void
void
void
void
void
void
void
void
show()
Prints the content of the bank on the screen.
-
Constructor Details
-
HipoDataBank
public HipoDataBank(org.jlab.jnp.hipo4.data.Bank bank) -
HipoDataBank
-
-
Method Details
-
getBank
public org.jlab.jnp.hipo4.data.Bank getBank() -
getColumnList
Description copied from interface:DataBank
Get the names of the columns in the bank. The name is used in the calls getInt() and getDouble() and other calls for get the arrays.- Specified by:
getColumnList
in interfaceDataBank
- Returns:
- array of strings with names.
-
getDescriptor
Description copied from interface:DataBank
Returns the descriptor of the bank, that contains names of the variables and their types.- Specified by:
getDescriptor
in interfaceDataBank
- Returns:
- bank descriptor
-
getDouble
Description copied from interface:DataBank
Returns a native array of doubles for given name. -
getDouble
-
setDouble
Description copied from interface:DataBank
Adds array of doubles into the bank under the name. -
setDouble
-
appendDouble
Description copied from interface:DataBank
Appends an array to existing array with the same name. The resulting array will increase in size by arr.length.- Specified by:
appendDouble
in interfaceDataBank
- Parameters:
path
- name of the variablearr
- primitive type array of doubles.
-
getFloat
-
getFloat
-
setFloat
-
setFloat
-
appendFloat
- Specified by:
appendFloat
in interfaceDataBank
-
getInt
-
getInt
-
setInt
-
setInt
-
appendInt
-
getShort
-
getShort
-
setShort
-
setShort
-
appendShort
- Specified by:
appendShort
in interfaceDataBank
-
getLong
-
getLong
-
setLong
-
setLong
-
appendLong
- Specified by:
appendLong
in interfaceDataBank
-
getByte
-
getByte
-
setByte
-
setByte
-
appendByte
- Specified by:
appendByte
in interfaceDataBank
-
columns
public int columns()Description copied from interface:DataBank
Returns the number of columns in the bank. columns are number of variables. -
rows
public int rows()Description copied from interface:DataBank
returns the number of rows in the bank, assuming all columns have the same length. -
show
public void show()Description copied from interface:DataBank
Prints the content of the bank on the screen. The implementation of printout is left up to the particular implementation of the class. -
reset
public void reset()Description copied from interface:DataBank
Clears the content of the bank. all columns are removed. -
allocate
public void allocate(int rows) Description copied from interface:DataBank
Allocates all variables for the the bank. the names are taken from the descriptor object. -
getTableModel
Description copied from interface:DataBank
Returns a table model for displaying the bank information- Specified by:
getTableModel
in interfaceDataBank
- Returns:
-