Thyra_MPIMultiVectorStdDecl.hpp

00001 // @HEADER
00002 // ***********************************************************************
00003 // 
00004 //    Thyra: Interfaces and Support for Abstract Numerical Algorithms
00005 //                 Copyright (2004) Sandia Corporation
00006 // 
00007 // Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
00008 // license for use of this work by or on behalf of the U.S. Government.
00009 // 
00010 // This library is free software; you can redistribute it and/or modify
00011 // it under the terms of the GNU Lesser General Public License as
00012 // published by the Free Software Foundation; either version 2.1 of the
00013 // License, or (at your option) any later version.
00014 //  
00015 // This library is distributed in the hope that it will be useful, but
00016 // WITHOUT ANY WARRANTY; without even the implied warranty of
00017 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00018 // Lesser General Public License for more details.
00019 //  
00020 // You should have received a copy of the GNU Lesser General Public
00021 // License along with this library; if not, write to the Free Software
00022 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
00023 // USA
00024 // Questions? Contact Michael A. Heroux (maherou@sandia.gov) 
00025 // 
00026 // ***********************************************************************
00027 // @HEADER
00028 
00029 #ifndef THYRA_MPI_MULTI_VECTOR_STD_DECL_HPP
00030 #define THYRA_MPI_MULTI_VECTOR_STD_DECL_HPP
00031 
00032 #include "Thyra_MPIMultiVectorBase.hpp"
00033 
00034 namespace Thyra {
00035 
00052 template<class Scalar>
00053 class MPIMultiVectorStd : virtual public MPIMultiVectorBase<Scalar> {
00054 public:
00055 
00057   using MPIMultiVectorBase<Scalar>::subView;
00059   using MPIMultiVectorBase<Scalar>::col;
00060 
00063 
00065   MPIMultiVectorStd();
00066 
00068   MPIMultiVectorStd(
00069     const Teuchos::RefCountPtr<const MPIVectorSpaceBase<Scalar> >           &mpiRangeSpace
00070     ,const Teuchos::RefCountPtr<const ScalarProdVectorSpaceBase<Scalar> >   &domainSpace
00071     ,const Teuchos::RefCountPtr<Scalar>                                     &localValues
00072     ,const Index                                                            leadingDim
00073     );
00074 
00100   void initialize(
00101     const Teuchos::RefCountPtr<const MPIVectorSpaceBase<Scalar> >          &mpiRangeSpace
00102     ,const Teuchos::RefCountPtr<const ScalarProdVectorSpaceBase<Scalar> >  &domainSpace
00103     ,const Teuchos::RefCountPtr<Scalar>                                    &localValues
00104     ,const Index                                                           leadingDim
00105     );
00106 
00112   void uninitialize(
00113     Teuchos::RefCountPtr<const MPIVectorSpaceBase<Scalar> >                  *mpiRangeSpace = NULL
00114     ,Teuchos::RefCountPtr<const ScalarProdVectorSpaceBase<Scalar> >          *domainSpace   = NULL
00115     ,Teuchos::RefCountPtr<Scalar>                                            *localValues   = NULL
00116     ,Index                                                                   *leadingDim    = NULL
00117     );
00118 
00120 
00124   std::string description() const;
00126 
00130   Teuchos::RefCountPtr< const ScalarProdVectorSpaceBase<Scalar> > domainScalarProdVecSpc() const;
00132 
00136   Teuchos::RefCountPtr<VectorBase<Scalar> > col(Index j);
00138   Teuchos::RefCountPtr<MultiVectorBase<Scalar> > subView( const Range1D& col_rng );
00140 
00143 
00145   Teuchos::RefCountPtr<const MPIVectorSpaceBase<Scalar> > mpiSpace() const;
00147   void getLocalData( Scalar **localValues, Index *leadingDim );
00149   void commitLocalData( Scalar *localValues );
00151   void getLocalData( const Scalar **localValues, Index *leadingDim ) const;
00153   void freeLocalData( const Scalar *localValues ) const;
00155   
00156 private:
00157   
00158   // ///////////////////////////////////////
00159   // Private data members
00160 
00161   Teuchos::RefCountPtr<const MPIVectorSpaceBase<Scalar> >          mpiRangeSpace_;
00162   Teuchos::RefCountPtr<const ScalarProdVectorSpaceBase<Scalar> >   domainSpace_;
00163   Teuchos::RefCountPtr<Scalar>                                     localValues_;
00164   Index                                                            leadingDim_;
00165   
00166 }; // end class MPIMultiVectorStd
00167 
00168 } // end namespace Thyra
00169 
00170 #endif // THYRA_MPI_MULTI_VECTOR_STD_DECL_HPP

Generated on Thu Sep 18 12:39:52 2008 for Thyra ANA Operator/VectorBase Interfaces and Related Software by doxygen 1.3.9.1