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
d96d52d9
There was an error fetching the commit references. Please try again later.
Commit
d96d52d9
authored
8 years ago
by
Giovanni Bussi
Browse files
Options
Downloads
Patches
Plain Diff
Fix
fixed an error introduced in
e2f37a30
parent
e2f37a30
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/crystallization/InterMolecularTorsions.cpp
+5
-5
5 additions, 5 deletions
src/crystallization/InterMolecularTorsions.cpp
with
5 additions
and
5 deletions
src/crystallization/InterMolecularTorsions.cpp
+
5
−
5
View file @
d96d52d9
...
...
@@ -39,7 +39,7 @@ Calculate torsions between axis of adjacent molecules
namespace
PLMD
{
namespace
crystallization
{
class
InterMolecularTorsions
:
public
MultiColvarFunction
{
class
InterMolecularTorsions
:
public
multicolvar
::
MultiColvarFunction
{
private:
/// The switching function that tells us if atoms are close enough together
SwitchingFunction
switchingFunction
;
...
...
@@ -47,9 +47,9 @@ public:
static
void
registerKeywords
(
Keywords
&
keys
);
explicit
InterMolecularTorsions
(
const
ActionOptions
&
);
/// Do the stuff with the switching functions
double
calculateWeight
(
const
unsigned
&
taskCode
,
const
double
&
weight
,
AtomValuePack
&
myatoms
)
const
;
double
calculateWeight
(
const
unsigned
&
taskCode
,
const
double
&
weight
,
multicolvar
::
AtomValuePack
&
myatoms
)
const
;
/// Actually do the calculation
double
compute
(
const
unsigned
&
tindex
,
AtomValuePack
&
myatoms
)
const
;
double
compute
(
const
unsigned
&
tindex
,
multicolvar
::
AtomValuePack
&
myatoms
)
const
;
/// Is the variable periodic
bool
isPeriodic
(){
return
true
;
}
void
retrieveDomain
(
std
::
string
&
min
,
std
::
string
&
max
){
min
=
"-pi"
;
max
=
"+pi"
;
}
...
...
@@ -112,7 +112,7 @@ MultiColvarFunction(ao)
readVesselKeywords
();
}
double
InterMolecularTorsions
::
calculateWeight
(
const
unsigned
&
taskCode
,
const
double
&
weight
,
AtomValuePack
&
myatoms
)
const
{
double
InterMolecularTorsions
::
calculateWeight
(
const
unsigned
&
taskCode
,
const
double
&
weight
,
multicolvar
::
AtomValuePack
&
myatoms
)
const
{
Vector
distance
=
getSeparation
(
myatoms
.
getPosition
(
0
),
myatoms
.
getPosition
(
1
)
);
double
dfunc
,
sw
=
switchingFunction
.
calculateSqr
(
distance
.
modulo2
(),
dfunc
);
...
...
@@ -124,7 +124,7 @@ double InterMolecularTorsions::calculateWeight( const unsigned& taskCode, const
return
sw
;
}
double
InterMolecularTorsions
::
compute
(
const
unsigned
&
tindex
,
AtomValuePack
&
myatoms
)
const
{
double
InterMolecularTorsions
::
compute
(
const
unsigned
&
tindex
,
multicolvar
::
AtomValuePack
&
myatoms
)
const
{
Vector
v1
,
v2
,
dv1
,
dv2
,
dconn
,
conn
=
getSeparation
(
myatoms
.
getPosition
(
0
),
myatoms
.
getPosition
(
1
)
);
// Retrieve vectors
...
...
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