BALL  1.4.79
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
MOPACOutputFile.h
Go to the documentation of this file.
1 // -*- Mode: C++; tab-width: 2; -*-
2 // vi: set ts=2:
3 //
4 
5 #ifndef BALL_FORMAT_MOPACOUTPUTFILE_H
6 #define BALL_FORMAT_MOPACOUTPUTFILE_H
7 
8 #ifndef BALL_COMMON_GLOBAL_H
9 # include <BALL/COMMON/global.h>
10 #endif
11 
12 #ifndef BALL_FORMAT_GENERICMOLFILE_H
14 #endif
15 
16 #ifndef BALL_KERNEL_ATOMCONTAINER_H
18 #endif
19 
20 #ifndef BALL_DATATYPE_STRING_H
21 # include <BALL/DATATYPE/string.h>
22 #endif
23 
24 namespace BALL
25 {
32  : public GenericMolFile
33  {
34  public:
38 
42 
46  MOPACOutputFile(const String& filename,
47  File::OpenMode open_mode = std::ios::in);
48 
51  virtual ~MOPACOutputFile();
52 
56 
57  // TODO
62 // virtual bool write(const Molecule& molecule);
63 
64  // TODO
69 // virtual bool write(const System& system);
70 
74  virtual Molecule* read();
75 
78  virtual bool read(System& system);
79 
81 
82  virtual void clear();
83 
84  protected:
85  void addAtom_(const String& line, Molecule* mol);
86 
87  std::vector<Atom*> atoms_;
88  std::map<String, Size> type_counts_;
89  };
90 }
91 #endif // BALL_FORMAT_MOPACOUTPUTFILE_H
92 
93 
std::map< String, Size > type_counts_
std::ios::openmode OpenMode
Definition: file.h:168
std::vector< Atom * > atoms_
#define BALL_EXPORT
Definition: COMMON/global.h:50