Serialized Form


Package cern.colt

Class cern.colt.PersistentObject extends java.lang.Object implements Serializable

serialVersionUID: 1020L

Class cern.colt.Timer extends PersistentObject implements Serializable

Serialized Fields

baseTime

long baseTime

elapsedTime

long elapsedTime

Package cern.colt.bitvector

Class cern.colt.bitvector.BitMatrix extends PersistentObject implements Serializable

Serialized Fields

columns

int columns

rows

int rows

bits

long[] bits

Class cern.colt.bitvector.BitVector extends PersistentObject implements Serializable

Serialized Fields

bits

long[] bits
The bits of this object. The ith bit is stored in bits[i/64] at bit position i % 64 (where bit position 0 refers to the least significant bit and 63 refers to the most significant bit).

 

nbits

int nbits

Package cern.colt.buffer

Class cern.colt.buffer.DoubleBuffer extends PersistentObject implements Serializable

Serialized Fields

target

DoubleBufferConsumer target

elements

double[] elements

list

DoubleArrayList list

capacity

int capacity

size

int size

Class cern.colt.buffer.DoubleBuffer2D extends PersistentObject implements Serializable

Serialized Fields

target

DoubleBuffer2DConsumer target

xElements

double[] xElements

yElements

double[] yElements

xList

DoubleArrayList xList

yList

DoubleArrayList yList

capacity

int capacity

size

int size

Class cern.colt.buffer.DoubleBuffer3D extends PersistentObject implements Serializable

Serialized Fields

target

DoubleBuffer3DConsumer target

xElements

double[] xElements

yElements

double[] yElements

zElements

double[] zElements

xList

DoubleArrayList xList

yList

DoubleArrayList yList

zList

DoubleArrayList zList

capacity

int capacity

size

int size

Class cern.colt.buffer.IntBuffer extends PersistentObject implements Serializable

Serialized Fields

target

IntBufferConsumer target

elements

int[] elements

list

IntArrayList list

capacity

int capacity

size

int size

Class cern.colt.buffer.IntBuffer2D extends PersistentObject implements Serializable

Serialized Fields

target

IntBuffer2DConsumer target

xElements

int[] xElements

yElements

int[] yElements

xList

IntArrayList xList

yList

IntArrayList yList

capacity

int capacity

size

int size

Class cern.colt.buffer.IntBuffer3D extends PersistentObject implements Serializable

Serialized Fields

target

IntBuffer3DConsumer target

xElements

int[] xElements

yElements

int[] yElements

zElements

int[] zElements

xList

IntArrayList xList

yList

IntArrayList yList

zList

IntArrayList zList

capacity

int capacity

size

int size

Class cern.colt.buffer.ObjectBuffer extends PersistentObject implements Serializable

Serialized Fields

target

ObjectBufferConsumer target

elements

java.lang.Object[] elements

list

ObjectArrayList list

capacity

int capacity

size

int size

Package cern.colt.list

Class cern.colt.list.AbstractBooleanList extends AbstractList implements Serializable

Serialized Fields

size

int size
The size of the list. This is a READ_ONLY variable for all methods but setSizeRaw(int newSize) !!! If you violate this principle in subclasses, you should exactly know what you are doing.

 

Class cern.colt.list.AbstractByteList extends AbstractList implements Serializable

Serialized Fields

size

int size
The size of the list. This is a READ_ONLY variable for all methods but setSizeRaw(int newSize) !!! If you violate this principle in subclasses, you should exactly know what you are doing.

 

Class cern.colt.list.AbstractCharList extends AbstractList implements Serializable

Serialized Fields

size

int size
The size of the list. This is a READ_ONLY variable for all methods but setSizeRaw(int newSize) !!! If you violate this principle in subclasses, you should exactly know what you are doing.

 

Class cern.colt.list.AbstractCollection extends PersistentObject implements Serializable

Class cern.colt.list.AbstractDoubleList extends AbstractList implements Serializable

Serialized Fields

size

int size
The size of the list. This is a READ_ONLY variable for all methods but setSizeRaw(int newSize) !!! If you violate this principle in subclasses, you should exactly know what you are doing.

 

Class cern.colt.list.AbstractFloatList extends AbstractList implements Serializable

Serialized Fields

size

int size
The size of the list. This is a READ_ONLY variable for all methods but setSizeRaw(int newSize) !!! If you violate this principle in subclasses, you should exactly know what you are doing.

 

Class cern.colt.list.AbstractIntList extends AbstractList implements Serializable

Serialized Fields

size

int size
The size of the list. This is a READ_ONLY variable for all methods but setSizeRaw(int newSize) !!! If you violate this principle in subclasses, you should exactly know what you are doing.

 

Class cern.colt.list.AbstractList extends AbstractCollection implements Serializable

Class cern.colt.list.AbstractLongList extends AbstractList implements Serializable

Serialized Fields

size

int size
The size of the list. This is a READ_ONLY variable for all methods but setSizeRaw(int newSize) !!! If you violate this principle in subclasses, you should exactly know what you are doing.

 

Class cern.colt.list.AbstractShortList extends AbstractList implements Serializable

Serialized Fields

size

int size
The size of the list. This is a READ_ONLY variable for all methods but setSizeRaw(int newSize) !!! If you violate this principle in subclasses, you should exactly know what you are doing.

 

Class cern.colt.list.BooleanArrayList extends AbstractBooleanList implements Serializable

Serialized Fields

elements

boolean[] elements
The array buffer into which the elements of the list are stored. The capacity of the list is the length of this array buffer.

 

Class cern.colt.list.ByteArrayList extends AbstractByteList implements Serializable

Serialized Fields

elements

byte[] elements
The array buffer into which the elements of the list are stored. The capacity of the list is the length of this array buffer.

 

Class cern.colt.list.CharArrayList extends AbstractCharList implements Serializable

Serialized Fields

elements

char[] elements
The array buffer into which the elements of the list are stored. The capacity of the list is the length of this array buffer.

 

Class cern.colt.list.DistinctNumberList extends AbstractLongList implements Serializable

Serialized Fields

distinctValues

long[] distinctValues

elements

MinMaxNumberList elements

Class cern.colt.list.DoubleArrayList extends AbstractDoubleList implements Serializable

Serialized Fields

elements

double[] elements
The array buffer into which the elements of the list are stored. The capacity of the list is the length of this array buffer.

 

Class cern.colt.list.FloatArrayList extends AbstractFloatList implements Serializable

Serialized Fields

elements

float[] elements
The array buffer into which the elements of the list are stored. The capacity of the list is the length of this array buffer.

 

Class cern.colt.list.IntArrayList extends AbstractIntList implements Serializable

Serialized Fields

elements

int[] elements
The array buffer into which the elements of the list are stored. The capacity of the list is the length of this array buffer.

 

Class cern.colt.list.LongArrayList extends AbstractLongList implements Serializable

Serialized Fields

elements

long[] elements
The array buffer into which the elements of the list are stored. The capacity of the list is the length of this array buffer.

 

Class cern.colt.list.MinMaxNumberList extends AbstractLongList implements Serializable

Serialized Fields

minValue

long minValue

bitsPerElement

int bitsPerElement

bits

long[] bits

capacity

int capacity

Class cern.colt.list.ObjectArrayList extends AbstractList implements Serializable

Serialized Fields

elements

java.lang.Object[] elements
The array buffer into which the elements of the list are stored. The capacity of the list is the length of this array buffer.

 

size

int size
The size of the list.

 

Class cern.colt.list.ShortArrayList extends AbstractShortList implements Serializable

Serialized Fields

elements

short[] elements
The array buffer into which the elements of the list are stored. The capacity of the list is the length of this array buffer.

 

Class cern.colt.list.SimpleLongArrayList extends AbstractLongList implements Serializable

Serialized Fields

elements

long[] elements
The array buffer into which the elements of the list are stored. The capacity of the list is the length of this array buffer.

 

size

int size
The size of the list.

 

Package cern.colt.map

Class cern.colt.map.AbstractDoubleIntMap extends AbstractMap implements Serializable

Class cern.colt.map.AbstractIntDoubleMap extends AbstractMap implements Serializable

Class cern.colt.map.AbstractIntIntMap extends AbstractMap implements Serializable

Class cern.colt.map.AbstractIntObjectMap extends AbstractMap implements Serializable

Class cern.colt.map.AbstractLongObjectMap extends AbstractMap implements Serializable

Class cern.colt.map.AbstractMap extends PersistentObject implements Serializable

Serialized Fields

distinct

int distinct
The number of distinct associations in the map; its "size()".


lowWaterMark

int lowWaterMark
The table capacity c=table.length always satisfies the invariant c * minLoadFactor <= s <= c * maxLoadFactor, where s=size() is the number of associations currently contained. The term "c * minLoadFactor" is called the "lowWaterMark", "c * maxLoadFactor" is called the "highWaterMark". In other words, the table capacity (and proportionally the memory used by this class) oscillates within these constraints. The terms are precomputed and cached to avoid recalculating them each time put(..) or removeKey(...) is called.


highWaterMark

int highWaterMark

minLoadFactor

double minLoadFactor
The minimum load factor for the hashtable.


maxLoadFactor

double maxLoadFactor
The maximum load factor for the hashtable.

Class cern.colt.map.OpenDoubleIntHashMap extends AbstractDoubleIntMap implements Serializable

