Sacado_Fad_StaticStorage.hpp

Go to the documentation of this file.
00001 // $Id: Sacado_Fad_StaticStorage.hpp,v 1.6.2.2 2007/08/14 00:19:06 etphipp Exp $ 
00002 // $Source: /space/CVS/Trilinos/packages/sacado/src/Sacado_Fad_StaticStorage.hpp,v $ 
00003 // @HEADER
00004 // ***********************************************************************
00005 // 
00006 //                           Sacado Package
00007 //                 Copyright (2006) Sandia Corporation
00008 // 
00009 // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
00010 // the U.S. Government retains certain rights in this software.
00011 // 
00012 // This library is free software; you can redistribute it and/or modify
00013 // it under the terms of the GNU Lesser General Public License as
00014 // published by the Free Software Foundation; either version 2.1 of the
00015 // License, or (at your option) any later version.
00016 //  
00017 // This library is distributed in the hope that it will be useful, but
00018 // WITHOUT ANY WARRANTY; without even the implied warranty of
00019 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00020 // Lesser General Public License for more details.
00021 //  
00022 // You should have received a copy of the GNU Lesser General Public
00023 // License along with this library; if not, write to the Free Software
00024 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
00025 // USA
00026 // Questions? Contact David M. Gay (dmgay@sandia.gov) or Eric T. Phipps
00027 // (etphipp@sandia.gov).
00028 // 
00029 // ***********************************************************************
00030 // @HEADER
00031 
00032 #ifndef SACADO_FAD_STATICSTORAGE_HPP
00033 #define SACADO_FAD_STATICSTORAGE_HPP
00034 
00035 #include "Sacado_ConfigDefs.h"
00036 #include "Sacado_StaticArrayTraits.hpp"
00037 
00038 namespace Sacado {
00039 
00040   namespace Fad {
00041 
00043 
00047     template <typename T, int Num> 
00048     class StaticStorage {
00049 
00050     public:
00051 
00053       StaticStorage(const T & x) : val_(x), sz_(0) {}
00054 
00056 
00059       StaticStorage(const int sz, const T & x) : val_(x), sz_(sz) { 
00060 #ifdef SACADO_DEBUG
00061   if (sz > Num)
00062     throw "StaticStorage::StaticStorage() Error:  Supplied derivative dimension exceeds maximum length.";
00063 #endif
00064   ss_array<T>::zero(dx_, sz_); 
00065       }
00066 
00068       StaticStorage(const StaticStorage& x) : 
00069   val_(x.val_), sz_(x.sz_) { ss_array<T>::copy(x.dx_, dx_, sz_); }
00070 
00072       ~StaticStorage() {}
00073 
00075       StaticStorage& operator=(const StaticStorage& x) {
00076   val_ = x.val_;
00077   sz_ = x.sz_;
00078   ss_array<T>::copy(x.dx_, dx_, sz_);
00079   return *this;
00080       }
00081 
00083       int size() const { return sz_;}
00084 
00086       void resize(int sz) { 
00087 #ifdef SACADO_DEBUG
00088   if (sz > Num)
00089     throw "StaticStorage::resize() Error:  Supplied derivative dimension exceeds maximum length.";
00090 #endif
00091   sz_ = sz; 
00092       }
00093 
00095       void zero() { ss_array<T>::zero(dx_, sz_); }
00096 
00097     public:
00098 
00100       T val_;
00101 
00103       T dx_[Num];
00104 
00106       int sz_;
00107 
00108     }; // class StaticStorage
00109 
00110   } // namespace Fad
00111 
00112 } // namespace Sacado
00113 
00114 #endif // SACADO_FAD_STATICSTORAGE_HPP

Generated on Tue Oct 20 12:55:05 2009 for Sacado Package Browser (Single Doxygen Collection) by doxygen 1.4.7