Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 #include "SundancePositionalCellPredicate.hpp"
00043
00044 using namespace Sundance;
00045 using namespace Sundance;
00046 using namespace Sundance;
00047 using namespace Teuchos;
00048
00049 bool PositionalCellPredicate::lessThan(const CellPredicateBase* other) const
00050 {
00051 TEUCHOS_TEST_FOR_EXCEPTION(dynamic_cast<const PositionalCellPredicate*>(other) == 0,
00052 std::logic_error,
00053 "argument " << other->toXML()
00054 << " to PositionalCellPredicate::lessThan() should be "
00055 "a PositionalCellPredicate pointer.");
00056
00057 return func_.get() < dynamic_cast<const PositionalCellPredicate*>(other)->func_.get();
00058 }
00059
00060 void PositionalCellPredicate::testBatch(const Array<int>& cellLID,
00061 Array<int>& results) const
00062 {
00063 results.resize(cellLID.size());
00064
00065 if (cellDim()==0)
00066 {
00067 for (int i=0; i<cellLID.size(); i++)
00068 {
00069 results[i] = (*func_)(mesh().nodePosition(cellLID[i]));
00070 }
00071 }
00072 else
00073 {
00074 Array<int> facetLIDs;
00075 Array<int> facetSigns;
00076 int nf = mesh().numFacets(cellDim(), cellLID[0], 0);
00077 mesh().getFacetLIDs(cellDim(), cellLID, 0, facetLIDs, facetSigns);
00078 for (int c=0; c<cellLID.size(); c++)
00079 {
00080 results[c] = true;
00081 for (int f=0; f<nf; f++)
00082 {
00083 int fLID = facetLIDs[c*nf + f];
00084 if ((*func_)(mesh().nodePosition(fLID)) == false)
00085 {
00086 results[c] = false;
00087 continue;
00088 }
00089 }
00090 }
00091 }
00092 }
00093
00094 XMLObject PositionalCellPredicate::toXML() const
00095 {
00096 XMLObject rtn("PositionalCellPredicate");
00097 return rtn;
00098 }
00099
00100 bool PointCellPredicateFunctor::operator()(const Point& x) const
00101 {
00102 for (int i=0; i<x_.dim(); i++)
00103 {
00104 if (fabs(x[i]-x_[i]) > tol_) return false;
00105 }
00106 return true;
00107 }
00108
00109
00110 bool CoordinateValueCellPredicateFunctor::operator()(const Point& x) const
00111 {
00112 return (fabs(x[direction_]-value_) < tol_);
00113 }