Serialized Fields

table

double[] table
The hash table keys.

 

values

int[] values
The hash table values.

 

state

byte[] state
The state of each hash table entry (FREE, FULL, REMOVED).

 

freeEntries

int freeEntries
The number of table entries in state==FREE.

 

Class cern.colt.map.OpenIntDoubleHashMap extends AbstractIntDoubleMap implements Serializable

Serialized Fields

table

int[] table
The hash table keys.

 

values

double[] values
The hash table values.

 

state

byte[] state
The state of each hash table entry (FREE, FULL, REMOVED).

 

freeEntries

int freeEntries
The number of table entries in state==FREE.

 

Class cern.colt.map.OpenIntIntHashMap extends AbstractIntIntMap implements Serializable

Serialized Fields

table

int[] table
The hash table keys.

 

values

int[] values
The hash table values.

 

state

byte[] state
The state of each hash table entry (FREE, FULL, REMOVED).

 

freeEntries

int freeEntries
The number of table entries in state==FREE.

 

Class cern.colt.map.OpenIntObjectHashMap extends AbstractIntObjectMap implements Serializable

Serialized Fields

table

int[] table
The hash table keys.

 

values

java.lang.Object[] values
The hash table values.

 

state

byte[] state
The state of each hash table entry (FREE, FULL, REMOVED).

 

freeEntries

int freeEntries
The number of table entries in state==FREE.

 

Class cern.colt.map.OpenLongObjectHashMap extends AbstractLongObjectMap implements Serializable

Serialized Fields

table

long[] table
The hash table keys.

 

values

java.lang.Object[] values
The hash table values.

 

state

byte[] state
The state of each hash table entry (FREE, FULL, REMOVED).

 

freeEntries

int freeEntries
The number of table entries in state==FREE.

 

Package cern.colt.matrix

Class cern.colt.matrix.DoubleFactory1D extends PersistentObject implements Serializable

Class cern.colt.matrix.DoubleFactory2D extends PersistentObject implements Serializable

Class cern.colt.matrix.DoubleFactory3D extends PersistentObject implements Serializable

Class cern.colt.matrix.DoubleMatrix1D extends AbstractMatrix1D implements Serializable

Class cern.colt.matrix.DoubleMatrix2D extends AbstractMatrix2D implements Serializable

Class cern.colt.matrix.DoubleMatrix3D extends AbstractMatrix3D implements Serializable

Class cern.colt.matrix.ObjectFactory1D extends PersistentObject implements Serializable

Class cern.colt.matrix.ObjectFactory2D extends PersistentObject implements Serializable

Class cern.colt.matrix.ObjectFactory3D extends PersistentObject implements Serializable

Class cern.colt.matrix.ObjectMatrix1D extends AbstractMatrix1D implements Serializable

Class cern.colt.matrix.ObjectMatrix2D extends AbstractMatrix2D implements Serializable

Class cern.colt.matrix.ObjectMatrix3D extends AbstractMatrix3D implements Serializable


Package cern.colt.matrix.doublealgo

Class cern.colt.matrix.doublealgo.Formatter extends AbstractFormatter implements Serializable

Class cern.colt.matrix.doublealgo.Sorting extends PersistentObject implements Serializable

Class cern.colt.matrix.doublealgo.Transform extends PersistentObject implements Serializable


Package cern.colt.matrix.impl

Class cern.colt.matrix.impl.AbstractFormatter extends PersistentObject implements Serializable

Serialized Fields

alignment

java.lang.String alignment
The default format string for formatting a single cell value; currently "%G".


format

java.lang.String format
The default format string for formatting a single cell value; currently "%G".


minColumnWidth

int minColumnWidth
The default minimum number of characters a column may have; currently 1.


columnSeparator

java.lang.String columnSeparator
The default string separating any two columns from another; currently " ".


rowSeparator

java.lang.String rowSeparator
The default string separating any two rows from another; currently "\n".


sliceSeparator

java.lang.String sliceSeparator
The default string separating any two slices from another; currently "\n\n".


printShape

boolean printShape
Tells whether String representations are to be preceded with summary of the shape; currently true.

Class cern.colt.matrix.impl.AbstractMatrix extends PersistentObject implements Serializable

Serialized Fields

isNoView

boolean isNoView

Class cern.colt.matrix.impl.AbstractMatrix1D extends AbstractMatrix implements Serializable

Serialized Fields

size

int size
the number of cells this matrix (view) has


zero

int zero
the index of the first element


stride

int stride
the number of indexes between any two elements, i.e. index(i+1) - index(i).

Class cern.colt.matrix.impl.AbstractMatrix2D extends AbstractMatrix implements Serializable

Serialized Fields

columns

int columns
the number of colums and rows this matrix (view) has


rows

int rows
the number of colums and rows this matrix (view) has


rowStride

int rowStride
the number of elements between two rows, i.e. index(i+1,j,k) - index(i,j,k).


columnStride

int columnStride
the number of elements between two columns, i.e. index(i,j+1,k) - index(i,j,k).


rowZero

int rowZero
the index of the first element


columnZero

int columnZero
the index of the first element

Class cern.colt.matrix.impl.AbstractMatrix3D extends AbstractMatrix implements Serializable

Serialized Fields

slices

int slices
the number of slices this matrix (view) has


rows

int rows
the number of rows this matrix (view) has


columns

int columns
the number of columns this matrix (view) has


sliceStride

int sliceStride
the number of elements between two slices, i.e. index(k+1,i,j) - index(k,i,j).


rowStride

int rowStride
the number of elements between two rows, i.e. index(k,i+1,j) - index(k,i,j).


columnStride

int columnStride
the number of elements between two columns, i.e. index(k,i,j+1) - index(k,i,j).


sliceZero

int sliceZero
the index of the first element


rowZero

int rowZero
the index of the first element


columnZero

int columnZero
the index of the first element

Class cern.colt.matrix.impl.DenseDoubleMatrix1D extends DoubleMatrix1D implements Serializable

Serialized Fields

elements

double[] elements
The elements of this matrix.

Class cern.colt.matrix.impl.DenseDoubleMatrix2D extends DoubleMatrix2D implements Serializable

serialVersionUID: 1020177651L

Serialized Fields

elements

double[] elements
The elements of this matrix. elements are stored in row major, i.e. index==row*columns + column columnOf(index)==index%columns rowOf(index)==index/columns i.e. {row0 column0..m}, {row1 column0..m}, ..., {rown column0..m}

Class cern.colt.matrix.impl.DenseDoubleMatrix3D extends DoubleMatrix3D implements Serializable

Serialized Fields

elements

double[] elements
The elements of this matrix. elements are stored in slice major, then row major, then column major, in order of significance, i.e. index==slice*sliceStride+ row*rowStride + column*columnStride i.e. {slice0 row0..m}, {slice1 row0..m}, ..., {sliceN row0..m} with each row storead as {row0 column0..m}, {row1 column0..m}, ..., {rown column0..m}

Class cern.colt.matrix.impl.DenseObjectMatrix1D extends ObjectMatrix1D implements Serializable

Serialized Fields

elements

java.lang.Object[] elements
The elements of this matrix.

Class cern.colt.matrix.impl.DenseObjectMatrix2D extends ObjectMatrix2D implements Serializable

Serialized Fields

elements

java.lang.Object[] elements
The elements of this matrix. elements are stored in row major, i.e. index==row*columns + column columnOf(index)==index%columns rowOf(index)==index/columns i.e. {row0 column0..m}, {row1 column0..m}, ..., {rown column0..m}

Class cern.colt.matrix.impl.DenseObjectMatrix3D extends ObjectMatrix3D implements Serializable

Serialized Fields

elements

java.lang.Object[] elements
The elements of this matrix. elements are stored in slice major, then row major, then column major, in order of significance, i.e. index==slice*sliceStride+ row*rowStride + column*columnStride i.e. {slice0 row0..m}, {slice1 row0..m}, ..., {sliceN row0..m} with each row storead as {row0 column0..m}, {row1 column0..m}, ..., {rown column0..m}

Class cern.colt.matrix.impl.RCDoubleMatrix2D extends cern.colt.matrix.impl.WrapperDoubleMatrix2D implements Serializable

Serialized Fields

indexes

IntArrayList indexes

values

DoubleArrayList values

starts

int[] starts

Class cern.colt.matrix.impl.SparseDoubleMatrix1D extends DoubleMatrix1D implements Serializable

Serialized Fields

elements

AbstractIntDoubleMap elements

Class cern.colt.matrix.impl.SparseDoubleMatrix2D extends DoubleMatrix2D implements Serializable

Serialized Fields

elements

AbstractIntDoubleMap elements

dummy

int dummy

Class cern.colt.matrix.impl.SparseDoubleMatrix3D extends DoubleMatrix3D implements Serializable

Serialized Fields

elements

AbstractIntDoubleMap elements

Class cern.colt.matrix.impl.SparseObjectMatrix1D extends ObjectMatrix1D implements Serializable

Serialized Fields

elements

AbstractIntObjectMap elements

Class cern.colt.matrix.impl.SparseObjectMatrix2D extends ObjectMatrix2D implements Serializable

Serialized Fields

elements

AbstractIntObjectMap elements

Class cern.colt.matrix.impl.SparseObjectMatrix3D extends ObjectMatrix3D implements Serializable

