/usr/include/liggghts/neigh_request.h is in libliggghts-dev 2.3.8-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | /* ----------------------------------------------------------------------
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
http://lammps.sandia.gov, Sandia National Laboratories
Steve Plimpton, sjplimp@sandia.gov
Copyright (2003) Sandia Corporation. Under the terms of Contract
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
certain rights in this software. This software is distributed under
the GNU General Public License.
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#ifndef LMP_NEIGH_REQUEST_H
#define LMP_NEIGH_REQUEST_H
#include "pointers.h"
namespace LAMMPS_NS {
class NeighRequest : protected Pointers {
public:
void *requestor; // class that made request
int id; // ID of request
// used to track multiple requests from one class
// which class is requesting the list, one flag is 1, others are 0
int pair;
int fix;
int compute;
int command;
// kind of list requested
// set by requesting class
int half; // 1 if half neigh list
int full; // 1 if full neigh list
int gran; // 1 if granular list
int granhistory; // 1 if granular history list
int respainner; // 1 if a rRESPA inner list
int respamiddle; // 1 if a rRESPA middle list
int respaouter; // 1 if a rRESPA outer list
int half_from_full; // 1 if half list computed from previous full list
// 0 if needed every reneighboring during run
// 1 if occasionally needed by a fix, compute, etc
// set by requesting class
int occasional;
// 0 if use force::newton_pair setting
// 1 if override with pair newton on
// 2 if override with pair newton off
int newton;
// 0 if user of list wants no encoding of special bond flags and all neighs
// 1 if user of list wants special bond flags encoded
int special;
// number of auxiliary floating point values to store, 0 if none
// set by requesting class
int dnum;
// 1 if also need neighbors of ghosts
int ghost;
// 1 if neighbor list build will be done on GPU
int cudable;
// 1 if using multi-threaded neighbor list build
int omp;
// set by neighbor and pair_hybrid after all requests are made
// these settings do not change kind value
int copy; // 1 if this list copied from another list
int skip; // 1 if this list skips atom types from another list
int *iskip; // iskip[i] if atoms of type I are not in list
int **ijskip; // ijskip[i][j] if pairs of type I,J are not in list
int otherlist; // other list to copy or skip from
// methods
NeighRequest(class LAMMPS *);
~NeighRequest();
int identical(NeighRequest *);
int same_kind(NeighRequest *);
int same_skip(NeighRequest *);
void copy_request(NeighRequest *);
};
}
#endif
|