This module handles dictionary generation of classes for use in the Python environment. Dictionaries are kept in $ROOTPY_DATA for later use so they are not repeatedly regenerated
This module contains base classes defining core functionality
Bases: rootpy.core.Object
Handle special cases like TGraph where the ROOT constructor does not take name/title
Bases: object
Overrides TObject methods. Name and title for TObject-derived classes are optional. If no name is specified, a UUID is used to ensure uniqueness.
http://stackoverflow.com/questions/1175208/ elegant-python-function-to-convert-camelcase-to-camel-case
Wrappers for basic types that are compatible with ROOT TTrees
Bases: rootpy.types.Variable
This is a variable containing a Boolean type
Bases: rootpy.types.VariableArray
This is an array of Booleans
Bases: rootpy.types.Column
Bases: rootpy.types.Column
Bases: rootpy.types.Variable
This is a variable containing a character type
Bases: rootpy.types.VariableArray
This is an array of characters
Bases: rootpy.types.Column
Bases: rootpy.types.Column
Bases: rootpy.types.Variable
This is a variable containing a double
Bases: rootpy.types.VariableArray
This is an array of doubles
Bases: rootpy.types.Column
alias of DoubleArray
Bases: rootpy.types.Column
Bases: rootpy.types.Variable
This is a variable containing a float
Bases: rootpy.types.VariableArray
This is an array of floats
Bases: rootpy.types.Column
alias of FloatArray
Bases: rootpy.types.Column
Bases: rootpy.types.Variable
This is a variable containing an integer
Bases: rootpy.types.VariableArray
This is an array of integers
Bases: rootpy.types.Column
Bases: rootpy.types.Column
Bases: rootpy.types.Variable
This is a variable containing a long
Bases: rootpy.types.VariableArray
This is an array of longs
Bases: rootpy.types.Column
Bases: rootpy.types.Column
Bases: rootpy.types.Column
Bases: rootpy.types.Variable
This is a variable containing an integer
Bases: rootpy.types.VariableArray
This is an array of integers
Bases: rootpy.types.Column
alias of ShortArray
Bases: rootpy.types.Column
Bases: rootpy.types.Variable
This is a variable containing an unsigned character type
Bases: rootpy.types.VariableArray
This is an array of unsigned characters
Bases: rootpy.types.Column
alias of UCharArray
Bases: rootpy.types.Column
Bases: rootpy.types.Variable
This is a variable containing an unsigned integer
Bases: rootpy.types.VariableArray
This is an array of unsigned integers
Bases: rootpy.types.Column
Bases: rootpy.types.Column
Bases: rootpy.types.Variable
This is a variable containing an unsigned long
Bases: rootpy.types.VariableArray
This is of unsigned longs
Bases: rootpy.types.Column
alias of ULongArray
Bases: rootpy.types.Column
Bases: rootpy.types.Variable
This is a variable containing a short
Bases: rootpy.types.VariableArray
This is an array of unsigned shorts
Bases: rootpy.types.Column
alias of UShortArray
Bases: rootpy.types.Column
Bases: array.array
This is the base class for all variables
Bases: array.array
This is the base class for all array variables
This module handles creation of the user-data area