Serialized Fields

elements

AbstractIntObjectMap elements

Package cern.colt.matrix.linalg

Class cern.colt.matrix.linalg.Algebra extends PersistentObject implements Serializable

Serialized Fields

property

Property property
The property object attached to this instance.

Class cern.colt.matrix.linalg.CholeskyDecomposition extends java.lang.Object implements Serializable

serialVersionUID: 1020L

Serialized Fields

L

DoubleMatrix2D L
Array for internal storage of decomposition.

internal array storage.

n

int n
Row and column dimension (square matrix).

matrix dimension.

isSymmetricPositiveDefinite

boolean isSymmetricPositiveDefinite
Symmetric and positive definite flag.

is symmetric and positive definite flag.

Class cern.colt.matrix.linalg.EigenvalueDecomposition extends java.lang.Object implements Serializable

serialVersionUID: 1020L

Serialized Fields

n

int n
Row and column dimension (square matrix).

matrix dimension.

issymmetric

boolean issymmetric
Symmetry flag.

internal symmetry flag.

d

double[] d
Arrays for internal storage of eigenvalues.

internal storage of eigenvalues.

e

double[] e
Arrays for internal storage of eigenvalues.

internal storage of eigenvalues.

V

double[][] V
Array for internal storage of eigenvectors.

internal storage of eigenvectors.

H

double[][] H
Array for internal storage of nonsymmetric Hessenberg form.

internal storage of nonsymmetric Hessenberg form.

ort

double[] ort
Working storage for nonsymmetric algorithm.

working storage for nonsymmetric algorithm.

Class cern.colt.matrix.linalg.LUDecomposition extends java.lang.Object implements Serializable

serialVersionUID: 1020L

Serialized Fields

quick

LUDecompositionQuick quick

Class cern.colt.matrix.linalg.LUDecompositionQuick extends java.lang.Object implements Serializable

serialVersionUID: 1020L

Serialized Fields

LU

DoubleMatrix2D LU
Array for internal storage of decomposition.

internal array storage.

pivsign

int pivsign
pivot sign.

pivot sign.

piv

int[] piv
Internal storage of pivot vector.

pivot vector.

isNonSingular

boolean isNonSingular

algebra

Algebra algebra

Class cern.colt.matrix.linalg.Property extends PersistentObject implements Serializable

Serialized Fields

tolerance

double tolerance

Class cern.colt.matrix.linalg.QRDecomposition extends java.lang.Object implements Serializable

serialVersionUID: 1020L

Serialized Fields

QR

DoubleMatrix2D QR
Array for internal storage of decomposition.

internal array storage.

m

int m
Row and column dimensions.

column dimension.

n

int n
Row and column dimensions.

column dimension.

Rdiag

DoubleMatrix1D Rdiag
Array for internal storage of diagonal of R.

diagonal of R.

Class cern.colt.matrix.linalg.SingularValueDecomposition extends java.lang.Object implements Serializable

serialVersionUID: 1020L

Serialized Fields

U

double[][] U
Arrays for internal storage of U and V.

internal storage of U.

V

double[][] V
Arrays for internal storage of U and V.

internal storage of U.

s

double[] s
Array for internal storage of singular values.

internal storage of singular values.

m

int m
Row and column dimensions.

row dimension.

n

int n
Row and column dimensions.

row dimension.

Package cern.colt.matrix.objectalgo

Class cern.colt.matrix.objectalgo.Formatter extends AbstractFormatter implements Serializable

Class cern.colt.matrix.objectalgo.Sorting extends PersistentObject implements Serializable


Package cern.hep.aida.bin

Class cern.hep.aida.bin.AbstractBin extends PersistentObject implements Serializable

Class cern.hep.aida.bin.AbstractBin1D extends AbstractBin implements Serializable

Class cern.hep.aida.bin.DynamicBin1D extends QuantileBin1D implements Serializable

Serialized Fields

elements

DoubleArrayList elements
The elements contained in this bin.


sortedElements

DoubleArrayList sortedElements
The elements contained in this bin, sorted ascending.


fixedOrder

boolean fixedOrder
Preserve element order under all circumstances?


isSorted

boolean isSorted

isIncrementalStatValid

boolean isIncrementalStatValid

isSumOfInversionsValid

boolean isSumOfInversionsValid

isSumOfLogarithmsValid

boolean isSumOfLogarithmsValid

Class cern.hep.aida.bin.MightyStaticBin1D extends StaticBin1D implements Serializable

Serialized Fields

hasSumOfLogarithms

boolean hasSumOfLogarithms

sumOfLogarithms

double sumOfLogarithms

hasSumOfInversions

boolean hasSumOfInversions

sumOfInversions

double sumOfInversions

sumOfPowers

double[] sumOfPowers

Class cern.hep.aida.bin.QuantileBin1D extends MightyStaticBin1D implements Serializable

Serialized Fields

finder

DoubleQuantileFinder finder

Class cern.hep.aida.bin.StaticBin1D extends AbstractBin1D implements Serializable

Serialized Fields

size

int size
The number of elements consumed by incremental parameter maintainance.


min

double min

max

double max

sum

double sum

sum_xx

double sum_xx

Package cern.hep.aida.ref

Class cern.hep.aida.ref.FixedAxis extends java.lang.Object implements Serializable

Serialized Fields

bins

int bins

min

double min

binWidth

double binWidth

xunder

int xunder

xover

int xover

Class cern.hep.aida.ref.Histogram1D extends cern.hep.aida.ref.AbstractHistogram1D implements Serializable

Serialized Fields

errors

double[] errors

heights

double[] heights

entries

int[] entries

nEntry

int nEntry

sumWeight

double sumWeight

sumWeightSquared

double sumWeightSquared

mean

double mean

rms

double rms

Class cern.hep.aida.ref.Histogram2D extends cern.hep.aida.ref.AbstractHistogram2D implements Serializable

Serialized Fields

heights

double[][] heights

errors

double[][] errors

entries

int[][] entries

nEntry

int nEntry

sumWeight

double sumWeight

sumWeightSquared

double sumWeightSquared

meanX

double meanX

rmsX

double rmsX

meanY

double meanY

rmsY

double rmsY

Class cern.hep.aida.ref.Histogram3D extends cern.hep.aida.ref.AbstractHistogram3D implements Serializable

Serialized Fields

heights

double[][][] heights

errors

double[][][] errors

entries

int[][][] entries

nEntry

int nEntry

sumWeight

double sumWeight

sumWeightSquared

double sumWeightSquared

meanX

double meanX

rmsX

double rmsX

meanY

double meanY

rmsY

double rmsY

meanZ

double meanZ

rmsZ

double rmsZ

Class cern.hep.aida.ref.VariableAxis extends java.lang.Object implements Serializable

Serialized Fields

min

double min

bins

int bins

edges

double[] edges

Package cern.jet.random

Class cern.jet.random.AbstractContinousDistribution extends AbstractDistribution implements Serializable

Class cern.jet.random.AbstractDiscreteDistribution extends AbstractDistribution implements Serializable

Class cern.jet.random.AbstractDistribution extends PersistentObject implements Serializable

Serialized Fields

randomGenerator

RandomEngine randomGenerator

Class cern.jet.random.Benchmark extends PersistentObject implements Serializable

Serialized Fields

randomGenerator

RandomEngine randomGenerator

Class cern.jet.random.Beta extends AbstractContinousDistribution implements Serializable

Serialized Fields

alpha

double alpha

beta

double beta

PDF_CONST

double PDF_CONST

a_last

double a_last

b_last

double b_last

a_

double a_

b_

double b_

t

double t

fa

double fa

fb

double fb

p1

double p1

p2

double p2

c

double c

ml

double ml

mu

double mu

p_last

double p_last

q_last

double q_last

a

double a

b

double b

s

double s

m

double m

D

double D

Dl

double Dl

x1

double x1

x2

double x2

x4

double x4

x5

double x5

f1

double f1

f2

double f2

f4

double f4

f5

double f5

ll

double ll

lr

double lr

z2

double z2

z4

double z4

p3

double p3

p4

double p4

Class cern.jet.random.Binomial extends AbstractDiscreteDistribution implements Serializable

Serialized Fields

n

int n

p

double p

n_last

int n_last

n_prev

int n_prev

par

double par

np

double np

p0

double p0

q

double q

p_last

double p_last

p_prev

double p_prev

b

int b

m

int m

nm

int nm

pq

double pq

rc

double rc

ss

double ss

xm

double xm

xl

double xl

xr

double xr

ll

double ll

lr

double lr

c

double c

p1

double p1

p2

double p2

p3

double p3

p4

double p4

ch

double ch

log_p

double log_p

log_q

double log_q

log_n

double log_n

Class cern.jet.random.BreitWigner extends AbstractContinousDistribution implements Serializable

Serialized Fields

mean

double mean

gamma

double gamma

cut

double cut

Class cern.jet.random.BreitWignerMeanSquare extends BreitWigner implements Serializable

Serialized Fields

uniform

Uniform uniform

Class cern.jet.random.ChiSquare extends AbstractContinousDistribution implements Serializable

Serialized Fields

freedom

double freedom

freedom_in

double freedom_in

b

double b

vm

double vm

vp

double vp

vd

double vd

Class cern.jet.random.Empirical extends AbstractContinousDistribution implements Serializable

Serialized Fields

cdf

