Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007 #ifndef ALBANY_PROBLEMUTILS_HPP
00008 #define ALBANY_PROBLEMUTILS_HPP
00009
00010 #include <vector>
00011 #include <string>
00012
00013 #include "Teuchos_RCP.hpp"
00014 #include "Teuchos_VerboseObject.hpp"
00015
00016 #include "Albany_Layouts.hpp"
00017
00018 #include "Intrepid_Basis.hpp"
00019 #include "Intrepid_FieldContainer.hpp"
00020 #include "Intrepid_DefaultCubatureFactory.hpp"
00021 #include "Shards_CellTopology.hpp"
00022
00023
00024 namespace Albany {
00025
00027 Teuchos::RCP<Intrepid::Basis<RealType, Intrepid::FieldContainer<RealType> > >
00028 getIntrepidBasis(const CellTopologyData& ctd, bool compositeTet=false);
00029 }
00030
00031 #endif