Changeset 9d613f


Ignore:
Timestamp:
Nov 7, 2011, 12:24:05 PM (13 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:
874597
Parents:
f27fa7
git-author:
Frederik Heber <heber@…> (10/10/11 14:18:16)
git-committer:
Frederik Heber <heber@…> (11/07/11 12:24:05)
Message:

FIX: RepeatBoxAction did not use CopyMolecule() but copied by hand. Kudos: Gregor Bollerhey.

  • this causes trouble with FormatParsers such as Tremolo... who have internally additional information stored.
  • extended regression tests Domain/RepeatBox with a test of a repeated .data file with "special" element names.

Kudos to Gregor Bollerhey for finding this bug.

Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/WorldAction/RepeatBoxAction.cpp

    rf27fa7 r9d613f  
    4747void repeatMoleculesinDomain(Vector Repeater, const std::vector<molecule *> &AllMolecules)
    4848{
    49   int count;
    50   const element ** Elements;
    51   int j = 0;
    52   atom *Walker = NULL;
    53   MoleculeListClass *molecules = World::getInstance().getMolecules();
    54 
    5549  LOG(0, "STATUS: Repeating box " << Repeater << " times for (x,y,z) axis.");
    5650
     
    7569  molecule *newmol = NULL;
    7670  std::vector<Vector> vectors;
     71  MoleculeListClass *molecules = World::getInstance().getMolecules();
    7772  for (n[0] = 0; n[0] < Repeater[0]; n[0]++) {
    7873    y[0] = n[0];
     
    8479          continue;
    8580        for (vector<molecule *>::const_iterator MolRunner = AllMolecules.begin(); MolRunner != AllMolecules.end(); ++MolRunner) {
    86           const molecule *mol = *MolRunner;
    87           LOG(2, "INFO: Current mol is " << mol->name << ".");
    88           count = mol->getAtomCount();   // is changed becausing of adding, thus has to be stored away beforehand
    89           if (count != 0) {  // if there is more than none
    90             Elements = new const element *[count];
    91             vectors.resize(count);
    92             j = 0;
    93             for(molecule::const_iterator AtomRunner = mol->begin(); AtomRunner != mol->end(); ++AtomRunner) {
    94               Elements[j] = (*AtomRunner)->getType();
    95               vectors[j] = (*AtomRunner)->getPosition();
    96               j++;
    97             }
    98             if (count != j)
    99               ELOG(1, "AtomCount " << count << " is not equal to number of atoms in molecule " << j << "!");
    100             x = y;
    101             x *= M;
    102             newmol = World::getInstance().createMolecule();
    103             // TODO: Remove this when World don't has deprecated MoleculeListClass anymore
    104             molecules->insert(newmol);
    105             for (int k=count;k--;) { // go through every atom of the original cell
    106               Walker = World::getInstance().createAtom(); // create a new body
    107               Walker->setPosition((vectors[k]) + x);
    108               Walker->setType(Elements[k]);  // insert original element
    109               cout << "new atom is " << *Walker << endl;
    110               newmol->AddAtom(Walker);        // and add to the molecule (which increments ElementsInMolecule, AtomCount, ...)
    111             }
    112             // free memory
    113             delete[](Elements);
    114           } else {
    115             LOG(1, "\t ... is empty.");
    116           }
     81          molecule * const mol = *MolRunner;
     82          DoLog(1) && (Log() << Verbose(1) << "Current mol is " << mol->name << "." << endl);
     83          newmol = mol->CopyMolecule();
     84          // TODO: remove this when World does not have MoleculeListClass anymore.
     85          molecules->insert(newmol);
     86          x = y;
     87          x *= M;
     88          // shift each atom into new position
     89          for(molecule::iterator iter = newmol->begin(); iter != newmol->end(); ++iter)
     90            (*iter)->setPosition((*iter)->getPosition() + x);
    11791        }
    11892      }
     
    12296
    12397Action::state_ptr WorldRepeatBoxAction::performCall() {
    124   molecule *mol = NULL;
    125 
    12698  // obtain information
    12799  getParametersfromValueStorage();
    128100
    129101  std::vector<molecule *> AllMolecules;
    130   if (mol != NULL) {
    131     LOG(0, "Using molecule " << mol->name << ".");
    132     AllMolecules = World::getInstance().getAllMolecules(MoleculeByPtr(mol));
    133   } else {
    134     LOG(0, "Using all molecules.");
    135     AllMolecules = World::getInstance().getAllMolecules();
    136   }
     102  DoLog(0) && (Log() << Verbose(0) << "Using all molecules." << endl);
     103  AllMolecules = World::getInstance().getAllMolecules();
    137104
    138105  // prepare undo state
  • tests/regression/Domain/RepeatBox/testsuite-domain-repeat-box.at

    rf27fa7 r9d613f  
    3939AT_CHECK([file=test-z.xyz;sort -n ${abs_top_srcdir}/tests/regression/Domain/RepeatBox/post/test-z.xyz  | grep -v "Created by" >$file-sorted2], 0, [ignore], [ignore])
    4040AT_CHECK([file=test-z.xyz; diff $file-sorted $file-sorted2], 0, [ignore], [ignore])
     41
     42file=ec.data
     43AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Domain/RepeatBox/pre/ec.* .], 0)
     44AT_CHECK([../../molecuilder --parse-tremolo-potentials ec.potentials -i $file  -o tremolo -d "2, 2, 2"], 0, [stdout], [stderr])
     45AT_CHECK([fgrep "Box domain is now" stdout], 0, [ignore], [ignore])
     46AT_CHECK([diff $file ${abs_top_srcdir}/tests/regression/Domain/RepeatBox/post/$file], 0, [ignore], [ignore])
    4147
    4248AT_CLEANUP
     
    8288AT_CHECK([file=test-z.xyz; diff $file-sorted $file-sorted2], 0, [ignore], [ignore])
    8389
     90file=ec.data
     91AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Domain/RepeatBox/pre/ec.* .], 0)
     92AT_CHECK([../../molecuilder --parse-tremolo-potentials ec.potentials  -i $file  -o tremolo -d "2, 2, 2" --undo], 0, [stdout], [stderr])
     93AT_CHECK([fgrep "Box domain is now" stdout], 0, [ignore], [ignore])
     94AT_CHECK([diff $file ${abs_top_srcdir}/tests/regression/Domain/RepeatBox/pre/$file], 0, [ignore], [ignore])
     95
    8496AT_CLEANUP
    8597
     
    124136AT_CHECK([file=test-z.xyz; diff $file-sorted $file-sorted2], 0, [ignore], [ignore])
    125137
     138file=ec.data
     139AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Domain/RepeatBox/pre/ec.* .], 0)
     140AT_CHECK([../../molecuilder --parse-tremolo-potentials ec.potentials -i $file  -o tremolo -d "2, 2, 2" --undo --redo], 0, [stdout], [stderr])
     141AT_CHECK([fgrep "Box domain is now" stdout], 0, [ignore], [ignore])
     142AT_CHECK([diff $file ${abs_top_srcdir}/tests/regression/Domain/RepeatBox/post/$file], 0, [ignore], [ignore])
     143
    126144AT_CLEANUP
Note: See TracChangeset for help on using the changeset viewer.