~chaffra/+junk/trilinos

« back to all changes in this revision

Viewing changes to packages/Sundance/src-std-mesh/Sources/SundanceTriangleMeshReader.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme, Christophe Prud'homme, Johannes Ring
  • Date: 2009-12-13 12:53:22 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20091213125322-in0nrdjc55deqsw9
Tags: 10.0.3.dfsg-1
[Christophe Prud'homme]
* New upstream release

[Johannes Ring]
* debian/patches/libname.patch: Add prefix 'libtrilinos_' to all
  libraries. 
* debian/patches/soname.patch: Add soversion to libraries.
* debian/watch: Update download URL.
* debian/control:
  - Remove python-numeric from Build-Depends (virtual package).
  - Remove automake and autotools from Build-Depends and add cmake to
    reflect switch to CMake.
  - Add python-support to Build-Depends.
* debian/rules: 
  - Cleanup and updates for switch to CMake.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
using namespace SundanceStdMesh;
6
6
using namespace SundanceStdMesh::Internal;
7
 
using namespace TSFExtended;
 
7
 
8
8
using namespace Teuchos;
9
9
using namespace SundanceUtils;
10
10
 
35
35
  parFilename_ = parFilename_ + ".par";
36
36
  sideFilename_ = sideFilename_ + ".side";
37
37
  
38
 
  verbosity() = classVerbosity();
39
 
  //  verbosity() = VerbExtreme;
40
 
  SUNDANCE_OUT(this->verbosity() > VerbLow,
 
38
  setVerbosity (classVerbosity() );
 
39
  //  verbosity() = 5;
 
40
  SUNDANCE_OUT(this->verb() > 1,
41
41
               "node filename = " << nodeFilename_);
42
42
  
43
 
  SUNDANCE_OUT(this->verbosity() > VerbLow,
 
43
  SUNDANCE_OUT(this->verb() > 1,
44
44
               "elem filename = " << elemFilename_);
45
45
  
46
46
}
64
64
  elemFilename_ = elemFilename_ + ".ele";
65
65
  parFilename_ = parFilename_ + ".par";
66
66
  
67
 
  verbosity() = classVerbosity();
68
 
  SUNDANCE_OUT(this->verbosity() > VerbLow,
 
67
  setVerbosity( classVerbosity() );
 
68
  SUNDANCE_OUT(this->verb() > 1,
69
69
               "node filename = " << nodeFilename_);
70
70
  
71
 
  SUNDANCE_OUT(this->verbosity() > VerbLow,
 
71
  SUNDANCE_OUT(this->verb() > 1,
72
72
               "elem filename = " << elemFilename_);
73
73
  
74
74
}
188
188
 
189
189
          nElems = StrUtils::atoi(tokens[0]);
190
190
 
191
 
          SUNDANCE_OUT(this->verbosity() > VerbLow,
 
191
          SUNDANCE_OUT(this->verb() > 1,
192
192
                       "read nElems = " << nElems);
193
193
 
194
194
 
240
240
                     "the .node file. Found line \n[" << line
241
241
                     << "]\n in file " << nodeFilename_);
242
242
        string headerLine = line;
243
 
  SUNDANCE_OUT(this->verbosity() > VerbMedium,
 
243
  SUNDANCE_OUT(this->verb() > 2,
244
244
               "read point header " << line);
245
245
  
246
246
  
268
268
                         << parFilename_ << " had nPoints=" << nPoints);
269
269
    }
270
270
 
271
 
  SUNDANCE_OUT(this->verbosity() > VerbHigh,
 
271
  SUNDANCE_OUT(this->verb() > 3,
272
272
               "expecting to read " << nPoints << " points");
273
273
  
274
274
        int dimension = atoi(tokens[1]);