• Main Page
  • Related Pages
  • Namespaces
  • Classes
  • Files
  • File List
  • File Members

MOR_SnapshotPreprocessorFactory.hpp

Go to the documentation of this file.
00001 //*****************************************************************//
00002 //    Albany 2.0:  Copyright 2012 Sandia Corporation               //
00003 //    This Software is released under the BSD license detailed     //
00004 //    in the file "license.txt" in the top-level Albany directory  //
00005 //*****************************************************************//
00006 #ifndef MOR_SNAPSHOTPREPROCESSORFACTORY_HPP
00007 #define MOR_SNAPSHOTPREPROCESSORFACTORY_HPP
00008 
00009 #include "MOR_SnapshotPreprocessor.hpp"
00010 
00011 #include "Teuchos_ParameterList.hpp"
00012 #include "Teuchos_RCP.hpp"
00013 
00014 #include "Epetra_Vector.h"
00015 
00016 namespace MOR {
00017 
00018 class SnapshotPreprocessorFactory {
00019 public:
00020   Teuchos::RCP<SnapshotPreprocessor> instanceNew(const Teuchos::RCP<Teuchos::ParameterList> &params);
00021 
00022   Teuchos::RCP<const Epetra_Vector> userProvidedOrigin() const;
00023   void userProvidedOriginIs(const Teuchos::RCP<const Epetra_Vector> &origin);
00024 
00025 private:
00026   Teuchos::RCP<const Epetra_Vector> userProvidedOrigin_;
00027 };
00028 
00029 } // namespace MOR
00030 
00031 #endif /* MOR_SNAPSHOTPREPROCESSORFACTORY_HPP */

Generated on Wed Mar 26 2014 18:36:40 for Albany: a Trilinos-based PDE code by  doxygen 1.7.1