double[] cdf

interpolationType

int interpolationType

Class cern.jet.random.EmpiricalWalker extends AbstractDiscreteDistribution implements Serializable

Serialized Fields

K

int K

A

int[] A

F

double[] F

cdf

double[] cdf

Class cern.jet.random.Exponential extends AbstractContinousDistribution implements Serializable

Serialized Fields

lambda

double lambda

Class cern.jet.random.ExponentialPower extends AbstractContinousDistribution implements Serializable

Serialized Fields

tau

double tau

s

double s

sm1

double sm1

tau_set

double tau_set

Class cern.jet.random.Gamma extends AbstractContinousDistribution implements Serializable

Serialized Fields

alpha

double alpha

lambda

double lambda

Class cern.jet.random.Hyperbolic extends AbstractContinousDistribution implements Serializable

Serialized Fields

alpha

double alpha

beta

double beta

a_setup

double a_setup

b_setup

double b_setup

x

double x

u

double u

v

double v

e

double e

hr

double hr

hl

double hl

s

double s

pm

double pm

pr

double pr

samb

double samb

pmr

double pmr

mpa_1

double mpa_1

mmb_1

double mmb_1

Class cern.jet.random.HyperGeometric extends AbstractDiscreteDistribution implements Serializable

Serialized Fields

my_N

int my_N

my_s

int my_s

my_n

int my_n

N_last

int N_last

M_last

int M_last

n_last

int n_last

N_Mn

int N_Mn

m

int m

mp

int mp

b

int b

Mp

double Mp

np

double np

fm

double fm

k2

int k2

k4

int k4

k1

int k1

k5

int k5

dl

double dl

dr

double dr

r1

double r1

r2

double r2

r4

double r4

r5

double r5

ll

double ll

lr

double lr

c_pm

double c_pm

f1

double f1

f2

double f2

f4

double f4

f5

double f5

p1

double p1

p2

double p2

p3

double p3

p4

double p4

p5

double p5

p6

double p6

Class cern.jet.random.Logarithmic extends AbstractContinousDistribution implements Serializable

Serialized Fields

my_p

double my_p

t

double t

h

double h

a_prev

double a_prev

Class cern.jet.random.NegativeBinomial extends AbstractDiscreteDistribution implements Serializable

Serialized Fields

n

int n

p

double p

gamma

Gamma gamma

poisson

Poisson poisson

Class cern.jet.random.Normal extends AbstractContinousDistribution implements Serializable

Serialized Fields

mean

double mean

variance

double variance

standardDeviation

double standardDeviation

cache

double cache

cacheFilled

boolean cacheFilled

SQRT_INV

double SQRT_INV

Class cern.jet.random.Poisson extends AbstractDiscreteDistribution implements Serializable

Serialized Fields

mean

double mean

my_old

double my_old

p

double p

q

double q

p0

double p0

pp

double[] pp

llll

int llll

my_last

double my_last

ll

double ll

k2

int k2

k4

int k4

k1

int k1

k5

int k5

dl

double dl

dr

double dr

r1

double r1

r2

double r2

r4

double r4

r5

double r5

lr

double lr

l_my

double l_my

c_pm

double c_pm

f1

double f1

f2

double f2

f4

double f4

f5

double f5

p1

double p1

p2

double p2

p3

double p3

p4

double p4

p5

double p5

p6

double p6

m

int m

Class cern.jet.random.PoissonSlow extends AbstractDiscreteDistribution implements Serializable

Serialized Fields

mean

double mean

cached_sq

double cached_sq

cached_alxm

double cached_alxm

cached_g

double cached_g

Class cern.jet.random.StudentT extends AbstractContinousDistribution implements Serializable

Serialized Fields

freedom

double freedom

TERM

double TERM

Class cern.jet.random.Uniform extends AbstractContinousDistribution implements Serializable

Serialized Fields

min

double min

max

double max

Class cern.jet.random.VonMises extends AbstractContinousDistribution implements Serializable

Serialized Fields

my_k

double my_k

k_set

double k_set

tau

double tau

rho

double rho

r

double r

Class cern.jet.random.Zeta extends AbstractDiscreteDistribution implements Serializable

Serialized Fields

ro

double ro

pk

double pk

c

double c

d

double d

ro_prev

double ro_prev

pk_prev

double pk_prev

maxlongint

double maxlongint

Package cern.jet.random.engine

Class cern.jet.random.engine.DRand extends RandomEngine implements Serializable

Serialized Fields

current

int current

Class cern.jet.random.engine.MersenneTwister extends RandomEngine implements Serializable

Serialized Fields

mti

int mti

mt

int[] mt

Class cern.jet.random.engine.MersenneTwister64 extends MersenneTwister implements Serializable

Class cern.jet.random.engine.RandomEngine extends PersistentObject implements Serializable

Class cern.jet.random.engine.RandomSeedGenerator extends PersistentObject implements Serializable

Serialized Fields

row

int row

column

int column

Package cern.jet.random.sampling

Class cern.jet.random.sampling.RandomSampler extends PersistentObject implements Serializable

Serialized Fields

my_n

long my_n

my_N

long my_N

my_low

long my_low

my_RandomGenerator

RandomEngine my_RandomGenerator

Class cern.jet.random.sampling.RandomSamplingAssistant extends PersistentObject implements Serializable

Serialized Fields

sampler

RandomSampler sampler

buffer

long[] buffer

bufferPosition

int bufferPosition

skip

long skip

n

long n

Class cern.jet.random.sampling.WeightedRandomSampler extends PersistentObject implements Serializable

Serialized Fields

skip

int skip

nextTriggerPos

int nextTriggerPos

nextSkip

int nextSkip

weight

int weight

generator

Uniform generator

Package cern.jet.stat.quantile

Class cern.jet.stat.quantile.EquiDepthHistogram extends PersistentObject implements Serializable

Serialized Fields

binBoundaries

float[] binBoundaries

Package flanagan.math

Class flanagan.math.FourierTransform extends java.awt.Canvas implements Serializable

serialVersionUID: 1L

Serialized Fields

complexData

flanagan.complex.Complex[] complexData

complexCorr

flanagan.complex.Complex[] complexCorr

complexDataSet

boolean complexDataSet

originalDataLength

int originalDataLength

fftDataLength

int fftDataLength

dataAltered

boolean dataAltered

fftData

double[] fftData

fftCorr

double[] fftCorr

fftResp

double[] fftResp

fftDataSet

boolean fftDataSet

fftDataWindow

double[] fftDataWindow

fftCorrWindow

double[] fftCorrWindow

windowOption

int windowOption

windowNames

java.lang.String[] windowNames

windowName

java.lang.String windowName

kaiserAlpha

double kaiserAlpha

gaussianAlpha

double gaussianAlpha

weights

double[] weights

windowSet

boolean windowSet

windowApplied

boolean windowApplied

sumOfSquaredWeights

double sumOfSquaredWeights

transformedDataComplex

flanagan.complex.Complex[] transformedDataComplex

transformedDataFft

double[] transformedDataFft

fftDone

boolean fftDone

powerSpectrumEstimate

double[][] powerSpectrumEstimate

powSpecDone

boolean powSpecDone

psdNumberOfPoints

int psdNumberOfPoints

segmentNumber

int segmentNumber

segmentLength

int segmentLength

overlap

boolean overlap

segNumSet

boolean segNumSet

segLenSet

boolean segLenSet

deltaT

double deltaT

deltaTset

boolean deltaTset

correlationArray

double[][] correlationArray

correlateDone

boolean correlateDone

numberOfWarnings

int numberOfWarnings

warning

boolean[] warning

plotLineOption

int plotLineOption

plotPointOption

int plotPointOption

timeFrequency

double[][] timeFrequency

shortTimeDone

boolean shortTimeDone

numShortFreq

int numShortFreq

numShortTimes

int numShortTimes

shortTitle

java.lang.String shortTitle

Class flanagan.math.PsRandom extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

seed

long seed

initialSeed

long initialSeed

methodOptionDecimal

int methodOptionDecimal

rr

java.util.Random rr

methodOptionBinary

int methodOptionBinary

ia

long ia

im

long im

am

double am

iq

long iq

ir

long ir

ntab

int ntab

ndiv

long ndiv

eps

double eps

rnmx

double rnmx

iy

long iy

iv

long[] iv

iset

int iset

gset

double gset

powTwo1

long powTwo1

powTwo2

long powTwo2

powTwo5

long powTwo5

powTwo18

long powTwo18

mask

long mask

Package hep.aida.ref

Class hep.aida.ref.ReadOnlyException extends java.lang.RuntimeException implements Serializable


Package hep.aida.ref.event

Class hep.aida.ref.event.ConnectEvent extends java.util.EventObject implements Serializable

Serialized Fields

connected

boolean connected

Class hep.aida.ref.event.DataPointSetEvent extends java.util.EventObject implements Serializable

Class hep.aida.ref.event.HistogramEvent extends java.util.EventObject implements Serializable

Class hep.aida.ref.event.TreeEvent extends java.util.EventObject implements Serializable

Serialized Fields

id

int id

path

java.lang.String[] path

type

java.lang.Class<T> type

flags

int flags

linkPath

java.lang.String[] linkPath

Package hep.aida.ref.function

Class hep.aida.ref.function.FunctionCatalog extends java.lang.Object implements Serializable

