Changeset aa8ef2


Ignore:
Timestamp:
Feb 7, 2011, 10:27:23 AM (14 years ago)
Author:
Frederik Heber <heber@…>
Branches:
Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
Children:
9cff8b
Parents:
f31edc
git-author:
Frederik Heber <heber@…> (02/02/11 20:39:54)
git-committer:
Frederik Heber <heber@…> (02/07/11 10:27:23)
Message:

Implemented MpqcParser::load().

Location:
src/Parser
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/MpqcParser.cpp

    rf31edc raa8ef2  
    1818#endif
    1919
     20#include <iostream>
     21#include <boost/tokenizer.hpp>
     22#include <string>
     23
    2024#include "CodePatterns/MemDebug.hpp"
    2125
     
    2529#include "config.hpp"
    2630#include "element.hpp"
     31#include "molecule.hpp"
    2732#include "CodePatterns/Log.hpp"
     33#include "CodePatterns/toString.hpp"
    2834#include "CodePatterns/Verbose.hpp"
    2935#include "LinearAlgebra/Vector.hpp"
     
    5157void MpqcParser::load(istream *file)
    5258{
    53   // TODO: MpqcParser::load implementation
    54   ASSERT(false, "Not implemented yet");
     59  bool GeometryFollows = false;
     60  char line[MAXSTRINGSIZE];
     61  typedef boost::tokenizer<boost::char_separator<char> > tokenizer;
     62  boost::char_separator<char> sep("[]");
     63  boost::char_separator<char> whitesep(" \t");
     64  ConvertTo<double> toDouble;
     65
     66  molecule *newmol = World::getInstance().createMolecule();
     67  newmol->ActiveFlag = true;
     68  while (file->good()) {
     69    file->getline(line, MAXSTRINGSIZE-1);
     70    std::string linestring(line);
     71    if ((linestring.find("atoms geometry") == string::npos) && (linestring.find("}") != string::npos)) {
     72      GeometryFollows = false;
     73    }
     74    if (GeometryFollows) { // we have an atom
     75      tokenizer tokens(linestring, sep);
     76//      if (tokens.size() != 2)
     77//        throw MpqcParseException;
     78      tokenizer::iterator tok_iter = tokens.begin();
     79      std::stringstream whitespacefilter(*tok_iter++);
     80      std::string element;
     81      whitespacefilter >> element;
     82      std::string vector = *tok_iter;
     83      tokenizer vectorcomponents(vector, whitesep);
     84      Vector X;
     85//      if (vectorcomponents.size() != NDIM)
     86//        throw MpqcParseException;
     87      tok_iter = vectorcomponents.begin();
     88      for (int i=0; i<NDIM; ++i) {
     89        X[i] = toDouble(*tok_iter++);
     90      }
     91      // create atom
     92      atom *newAtom = World::getInstance().createAtom();
     93      newAtom->setType(World::getInstance().getPeriode()->FindElement(element));
     94      newAtom->setPosition(X);
     95      newmol->AddAtom(newAtom);
     96      DoLog(1) && (Log() << Verbose(1) << "Adding atom " << *newAtom << std::endl);
     97    }
     98    // set some scan flags
     99    if (linestring.find("atoms geometry") != string::npos) {
     100      GeometryFollows = true;
     101    }
     102  }
    55103}
    56104
  • src/Parser/unittests/ParserMpqcUnitTest.cpp

    rf31edc raa8ef2  
    166166
    167167/************************************ tests ***********************************/
     168
     169void ParserMpqcUnitTest::readMpqcTest() {
     170  stringstream input(waterMpqc_CLHF);
     171  MpqcParser* testParser = new MpqcParser();
     172  testParser->setTheory(MpqcParser::CLHF);
     173  testParser->load(&input);
     174
     175  CPPUNIT_ASSERT_EQUAL(3, World::getInstance().numAtoms());
     176}
    168177
    169178void ParserMpqcUnitTest::writeMpqcTest() {
  • src/Parser/unittests/ParserMpqcUnitTest.hpp

    rf31edc raa8ef2  
    2121  CPPUNIT_TEST_SUITE( ParserMpqcUnitTest ) ;
    2222  CPPUNIT_TEST ( writeMpqcTest );
     23  CPPUNIT_TEST ( readMpqcTest );
    2324  CPPUNIT_TEST_SUITE_END();
    2425
     
    2728  void tearDown();
    2829
     30  void readMpqcTest();
    2931  void writeMpqcTest();
    3032};
Note: See TracChangeset for help on using the changeset viewer.