Reference documentation for deal.II version 8.1.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
Public Member Functions | List of all members
Table< 3, T > Class Template Reference

#include <table.h>

Inheritance diagram for Table< 3, T >:
[legend]

Public Member Functions

 Table ()
 
 Table (const unsigned int size1, const unsigned int size2, const unsigned int size3)
 
::internal::TableBaseAccessors::Accessor
< 3, T, true, 2 > 
operator[] (const unsigned int i) const
 
::internal::TableBaseAccessors::Accessor
< 3, T, false, 2 > 
operator[] (const unsigned int i)
 
std::vector< T >::const_reference operator() (const unsigned int i, const unsigned int j, const unsigned int k) const
 
std::vector< T >::reference operator() (const unsigned int i, const unsigned int j, const unsigned int k)
 
std::vector< T >::reference operator() (const TableIndices< 3 > &indices)
 
std::vector< T >::const_reference operator() (const TableIndices< 3 > &indices) const
 
- Public Member Functions inherited from TableBase< 3, T >
 TableBase ()
 
 TableBase (const TableIndices< N > &sizes)
 
 TableBase (const TableBase< N, T > &src)
 
 TableBase (const TableBase< N, T2 > &src)
 
 ~TableBase ()
 
TableBase< N, T > & operator= (const TableBase< N, T > &src)
 
TableBase< N, T > & operator= (const TableBase< N, T2 > &src)
 
bool operator== (const TableBase< N, T > &T2) const
 
void reset_values ()
 
void reinit (const TableIndices< N > &new_size, const bool fast=false)
 
unsigned int size (const unsigned int i) const
 
const TableIndices< N > & size () const
 
unsigned int n_elements () const
 
bool empty () const
 
void fill (const T2 *entries)
 
void fill (const T &value)
 
std::vector< T >::reference operator() (const TableIndices< N > &indices)
 
std::vector< T >::const_reference operator() (const TableIndices< N > &indices) const
 
void swap (TableBase< N, T > &v)
 
std::size_t memory_consumption () const
 
void serialize (Archive &ar, const unsigned int version)
 
- Public Member Functions inherited from Subscriptor
 Subscriptor ()
 
 Subscriptor (const Subscriptor &)
 
virtual ~Subscriptor ()
 
Subscriptoroperator= (const Subscriptor &)
 
void subscribe (const char *identifier=0) const
 
void unsubscribe (const char *identifier=0) const
 
unsigned int n_subscriptions () const
 
void list_subscribers () const
 
 DeclException3 (ExcInUse, int, char *, std::string &,<< "Object of class "<< arg2<< " is still used by "<< arg1<< " other objects.\n"<< "(Additional information: "<< arg3<< ")\n"<< "Note the entry in the Frequently Asked Questions of "<< "deal.II (linked to from http://www.dealii.org/) for "<< "more information on what this error means.")
 
 DeclException2 (ExcNoSubscriber, char *, char *,<< "No subscriber with identifier \""<< arg2<< "\" did subscribe to this object of class "<< arg1)
 
template<class Archive >
void serialize (Archive &ar, const unsigned int version)
 

Additional Inherited Members

- Protected Member Functions inherited from TableBase< 3, T >
unsigned int position (const TableIndices< N > &indices) const
 
std::vector< T >::reference el (const TableIndices< N > &indices)
 
std::vector< T >::const_reference el (const TableIndices< N > &indices) const
 
std::vector< T >::const_pointer data () const DEAL_II_DEPRECATED
 
- Protected Attributes inherited from TableBase< 3, T >
std::vector< T > values
 
TableIndices< N > table_size
 

Detailed Description

template<typename T>
class Table< 3, T >

A class representing a three-dimensional table of objects (not necessarily only numbers).

For the rationale of this class, and a description of the interface, see the base class.

Author
Wolfgang Bangerth, 2002

Definition at line 1046 of file table.h.

Constructor & Destructor Documentation

template<typename T >
Table< 3, T >::Table ( )

Default constructor. Set all dimensions to zero.

template<typename T >
Table< 3, T >::Table ( const unsigned int  size1,
const unsigned int  size2,
const unsigned int  size3 
)

Constructor. Pass down the given dimensions to the base class.

Member Function Documentation

template<typename T >
::internal::TableBaseAccessors::Accessor<3,T,true,2> Table< 3, T >::operator[] ( const unsigned int  i) const

Access operator. Generate an object that accesses the requested two-dimensional subobject of this three-dimensional table. Range checks are performed.

This version of the function only allows read access.

template<typename T >
::internal::TableBaseAccessors::Accessor<3,T,false,2> Table< 3, T >::operator[] ( const unsigned int  i)

Access operator. Generate an object that accesses the requested two-dimensional subobject of this three-dimensional table. Range checks are performed.

This version of the function allows read-write access.

template<typename T >
std::vector<T>::const_reference Table< 3, T >::operator() ( const unsigned int  i,
const unsigned int  j,
const unsigned int  k 
) const

Direct access to one element of the table by specifying all indices at the same time. Range checks are performed.

This version of the function only allows read access.

template<typename T >
std::vector<T>::reference Table< 3, T >::operator() ( const unsigned int  i,
const unsigned int  j,
const unsigned int  k 
)

Direct access to one element of the table by specifying all indices at the same time. Range checks are performed.

This version of the function allows read-write access.

template<typename T >
std::vector<T>::reference Table< 3, T >::operator() ( const TableIndices< 3 > &  indices)

Make the corresponding operator () from the TableBase base class available also in this class.

template<typename T >
std::vector<T>::const_reference Table< 3, T >::operator() ( const TableIndices< 3 > &  indices) const

Make the corresponding operator () from the TableBase base class available also in this class.


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