Serialized Fields

hash

java.util.TreeMap<K,V> hash

userHash

java.util.TreeMap<K,V> userHash

creator

FunctionCreator creator

Package hep.aida.ref.histogram

Class hep.aida.ref.histogram.Cloud extends AbstractBaseHistogram implements Serializable

Serialized Fields

arraySize

int arraySize

maxEntries

int maxEntries

autoConvert

boolean autoConvert

options

java.lang.String options

margin

double margin

validEntries

int validEntries

Class hep.aida.ref.histogram.Cloud1D extends Cloud implements Serializable

Serialized Fields

nEntries

int nEntries

lowerEdge

double lowerEdge

upperEdge

double upperEdge

sumOfWeights

double sumOfWeights

mean

double mean

rms

double rms

histo

hep.aida.IHistogram1D histo

valuesArray

java.util.ArrayList<E> valuesArray

weightsArray

java.util.ArrayList<E> weightsArray

values

double[] values

weights

double[] weights

convBins

int convBins

convLowerEdge

double convLowerEdge

convUpperEdge

double convUpperEdge

Class hep.aida.ref.histogram.Cloud2D extends Cloud implements Serializable

Serialized Fields

nEntries

int nEntries

lowerEdgeX

double lowerEdgeX

upperEdgeX

double upperEdgeX

lowerEdgeY

double lowerEdgeY

upperEdgeY

double upperEdgeY

meanX

double meanX

rmsX

double rmsX

meanY

double meanY

rmsY

double rmsY

histo

hep.aida.IHistogram2D histo

sumOfWeights

double sumOfWeights

xValuesArray

java.util.ArrayList<E> xValuesArray

yValuesArray

java.util.ArrayList<E> yValuesArray

weightsArray

java.util.ArrayList<E> weightsArray

xValues

double[] xValues

yValues

double[] yValues

weights

double[] weights

convBinsX

int convBinsX

convLowerEdgeX

double convLowerEdgeX

convUpperEdgeX

double convUpperEdgeX

convBinsY

int convBinsY

convLowerEdgeY

double convLowerEdgeY

convUpperEdgeY

double convUpperEdgeY

Class hep.aida.ref.histogram.Cloud3D extends Cloud implements Serializable

Serialized Fields

nEntries

int nEntries

lowerEdgeX

double lowerEdgeX

upperEdgeX

double upperEdgeX

lowerEdgeY

double lowerEdgeY

upperEdgeY

double upperEdgeY

lowerEdgeZ

double lowerEdgeZ

upperEdgeZ

double upperEdgeZ

meanX

double meanX

rmsX

double rmsX

meanY

double meanY

rmsY

double rmsY

meanZ

double meanZ

rmsZ

double rmsZ

histo

hep.aida.IHistogram3D histo

sumOfWeights

double sumOfWeights

xValuesArray

java.util.ArrayList<E> xValuesArray

yValuesArray

java.util.ArrayList<E> yValuesArray

zValuesArray

java.util.ArrayList<E> zValuesArray

weightsArray

java.util.ArrayList<E> weightsArray

xValues

double[] xValues

yValues

double[] yValues

zValues

double[] zValues

weights

double[] weights

convBinsX

int convBinsX

convLowerEdgeX

double convLowerEdgeX

convUpperEdgeX

double convUpperEdgeX

convBinsY

int convBinsY

convLowerEdgeY

double convLowerEdgeY

convUpperEdgeY

double convUpperEdgeY

convBinsZ

int convBinsZ

convLowerEdgeZ

double convLowerEdgeZ

convUpperEdgeZ

double convUpperEdgeZ

Class hep.aida.ref.histogram.DataPoint extends AIDAObservable implements Serializable

Serialized Fields

dimension

int dimension

measurements

hep.aida.IMeasurement[] measurements

Class hep.aida.ref.histogram.DataPointSet extends ManagedObject implements Serializable

Serialized Fields

defaultSize

int defaultSize

annotation

hep.aida.IAnnotation annotation

dimension

int dimension

points

java.util.List<E> points

Class hep.aida.ref.histogram.FixedAxis extends java.lang.Object implements Serializable

Serialized Fields

bins

int bins

min

double min

binWidth

double binWidth

xunder

int xunder

xover

int xover

max

double max

Class hep.aida.ref.histogram.Histogram extends AbstractBaseHistogram implements Serializable

Serialized Fields

allEntries

int allEntries

validEntries

int validEntries

sumOfWeights

double sumOfWeights

sumOfWeightsSquared

double sumOfWeightsSquared

isFillable

boolean isFillable

options

java.lang.String options

useOutflows

boolean useOutflows

meanAndRmsIsSet

boolean meanAndRmsIsSet

Class hep.aida.ref.histogram.Histogram1D extends Histogram implements Serializable

Serialized Fields

mean

double mean

rms

double rms

center

double center

xAxis

hep.aida.IAxis xAxis

binner1D

AbstractBinner1D binner1D

Class hep.aida.ref.histogram.Histogram2D extends Histogram implements Serializable

Serialized Fields

meanX

double meanX

rmsX

double rmsX

meanY

double meanY

rmsY

double rmsY

xAxis

hep.aida.IAxis xAxis

yAxis

hep.aida.IAxis yAxis

binner2D

Binner2D binner2D

Class hep.aida.ref.histogram.Histogram3D extends Histogram implements Serializable

Serialized Fields

meanX

double meanX

rmsX

double rmsX

meanY

double meanY

rmsY

double rmsY

meanZ

double meanZ

rmsZ

double rmsZ

xAxis

hep.aida.IAxis xAxis

yAxis

hep.aida.IAxis yAxis

zAxis

hep.aida.IAxis zAxis

binner3D

Binner3D binner3D

Class hep.aida.ref.histogram.Measurement extends AIDAObservable implements Serializable

Serialized Fields

value

double value

errorPlus

double errorPlus

errorMinus

double errorMinus

Class hep.aida.ref.histogram.Profile extends AbstractBaseHistogram implements Serializable

Serialized Fields

options

java.lang.String options

Class hep.aida.ref.histogram.Profile1D extends Profile implements Serializable

Serialized Fields

hist

Histogram2D hist

Class hep.aida.ref.histogram.Profile2D extends Profile implements Serializable

Serialized Fields

hist

Histogram3D hist

Class hep.aida.ref.histogram.UnfillableHistogramException extends java.lang.RuntimeException implements Serializable


Package hep.aida.ref.histogram.binner

Class hep.aida.ref.histogram.binner.AbstractBinner1D extends java.lang.Object implements Serializable

Serialized Fields

entries

int[] entries

binCenter

double[] binCenter

sumW

double[] sumW

sumWW

double[] sumWW

sumXW

double[] sumXW

sumXXW

double[] sumXXW

bins

int bins

Class hep.aida.ref.histogram.binner.BasicBinner1D extends AbstractBinner1D implements Serializable

Class hep.aida.ref.histogram.binner.BasicBinner2D extends java.lang.Object implements Serializable

Serialized Fields

entries

int[][] entries

heights

double[][] heights

plusErrors

double[][] plusErrors

meansX

double[][] meansX

rmssX

double[][] rmssX

meansY

double[][] meansY

rmssY

double[][] rmssY

xBins

int xBins

yBins

int yBins

Class hep.aida.ref.histogram.binner.BasicBinner3D extends java.lang.Object implements Serializable

Serialized Fields

entries

int[][][] entries

heights

double[][][] heights

plusErrors

double[][][] plusErrors

meansX

double[][][] meansX

rmssX

double[][][] rmssX

meansY

double[][][] meansY

rmssY

double[][][] rmssY

meansZ

double[][][] meansZ

rmssZ

double[][][] rmssZ

xBins

int xBins

yBins

int yBins

zBins

int zBins

Class hep.aida.ref.histogram.binner.EfficiencyBinner1D extends AbstractBinner1D implements Serializable

Serialized Fields

error

double[] error

Package hep.aida.ref.tree

Class hep.aida.ref.tree.TreeFolderDoesNotExistException extends java.lang.IllegalArgumentException implements Serializable

Class hep.aida.ref.tree.TreeObjectAlreadyExistException extends java.lang.IllegalArgumentException implements Serializable


Package hep.aida.ref.tuple

Class hep.aida.ref.tuple.TupleEvent extends java.util.EventObject implements Serializable

Serialized Fields

first

int first

last

int last

Package jhplot

Class jhplot.DrawOptions extends java.lang.Object implements Serializable

Serialized Fields

lpp

jplot.LinePars lpp

FontTitle

java.awt.Font FontTitle

FontAxis

java.awt.Font FontAxis

Class jhplot.F1D extends DrawOptions implements Serializable

serialVersionUID: 1L

Serialized Fields

min

double min

max

double max

points

int points

name

java.lang.String name

title

java.lang.String title

x

double[] x

y

double[] y

function

graph.ParseFunction function

iname

hep.aida.IFunction iname

isParsed

boolean isParsed

Class jhplot.F2D extends DrawOptions implements Serializable

serialVersionUID: 1L

Serialized Fields

Xmin

double Xmin

Xmax

double Xmax

Ymin

double Ymin

Ymax

double Ymax

points

int points

title

java.lang.String title

name

java.lang.String name

x

double[] x

y

double[] y

z

double[] z

function

graph.ParseFunction function

isParsed

boolean isParsed

iname

