Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/MpqcParser.cpp

    r73916f rbd2390  
    5353}
    5454
    55 /**
    56  * Saves the \a atoms into as a MPQC file.
    57  *
    58  * \param file where to save the state
    59  * \param atoms atoms to store
    60  */
    61 void MpqcParser::save(ostream *file, const std::vector<atom *> &atoms)
     55void MpqcParser::save(ostream *file)
    6256{
    6357  DoLog(0) && (Log() << Verbose(0) << "Saving changes to MPQC ." << std::endl);
    6458
    6559  if (HessianPresent)
    66     saveHessian(file, atoms);
     60    saveHessian(file);
    6761  else
    68     saveSimple(file, atoms);
     62    saveSimple(file);
    6963}
    7064
    7165/** Saves all atoms and data into a MPQC config file without hessian.
    7266 * \param *file output stream
    73  * \param atoms atoms to store
    7467 */
    75 void MpqcParser::saveSimple(ostream *file, const std::vector<atom *> &atoms)
     68void MpqcParser::saveSimple(ostream *file)
    7669{
    7770  Vector center;
     
    119112/** Saves all atoms and data into a MPQC config file with hessian.
    120113 * \param *file output stream
    121  * \param atoms atoms to store
    122114 */
    123 void MpqcParser::saveHessian(ostream *file, const std::vector<atom *> &atoms)
     115void MpqcParser::saveHessian(ostream *file)
    124116{
    125117  Vector center;
Note: See TracChangeset for help on using the changeset viewer.