File: kspace_zero2.h

package info (click to toggle)
lammps 20260211%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 491,668 kB
  • sloc: cpp: 1,050,132; python: 25,588; ansic: 8,808; f90: 7,302; sh: 5,248; perl: 4,171; fortran: 2,442; xml: 1,613; makefile: 1,120; objc: 238; lisp: 188; yacc: 58; csh: 16; awk: 14; tcl: 6; javascript: 2
file content (32 lines) | stat: -rw-r--r-- 977 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
/* -*- c++ -*- ----------------------------------------------------------
   LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
   https://www.lammps.org/ Sandia National Laboratories
   LAMMPS development team: developers@lammps.org

   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_KSPACE_ZERO2_H
#define LMP_KSPACE_ZERO2_H

#include "kspace.h"

namespace LAMMPS_NS {

class KSpaceZero2 : public KSpace {
 public:
  KSpaceZero2(class LAMMPS *);

  void init() override;
  void setup() override;
  void settings(int, char **) override;

  void compute(int, int) override;
};
}    // namespace LAMMPS_NS
#endif