Skip to content

Commit bdd9116

Browse files
committed
init
1 parent ea06b0f commit bdd9116

File tree

6 files changed

+397837
-23
lines changed

6 files changed

+397837
-23
lines changed

include/field_input/IntegrationTools/pfield/Body.hh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ namespace PRISMS
3333
void
3434
read_vtk(const std::string &vtkfile)
3535
{
36-
std::cout << "Begin reading unstructured vtk file\n";
37-
3836
// Read vtk file
3937
std::ifstream infile(vtkfile.c_str());
4038
if (!infile.is_open())
@@ -97,11 +95,9 @@ namespace PRISMS
9795
}
9896

9997
// Construct field
100-
std::cout << "\tConstructing PField '" << name << "'\n";
10198
scalar_field.emplace_back(name, mesh, gid, 0.0);
10299
}
103100
}
104-
std::cout << "Finished reading VTK file." << std::endl;
105101
}
106102

107103
void

include/field_input/IntegrationTools/pfield/Mesh.hh

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,6 @@ namespace PRISMS
160160
void
161161
read_vtk(std::ifstream &infile)
162162
{
163-
std::cout << "\tReading unstructured mesh\n";
164-
165163
std::istringstream ss;
166164
std::string line;
167165
std::string str;
@@ -195,7 +193,6 @@ namespace PRISMS
195193
std::vector<std::vector<double>> value(dim);
196194
std::vector<std::vector<int>> hist(dim);
197195

198-
std::cout << "\tReading POINTS: " << Npoints << std::endl;
199196
_node.reserve(Npoints);
200197
for (unsigned int i = 0; i < Npoints; i++)
201198
{
@@ -231,16 +228,6 @@ namespace PRISMS
231228
min[j] -= incr[j];
232229
N[j] += 2;
233230
}
234-
std::cout << "\tMin Coordinate: ";
235-
for (int j = 0; j < dim; j++)
236-
{
237-
std::cout << _min[j] << " ";
238-
}
239-
std::cout << "\n\tMax Coordinate: ";
240-
for (int j = 0; j < dim; j++)
241-
{
242-
std::cout << _max[j] << " ";
243-
}
244231

245232
_bin = Bin<Interpolator<Coordinate, dim> *, Coordinate>(min, incr, N);
246233
}
@@ -270,7 +257,6 @@ namespace PRISMS
270257
}
271258
bfunc_ptr = _bfunc.back();
272259

273-
std::cout << "\n\tReading CELLS: " << Ncells << std::endl;
274260
for (unsigned int i = 0; i < Ncells; i++)
275261
{
276262
infile >> uli_dummy;

0 commit comments

Comments
 (0)