hep.aida.IFunction iname

Class jhplot.F3D extends DrawOptions implements Serializable

serialVersionUID: 1L

Serialized Fields

Xmin

double Xmin

Xmax

double Xmax

Ymin

double Ymin

Ymax

double Ymax

Zmin

double Zmin

Zmax

double Zmax

points

int points

title

java.lang.String title

name

java.lang.String name

x

double[] x

y

double[] y

z

double[] z

function

graph.ParseFunction function

isParsed

boolean isParsed

iname

hep.aida.IFunction iname

Class jhplot.FND extends DrawOptions implements Serializable

serialVersionUID: 1L

Serialized Fields

min

double min

max

double max

points

int points

name

java.lang.String name

title

java.lang.String title

x

double[] x

y

double[] y

z

double[] z

isParsed

boolean isParsed

isEvaluated

boolean isEvaluated

jep

org.lsmp.djep.xjep.XJep jep

node

org.nfunk.jep.Node node

processed

org.nfunk.jep.Node processed

simp

org.nfunk.jep.Node simp

value

java.lang.Object value

avars

java.lang.String[] avars

diff

org.nfunk.jep.Node diff

fixedVars

java.lang.String fixedVars

Class jhplot.GHFrame extends GHPanel implements Serializable

serialVersionUID: 1L

Serialized Fields

set

boolean set

mainFrame

javax.swing.JFrame mainFrame

memMon

utils.MemoryMonitor memMon

infoPanel

javax.swing.JPanel infoPanel

N1final

int N1final

N2final

int N2final

N1edit

int N1edit

N2edit

int N2edit

bar

javax.swing.JMenuBar bar

menu

javax.swing.JMenu menu

about

javax.swing.JMenu about

item11

javax.swing.JMenuItem item11

item00

javax.swing.JMenuItem item00

item01

javax.swing.JMenuItem item01

item02

javax.swing.JMenuItem item02

item03

javax.swing.JMenuItem item03

item04

javax.swing.JMenuItem item04

item05

javax.swing.JMenuItem item05

item06

javax.swing.JMenuItem item06

item12

javax.swing.JMenuItem item12

Class jhplot.GHMargin extends javax.swing.JPanel implements Serializable

serialVersionUID: 1L

Serialized Fields

selection

java.awt.Rectangle selection

sname

java.lang.String sname

f

java.awt.Font f

c

java.awt.Color c

fm

java.awt.FontMetrics fm

textWidth

int textWidth

textHeight

int textHeight

recColor

java.awt.Color recColor

recColor1

java.awt.Color recColor1

bakColor

java.awt.Color bakColor

borderColor

java.awt.Color borderColor

win

GHPanel win

rotation

int rotation

sinfo

java.lang.String sinfo

dXsize

int dXsize

dYsize

int dYsize

menu

javax.swing.JPopupMenu menu

scml

jhplot.GHMargin.SelectionChangeMouseListener scml

iedit

javax.swing.JMenuItem iedit

icolor

javax.swing.JMenuItem icolor

imargin1

javax.swing.JMenuItem imargin1

imargin2

javax.swing.JMenuItem imargin2

imargin3

javax.swing.JMenuItem imargin3

idefault

javax.swing.JMenuItem idefault

Class jhplot.GHPanel extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

CanvasPanel

javax.swing.JPanel CanvasPanel

mainPanel

javax.swing.JPanel mainPanel

topPanel

GHMargin topPanel

topSize

int topSize

leftPanel

GHMargin leftPanel

leftSize

int leftSize

rightPanel

GHMargin rightPanel

rightSize

int rightSize

bottomPanel

GHMargin bottomPanel

bottomSize

int bottomSize

backMargin

java.awt.Color backMargin

gTitleText

java.lang.String gTitleText

gTitleFont

java.awt.Font gTitleFont

gTitleColor

java.awt.Color gTitleColor

Width

int Width

Hight

int Hight

Class jhplot.H1D extends DrawOptions implements Serializable

serialVersionUID: 1L

Serialized Fields

h1

Histogram1D h1

axis

hep.aida.IAxis axis

min

double min

max

double max

bins

int bins

edges

double[] edges

title

java.lang.String title

Class jhplot.H2D extends DrawOptions implements Serializable

serialVersionUID: 1L

Serialized Fields

h1

Histogram2D h1

minX

double minX

maxX

double maxX

minY

double minY

maxY

double maxY

binsX

int binsX

binsY

int binsY

region

int region

xAx

hep.aida.IAxis xAx

yAy

hep.aida.IAxis yAy

title

java.lang.String title

Class jhplot.H3D extends Histogram3D implements Serializable

serialVersionUID: 1L

Serialized Fields

title

java.lang.String title

Class jhplot.HChart extends GHFrame implements Serializable

serialVersionUID: 1L

Serialized Fields

cp

org.jfree.chart.ChartPanel[][] cp

chart

org.jfree.chart.JFreeChart[][] chart

cdat

java.lang.Object[][] cdat

set

boolean set

title

java.lang.String[][] title

titleX

java.lang.String[][] titleX

titleY

java.lang.String[][] titleY

Bins

int Bins

Min

double Min

Max

double Max

sname

java.lang.String sname

m_Close

jhplot.HChart.Thread1 m_Close

Class jhplot.HGraph extends GHFrame implements Serializable

serialVersionUID: 1L

Serialized Fields

sc

org.jgrapht.ext.JGraphModelAdapter<V,E>[][] sc

jp

org.jgraph.JGraph[][] jp

ls

org.jgrapht.ListenableGraph<V,E>[][] ls

set

boolean set

m_Close

jhplot.HGraph.Thread1 m_Close

Class jhplot.HPlot extends GHFrame implements Serializable

serialVersionUID: 1L

Serialized Fields

lf

java.lang.String lf

graph

jplot.Graph[][] graph

gs

jplot.GraphSettings[][] gs

sc

jplot.StyleChooser[][] sc

frames

javax.swing.JFrame[][] frames

jp

jplot.JPlot[][] jp

plotType

int[][] plotType

data

java.util.Vector<E>[][] data

m_IAnalysisFactory

hep.aida.IAnalysisFactory m_IAnalysisFactory

m_IHistogramFactory

hep.aida.IHistogramFactory m_IHistogramFactory

m_ITree

hep.aida.ITree m_ITree

m_IFitFactory

hep.aida.IFitFactory m_IFitFactory

m_IFunctionFactory

hep.aida.IFunctionFactory m_IFunctionFactory

m_Close

jhplot.HPlot.Thread1 m_Close

help_file

java.lang.String help_file

Class jhplot.HPlot3D extends GHFrame implements Serializable

serialVersionUID: 1L

Serialized Fields

set

boolean set

jpp

jplot3d.draw.SurfaceCanvas[][] jpp

sp

jplot3d.SetOptions[][] sp

m_Close

jhplot.HPlot3D.Thread1 m_Close

help_file

java.lang.String help_file

Class jhplot.HPlot3DS extends GHFrame implements Serializable

serialVersionUID: 1L

Serialized Fields

set

boolean set

jpp

jplot3ds.MainComponent[][] jpp

m_Close

jhplot.HPlot3DS.Thread1 m_Close

xsize

int xsize

ysize

int ysize

help_file

java.lang.String help_file

Class jhplot.HProf1D extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

h1

Profile1D h1

axis

hep.aida.IAxis axis

min

double min

max

double max

bins

int bins

edges

double[] edges

title

java.lang.String title

Class jhplot.HProf2D extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

h1

Profile2D h1

minX

double minX

maxX

double maxX

minY

double minY

maxY

double maxY

binsX

int binsX

binsY

int binsY

xAx

hep.aida.IAxis xAx

yAy

hep.aida.IAxis yAy

region

int region

title

java.lang.String title

Class jhplot.HTable extends javax.swing.JFrame implements Serializable

serialVersionUID: 1L

Serialized Fields

table

com.vlsolutions.swing.table.VLJTable table

closeButton

javax.swing.JButton closeButton

filter

javax.swing.JButton filter

control

javax.swing.JPanel control

Class jhplot.HView3D extends GHFrame implements Serializable

serialVersionUID: 1L

Serialized Fields

set

boolean set

canv

Canvas3d[][] canv

jpp

javax.swing.JPanel[][] jpp

md

Model3d[][] md

m_Close

jhplot.HView3D.Thread1 m_Close

xsize

int xsize

ysize

int ysize

Class jhplot.JaPlot extends javax.swing.JComponent implements Serializable

serialVersionUID: 1L

Serialized Fields

X

int X

Y

int Y

MarginLeft

double MarginLeft

MarginRight

double MarginRight

MarginTop

double MarginTop

MarginBottom

double MarginBottom

MarginX

double MarginX

MarginY

double MarginY

dfb

java.text.DecimalFormat dfb

ja

JaAxes[][] ja

padX

double[][] padX

padY

double[][] padY

padWidth

double[][] padWidth

padHight

double[][] padHight

labelX

JaText[][] labelX

labelY

JaText[][] labelY

statbox

JaTextBox[][] statbox

labelXshift

double labelXshift

labelYshift

double labelYshift

gtitle

java.lang.String gtitle

showStatBox

boolean[][] showStatBox

initList

java.util.ArrayList<E> initList

feyn

japlot.jaxodraw.JaxoMainPanel feyn

m_IAnalysisFactory

