SundanceCellCurvePredicate.hpp
Go to the documentation of this file.
00001 /* @HEADER@ */
00002 // ************************************************************************
00003 //
00004 //                              Sundance
00005 //                 Copyright (2005) Sandia Corporation
00006 //
00007 // Copyright (year first published) Sandia Corporation.  Under the terms
00008 // of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government
00009 // retains certain rights in this software.
00010 //
00011 // This library is free software; you can redistribute it and/or modify
00012 // it under the terms of the GNU Lesser General Public License as
00013 // published by the Free Software Foundation; either version 2.1 of the
00014 // License, or (at your option) any later version.
00015 //
00016 // This library is distributed in the hope that it will be useful, but
00017 // WITHOUT ANY WARRANTY; without even the implied warranty of
00018 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00019 // Lesser General Public License for more details.
00020 //
00021 // You should have received a copy of the GNU Lesser General Public
00022 // License along with this library; if not, write to the Free Software
00023 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
00024 // USA
00025 // Questions? Contact Kevin Long (krlong@sandia.gov),
00026 // Sandia National Laboratories, Livermore, California, USA
00027 //
00028 // ************************************************************************
00029 /* @HEADER@ */
00030 
00031 /*
00032  * SundanceCellCurvePredicate.h
00033  *
00034  *  Created on: Feb 19, 2010
00035  *      Author: benk
00036  */
00037 
00038 #include "SundanceDefs.hpp"
00039 #include "SundanceCellPredicateBase.hpp"
00040 #include "SundanceParametrizedCurve.hpp"
00041 
00042 #ifndef SUNDANCECELLCURVEPREDICATE_H_
00043 #define SUNDANCECELLCURVEPREDICATE_H_
00044 
00045 namespace Sundance
00046 {
00047 
00048 class CellCurvePredicate : public CellPredicateBase {
00049 public:
00050 
00051     /** Construct with a function of positions */
00052   CellCurvePredicate(const ParametrizedCurve& curve ,CurveCellFilterMode filterMode)
00053       : CellPredicateBase(), curve_(curve) , filterMode_(filterMode)
00054     {;}
00055 
00056   virtual ~CellCurvePredicate() {;}
00057 
00058     /** Test the predicate on a batch of cells */
00059     virtual void testBatch(const Array<int>& cellLID,
00060                            Array<int>& results) const ;
00061 
00062     /** Write to XML */
00063     virtual XMLObject toXML() const ;
00064 
00065     /** comparison to determine RQCs*/
00066     virtual bool lessThan(const CellPredicateBase* other) const ;
00067 
00068     /** */
00069     virtual std::string description() const {
00070       switch (filterMode_){
00071       case (Outside_Curve):
00072         return "CellCurvePredicate: Outside_Curve";
00073       case (Inside_Curve):
00074         return "CellCurvePredicate: Inside_Curve";
00075       case (On_Curve):
00076         return "CellCurvePredicate: On_Curve";
00077       }
00078       return "CellCurvePredicate: ";
00079     }
00080 
00081     /* */
00082     GET_RCP(CellPredicateBase);
00083 
00084   private:
00085     /** The parameterized curve */
00086     ParametrizedCurve curve_;
00087 
00088     /** The filter modus */
00089     CurveCellFilterMode filterMode_;
00090 };
00091 }
00092 #endif /* SUNDANCECELLCURVEPREDICATE_H_ */

Site Contact