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 00007 #include "MOR_TrivialSnapshotPreprocessor.hpp" 00008 00009 namespace MOR { 00010 00011 TrivialSnapshotPreprocessor::TrivialSnapshotPreprocessor() : 00012 rawSnaphots_() 00013 {} 00014 00015 Teuchos::RCP<const Epetra_MultiVector> 00016 TrivialSnapshotPreprocessor::modifiedSnapshotSet() const 00017 { 00018 return rawSnaphots_; 00019 } 00020 00021 Teuchos::RCP<const Epetra_Vector> 00022 TrivialSnapshotPreprocessor::origin() const 00023 { 00024 return Teuchos::null; 00025 } 00026 00027 void 00028 TrivialSnapshotPreprocessor::rawSnapshotSetIs(const Teuchos::RCP<Epetra_MultiVector> &rs) 00029 { 00030 rawSnaphots_ = rs; 00031 } 00032 00033 } // namespace MOR