~c-e-pidcott/maus/devel

« back to all changes in this revision

Viewing changes to src/legacy/Interface/Meshing/Mesh.cc

  • Committer: Chris Rogers
  • Date: 2012-10-03 07:19:33 UTC
  • mfrom: (659.1.40 release-candidate)
  • Revision ID: chris.rogers@stfc.ac.uk-20121003071933-kgrhvl1ec6w2jmug
Tags: MAUS-v0.3.3
MAUS-v0.3.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of MAUS: http://micewww.pp.rl.ac.uk/projects/maus
 
2
 *
 
3
 * MAUS is free software: you can redistribute it and/or modify
 
4
 * it under the terms of the GNU General Public License as published by
 
5
 * the Free Software Foundation, either version 3 of the License, or
 
6
 * (at your option) any later version.
 
7
 *
 
8
 * MAUS is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with MAUS.  If not, see <http://  www.gnu.org/licenses/>.
 
15
 */
 
16
 
 
17
#include <iomanip>
 
18
 
 
19
#include "src/legacy/Interface/Meshing/Mesh.hh"
 
20
 
 
21
std::ostream& operator<<(std::ostream& out, const Mesh::Iterator& it) {
 
22
    out << std::setw(5) << it.ToInteger() << " ** ";
 
23
    for (unsigned int i = 0; i < it.State().size(); i++)
 
24
        out << std::setw(5) << it[i] << " ";
 
25
    out << "** ";
 
26
    for (unsigned int i = 0; i < it.Position().size(); i++)
 
27
        out << std::scientific << std::setprecision(3) << std::setw(12)
 
28
            << it.Position()[i] << " ";
 
29
    return out;
 
30
}
 
31