Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91518508
fix_deprecated.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Nov 11, 20:48
Size
1 KB
Mime Type
text/x-c
Expires
Wed, Nov 13, 20:48 (2 d)
Engine
blob
Format
Raw Data
Handle
22277211
Attached To
rLAMMPS lammps
fix_deprecated.h
View Options
/* -*- c++ -*- ----------------------------------------------------------
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.
------------------------------------------------------------------------- */
#ifdef FIX_CLASS
// list all deprecated and removed fix styles here
FixStyle
(
ave
/
spatial
,
FixDeprecated
)
FixStyle
(
ave
/
spatial
/
sphere
,
FixDeprecated
)
#else
#ifndef LMP_FIX_DEPRECATED_H
#define LMP_FIX_DEPRECATED_H
#include "fix.h"
namespace
LAMMPS_NS
{
class
FixDeprecated
:
public
Fix
{
public:
FixDeprecated
(
class
LAMMPS
*
,
int
,
char
**
);
~
FixDeprecated
()
{}
int
setmask
()
{
return
0
;}
void
init
()
{}
};
}
#endif
#endif
/* ERROR/WARNING messages:
E: The fix ave/spatial command has been removed from LAMMPS
It has been replaced by the more flexible fix ave/chunk and compute
chunk/atom commands. All the fix ave/spatial keywords and options are
available in those two newer commands.
*/
Event Timeline
Log In to Comment