hep.aida.IAnalysisFactory m_IAnalysisFactory

m_IHistogramFactory

hep.aida.IHistogramFactory m_IHistogramFactory

m_ITree

hep.aida.ITree m_ITree

m_IFitFactory

hep.aida.IFitFactory m_IFitFactory

m_IFunctionFactory

hep.aida.IFunctionFactory m_IFunctionFactory

title

java.lang.String title
The current directory.


N1final

int N1final

N2final

int N2final

N1

int N1

N2

int N2

xsize

int xsize

ysize

int ysize

keyspace

double keyspace

isSet

boolean isSet

fontLabel

java.awt.Font fontLabel

fontTitle

java.awt.Font fontTitle

Class jhplot.P0D extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

data

java.util.ArrayList<E> data

bin

DynamicBin1D bin

title

java.lang.String title

Class jhplot.P1D extends DrawOptions implements Serializable

serialVersionUID: 1L

Serialized Fields

data

jplot.DataArray data

title

java.lang.String title

dimen

int dimen

Class jhplot.P2D extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

data

jplot.DataArray2D data

title

java.lang.String title

c

java.awt.Color c

s

int s

Class jhplot.P3D extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

data

jplot.DataArray3D data

title

java.lang.String title

c

java.awt.Color c

w

int w

Class jhplot.PND extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

data

java.util.ArrayList<E> data

title

java.lang.String title

dimension

int dimension

Class jhplot.SHPlot extends HPlot implements Serializable

Class jhplot.SHPlot3D extends HPlot3D implements Serializable

Class jhplot.SJaPlot extends JaPlot implements Serializable


Package jhplot.io

Class jhplot.io.RecordsFileException extends java.lang.Exception implements Serializable

serialVersionUID: 1L


Package jhplot.jadraw

Class jhplot.jadraw.JaArcObject extends JaObject implements Serializable

Serialized Fields

x1

int x1
The points defining this arc object.


x2

int x2
The points defining this arc object.


y1

int y1
The points defining this arc object.


y2

int y2
The points defining this arc object.


stroke

float stroke
The stroke of this arc object.


dash

float dash
The dash size of the arc object (only for ghost and scalar arcs).


freq

float freq
The frequency of the arc object (only for photon and gluon arcs).


stangle

int stangle
The starting angle of this arc object.


arrow

boolean arrow
A boolean variable that indicates whether to draw an arrow on this arc object or not (not used for photon and gluon arcs).


flip

boolean flip
A boolean variable that indicates whether the arrow should be flipped with respect to the initial orientation or not (only used for fermion ghost and scalar arcs).


end

boolean end
A boolean variable that indicates wether this arc object has an arrow at the end (true) or in the mid (false); used only for fermionic arcs.


amp

int amp
The amplitude for this arc object.


doubleLine

boolean doubleLine
A boolean variable that indicates whether this arc should be drawn with double lines.


dlSeparation

float dlSeparation
The separation of the double lines.


isRes

boolean isRes

Class jhplot.jadraw.JaAxes extends JaFillObject implements Serializable

serialVersionUID: 1L

Serialized Fields

NAXES

int NAXES

X

int X

Y

int Y

data

java.util.Vector<E> data

pad

int[] pad

min

double[] min

max

double[] max

diff

double[] diff

inv

double[] inv

ticLabel

java.lang.String[][] ticLabel

ticNumber

double[][] ticNumber

numberOfTics

int[] numberOfTics

numberOfTicsEstimated

int[] numberOfTicsEstimated

maxLabelWidth

int[] maxLabelWidth

maxLabelHight

int[] maxLabelHight

gridColor

java.awt.Color gridColor

show

boolean[] show

showMirror

boolean[] showMirror

showGrid

boolean[] showGrid

labelFont

java.awt.Font labelFont

labelColor

java.awt.Color labelColor

labelRotation

double labelRotation

labelSpace

double[] labelSpace

expForm

int expForm

logScale

boolean[] logScale

rotateTic

boolean[] rotateTic

useTicLabels

boolean[] useTicLabels

AxisExponent

int[] AxisExponent

axisLength

double[] axisLength

leftMargin

double leftMargin

rightMargin

double rightMargin

bottomMargin

double bottomMargin

topMargin

double topMargin

ticLength

double[] ticLength

subticLength

double[] subticLength

subticNumber

int[] subticNumber

axesArrow

int[] axesArrow

autoRange

boolean[] autoRange

plotType

int plotType

statistics

java.lang.String[] statistics

isContour

boolean isContour

ContourLevels

int ContourLevels

isContourBar

boolean isContourBar

ContourBinX

int ContourBinX

ContourBinY

int ContourBinY

isContourGray

boolean isContourGray

contour

jplot.Contour contour

h2d

H2D h2d

isShowKey

boolean isShowKey

isGridFront

boolean isGridFront

Class jhplot.jadraw.JaBlob extends JaFillObject implements Serializable

serialVersionUID: 1L

Serialized Fields

rotAngle

int rotAngle
The rotation angle of the ellipse


transp

float transp

fill

boolean fill

Class jhplot.jadraw.JaBox extends JaFillObject implements Serializable

serialVersionUID: 1L

Serialized Fields

transp

float transp

fill

boolean fill

Class jhplot.jadraw.JaFArc extends JaArcObject implements Serializable

serialVersionUID: 1L

Class jhplot.jadraw.JaFillObject extends JaObject implements Serializable

Serialized Fields

fillcolor

java.awt.Color fillcolor
The fill color of this fillObject.


stroke

float stroke
The stroke (line width) of the border line of this fillObject.

Class jhplot.jadraw.JaFLine extends JaLineObject implements Serializable

serialVersionUID: 1L

Class jhplot.jadraw.JaFLoop extends JaLoopObject implements Serializable

serialVersionUID: 1L

Class jhplot.jadraw.JaGArc extends JaArcObject implements Serializable

serialVersionUID: 1L

Class jhplot.jadraw.JaGlArc extends JaArcObject implements Serializable

serialVersionUID: 1L

Class jhplot.jadraw.JaGLine extends JaLineObject implements Serializable

serialVersionUID: 1L

Class jhplot.jadraw.JaGlLine extends JaLineObject implements Serializable

serialVersionUID: 1L

Serialized Fields

angamp

int angamp

Class jhplot.jadraw.JaGlLoop extends JaLoopObject implements Serializable

serialVersionUID: 1L

Class jhplot.jadraw.JaGLoop extends JaLoopObject implements Serializable

serialVersionUID: 1L

Class jhplot.jadraw.JaKey extends JaObject implements Serializable

serialVersionUID: 1L

Serialized Fields

textString

java.lang.String textString
The input text string representing this label object.


rtext

graph.RTextLine rtext

stext

java.lang.String stext

textFont

java.awt.Font textFont
The font of this label object.


rotAngle

int rotAngle

availableFonts

java.lang.String[] availableFonts

key

int key

keycolor

java.awt.Color keycolor

keyspace

double keyspace

penwidth

float penwidth

padX

int padX

padY

int padY

type

int type

Class jhplot.jadraw.JaLatexText extends JaObject implements Serializable

serialVersionUID: 1L

Serialized Fields

textString

java.lang.String textString
The text string specifying this JaLatexText object.


allign

int allign
An integer specifying how the text is alligned with respect to the current position.


latexfs

int latexfs
An integer specifying the LaTeX font size.


latexPanel

javax.swing.JPanel latexPanel

latexLabel

javax.swing.JLabel latexLabel

rotAngle

int rotAngle

Class jhplot.jadraw.JaLine extends JaLineObject implements Serializable

serialVersionUID: 1L

Serialized Fields

transp

float transp

Class jhplot.jadraw.JaLineObject extends JaObject implements Serializable

Serialized Fields

stroke

float stroke
The stroke (line width) of this line object.


dash

float dash
The dash size of the line object (only used for ghost and scalar lines).


freq

float freq
The frequency of the line object (only used for photon, gluon and zigzag lines).


arrow

boolean arrow
A boolean variable that indicates wether this line object has an arrow or not.


end

boolean end
A boolean variable that indicates wether this line object has an arrow in the end (true) or at the end (false); used only for fermionic lines.


flip

boolean flip
Boolean variable that indicates whether the arrow of this line object should be flipped with respect to the initial orientation or not.


inflip

boolean inflip
A boolean variable that specifies the internal flip with respect to the relative width and height of this line.


symm

boolean symm
The symmetry of a gluon, photon or zigzag line, (the direction in which the wiggles start).


back

boolean back
A boolean variable that specifies the internal flip with respect to the handle that the user grabs to drag this line.


amp

int amp
The amplitude for photon, gluon and zigzag lines.


doubleLine

boolean doubleLine
A boolean variable that indicates whether this object should be drawn with double lines.


dlSeparation

float dlSeparation
The separation of the double lines.

Class jhplot.jadraw.JaLoopObject extends JaObject implements Serializable

serialVersionUID: 1L

Serialized Fields

stroke

float stroke
The stroke of this loop object.


dash

float dash
The dash size of the loop object (only used for ghost and scalar loops).


freq

float freq
The frequency of the loop object (only used for photon and gluon loops).


arrow

boolean arrow
A Boolean variable that indicates whether to draw an arrow on this loop object or not (not used for photon and gluon loops).


flip

