Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Plumed AlphaFold
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Martin Kurečka
Plumed AlphaFold
Commits
24f3909a
There was an error fetching the commit references. Please try again later.
Commit
24f3909a
authored
9 years ago
by
Carlo Camilloni
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of github.com:plumed/plumed2
parents
dbd62a4e
c740f819
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/multicolvar/WillardChandlerSurface.cpp
+0
-12
0 additions, 12 deletions
src/multicolvar/WillardChandlerSurface.cpp
with
0 additions
and
12 deletions
src/multicolvar/WillardChandlerSurface.cpp
+
0
−
12
View file @
24f3909a
...
@@ -86,7 +86,6 @@ void WillardChandlerSurface::registerKeywords( Keywords& keys ){
...
@@ -86,7 +86,6 @@ void WillardChandlerSurface::registerKeywords( Keywords& keys ){
ActionWithInputVessel
::
registerKeywords
(
keys
);
ActionWithInputVessel
::
registerKeywords
(
keys
);
keys
.
add
(
"compulsory"
,
"STRIDE"
,
"1"
,
"the frequency with which the data should be collected and added to the grid"
);
keys
.
add
(
"compulsory"
,
"STRIDE"
,
"1"
,
"the frequency with which the data should be collected and added to the grid"
);
keys
.
add
(
"atoms"
,
"ORIGIN"
,
"we will use the position of this atom as the origin"
);
keys
.
add
(
"atoms"
,
"ORIGIN"
,
"we will use the position of this atom as the origin"
);
keys
.
add
(
"compulsory"
,
"DIR"
,
"the direction perpendicular to the Willard-Chandler surface"
);
keys
.
add
(
"compulsory"
,
"NBINS"
,
"the number of bins to use to represent the density profile"
);
keys
.
add
(
"compulsory"
,
"NBINS"
,
"the number of bins to use to represent the density profile"
);
keys
.
add
(
"compulsory"
,
"BANDWIDTH"
,
"the bandwidths for kernel density esimtation"
);
keys
.
add
(
"compulsory"
,
"BANDWIDTH"
,
"the bandwidths for kernel density esimtation"
);
keys
.
add
(
"compulsory"
,
"KERNEL"
,
"gaussian"
,
"the kernel function you are using. More details on the kernels available "
keys
.
add
(
"compulsory"
,
"KERNEL"
,
"gaussian"
,
"the kernel function you are using. More details on the kernels available "
...
@@ -116,17 +115,6 @@ WillardChandlerSurface::WillardChandlerSurface(const ActionOptions&ao):
...
@@ -116,17 +115,6 @@ WillardChandlerSurface::WillardChandlerSurface(const ActionOptions&ao):
parse
(
"KERNEL"
,
kerneltype
);
parseVector
(
"BANDWIDTH"
,
bw
);
parseVector
(
"NBINS"
,
nbins
);
parse
(
"KERNEL"
,
kerneltype
);
parseVector
(
"BANDWIDTH"
,
bw
);
parseVector
(
"NBINS"
,
nbins
);
if
(
bw
.
size
()
!=
3
||
nbins
.
size
()
!=
3
)
error
(
"wrong size found for bandwidth vector or number of bins"
);
if
(
bw
.
size
()
!=
3
||
nbins
.
size
()
!=
3
)
error
(
"wrong size found for bandwidth vector or number of bins"
);
std
::
string
direction
;
parse
(
"DIR"
,
direction
);
parse
(
"CONTOUR"
,
contour
);
log
.
printf
(
" calculating dividing surface where average equals %f along "
,
contour
);
if
(
direction
==
"x"
){
log
.
printf
(
"x direction"
);
dir
=
0
;
}
else
if
(
direction
==
"y"
){
log
.
printf
(
"y direction"
);
dir
=
1
;
}
else
if
(
direction
==
"z"
){
log
.
printf
(
"z direction"
);
dir
=
2
;
}
else
{
error
(
direction
+
" is not valid gradient direction"
);
}
log
.
printf
(
" for colvars calculated by action %s
\n
"
,
mycolv
->
getLabel
().
c_str
()
);
log
.
printf
(
" for colvars calculated by action %s
\n
"
,
mycolv
->
getLabel
().
c_str
()
);
// START OF BIT TO IMPROVE
// START OF BIT TO IMPROVE
...
...
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