Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tsoc
openmm
Commits
d52b4225
"platforms/hip/tests/TestHipRMSDForce.cpp" did not exist on "4c4894348a917a083b32ffd27f3805e55167cbdb"
Commit
d52b4225
authored
Jan 08, 2020
by
peastman
Browse files
Fixed incorrect formatting
parent
edbc8407
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
openmmapi/include/openmm/NoseHooverChain.h
openmmapi/include/openmm/NoseHooverChain.h
+1
-1
openmmapi/include/openmm/NoseHooverIntegrator.h
openmmapi/include/openmm/NoseHooverIntegrator.h
+2
-2
No files found.
openmmapi/include/openmm/NoseHooverChain.h
View file @
d52b4225
...
...
@@ -258,7 +258,7 @@ private:
// The suffix used to distinguish NH chains, e.g. for Drude particles vs. regular particles.
int
chainID
;
std
::
vector
<
int
>
thermostatedAtoms
;
std
::
vector
<
std
::
pair
<
int
,
int
>>
thermostatedPairs
;
std
::
vector
<
std
::
pair
<
int
,
int
>
>
thermostatedPairs
;
};
}
// namespace OpenMM
...
...
openmmapi/include/openmm/NoseHooverIntegrator.h
View file @
d52b4225
...
...
@@ -230,7 +230,7 @@ public:
/**
* Get a list of all connected Drude-like pairs, and their target relative temperature, in the system.
*/
const
std
::
vector
<
std
::
tuple
<
int
,
int
,
double
>>
&
getAllThermostatedPairs
()
const
{
return
allPairs
;
}
const
std
::
vector
<
std
::
tuple
<
int
,
int
,
double
>
>
&
getAllThermostatedPairs
()
const
{
return
allPairs
;
}
protected:
/**
* Advance any Nose-Hoover chains associated with this integrator and determine
...
...
@@ -267,7 +267,7 @@ protected:
std
::
vector
<
NoseHooverChain
>
noseHooverChains
;
std
::
vector
<
int
>
allAtoms
;
std
::
vector
<
std
::
tuple
<
int
,
int
,
double
>>
allPairs
;
std
::
vector
<
std
::
tuple
<
int
,
int
,
double
>
>
allPairs
;
bool
forcesAreValid
;
Kernel
vvKernel
,
nhcKernel
;
bool
hasSubsystemThermostats_
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment