Vector< T > Class Template Reference

#include <Vector.H>

List of all members.


Detailed Description

template<class T>
class Vector< T >

one dimensional dynamic array

Vector is a resizable one-dimensional array with constant-time random access and range checking. The template type T must have a default constructor, a copy constructor, and an assignment operator.

Public Member Functions

 Vector ()
virtual ~Vector ()
 Vector (const Vector< T > &invec)
 Vector (const std::vector< T > &invec)
Vector< T > & operator= (const std::vector< T > &invec)
Vector< T > & operator= (const Vector< T > &invec)
Vector< T > & assign (const T &inval)
 assign a scalar to every element of the vector
 Vector (unsigned int isize)
void clear ()
size_t size () const
 Vector (unsigned int isize, const T &value)
T & operator[] (unsigned int n)
const T & operator[] (unsigned int n) const
const T & back () const
void swap (Vector< T > &other)
void push_back (const T &in)
void append (const Vector< T > &invec)
void resize (unsigned int isize)
void reserve (size_t isize)
size_t capacity () const
void resize (unsigned int isize, const T &value)
void sort ()
std::vector< T > & stdVector ()
 Returns std::vector under the hood.
const std::vector< T > & constStdVector () const

Private Member Functions

unsigned int initFunc ()

Private Attributes

std::vector< T > v


Constructor & Destructor Documentation

template<class T>
Vector< T >::Vector (  )  [inline]

Default constructor. Creates a Vector of zero length with null data.

template<class T>
virtual Vector< T >::~Vector (  )  [inline, virtual]

Destructor.

template<class T>
Vector< T >::Vector ( const Vector< T > &  invec  )  [inline]

Copy constructor.

template<class T>
Vector< T >::Vector ( const std::vector< T > &  invec  )  [inline]

conversion constructor

template<class T>
Vector< T >::Vector ( unsigned int  isize  )  [inline]

Constructs a Vector with given number of elements.\

{ Arguments:} \ size (not modified): number of elements of Vector to construct.\ { This:} \ -------The object is modified----------

template<class T>
Vector< T >::Vector ( unsigned int  isize,
const T &  value 
) [inline]

Constructs a Vector with given number of elements and constant value.\

{ Arguments:} \ size (not modified): number of elements of Vector to construct.\ value (not modified): value to set every element to.\ { This:} \ -------The object is modified----------


Member Function Documentation

template<class T>
Vector<T>& Vector< T >::operator= ( const std::vector< T > &  invec  )  [inline]

template<class T>
Vector<T>& Vector< T >::operator= ( const Vector< T > &  invec  )  [inline]

template<class T>
Vector<T>& Vector< T >::assign ( const T &  inval  )  [inline]

assign a scalar to every element of the vector

[NOTE: cant use operator=() for this because it would be ambiguous with the (int) constructor for number T types.]

Referenced by MultilevelLinearOp< T >::assign(), BaseLevelTGA< T, TFlux, TFR >::computeDiffusion(), AMRTGA< T >::oneStep(), and BaseLevelTGA< T, TFlux, TFR >::updateSoln().

template<class T>
void Vector< T >::clear (  )  [inline]

template<class T>
size_t Vector< T >::size (  )  const [inline]

size function. returns current size of Vector

