AIDA API
Version 3.3

hep.aida
Interface IBaseTupleColumn

All Known Subinterfaces:
ITupleColumn, ITupleColumn.B, ITupleColumn.C, ITupleColumn.D, ITupleColumn.F, ITupleColumn.I, ITupleColumn.ITuple, ITupleColumn.L, ITupleColumn.Object, ITupleColumn.S, ITupleColumn.String, ITupleColumn.Z

public interface IBaseTupleColumn

User level interface to a Tuple column. Provides the common functionality of the tuple column classes.

Author:
The AIDA team (http://aida.freehep.org/)

Method Summary
 double maximum()
          Get the maximum value of the column (if it can be converted to a double).
 double mean()
          Get the mean value of the column (if it can be converted to a double).
 double minimum()
          Get the minimum value of the column (if it can be converted to a double).
 String name()
          Get the name of the column.
 double rms()
          Get the RMS of the given column (if it can be converted to a double).
 Class type()
          Get the type of a give column.
 

Method Detail

name

public String name()
Get the name of the column.

Returns:
The column's name.

type

public Class type()
Get the type of a give column.

Returns:
The column's Class.

minimum

public double minimum()
Get the minimum value of the column (if it can be converted to a double).

Returns:
The column's minimum value. In Java Double.NaN might be returned.

maximum

public double maximum()
Get the maximum value of the column (if it can be converted to a double).

Returns:
The column's maximum value. In Java Double.NaN might be returned.

mean

public double mean()
Get the mean value of the column (if it can be converted to a double).

Returns:
The column's mean value. In Java Double.NaN might be returned.

rms

public double rms()
Get the RMS of the given column (if it can be converted to a double).

Returns:
The column's RMS. In Java Double.NaN might be returned.

AIDA API
Version 3.3

Copyright © 2000-2004 AIDA Team, All Rights Reserved.