boolean flip
A boolean variable that indicates whether the arrow should be flipped with respect to the initial orientation or not (not used for photon and gluon loops).


amp

int amp
The amplitude for this loop object (only used for photon and gluon loops).


doubleLine

boolean doubleLine
A boolean variable that indicates whether this object should be drawn with double lines.


dlSeparation

float dlSeparation
The separation of the double lines.

Class jhplot.jadraw.JaObject extends java.lang.Object implements Serializable

serialVersionUID: 314159L

Serialized Fields

x

int x
The x coordinate of this JaObject.


y

int y
The y coordinate of this JaObject.


relw

int relw
The relative width of this JaObject.


relh

int relh
The relative height of this JaObject.


xx

float xx
The x coordinate in NDC .


yy

float yy
The y coordinate in NDC.


xu

double xu
The x coordinate in USER .


yu

double yu
The y coordinate in USER.


isUser

boolean isUser

rrelw

float rrelw
The relative width in NDC.


rrelh

float rrelh
The relative height in NDC.


urelw

double urelw
The relative width in USER.


urelh

double urelh
The relative height in USER.


color

java.awt.Color color
The color of this JaObject.


gp

java.awt.geom.GeneralPath gp

boundingbox

double[] boundingbox
The bounding box of this JaObject.


marked

boolean marked
Determines whether this JaObject is part of a group or not

Class jhplot.jadraw.JaPArc extends JaArcObject implements Serializable

serialVersionUID: 1L

Class jhplot.jadraw.JaPLine extends JaLineObject implements Serializable

serialVersionUID: 1L

Class jhplot.jadraw.JaPLoop extends JaLoopObject implements Serializable

serialVersionUID: 1L

Class jhplot.jadraw.JaSArc extends JaArcObject implements Serializable

serialVersionUID: 1L

Class jhplot.jadraw.JaSLine extends JaLineObject implements Serializable

serialVersionUID: 1L

Class jhplot.jadraw.JaSLoop extends JaLoopObject implements Serializable

serialVersionUID: 1L

Class jhplot.jadraw.JaText extends JaObject implements Serializable

serialVersionUID: 1L

Serialized Fields

textString

java.lang.String textString
The input text string representing this label object.


rtext

graph.RTextLine rtext

stext

java.lang.String stext

type

int type

padX

int padX

padY

int padY

textFont

java.awt.Font textFont
The font of this label object.


rotAngle

int rotAngle

availableFonts

java.lang.String[] availableFonts

Class jhplot.jadraw.JaTextBox extends JaFillObject implements Serializable

serialVersionUID: 1L

Serialized Fields

textString

java.lang.String textString

rtext

graph.RTextLine rtext

stext

java.lang.String stext

multitext

java.lang.String[] multitext

textFont

java.awt.Font textFont
The font of this label object.


rotAngle

int rotAngle

isMultiline

boolean isMultiline

ypos

float[] ypos

xpos

float[] xpos

shadowColor

java.awt.Color shadowColor

shadowXOffset

int shadowXOffset

shadowYOffset

int shadowYOffset

isShadow

boolean isShadow

type

int type

padX

int padX

padY

int padY

Class jhplot.jadraw.JaVertex extends JaObject implements Serializable

Serialized Fields

stroke

float stroke
The stroke (line width) of this object.

Class jhplot.jadraw.JaVertexT1 extends JaVertex implements Serializable

serialVersionUID: 1L

Class jhplot.jadraw.JaVertexT2 extends JaVertex implements Serializable

serialVersionUID: 1L

Serialized Fields

rotAngle

int rotAngle
The rotation angle of the Vertex


fillcolor

java.awt.Color fillcolor
The fill color of this fillObject.

Class jhplot.jadraw.JaVertexT3 extends JaVertex implements Serializable

serialVersionUID: 1L

Class jhplot.jadraw.JaVertexT4 extends JaVertex implements Serializable

serialVersionUID: 1L

Class jhplot.jadraw.JaVertexT5 extends JaFillObject implements Serializable

serialVersionUID: 1L

Serialized Fields

x1

double x1

y1

double y1

x2

double x2

y2

double y2

x3

double x3

y3

double y3

Class jhplot.jadraw.JaVertexT6 extends JaVertex implements Serializable

serialVersionUID: 1L

Class jhplot.jadraw.JaZigZagLine extends JaLineObject implements Serializable

serialVersionUID: 1L


Package jhplot.root

Class jhplot.root.RootHistogramBrowser extends javax.swing.JPanel implements Serializable

serialVersionUID: 1L

Serialized Fields

plot

jas.hist.JASHist plot

tree

javax.swing.JTree tree

Package jhplot.shapes

Class jhplot.shapes.Arrow extends HShape implements Serializable

serialVersionUID: 1L

Serialized Fields

type

int type

Class jhplot.shapes.Circle extends HShape implements Serializable

serialVersionUID: 1L

Class jhplot.shapes.Ellipse extends HShape implements Serializable

serialVersionUID: 1L

Class jhplot.shapes.HShape extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

width

double width

length

double length

f

java.awt.Font f

rotate

double rotate

text

java.lang.String text

strock

java.awt.Stroke strock

color

java.awt.Color color

X1

double X1

Y1

double Y1

X2

double X2

Y2

double Y2

transp

float transp

whoAm

int whoAm

fill

boolean fill

XX

double[] XX

YY

double[] YY

usePosition

int usePosition

Class jhplot.shapes.Line extends HShape implements Serializable

serialVersionUID: 1L

Class jhplot.shapes.Picture extends HShape implements Serializable

serialVersionUID: 1L

Serialized Fields

imageFile

java.lang.String imageFile

image

java.awt.Image image

Class jhplot.shapes.Rectan extends HShape implements Serializable

serialVersionUID: 1L

Class jhplot.shapes.Text extends HShape implements Serializable

serialVersionUID: 1L


Package jhplot.v3d

Class jhplot.v3d.Animation extends java.applet.Applet implements Serializable

Serialized Fields

thread

java.lang.Thread thread

threadSuspended

boolean threadSuspended

md

Model3d md

backBuffer

java.awt.Image backBuffer

backGC

java.awt.Graphics backGC

delay

int delay

painted

boolean painted

Class jhplot.v3d.Canvas3d extends java.awt.Canvas implements Serializable

serialVersionUID: 1L

Serialized Fields

md

Model3d md

backBuffer

java.awt.Image backBuffer

backGC

java.awt.Graphics backGC

prefSize

java.awt.Dimension prefSize

minSize

java.awt.Dimension minSize

painted

boolean painted

c

java.awt.Color c

scml

jhplot.v3d.Canvas3d.SelectionChangeMouseListener scml

menu

javax.swing.JPopupMenu menu

orot

jhplot.v3d.Matrix3d orot

otrans

jhplot.v3d.Matrix3d otrans

oscale

jhplot.v3d.Matrix3d oscale

ominScale

float ominScale

omaxScale

float omaxScale

Class jhplot.v3d.Cone extends Pyramid implements Serializable

Class jhplot.v3d.Cube extends Object3d implements Serializable

Class jhplot.v3d.Cylinder extends Prism implements Serializable

Class jhplot.v3d.Editor3d extends javax.swing.JDialog implements Serializable

serialVersionUID: 1L

Serialized Fields

tabbedPane

javax.swing.JTabbedPane tabbedPane

closeButton

javax.swing.JButton closeButton

win

Canvas3d win

md

Model3d md

jb1

javax.swing.JButton jb1

jb2

javax.swing.JButton jb2

jb3

javax.swing.JButton jb3

jb4

javax.swing.JButton jb4

jb5

javax.swing.JButton jb5

jb6

javax.swing.JButton jb6

jb7

javax.swing.JButton jb7

jb8

javax.swing.JButton jb8

jb9

javax.swing.JButton jb9

jb10

javax.swing.JButton jb10

Class jhplot.v3d.Object3d extends Position implements Serializable

serialVersionUID: 1L

Serialized Fields

name

java.lang.String name

md

Model3d md

vert

Vector3d[] vert

overt

Vector3d[] overt

norm

Vector3d[] norm

onorm

Vector3d[] onorm

center

Vector3d center

ocenter

Vector3d ocenter

face

jhplot.v3d.Face3d[] face

nvert

int nvert

cvert

int cvert

nface

int nface

cface

int cface

Class jhplot.v3d.Prism extends Object3d implements Serializable

serialVersionUID: 1L

Class jhplot.v3d.Pyramid extends Object3d implements Serializable

Class jhplot.v3d.Sphere extends Object3d implements Serializable


Package jminhep.cluster

Class jminhep.cluster.DataHolder extends java.lang.Object implements Serializable

Serialized Fields

Points

java.util.ArrayList<E> Points
Array of data points


Min

DataPoint Min
Min value of the data


Max

DataPoint Max
Max value of the data


names

java.lang.String[] names
Attributes


Dim

int Dim
Dimension of Attributes


relation

java.lang.String relation
Relation name


xmin

double[] xmin

xmax

double[] xmax

in_xmin

int[] in_xmin

in_xmax

int[] in_xmax

Class jminhep.cluster.DataPoint extends java.lang.Object implements Serializable

Serialized Fields

a

double[] a
Attributes


Dimena

int Dimena
Dimension of Attributes


clusterNumber

int clusterNumber
Assigned cluster



jHepWork 1.7 (C) Chekanov