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
f2b3578e
There was an error fetching the commit references. Please try again later.
Commit
f2b3578e
authored
11 years ago
by
Gareth Tribello
Browse files
Options
Downloads
Patches
Plain Diff
Mistakes in switching function input for multicolvar now trigger errors.
Fixes #53
parent
64eded77
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/multicolvar/Angles.cpp
+4
-0
4 additions, 0 deletions
src/multicolvar/Angles.cpp
src/multicolvar/Bridge.cpp
+4
-0
4 additions, 0 deletions
src/multicolvar/Bridge.cpp
src/multicolvar/CoordinationNumbers.cpp
+1
-0
1 addition, 0 deletions
src/multicolvar/CoordinationNumbers.cpp
with
9 additions
and
0 deletions
src/multicolvar/Angles.cpp
+
4
−
0
View file @
f2b3578e
...
@@ -136,7 +136,9 @@ use_sf(false)
...
@@ -136,7 +136,9 @@ use_sf(false)
use_sf
=
true
;
use_sf
=
true
;
weightHasDerivatives
=
true
;
weightHasDerivatives
=
true
;
sf1
.
set
(
sfinput
,
errors
);
sf1
.
set
(
sfinput
,
errors
);
if
(
errors
.
length
()
!=
0
)
error
(
"problem reading SWITCH keyword : "
+
errors
);
sf2
.
set
(
sfinput
,
errors
);
sf2
.
set
(
sfinput
,
errors
);
if
(
errors
.
length
()
!=
0
)
error
(
"problem reading SWITCH keyword : "
+
errors
);
log
.
printf
(
" only calculating angles for atoms separated by less than %s
\n
"
,
sf1
.
description
().
c_str
()
);
log
.
printf
(
" only calculating angles for atoms separated by less than %s
\n
"
,
sf1
.
description
().
c_str
()
);
}
else
{
}
else
{
parse
(
"SWITCHA"
,
sfinput
);
parse
(
"SWITCHA"
,
sfinput
);
...
@@ -144,9 +146,11 @@ use_sf(false)
...
@@ -144,9 +146,11 @@ use_sf(false)
use_sf
=
true
;
use_sf
=
true
;
weightHasDerivatives
=
true
;
weightHasDerivatives
=
true
;
sf1
.
set
(
sfinput
,
errors
);
sf1
.
set
(
sfinput
,
errors
);
if
(
errors
.
length
()
!=
0
)
error
(
"problem reading SWITCHA keyword : "
+
errors
);
sfinput
.
clear
();
parse
(
"SWITCHB"
,
sfinput
);
sfinput
.
clear
();
parse
(
"SWITCHB"
,
sfinput
);
if
(
sfinput
.
length
()
==
0
)
error
(
"found SWITCHA keyword without SWITCHB"
);
if
(
sfinput
.
length
()
==
0
)
error
(
"found SWITCHA keyword without SWITCHB"
);
sf2
.
set
(
sfinput
,
errors
);
sf2
.
set
(
sfinput
,
errors
);
if
(
errors
.
length
()
!=
0
)
error
(
"problem reading SWITCHB keyword : "
+
errors
);
log
.
printf
(
" only calculating angles when the distance between GROUPA and GROUPB atoms is less than %s
\n
"
,
sf1
.
description
().
c_str
()
);
log
.
printf
(
" only calculating angles when the distance between GROUPA and GROUPB atoms is less than %s
\n
"
,
sf1
.
description
().
c_str
()
);
log
.
printf
(
" only calculating angles when the distance between GROUPA and GROUPC atoms is less than %s
\n
"
,
sf2
.
description
().
c_str
()
);
log
.
printf
(
" only calculating angles when the distance between GROUPA and GROUPC atoms is less than %s
\n
"
,
sf2
.
description
().
c_str
()
);
}
}
...
...
This diff is collapsed.
Click to expand it.
src/multicolvar/Bridge.cpp
+
4
−
0
View file @
f2b3578e
...
@@ -100,15 +100,19 @@ PLUMED_MULTICOLVAR_INIT(ao)
...
@@ -100,15 +100,19 @@ PLUMED_MULTICOLVAR_INIT(ao)
std
::
string
sfinput
,
errors
;
parse
(
"SWITCH"
,
sfinput
);
std
::
string
sfinput
,
errors
;
parse
(
"SWITCH"
,
sfinput
);
if
(
sfinput
.
length
()
>
0
){
if
(
sfinput
.
length
()
>
0
){
sf1
.
set
(
sfinput
,
errors
);
sf1
.
set
(
sfinput
,
errors
);
if
(
errors
.
length
()
!=
0
)
error
(
"problem reading SWITCH keyword : "
+
errors
);
sf2
.
set
(
sfinput
,
errors
);
sf2
.
set
(
sfinput
,
errors
);
if
(
errors
.
length
()
!=
0
)
error
(
"problem reading SWITCH keyword : "
+
errors
);
}
else
{
}
else
{
parse
(
"SWITCHA"
,
sfinput
);
parse
(
"SWITCHA"
,
sfinput
);
if
(
sfinput
.
length
()
>
0
){
if
(
sfinput
.
length
()
>
0
){
weightHasDerivatives
=
true
;
weightHasDerivatives
=
true
;
sf1
.
set
(
sfinput
,
errors
);
sf1
.
set
(
sfinput
,
errors
);
if
(
errors
.
length
()
!=
0
)
error
(
"problem reading SWITCHA keyword : "
+
errors
);
sfinput
.
clear
();
parse
(
"SWITCHB"
,
sfinput
);
sfinput
.
clear
();
parse
(
"SWITCHB"
,
sfinput
);
if
(
sfinput
.
length
()
==
0
)
error
(
"found SWITCHA keyword without SWITCHB"
);
if
(
sfinput
.
length
()
==
0
)
error
(
"found SWITCHA keyword without SWITCHB"
);
sf2
.
set
(
sfinput
,
errors
);
sf2
.
set
(
sfinput
,
errors
);
if
(
errors
.
length
()
!=
0
)
error
(
"problem reading SWITCHB keyword : "
+
errors
);
}
else
{
}
else
{
error
(
"missing definition of switching functions"
);
error
(
"missing definition of switching functions"
);
}
}
...
...
This diff is collapsed.
Click to expand it.
src/multicolvar/CoordinationNumbers.cpp
+
1
−
0
View file @
f2b3578e
...
@@ -100,6 +100,7 @@ PLUMED_MULTICOLVAR_INIT(ao)
...
@@ -100,6 +100,7 @@ PLUMED_MULTICOLVAR_INIT(ao)
std
::
string
sw
,
errors
;
parse
(
"SWITCH"
,
sw
);
std
::
string
sw
,
errors
;
parse
(
"SWITCH"
,
sw
);
if
(
sw
.
length
()
>
0
){
if
(
sw
.
length
()
>
0
){
switchingFunction
.
set
(
sw
,
errors
);
switchingFunction
.
set
(
sw
,
errors
);
if
(
errors
.
length
()
!=
0
)
error
(
"problem reading SWITCH keyword : "
+
errors
);
}
else
{
}
else
{
double
r_0
=-
1.0
,
d_0
;
int
nn
,
mm
;
double
r_0
=-
1.0
,
d_0
;
int
nn
,
mm
;
parse
(
"NN"
,
nn
);
parse
(
"MM"
,
mm
);
parse
(
"NN"
,
nn
);
parse
(
"MM"
,
mm
);
...
...
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