File: mpi_tag_defs.h

package info (click to toggle)
esys-particle 2.3.4%2Bdfsg1-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 13,036 kB
  • ctags: 10,805
  • sloc: cpp: 80,009; python: 5,872; makefile: 1,243; sh: 313; perl: 225
file content (35 lines) | stat: -rw-r--r-- 1,298 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/////////////////////////////////////////////////////////////
//                                                         //
// Copyright (c) 2003-2014 by The University of Queensland //
// Centre for Geoscience Computing                         //
// http://earth.uq.edu.au/centre-geoscience-computing      //
//                                                         //
// Primary Business: Brisbane, Queensland, Australia       //
// Licensed under the Open Software License version 3.0    //
// http://www.apache.org/licenses/LICENSE-2.0          //
//                                                         //
/////////////////////////////////////////////////////////////

#ifndef __MPI_TAG_DEFS_H
#define __MPI_TAG_DEFS_H

const int SUBLATTICE_INIT_TAG=1; 
const int SUBLATTICE_PARTICLE_TAG=2; 
const int SUBLATTICE_NSP_TAG=3;
const int SUBLATTICE_SHARED_PARTICLE_TAG=4;
const int SUBLATTICE_NBI_TAG=5;
const int SUBLATTICE_BOND_TAG=6;
const int SUBLATTICE_DT_TAG=7;
const int SUBLATTICE_XCHG_TAG=8;
const int SUBLATTICE_NBP_TAG=9;
const int SUBLATTICE_BOUNDARY_PARTICLE_TAG=10;
const int SUBLATTICE_SPACE_TAG=11; 
const int SUBLATTICE_LPARAM_TAG=12;

const int NEIGHBOR_XCHG_TAG=256;
const int PARTICLE_XCHG_TAG=257;
const int PARTICLE_XCHG2_TAG=258;

const int FIELD_DESC_TAG=512;

#endif