source: src/commands/com_print_grid_structure.cpp@ 48b662

Last change on this file since 48b662 was 48b662, checked in by Olaf Lenz <olenz@…>, 14 years ago

Moved files in scafacos_fcs one level up.

git-svn-id: https://svn.version.fz-juelich.de/scafacos/trunk@847 5161e1c8-67bf-11de-9fd5-51895aff932f

  • Property mode set to 100644
File size: 765 bytes
RevLine 
[48b662]1
2/**
3 * @file com_print_grid_structure.cpp
4 * @author Julian Iseringhausen <isering@ins.uni-bonn.de>
5 * @date Mon Apr 18 12:44:47 2011
6 *
7 * @brief Writes a mesh representation of the multigrid
8 * to a VTK xml file.
9 *
10 */
11
12
13#ifdef HAVE_CONFIG_H
14#include <config.h>
15#endif
16
17#include "base/command.hpp"
18#include "comm/comm.hpp"
19#include "grid/multigrid.hpp"
20#include "mg.hpp"
21
22using namespace VMG;
23
24class VMGCommandPrintGridStructure : public Command
25{
26public:
27 Request Run(Command::argument_vector arguments)
28 {
29 MG::GetComm()->DebugPrintGridStructure((*MG::GetRhs()));
30
31 return Continue;
32 }
33
34 static const char* Name() {return "PrintGridStructure";}
35 static int Arguments() {return 0;}
36};
37
38CREATE_INITIALIZER(VMGCommandPrintGridStructure);
Note: See TracBrowser for help on using the repository browser.