ESyS-Particle  2.3
VectorParticleFieldSlave.h
Go to the documentation of this file.
1 // //
3 // Copyright (c) 2003-2014 by The University of Queensland //
4 // Centre for Geoscience Computing //
5 // http://earth.uq.edu.au/centre-geoscience-computing //
6 // //
7 // Primary Business: Brisbane, Queensland, Australia //
8 // Licensed under the Open Software License version 3.0 //
9 // http://www.opensource.org/licenses/osl-3.0.php //
10 // //
12 
13 #ifndef __VECTOR_PARTICLE_FIELD_SLAVE_H
14 #define __VECTOR_PARTICLE_FIELD_SLAVE_H
15 
16 // -- project includes --
17 #include "FieldSlave.h"
18 
19 template <class T> class ParallelParticleArray;
20 class TML_Comm;
21 
30 template <typename T>
32 {
33  private:
34 
35  protected:
36  typename T::VectorFieldFunction m_rdf;
38 
39  public:
40  VectorParticleFieldSlave(TML_Comm*,ParallelParticleArray<T>*,typename T::VectorFieldFunction);
41  virtual void sendData();
42 };
43 
45 
46 #endif //__SCALAR_PARTICLE_FIELD_SLAVE_H
virtual void sendData()
Definition: VectorParticleFieldSlave.hpp:44
VectorParticleFieldSlave(TML_Comm *, ParallelParticleArray< T > *, typename T::VectorFieldFunction)
Definition: VectorParticleFieldSlave.hpp:34
ParallelParticleArray< T > * m_ppa
Definition: VectorParticleFieldSlave.h:37
parrallel particle storage array with neighborsearch and variable exchange
Definition: SubLattice.h:61
abstract base class for communicator
Definition: comm.h:46
class for slave part of scalar field defined on the particles
Definition: VectorParticleFieldSlave.h:31
T::VectorFieldFunction m_rdf
Definition: VectorParticleFieldSlave.h:36
Abstract base class for slave part of field.
Definition: FieldSlave.h:22