[MOAB-dev] r4184 - MOAB/trunk/itaps/igeom

iulian at mcs.anl.gov iulian at mcs.anl.gov
Wed Sep 29 16:16:32 CDT 2010


Author: iulian
Date: 2010-09-29 16:16:32 -0500 (Wed, 29 Sep 2010)
New Revision: 4184

Removed:
   MOAB/trunk/itaps/igeom/GeomTopoUtil.cpp
   MOAB/trunk/itaps/igeom/GeomTopoUtil.hpp
Log:
remove unused files


Deleted: MOAB/trunk/itaps/igeom/GeomTopoUtil.cpp
===================================================================
--- MOAB/trunk/itaps/igeom/GeomTopoUtil.cpp	2010-09-29 21:07:49 UTC (rev 4183)
+++ MOAB/trunk/itaps/igeom/GeomTopoUtil.cpp	2010-09-29 21:16:32 UTC (rev 4184)
@@ -1,288 +0,0 @@
-/**
- * MOAB, a Mesh-Oriented datABase, is a software component for creating,
- * storing and accessing finite element mesh data.
- * 
- * Copyright 2004 Sandia Corporation.  Under the terms of Contract
- * DE-AC04-94AL85000 with Sandia Coroporation, the U.S. Government
- * retains certain rights in this software.
- * 
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- * 
- */
-
-#include "GeomTopoUtil.hpp"
-#include "moab/Range.hpp"
-#include "MBTagConventions.hpp"
-#include "moab/Interface.hpp"
-#include "moab/CN.hpp"
-#include "Internals.hpp"
-#include <assert.h>
-#include <iostream>
-
-// Tag name used for saving sense of faces in volumes.
-// We assume that the surface occurs in at most two volumes.
-// Code will error out if more than two volumes per surface.
-// The tag data is a pair of tag handles, representing the
-// forward and reverse volumes, respectively.  If a surface
-// is non-manifold in a single volume, the same volume will
-// be listed for both the forward and reverse slots.
-const char GEOM_SENSE_TAG_NAME[] = "GEOM_SENSE_2";
-
-ErrorCode GeomTopoUtil::set_sense( EntityHandle surface,
-                                     EntityHandle volume,
-                                     bool forward )
-{
-  ErrorCode rval;
-  if (!sense2Tag) {
-    rval = mdbImpl->tag_create( GEOM_SENSE_TAG_NAME, 2*sizeof(EntityHandle), 
-                           MB_TAG_SPARSE, MB_TYPE_HANDLE, 
-                           sense2Tag, 0, true );
-    if (MB_SUCCESS != rval)
-      return rval;
-  }
-  


More information about the moab-dev mailing list