ls1-MarDyn
ls1-MarDyn molecular dynamics code
HaloRegion.h
1/*
2 * HaloRegion.h
3 *
4 * Created on: Oct 13, 2016
5 * Author: seckler
6 */
7
8#pragma once
9
10struct HaloRegion {
11 double rmin[3]; // lower corner
12 double rmax[3]; // higher corner
13 int offset[3]; // offset (direction) of the halo region
14 double width; // Halo width (e.g. one cutoff)
15};
Definition: HaloRegion.h:10