ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/io/DumpReader.hpp
(Generate patch)

Comparing trunk/OOPSE-4/src/io/DumpReader.hpp (file contents):
Revision 2981 by chrisfen, Tue Nov 8 13:32:27 2005 UTC vs.
Revision 2982 by tim, Wed Aug 30 18:42:29 2006 UTC

# Line 80 | Line 80 | namespace oopse {
80  
81      void readSet(int whichFrame);
82  
83 <    void parseDumpLine(char *line, StuntDouble* integrableObject);
83 >    void parseDumpLine(const std::string&);
84  
85 <    void parseCommentLine(char* line, Snapshot* s);
86 <
87 <
88 < #ifdef IS_MPI
89 <
90 <    void anonymousNodeDie(void);
91 <    void nodeZeroError(void);
92 <
93 < #endif                
94 <    // the maximum length of a typical MPI package is 15k
95 <    const static int maxBufferSize = 8192;
85 >    void readFrameProperties(std::istream& inputStream);
86 >
87 >    void readStuntDoubles(std::istream& inputStream);
88 >                  
89          
90      SimInfo* info_;
91  
# Line 109 | Line 102 | namespace oopse {
102      bool needVel_;
103      bool needQuaternion_;
104      bool needAngMom_;
105 +
106 +    const static int bufferSize = 4096;
107 +    char buffer[bufferSize];
108    };
109  
110   }      //end namespace oopse

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines