Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lammps
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
multiscale
lammps
Commits
d185b34b
Commit
d185b34b
authored
6 years ago
by
Axel Kohlmeyer
Browse files
Options
Downloads
Patches
Plain Diff
reformat to closer match LAMMPS programming style
parent
30518a99
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/USER-PLUMED/fix_plumed.h
+13
-22
13 additions, 22 deletions
src/USER-PLUMED/fix_plumed.h
with
13 additions
and
22 deletions
src/USER-PLUMED/fix_plumed.h
+
13
−
22
View file @
d185b34b
...
...
@@ -43,28 +43,19 @@ class FixPlumed : public Fix {
double
compute_scalar
();
private:
// pointer to plumed object:
PLMD
::
Plumed
*
p
;
// number of atoms local to this process:
int
nlocal
;
// array of atom indexes local to this process:
int
*
gatindex
;
// array of masses for local atoms:
double
*
masses
;
// array of charges for local atoms:
double
*
charges
;
// this is something to enable respa
int
nlevels_respa
;
// output bias potential
double
bias
;
// Compute for the energy
class
Compute
*
c_pe
;
// Compute for the pressure
class
Compute
*
c_press
;
// Flag to trigger calculation of the energy and virial
int
plumedNeedsEnergy
;
// ID for potential energy and pressure compute
char
*
id_pe
,
*
id_press
;
PLMD
::
Plumed
*
p
;
// pointer to plumed object
int
nlocal
;
// number of atoms local to this process
int
*
gatindex
;
// array of atom indexes local to this process
double
*
masses
;
// array of masses for local atoms
double
*
charges
;
// array of charges for local atoms
int
nlevels_respa
;
// this is something to enable respa
double
bias
;
// output bias potential
class
Compute
*
c_pe
;
// Compute for the energy
class
Compute
*
c_press
;
// Compute for the pressure
int
plumedNeedsEnergy
;
// Flag to trigger calculation of the
// energy and virial
char
*
id_pe
,
*
id_press
;
// ID for potential energy and pressure compute
};
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment