Panzer  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Panzer_LinearObjFactory_Utilities.cpp
Go to the documentation of this file.
2 
3 #include "Teuchos_RCP.hpp"
4 
6 
7 #include "Panzer_TpetraLinearObjFactory.hpp"
10 
11 namespace panzer {
12 
15 {
16  // This just forwards on to the general case. That makes things much easier
17  return cloneWithNewRangeAndDomain(lof,Teuchos::null,dUgi);
18 }
19 
22 {
23  // This just forwards on to the general case. That makes things much easier
24  return cloneWithNewRangeAndDomain(lof,rUgi,Teuchos::null);
25 }
26 
31 {
32  using Teuchos::null;
33  using Teuchos::RCP;
34  using Teuchos::rcp;
35  using Teuchos::rcp_dynamic_cast;
36  using Teuchos::Ptr;
37  using Teuchos::ptr_dynamic_cast;
38  using Teuchos::ptrFromRef;
39 
40 /*
41  typedef GlobalIndexer<int,int> EpetraUGI;
42  typedef BlockedDOFManager BlockedEpetraUGI;
43  typedef BlockedDOFManager<int,panzer::GlobalOrdinal> BlockedTpetraUGI;
44 */
48 
49  // This proceeds by casting to a number of known LOF types (all explicitly instantiated)
50  // then trying to build a new one. Of course for many of these under implemented operation
51  // this fails and an error is thrown.
52 
53 /*
54  Ptr<const EpetraLOF> epetra_lof = ptr_dynamic_cast<const EpetraLOF>(ptrFromRef(lof));
55  if(epetra_lof!=null) {
56  RCP<const EpetraUGI> rangeUGI = rcp_dynamic_cast<const EpetraUGI>(rUgi==null ? epetra_lof->getRangeGlobalIndexer() : rUgi,true);
57  RCP<const EpetraUGI> domainUGI = rcp_dynamic_cast<const EpetraUGI>(dUgi==null ? epetra_lof->getDomainGlobalIndexer() : dUgi,true);
58  RCP<Teuchos::MpiComm<int> > mpiComm = rcp(new Teuchos::MpiComm<int>(epetra_lof->getComm()));
59  return rcp(new EpetraLOF(mpiComm,rangeUGI,domainUGI));
60  }
61 */
62 
63  Ptr<const TpetraLOF> tpetra_lof = ptr_dynamic_cast<const TpetraLOF>(ptrFromRef(lof));
64  if(tpetra_lof!=null) {
65  auto rangeUGI = (rUgi==null ? tpetra_lof->getRangeGlobalIndexer() : rUgi);
66  auto domainUGI = (dUgi==null ? tpetra_lof->getDomainGlobalIndexer() : dUgi);
67  auto mpiComm = rcp(new Teuchos::MpiComm<int>(tpetra_lof->getComm()));
68 
69  return rcp(new TpetraLOF(mpiComm,rangeUGI,domainUGI));
70  }
71 
72  Ptr<const BlockedEpetraLOF> blk_epetra_lof = ptr_dynamic_cast<const BlockedEpetraLOF>(ptrFromRef(lof));
73  if(blk_epetra_lof!=null) {
74  auto rangeUGI = (rUgi==null ? blk_epetra_lof->getRangeGlobalIndexer() : rUgi);
75  auto domainUGI = (dUgi==null ? blk_epetra_lof->getDomainGlobalIndexer() : dUgi);
76  RCP<Teuchos::MpiComm<int> > mpiComm = rcp(new Teuchos::MpiComm<int>(blk_epetra_lof->getComm()));
77  return rcp(new BlockedEpetraLOF(mpiComm,rangeUGI,domainUGI));
78  }
79 
80  Ptr<const BlockedTpetraLOF> blk_tpetra_lof = ptr_dynamic_cast<const BlockedTpetraLOF>(ptrFromRef(lof));
81  if(blk_tpetra_lof!=null) {
82  TEUCHOS_TEST_FOR_EXCEPTION(true,std::logic_error,
83  "panzer::cloneWithNewRangeAndDomain: Blocked Tpetra LOF does not yet support "
84  "different range and domain indexers!");
85  }
86 
87  TEUCHOS_TEST_FOR_EXCEPTION(true,std::logic_error,
88  "panzer::cloneWithNewRangeAndDomain: Could not determine the type of LOF, clone not support!");
89 
90  return Teuchos::null;
91 }
92 
93 }
Teuchos::RCP< const LinearObjFactory< panzer::Traits > > cloneWithNewDomain(const LinearObjFactory< panzer::Traits > &lof, const Teuchos::RCP< const GlobalIndexer > &dUgi)
Clone a linear object factory, but using a different domain.
Teuchos::RCP< const LinearObjFactory< panzer::Traits > > cloneWithNewRangeAndDomain(const LinearObjFactory< panzer::Traits > &lof, const Teuchos::RCP< const GlobalIndexer > &rUgi, const Teuchos::RCP< const GlobalIndexer > &dUgi)
Clone a linear object factory, but using a different range and domain.
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
Teuchos::RCP< const LinearObjFactory< panzer::Traits > > cloneWithNewRange(const LinearObjFactory< panzer::Traits > &lof, const Teuchos::RCP< const GlobalIndexer > &rUgi)
Clone a linear object factory, but using a different range.