This object is a list where each component is a vector of
grid points in a particular dimension. For example
grid<- structure(list( x= seq( -1,1,,20), y= seq( 0,1,,15)), class= "gridList"
would create this object for a 2d grid with 20 and 15 points over the
ranges [-1,1] and [0,1].
The component names ( "x" and "y" in this case) are optional.
The function gridListInfo
extracts some summary information that is used to support the summary function for this class.