Go to the documentation of this file.00001
00002
00003
00004
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> ¶ms);
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 }
00030
00031 #endif