43#ifndef __Panzer_ResponseMESupport_Default_impl_hpp__
44#define __Panzer_ResponseMESupport_Default_impl_hpp__
48#ifdef PANZER_HAVE_EPETRA_STACK
49template <
typename EvalT>
53 TEUCHOS_ASSERT(useEpetra());
59template <
typename EvalT>
65 Teuchos::ArrayRCP<double> data;
66 Teuchos::rcp_dynamic_cast<Thyra::SpmdVectorBase<double> >(
tVector_,
true)->getNonconstLocalData(Teuchos::outArg(data));
71#ifdef PANZER_HAVE_EPETRA_STACK
72template <
typename EvalT>
76 TEUCHOS_TEST_FOR_EXCEPTION(useThyra_,std::logic_error,
77 "Reponse field \"" << this->getName() <<
"\" has previously been initialized as a "
78 "Thyra object, now trying to initalize as a Epetra! Error!");
81 if(map_==Teuchos::null) {
82 if(this->vectorIsDistributed())
83 map_ = Teuchos::rcp(
new Epetra_Map(-1,(
int) this->localSizeRequired(),0,eComm_));
85 map_ = Teuchos::rcp(
new Epetra_LocalMap((
int) this->localSizeRequired(),0,eComm_));
91template <
typename EvalT>
93setVector(
const Teuchos::RCP<Epetra_Vector> & destVec)
95 TEUCHOS_TEST_FOR_EXCEPTION(useThyra_,std::logic_error,
96 "Reponse field \"" << this->getName() <<
"\" has previously been initialized as a "
97 "Thyra object, now trying to initalize as a Epetra! Error!");
105template <
typename EvalT>
109 TEUCHOS_TEST_FOR_EXCEPTION(
useEpetra_,std::logic_error,
110 "Reponse field \"" << this->
getName() <<
"\" has previously been initialized as an "
111 "Epetra object, now trying to initalize as a Thyra object! Error!");
124template <
typename EvalT>
128 TEUCHOS_TEST_FOR_EXCEPTION(
useEpetra_,std::logic_error,
129 "Reponse field \"" << this->
getName() <<
"\" has previously been initialized as an "
130 "Epetra object, now trying to initalize as a Thyra object! Error!");
std::string getName() const
virtual bool vectorIsDistributed() const =0
Is the vector distributed (or replicated). For derivative assembly this must be false!
virtual std::size_t localSizeRequired() const =0
What is the number of values you need locally.
Teuchos::RCP< const Teuchos::Comm< Thyra::Ordinal > > tComm_
Teuchos::RCP< Thyra::VectorBase< double > > tVector_
Teuchos::RCP< const Thyra::VectorSpaceBase< double > > vSpace_
void setVector(const Teuchos::RCP< Thyra::VectorBase< double > > &destVec)
Thyra::ArrayRCP< double > getThyraVector() const
Access the thyra vector.
Teuchos::RCP< const Thyra::VectorSpaceBase< double > > getVectorSpace() const
Get the vector space for this response, vector space is constructed lazily.
bool useThyra() const
Is Thyra the right vector.