Simpatico  v1.10
mcMd/trajectory/DdMdTrajectoryReader.h
1 #ifndef MCMD_DDMD_TRAJECTORY_READER_H
2 #define MCMD_DDMD_TRAJECTORY_READER_H
3 
4 /*
5 * Simpatico - Simulation Package for Polymeric and Molecular Liquids
6 *
7 * Copyright 2010 - 2017, The Regents of the University of Minnesota
8 * Distributed under the terms of the GNU General Public License.
9 */
10 
11 #include <mcMd/trajectory/TrajectoryReader.h> // base class
12 #include <util/containers/DArray.h> // member
13 #include <util/space/Vector.h> // member
14 
15 #include <iostream>
16 
17 namespace McMd
18 {
19 
20  using namespace Util;
21 
32  {
33 
34  public:
35 
40 
44  virtual ~DdMdTrajectoryReader();
45 
51  void open(std::string filename);
52 
58  bool readFrame();
59 
63  void close();
64 
65  private:
66 
68  std::ifstream file_;
69 
71  DArray< Vector > positions_;
72 
73  };
74 
75 }
76 #endif
A set of interacting Molecules enclosed by a Boundary.
Definition: System.h:115
TrajectoryReader for a DdMd trajectory file.
Utility classes for scientific computation.
Definition: accumulators.mod:1
Trajectory file reader (base class).
Dynamically allocatable contiguous array template.
Definition: DArray.h:31
Single-processor Monte Carlo (MC) and molecular dynamics (MD).