#include <dumper.h>
Inheritance diagram for Dumper< Domain, Dim >:


Public Member Functions | |
| Dumper (Domain &d, int ID) | |
| Dumper needs a domain to be built. | |
| void | SetFiltre (Filtre *f) |
| set the filter on the domain DOFs to provide enhanced dumps | |
| ~Dumper () | |
Protected Types | |
| typedef Domain::RefDof | RefDof |
| type of dofs associated with domain | |
Protected Attributes | |
| Domain & | dom |
| reference to domain that need to be dumped | |
| Filtre * | filtre |
| pointer to filter | |
Definition at line 53 of file dumper.h.
| Dumper< Domain, Dim >::Dumper | ( | Domain & | d, | |
| int | ID | |||
| ) | [inline] |
Dumper needs a domain to be built.
Definition at line 54 of file dumper_atom.cpp.
References Dumper< Domain, Dim >::dom, DumperInterface::dump_step, and Dumper< Domain, Dim >::filtre.
00054 :DumperInterface(d.myName(),ID),dom(d) 00055 { 00056 dump_step = 0; 00057 filtre = new FiltreGeometrie<FiltreAtom<Domain,Dim>,Dim>(dom); 00058 }
| void Dumper< Domain, Dim >::SetFiltre | ( | Filtre * | f | ) | [inline] |
set the filter on the domain DOFs to provide enhanced dumps
Definition at line 65 of file dumper.h.
Referenced by DumperText< Domain, Dim >::SetParam(), DumperReprise< Domain, Dim >::SetSpecializedParam(), DumperParaview< Domain, Dim >::SetSpecializedParam(), and DumperEcin< Domain, Dim >::SetSpecializedParam().
00065 { 00066 if (filtre) 00067 delete filtre; 00068 filtre = f; 00069 };
reference to domain that need to be dumped
Definition at line 77 of file dumper.h.
Referenced by DumperLammps< Domain, Dim >::Dump(), Dumper< Domain, Dim >::Dumper(), DumperText< Domain, Dim >::SetParam(), DumperReprise< Domain, Dim >::SetSpecializedParam(), DumperParaview< Domain, Dim >::SetSpecializedParam(), and DumperEcin< Domain, Dim >::SetSpecializedParam().
pointer to filter
Definition at line 79 of file dumper.h.
Referenced by DumperXYZ< Domain, Dim >::Dump(), DumperText< Domain, Dim >::Dump(), DumperReprise< Domain, Dim >::Dump(), DumperParaview< Domain, Dim >::Dump(), DumperLammps< Domain, Dim >::Dump(), DumperEcin< Domain, Dim >::Dump(), Dumper< Domain, Dim >::Dumper(), Dumper< Domain, 1 >::SetFiltre(), and Dumper< Domain, 1 >::~Dumper().
1.5.2