Changeset ccb487
- Timestamp:
- Apr 3, 2012, 7:58:43 AM (13 years ago)
- 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:
- 08a0f52
- Parents:
- a275b3
- git-author:
- Frederik Heber <heber@…> (03/15/12 17:29:54)
- git-committer:
- Frederik Heber <heber@…> (04/03/12 07:58:43)
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/TremoloParser.cpp
ra275b3 rccb487 29 29 #include "Atom/atom.hpp" 30 30 #include "Bond/bond.hpp" 31 #include "Box.hpp" 31 32 #include "Descriptors/AtomIdDescriptor.hpp" 32 33 #include "Element/element.hpp" 33 34 #include "Element/periodentafel.hpp" 35 #include "LinearAlgebra/RealSpaceMatrix.hpp" 34 36 #include "molecule.hpp" 35 37 #include "MoleculeListClass.hpp" … … 171 173 } 172 174 173 // store 175 // store Atomdata line 174 176 *file << "# ATOMDATA"; 175 177 for (it=usedFields.begin(); it < usedFields.end(); it++) { … … 177 179 } 178 180 *file << endl; 181 182 // store Box info 183 *file << "# Box"; 184 const RealSpaceMatrix &M = World::getInstance().getDomain().getM(); 185 for (size_t i=0; i<NDIM;++i) 186 for (size_t j=0; j<NDIM;++j) 187 *file << "\t" << M.at(i,j); 188 *file << std::endl; 189 190 // store particles 179 191 for (atomIt = AtomList.begin(); atomIt != AtomList.end(); atomIt++) { 180 192 saveLine(file, *atomIt); -
src/Parser/unittests/ParserTremoloUnitTest.cpp
ra275b3 rccb487 43 43 44 44 static string Tremolo_Atomdata1 = "\ 45 # ATOMDATA\tId\tname\ttype\tx=3\n"; 45 # ATOMDATA\tId\tname\ttype\tx=3\n\ 46 # Box\t20\t0\t0\t0\t20\t0\t0\t0\t20\n"; 46 47 static string Tremolo_Atomdata2 = "\ 47 48 #\n\ 48 49 #ATOMDATA Id name type x=3\n\ 50 # Box\t20\t0\t0\t0\t20\t0\t0\t0\t20\n\ 49 51 1 hydrogen H 3.0 4.5 0.1\n\ 50 52 \n"; … … 52 54 #\n\ 53 55 #ATOMDATA Id name foo type x=3\n\ 56 # Box\t20\t0\t0\t0\t20\t0\t0\t0\t20\n\ 54 57 \n\n"; 55 58 static string Tremolo_velocity = "\ 56 59 #\n\ 57 60 #ATOMDATA Id name type u=3\n\ 61 # Box\t20\t0\t0\t0\t20\t0\t0\t0\t20\n\ 58 62 1 hydrogen H 3.0 4.5 0.1\n\ 59 63 \n"; 60 64 static string Tremolo_neighbours = "#\n\ 61 65 #ATOMDATA Id type neighbors=2\n\ 66 # Box\t20\t0\t0\t0\t20\t0\t0\t0\t20\n\ 62 67 1 H 3 0\n\ 63 68 2 H 3 0\n\ … … 66 71 #\n\ 67 72 #ATOMDATA Id type imprData\n\ 73 # Box\t20\t0\t0\t0\t20\t0\t0\t0\t20\n\ 68 74 8 H 9-10\n\ 69 75 9 H 10-8,8-10\n\ … … 72 78 #\n\ 73 79 #ATOMDATA Id type torsion\n\ 80 # Box\t20\t0\t0\t0\t20\t0\t0\t0\t20\n\ 74 81 8 H 9-10\n\ 75 82 9 H 10-8,8-10\n\ … … 77 84 static string Tremolo_full = "\ 78 85 # ATOMDATA\tx=3\tu=3\tF\tstress\tId\tneighbors=5\timprData\tGroupMeasureTypeNo\ttype\textType\tname\tresName\tchainID\tresSeq\toccupancy\ttempFactor\tsegID\tCharge\tcharge\tGrpTypeNo\ttorsion\n\ 86 # Box\t20\t0\t0\t0\t20\t0\t0\t0\t20\n\ 79 87 0\t0\t0\t0\t0\t0\t0\t0\t1\t0\t0\t0\t0\t0\t-\t0\tH\t-\t-\t-\t0\t0\t0\t0\t0\t0\t0\t0\t-\t\n"; 80 88 … … 211 219 std::vector<atom *> atoms = World::getInstance().getAllAtoms(); 212 220 parser->save(&output, atoms); 221 // std::cout << output.str() << std::endl; 222 // std::cout << Tremolo_full << std::endl; 213 223 CPPUNIT_ASSERT(output.str() == Tremolo_full); 214 224 } -
tests/regression/Domain/RepeatBox/post/ec.data
ra275b3 rccb487 1 1 # ATOMDATA Id type x=3 u=3 neighbors=4 2 # Box 40 0 0 0 40 0 0 0 40 2 3 1 O 7.36404 5 5.01 0 0 0 4 0 0 0 3 4 2 OS 5.50419 6.07129 5 0 0 0 4 5 0 0 -
tests/regression/Domain/RepeatBox/pre/ec.data
ra275b3 rccb487 1 1 # ATOMDATA Id type x=3 u=3 neighbors=4 2 # Box 20 0 0 0 20 0 0 0 20 2 3 1 O 7.36404 5 5.01 0 0 0 4 0 0 0 3 4 2 OS 5.50419 6.07129 5 0 0 0 4 5 0 0 -
tests/regression/Filling/FillVoidWithMolecule/post/tensid.data
ra275b3 rccb487 1 1 # ATOMDATA Id name resName chainID x=3 type neighbors=4 charge 2 # Box 30 0 0 0 30 0 0 0 30 2 3 1 NA SLES 1 17.397 20.231 11.737 Na 0 0 0 0 1.000000e+00 3 4 2 S SLES 1 16.282 18.88 14.208 S 3 4 5 6 1.330000e+00 -
tests/regression/Filling/FillVoidWithMolecule/pre/tensid.data
ra275b3 rccb487 1 1 # ATOMDATA Id name resName chainID x=3 type neighbors=4 charge 2 # Box 30 0 0 0 30 0 0 0 30 2 3 1 NA SLES 1 17.397 20.231 11.737 Na 0 0 0 0 1.000000e+00 3 4 2 S SLES 1 16.282 18.88 14.208 S 3 4 5 6 1.330000e+00 -
tests/regression/Filling/FillVoidWithMolecule/testsuite-fill-void-with-tenside-molecule.at
ra275b3 rccb487 15 15 16 16 AT_SETUP([Filling - filling void space besides tenside micelle in box with Undo]) 17 AT_XFAIL_IF([/bin/true])18 17 AT_KEYWORDS([filling fill-void undo]) 19 18 … … 23 22 AT_CHECK([chmod u+w $file], 0) 24 23 AT_CHECK([../../molecuilder -i $file -B "30,0,30,0,0,30" --fill-void water.data --distances "3.1, 3.1, 3.1" --distance-to-molecule "2.1" --DoRotate 0 --undo], 0, [stdout], [stderr]) 25 AT_CHECK([diff $file ${abs_top_srcdir}/tests/regression/Filling/FillVoidWithMolecule/p ost/tensid.data], 0, [ignore], [ignore])24 AT_CHECK([diff $file ${abs_top_srcdir}/tests/regression/Filling/FillVoidWithMolecule/pre/tensid.data], 0, [ignore], [ignore]) 26 25 27 26 AT_CLEANUP -
tests/regression/Makefile.am
ra275b3 rccb487 61 61 $(srcdir)/Filling/SuspendInWater/testsuite-suspend-in-water.at \ 62 62 $(srcdir)/Filling/FillVoidWithMolecule/testsuite-fill-void-with-molecule.at \ 63 $(srcdir)/Filling/FillVoidWithMolecule/testsuite-fill-void-with-tenside-molecule.at \ 63 64 $(srcdir)/Fragmentation/testsuite-fragmentation.at \ 64 65 $(srcdir)/Fragmentation/FragmentMolecule/testsuite-fragmentation-fragment-molecule.at \ -
tests/regression/Molecules/Copy/post/tensid-undo.data
ra275b3 rccb487 1 1 # ATOMDATA Id name resName chainID x=3 type neighbors=4 charge 2 # Box 20 0 0 0 20 0 0 0 20 2 3 1 NA SLES 1 32.397 35.231 26.737 NA 0 0 0 0 1.000000e+00 3 4 2 S SLES 1 31.282 33.88 29.208 SL 3 4 5 6 1.330000e+00 -
tests/regression/Molecules/Copy/post/tensid.data
ra275b3 rccb487 1 1 # ATOMDATA Id name resName chainID x=3 type neighbors=4 charge 2 # Box 20 0 0 0 20 0 0 0 20 2 3 1 NA SLES 1 32.397 35.231 26.737 NA 0 0 0 0 1.000000e+00 3 4 2 S SLES 1 31.282 33.88 29.208 SL 3 4 5 6 1.330000e+00 -
tests/regression/Molecules/Copy/pre/tensid.data
ra275b3 rccb487 1 1 # ATOMDATA Id name resName chainID x=3 type neighbors=4 charge 2 # Box 20 0 0 0 20 0 0 0 20 2 3 1 NA SLES 1 32.397 35.231 26.737 NA 0 0 0 0 1.000000e+00 3 4 2 S SLES 1 31.282 33.88 29.208 SL 3 4 5 6 1.330000e+00 -
tests/regression/Molecules/CreateMicelle/post/tensid.data
ra275b3 rccb487 1 1 # ATOMDATA Id name resName chainID x=3 type neighbors=4 charge 2 # Box 20 0 0 0 20 0 0 0 20 2 3 1 NA SLES 1 -4.78921 -8.81932 -49.4988 NA 0 0 0 0 1.000000e+00 3 4 2 S SLES 1 -3.65465 -6.08892 -48.8416 SL 3 4 5 6 1.330000e+00 -
tests/regression/Molecules/CreateMicelle/pre/tensid.data
ra275b3 rccb487 1 1 # ATOMDATA Id name resName chainID x=3 type neighbors=4 charge 2 # Box 20 0 0 0 20 0 0 0 20 2 3 1 NA SLES 1 32.397 35.231 26.737 NA 0 0 0 0 1.000000e+00 3 4 2 S SLES 1 31.282 33.88 29.208 SL 3 4 5 6 1.330000e+00 -
tests/regression/Parser/Tremolo-SetAtomdata/post/argon.data
ra275b3 rccb487 1 1 # ATOMDATA type x=3 2 # Box 20 0 0 0 20 0 0 0 20 2 3 Ar 4.72977 8 8 3 4 Ar 7.3 8 8
Note:
See TracChangeset
for help on using the changeset viewer.