Referenced by LayoutData< T >::allocate(), BoxLayoutData< T >::allocateGhostVector(), AMRTGA< T >::AMRTGA(), Vector< IntVectSet * >::append(), Vector< IntVectSet * >::assign(), BaseLevelTGA< T, TFlux, TFR >::BaseLevelTGA(), Vector< IntVectSet * >::clear(), MultiGrid< T >::clear(), BoxLayoutData< T >::clear(), AMRMultiGrid< T >::clear(), AMRTGA< T >::createData(), TreeIntVectSetIterator::define(), MultilevelLinearOp< T >::define(), MiniIFFAB< T >::define(), MultilevelLinearOp< T >::dotProduct(), ShiftIterator::end(), AMRMultiGrid< T >::getAllOperators(), ParmParse::getarr(), MiniIFFAB< T >::getFaceSubset(), MiniIVFAB< T >::getIndex(), MiniIFFAB< T >::getIndex(), AMRMultiGrid< T >::getOperatorsMG(), AMRMultiGrid< T >::getOperatorsOp(), MiniIFFAB< T >::linearIn(), BaseIVFAB< T >::linearIn(), BaseIFFAB< T >::linearIn(), linearListOut(), linearListSize(), MiniIVFAB< T >::linearOut(), MiniIFFAB< T >::linearOut(), BaseIVFAB< T >::linearOut(), BaseIFFAB< T >::linearOut(), LSProblem< dim >::momentBounds(), ShiftIterator::ok(), TagSet::ok(), CopyIterator::ok(), Vector< IntVectSet * >::operator=(), Vector< IntVectSet * >::operator[](), MultilevelLinearOp< T >::preCond(), ParmParse::queryarr(), regionGather(), AMRMultiGrid< T >::relaxOnlyHomogeneous(), AMRTGA< T >::resetAlphaAndBeta(), BaseLevelTGA< T, TFlux, TFR >::resetSolverAlphaAndBeta(), MultilevelLinearOp< T >::residual(), Vector< IntVectSet * >::resize(), IFData< dim >::searchNormalDir(), VoFStencil::setAllVariables(), IFData< dim >::setChangingDirection(), BaseEBFaceFAB< T >::setCoveredFaceVal(), AMRMultiGrid< T >::setMGCycle(), AMRMultiGrid< T >::setSolverParameters(), VoFIterator::size(), MiniIVFAB< T >::size(), MiniIFFAB< T >::size(), BaseIVFAB< T >::size(), BaseIFFAB< T >::size(), BaseLevelTGA< T, TFlux, TFR >::solveHelm(), AMRMultiGrid< T >::solveNoInit(), BaseLevelTGA< T, TFlux, TFR >::updateSoln(), Vector< IntVectSet * >::Vector(), AMRTGA< T >::~AMRTGA(), and Vector< IntVectSet * >::~Vector().

template<class T>
T& Vector< T >::operator[] ( unsigned int  n  )  [inline]

Returns a modifiable lvalue reference to the value of the given element in this Vector. It is an error if n < 0 or n >= this->size(). \

{ Arguments: } \ n (not modified) index of desired element.\ { Returns:} \ modifiable reference to value in Vector at index n.\ { This:} \ ----- This object is modified if the returned reference is assigned a new value -----

template<class T>
const T& Vector< T >::operator[] ( unsigned int  n  )  const [inline]

Returns a constant reference to the given element in this Vector.\

{ Arguments: } \ n (not modified) index of desired element.\ { Returns:} \ constant reference to value in Vector at index n.\ { This:} \ This object is not modified.

template<class T>
const T& Vector< T >::back (  )  const [inline]

template<class T>
void Vector< T >::swap ( Vector< T > &  other  )  [inline]

template<class T>
void Vector< T >::push_back ( const T &  in  )  [inline]

template<class T>
void Vector< T >::append ( const Vector< T > &  invec  )  [inline]

Modifies this Vector by appending the elements of the argument Vector. The new Vector will have a size of this->size() + invec.size() (where this Vector is considered before the append is performed). The first element of invec will have index this->size(), the second element will have index this->size()+1, etc.\

{ Arguments:} \ invec (not modified): Vector whose elements to append to this Vector.\ { This:} \ -------The object is modified----------

Referenced by AMRMultiGrid< T >::getAllOperators().

template<class T>
void Vector< T >::resize ( unsigned int  isize  )  [inline]

template<class T>
void Vector< T >::reserve ( size_t  isize  )  [inline]

template<class T>
size_t Vector< T >::capacity (  )  const [inline]

template<class T>
void Vector< T >::resize ( unsigned int  isize,
const T &  value 
) [inline]

template<class T>
void Vector< T >::sort (  )  [inline]

template<class T>
std::vector<T>& Vector< T >::stdVector (  )  [inline]

Returns std::vector under the hood.

template<class T>
const std::vector<T>& Vector< T >::constStdVector (  )  const [inline]

template<class T>
unsigned int Vector< T >::initFunc (  )  [private]


Member Data Documentation

template<class T>
std::vector<T> Vector< T >::v [private]


The documentation for this class was generated from the following file:

Generated on Tue Apr 14 14:24:03 2009 for Chombo + EB by  doxygen 1.5.5