From: wolf Date: Fri, 30 Apr 1999 10:49:57 +0000 (+0000) Subject: Small cleanups. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=240946396e3351230bc543ffee93f690252140da;p=dealii-svn.git Small cleanups. git-svn-id: https://svn.dealii.org/trunk@1234 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/numerics/data_io.cc b/deal.II/deal.II/source/numerics/data_io.cc index 339baf72cd..679bbb0819 100644 --- a/deal.II/deal.II/source/numerics/data_io.cc +++ b/deal.II/deal.II/source/numerics/data_io.cc @@ -2,9 +2,7 @@ /* Copyright W. Bangerth, Guido Kanschat, Stefan Nauber */ /* University of Heidelberg, 1998, 1999 */ -//#include #include -#include #include #include #include @@ -1158,7 +1156,7 @@ void DataOut<2>::write_eps (ostream &out) const { }; // Get scaling factors for Bounding Box 310 x 310 - set::eps_cell_data>::iterator c; + typename multiset::eps_cell_data>::iterator c; double xmin=cells.begin()->vertices[0].x; double xmax=xmin; @@ -1325,6 +1323,8 @@ string DataOut::get_output_format_names () { return "ucd|gnuplot|gnuplot draft|povray mesh|eps|epsgrid"; }; + + template bool DataOut::eps_cell_data::operator < (const eps_cell_data &other) const { @@ -1341,6 +1341,8 @@ bool DataOut::eps_cell_data::operator < (const eps_cell_data &other) const return maxz > othermaxz; }; + + template void DataOut::eps_vertex_data::turn(double azi, double ele) { @@ -1371,6 +1373,8 @@ void DataOut::eps_vertex_data::turn(double azi, double ele) // Dxz = ( sz cz 0 )( 0 cx -sx )(y) = ( sz*x+cz*(cx*y-sx*z)+0*(sx*y+cx*z) ) // ( 0 0 1 )( 0 sx cx )(z) ( 0*x+ *(cx*y-sx*z)+1*(sx*y+cx*z) ) + + template void DataOut::eps_cell_data::turn(double azi, double ele) { @@ -1378,7 +1382,9 @@ void DataOut::eps_cell_data::turn(double azi, double ele) vertices[i].turn(azi,ele); }; -//explicite instantiations + + +//explicit instantiations template class DataIn; template class DataOut;