35 |
|
* |
36 |
|
* [1] Meineke, et al., J. Comp. Chem. 26, 252-271 (2005). |
37 |
|
* [2] Fennell & Gezelter, J. Chem. Phys. 124, 234104 (2006). |
38 |
< |
* [3] Sun, Lin & Gezelter, J. Chem. Phys. 128, 24107 (2008). |
38 |
> |
* [3] Sun, Lin & Gezelter, J. Chem. Phys. 128, 234107 (2008). |
39 |
|
* [4] Kuang & Gezelter, J. Chem. Phys. 133, 164101 (2010). |
40 |
|
* [5] Vardeman, Stocker & Gezelter, J. Chem. Theory Comput. 7, 834 (2011). |
41 |
|
*/ |
42 |
– |
|
42 |
|
|
43 |
+ |
#ifdef IS_MPI |
44 |
+ |
#include <mpi.h> |
45 |
+ |
#endif |
46 |
+ |
|
47 |
|
#include <sys/types.h> |
48 |
|
#include <sys/stat.h> |
49 |
|
|
62 |
|
#include "utils/StringTokenizer.hpp" |
63 |
|
#include "restraints/ObjectRestraint.hpp" |
64 |
|
#include "restraints/MolecularRestraint.hpp" |
62 |
– |
|
63 |
– |
#ifdef IS_MPI |
64 |
– |
|
65 |
– |
#include <mpi.h> |
66 |
– |
#endif |
65 |
|
|
66 |
|
namespace OpenMD { |
67 |
|
|
68 |
|
void RestReader::scanFile(){ |
69 |
< |
int lineNo = 0; |
69 |
> |
|
70 |
|
std::streampos prevPos; |
71 |
|
std::streampos currPos; |
72 |
|
|
80 |
|
prevPos = currPos; |
81 |
|
|
82 |
|
bool foundOpenSnapshotTag = false; |
83 |
< |
|
83 |
> |
int lineNo = 0; |
84 |
|
while(!foundOpenSnapshotTag && inFile_->getline(buffer, bufferSize)) { |
85 |
|
++lineNo; |
86 |
|
|
366 |
|
|
367 |
|
// is this io restrained? |
368 |
|
GenericData* data = sd->getPropertyByName("Restraint"); |
371 |
– |
ObjectRestraint* oRest; |
369 |
|
|
370 |
|
if (data != NULL) { |
371 |
|
// make sure we can reinterpret the generic data as restraint data: |
373 |
|
if (restData != NULL) { |
374 |
|
// make sure we can reinterpet the restraint data as a pointer to |
375 |
|
// an ObjectRestraint: |
376 |
< |
oRest = dynamic_cast<ObjectRestraint*>(restData->getData()); |
376 |
> |
ObjectRestraint* oRest = dynamic_cast<ObjectRestraint*>(restData->getData()); |
377 |
|
if (oRest != NULL) { |
378 |
|
if (sd->isDirectional()) { |
379 |
|
oRest->setReferenceStructure(pos, q.toRotationMatrix3()); |