Ignore:
Timestamp:
Nov 4, 2009, 7:56:04 PM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
4ef101, aa8542
Parents:
ec70ec
Message:

Huge change from ofstream * (const) out --> Log().

  • first shift was done via regular expressions
  • then via error messages from the code
  • note that class atom, class element and class molecule kept in parts their output stream, was they print to file.
  • make check runs fine
  • MISSING: Verbosity is not fixed for everything (i.e. if no endl; is present and next has Verbose(0) ...)

Signed-off-by: Frederik Heber <heber@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/atom.hpp

    rec70ec r543ce4  
    4949  virtual ~atom();
    5050
    51   bool OutputIndexed(ofstream *out, const int ElementNo, const int AtomNo, const char *comment = NULL) const;
    52   bool OutputArrayIndexed(ofstream *out, const int *ElementNo, int *AtomNo, const char *comment = NULL) const;
     51  bool OutputIndexed(ofstream * const out, const int ElementNo, const int AtomNo, const char *comment = NULL) const;
     52  bool OutputArrayIndexed(ofstream * const out, const int *ElementNo, int *AtomNo, const char *comment = NULL) const;
    5353  bool OutputXYZLine(ofstream *out) const;
    54   bool OutputTrajectory(ofstream *out, const int *ElementNo, int *AtomNo, const int step) const;
    55   bool OutputTrajectoryXYZ(ofstream *out, const int step) const;
    56   void OutputMPQCLine(ofstream *out, const Vector *center, int *AtomNo) const;
     54  bool OutputTrajectory(ofstream * const out, const int *ElementNo, int *AtomNo, const int step) const;
     55  bool OutputTrajectoryXYZ(ofstream * const out, const int step) const;
     56  void OutputMPQCLine(ofstream * const out, const Vector *center, int *AtomNo) const;
    5757
    5858  void InitComponentNr();
Note: See TracChangeset for help on using the changeset viewer.