source: src/builder.cpp@ 717e0c

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 Candidate_v1.7.0 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
Last change on this file since 717e0c was 717e0c, checked in by Frederik Heber <heber@…>, 16 years ago

Verbosity corrected for ERROR and WARNING

  • present ERROR and WARNING prefixes removed and placed by eLog() and respective Verbosity().
  • -v... is scanned for number of 'v's and verbosity is set accordingly
  • standard verbosity is now 0.

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

  • Property mode set to 100755
File size: 99.1 KB
RevLine 
[14de469]1/** \file builder.cpp
[a8bcea6]2 *
[14de469]3 * By stating absolute positions or binding angles and distances atomic positions of a molecule can be constructed.
4 * The output is the complete configuration file for PCP for direct use.
5 * Features:
6 * -# Atomic data is retrieved from a file, if not found requested and stored there for later re-use
7 * -# step-by-step construction of the molecule beginning either at a centre of with a certain atom
[a8bcea6]8 *
[14de469]9 */
10
11/*! \mainpage Molecuilder - a molecular set builder
[a8bcea6]12 *
[14de469]13 * This introductory shall briefly make aquainted with the program, helping in installing and a first run.
[a8bcea6]14 *
[14de469]15 * \section about About the Program
[a8bcea6]16 *
[042f82]17 * Molecuilder is a short program, written in C++, that enables the construction of a coordinate set for the
18 * atoms making up an molecule by the successive statement of binding angles and distances and referencing to
19 * already constructed atoms.
[a8bcea6]20 *
[042f82]21 * A configuration file may be written that is compatible to the format used by PCP - a parallel Car-Parrinello
22 * molecular dynamics implementation.
[a8bcea6]23 *
[14de469]24 * \section install Installation
[a8bcea6]25 *
[042f82]26 * Installation should without problems succeed as follows:
27 * -# ./configure (or: mkdir build;mkdir run;cd build; ../configure --bindir=../run)
28 * -# make
29 * -# make install
[a8bcea6]30 *
[042f82]31 * Further useful commands are
32 * -# make clean uninstall: deletes .o-files and removes executable from the given binary directory\n
33 * -# make doxygen-doc: Creates these html pages out of the documented source
[a8bcea6]34 *
[14de469]35 * \section run Running
[a8bcea6]36 *
[042f82]37 * The program can be executed by running: ./molecuilder
[a8bcea6]38 *
[042f82]39 * Note, that it uses a database, called "elements.db", in the executable's directory. If the file is not found,
40 * it is created and any given data on elements of the periodic table will be stored therein and re-used on
41 * later re-execution.
[a8bcea6]42 *
[14de469]43 * \section ref References
[a8bcea6]44 *
[042f82]45 * For the special configuration file format, see the documentation of pcp.
[a8bcea6]46 *
[14de469]47 */
48
49
50using namespace std;
51
[db6bf74]52#include "analysis_correlation.hpp"
[f66195]53#include "atom.hpp"
54#include "bond.hpp"
[b70721]55#include "bondgraph.hpp"
[6ac7ee]56#include "boundary.hpp"
[f66195]57#include "config.hpp"
58#include "element.hpp"
[6ac7ee]59#include "ellipsoid.hpp"
[14de469]60#include "helpers.hpp"
[f66195]61#include "leastsquaremin.hpp"
62#include "linkedcell.hpp"
[e138de]63#include "log.hpp"
[b66c22]64#include "memoryusageobserverunittest.hpp"
[cee0b57]65#include "molecule.hpp"
[f66195]66#include "periodentafel.hpp"
67
[1907a7]68/********************************************* Subsubmenu routine ************************************/
[14de469]69
70/** Submenu for adding atoms to the molecule.
71 * \param *periode periodentafel
[1907a7]72 * \param *molecule molecules with atoms
[14de469]73 */
[7f3b9d]74static void AddAtoms(periodentafel *periode, molecule *mol)
[14de469]75{
[042f82]76 atom *first, *second, *third, *fourth;
77 Vector **atoms;
78 Vector x,y,z,n; // coordinates for absolute point in cell volume
79 double a,b,c;
80 char choice; // menu choice char
81 bool valid;
82
[e138de]83 Log() << Verbose(0) << "===========ADD ATOM============================" << endl;
84 Log() << Verbose(0) << " a - state absolute coordinates of atom" << endl;
85 Log() << Verbose(0) << " b - state relative coordinates of atom wrt to reference point" << endl;
86 Log() << Verbose(0) << " c - state relative coordinates of atom wrt to already placed atom" << endl;
87 Log() << Verbose(0) << " d - state two atoms, two angles and a distance" << endl;
88 Log() << Verbose(0) << " e - least square distance position to a set of atoms" << endl;
89 Log() << Verbose(0) << "all else - go back" << endl;
90 Log() << Verbose(0) << "===============================================" << endl;
91 Log() << Verbose(0) << "Note: Specifiy angles in degrees not multiples of Pi!" << endl;
92 Log() << Verbose(0) << "INPUT: ";
[042f82]93 cin >> choice;
94
95 switch (choice) {
[1907a7]96 default:
[717e0c]97 eLog() << Verbose(2) << "Not a valid choice." << endl;
[1907a7]98 break;
[042f82]99 case 'a': // absolute coordinates of atom
[e138de]100 Log() << Verbose(0) << "Enter absolute coordinates." << endl;
[1907a7]101 first = new atom;
102 first->x.AskPosition(mol->cell_size, false);
[042f82]103 first->type = periode->AskElement(); // give type
104 mol->AddAtom(first); // add to molecule
105 break;
[6ac7ee]106
[042f82]107 case 'b': // relative coordinates of atom wrt to reference point
[1907a7]108 first = new atom;
109 valid = true;
110 do {
[717e0c]111 if (!valid) eLog() << Verbose(2) << "Resulting position out of cell." << endl;
[e138de]112 Log() << Verbose(0) << "Enter reference coordinates." << endl;
[1907a7]113 x.AskPosition(mol->cell_size, true);
[e138de]114 Log() << Verbose(0) << "Enter relative coordinates." << endl;
[1907a7]115 first->x.AskPosition(mol->cell_size, false);
116 first->x.AddVector((const Vector *)&x);
[e138de]117 Log() << Verbose(0) << "\n";
[1907a7]118 } while (!(valid = mol->CheckBounds((const Vector *)&first->x)));
[042f82]119 first->type = periode->AskElement(); // give type
120 mol->AddAtom(first); // add to molecule
121 break;
[6ac7ee]122
[042f82]123 case 'c': // relative coordinates of atom wrt to already placed atom
[1907a7]124 first = new atom;
125 valid = true;
126 do {
[717e0c]127 if (!valid) eLog() << Verbose(2) << "Resulting position out of cell." << endl;
[1907a7]128 second = mol->AskAtom("Enter atom number: ");
[e138de]129 Log() << Verbose(0) << "Enter relative coordinates." << endl;
[1907a7]130 first->x.AskPosition(mol->cell_size, false);
131 for (int i=NDIM;i--;) {
132 first->x.x[i] += second->x.x[i];
133 }
134 } while (!(valid = mol->CheckBounds((const Vector *)&first->x)));
[042f82]135 first->type = periode->AskElement(); // give type
136 mol->AddAtom(first); // add to molecule
[1907a7]137 break;
138
139 case 'd': // two atoms, two angles and a distance
140 first = new atom;
141 valid = true;
142 do {
143 if (!valid) {
[717e0c]144 eLog() << Verbose(2) << "Resulting coordinates out of cell - " << first->x << endl;
[1907a7]145 }
[e138de]146 Log() << Verbose(0) << "First, we need two atoms, the first atom is the central, while the second is the outer one." << endl;
[1907a7]147 second = mol->AskAtom("Enter central atom: ");
148 third = mol->AskAtom("Enter second atom (specifying the axis for first angle): ");
149 fourth = mol->AskAtom("Enter third atom (specifying a plane for second angle): ");
150 a = ask_value("Enter distance between central (first) and new atom: ");
151 b = ask_value("Enter angle between new, first and second atom (degrees): ");
152 b *= M_PI/180.;
153 bound(&b, 0., 2.*M_PI);
154 c = ask_value("Enter second angle between new and normal vector of plane defined by first, second and third atom (degrees): ");
155 c *= M_PI/180.;
156 bound(&c, -M_PI, M_PI);
[e138de]157 Log() << Verbose(0) << "radius: " << a << "\t phi: " << b*180./M_PI << "\t theta: " << c*180./M_PI << endl;
[14de469]158/*
[1907a7]159 second->Output(1,1,(ofstream *)&cout);
160 third->Output(1,2,(ofstream *)&cout);
161 fourth->Output(1,3,(ofstream *)&cout);
162 n.MakeNormalvector((const vector *)&second->x, (const vector *)&third->x, (const vector *)&fourth->x);
163 x.Copyvector(&second->x);
164 x.SubtractVector(&third->x);
165 x.Copyvector(&fourth->x);
166 x.SubtractVector(&third->x);
167
168 if (!z.SolveSystem(&x,&y,&n, b, c, a)) {
[e138de]169 Log() << Verbose(0) << "Failure solving self-dependent linear system!" << endl;
[1907a7]170 continue;
171 }
[e138de]172 Log() << Verbose(0) << "resulting relative coordinates: ";
173 z.Output();
174 Log() << Verbose(0) << endl;
[1907a7]175 */
176 // calc axis vector
177 x.CopyVector(&second->x);
178 x.SubtractVector(&third->x);
179 x.Normalize();
[e138de]180 Log() << Verbose(0) << "x: ",
181 x.Output();
182 Log() << Verbose(0) << endl;
[1907a7]183 z.MakeNormalVector(&second->x,&third->x,&fourth->x);
[e138de]184 Log() << Verbose(0) << "z: ",
185 z.Output();
186 Log() << Verbose(0) << endl;
[1907a7]187 y.MakeNormalVector(&x,&z);
[e138de]188 Log() << Verbose(0) << "y: ",
189 y.Output();
190 Log() << Verbose(0) << endl;
[1907a7]191
192 // rotate vector around first angle
193 first->x.CopyVector(&x);
194 first->x.RotateVector(&z,b - M_PI);
[e138de]195 Log() << Verbose(0) << "Rotated vector: ",
196 first->x.Output();
197 Log() << Verbose(0) << endl;
[1907a7]198 // remove the projection onto the rotation plane of the second angle
199 n.CopyVector(&y);
[658efb]200 n.Scale(first->x.ScalarProduct(&y));
[e138de]201 Log() << Verbose(0) << "N1: ",
202 n.Output();
203 Log() << Verbose(0) << endl;
[1907a7]204 first->x.SubtractVector(&n);
[e138de]205 Log() << Verbose(0) << "Subtracted vector: ",
206 first->x.Output();
207 Log() << Verbose(0) << endl;
[1907a7]208 n.CopyVector(&z);
[658efb]209 n.Scale(first->x.ScalarProduct(&z));
[e138de]210 Log() << Verbose(0) << "N2: ",
211 n.Output();
212 Log() << Verbose(0) << endl;
[1907a7]213 first->x.SubtractVector(&n);
[e138de]214 Log() << Verbose(0) << "2nd subtracted vector: ",
215 first->x.Output();
216 Log() << Verbose(0) << endl;
[1907a7]217
218 // rotate another vector around second angle
219 n.CopyVector(&y);
220 n.RotateVector(&x,c - M_PI);
[e138de]221 Log() << Verbose(0) << "2nd Rotated vector: ",
222 n.Output();
223 Log() << Verbose(0) << endl;
[1907a7]224
225 // add the two linear independent vectors
226 first->x.AddVector(&n);
227 first->x.Normalize();
228 first->x.Scale(a);
229 first->x.AddVector(&second->x);
230
[e138de]231 Log() << Verbose(0) << "resulting coordinates: ";
232 first->x.Output();
233 Log() << Verbose(0) << endl;
[1907a7]234 } while (!(valid = mol->CheckBounds((const Vector *)&first->x)));
[042f82]235 first->type = periode->AskElement(); // give type
236 mol->AddAtom(first); // add to molecule
237 break;
[6ac7ee]238
[042f82]239 case 'e': // least square distance position to a set of atoms
[1907a7]240 first = new atom;
241 atoms = new (Vector*[128]);
242 valid = true;
243 for(int i=128;i--;)
244 atoms[i] = NULL;
245 int i=0, j=0;
[e138de]246 Log() << Verbose(0) << "Now we need at least three molecules.\n";
[1907a7]247 do {
[e138de]248 Log() << Verbose(0) << "Enter " << i+1 << "th atom: ";
[1907a7]249 cin >> j;
250 if (j != -1) {
251 second = mol->FindAtom(j);
252 atoms[i++] = &(second->x);
253 }
254 } while ((j != -1) && (i<128));
255 if (i >= 2) {
[776b64]256 first->x.LSQdistance((const Vector **)atoms, i);
[1907a7]257
[e138de]258 first->x.Output();
[042f82]259 first->type = periode->AskElement(); // give type
260 mol->AddAtom(first); // add to molecule
[1907a7]261 } else {
262 delete first;
[e138de]263 Log() << Verbose(0) << "Please enter at least two vectors!\n";
[1907a7]264 }
[042f82]265 break;
266 };
[14de469]267};
268
269/** Submenu for centering the atoms in the molecule.
[1907a7]270 * \param *mol molecule with all the atoms
[14de469]271 */
[7f3b9d]272static void CenterAtoms(molecule *mol)
[14de469]273{
[042f82]274 Vector x, y, helper;
275 char choice; // menu choice char
276
[e138de]277 Log() << Verbose(0) << "===========CENTER ATOMS=========================" << endl;
278 Log() << Verbose(0) << " a - on origin" << endl;
279 Log() << Verbose(0) << " b - on center of gravity" << endl;
280 Log() << Verbose(0) << " c - within box with additional boundary" << endl;
281 Log() << Verbose(0) << " d - within given simulation box" << endl;
282 Log() << Verbose(0) << "all else - go back" << endl;
283 Log() << Verbose(0) << "===============================================" << endl;
284 Log() << Verbose(0) << "INPUT: ";
[042f82]285 cin >> choice;
286
287 switch (choice) {
288 default:
[e138de]289 Log() << Verbose(0) << "Not a valid choice." << endl;
[042f82]290 break;
291 case 'a':
[e138de]292 Log() << Verbose(0) << "Centering atoms in config file on origin." << endl;
293 mol->CenterOrigin();
[042f82]294 break;
295 case 'b':
[e138de]296 Log() << Verbose(0) << "Centering atoms in config file on center of gravity." << endl;
297 mol->CenterPeriodic();
[042f82]298 break;
299 case 'c':
[e138de]300 Log() << Verbose(0) << "Centering atoms in config file within given additional boundary." << endl;
[042f82]301 for (int i=0;i<NDIM;i++) {
[e138de]302 Log() << Verbose(0) << "Enter axis " << i << " boundary: ";
[042f82]303 cin >> y.x[i];
304 }
[e138de]305 mol->CenterEdge(&x); // make every coordinate positive
[437922]306 mol->Center.AddVector(&y); // translate by boundary
[042f82]307 helper.CopyVector(&y);
308 helper.Scale(2.);
309 helper.AddVector(&x);
310 mol->SetBoxDimension(&helper); // update Box of atoms by boundary
311 break;
312 case 'd':
[e138de]313 Log() << Verbose(1) << "Centering atoms in config file within given simulation box." << endl;
[042f82]314 for (int i=0;i<NDIM;i++) {
[e138de]315 Log() << Verbose(0) << "Enter axis " << i << " boundary: ";
[042f82]316 cin >> x.x[i];
317 }
318 // update Box of atoms by boundary
319 mol->SetBoxDimension(&x);
[36ec71]320 // center
[e138de]321 mol->CenterInBox();
[042f82]322 break;
323 }
[14de469]324};
325
326/** Submenu for aligning the atoms in the molecule.
327 * \param *periode periodentafel
[1907a7]328 * \param *mol molecule with all the atoms
[14de469]329 */
[7f3b9d]330static void AlignAtoms(periodentafel *periode, molecule *mol)
[14de469]331{
[042f82]332 atom *first, *second, *third;
333 Vector x,n;
334 char choice; // menu choice char
335
[e138de]336 Log() << Verbose(0) << "===========ALIGN ATOMS=========================" << endl;
337 Log() << Verbose(0) << " a - state three atoms defining align plane" << endl;
338 Log() << Verbose(0) << " b - state alignment vector" << endl;
339 Log() << Verbose(0) << " c - state two atoms in alignment direction" << endl;
340 Log() << Verbose(0) << " d - align automatically by least square fit" << endl;
341 Log() << Verbose(0) << "all else - go back" << endl;
342 Log() << Verbose(0) << "===============================================" << endl;
343 Log() << Verbose(0) << "INPUT: ";
[042f82]344 cin >> choice;
345
346 switch (choice) {
347 default:
348 case 'a': // three atoms defining mirror plane
349 first = mol->AskAtom("Enter first atom: ");
350 second = mol->AskAtom("Enter second atom: ");
351 third = mol->AskAtom("Enter third atom: ");
352
353 n.MakeNormalVector((const Vector *)&first->x,(const Vector *)&second->x,(const Vector *)&third->x);
354 break;
355 case 'b': // normal vector of mirror plane
[e138de]356 Log() << Verbose(0) << "Enter normal vector of mirror plane." << endl;
[042f82]357 n.AskPosition(mol->cell_size,0);
358 n.Normalize();
359 break;
360 case 'c': // three atoms defining mirror plane
361 first = mol->AskAtom("Enter first atom: ");
362 second = mol->AskAtom("Enter second atom: ");
363
364 n.CopyVector((const Vector *)&first->x);
365 n.SubtractVector((const Vector *)&second->x);
366 n.Normalize();
367 break;
368 case 'd':
369 char shorthand[4];
370 Vector a;
371 struct lsq_params param;
372 do {
373 fprintf(stdout, "Enter the element of atoms to be chosen: ");
374 fscanf(stdin, "%3s", shorthand);
375 } while ((param.type = periode->FindElement(shorthand)) == NULL);
[e138de]376 Log() << Verbose(0) << "Element is " << param.type->name << endl;
[042f82]377 mol->GetAlignvector(&param);
378 for (int i=NDIM;i--;) {
379 x.x[i] = gsl_vector_get(param.x,i);
380 n.x[i] = gsl_vector_get(param.x,i+NDIM);
381 }
382 gsl_vector_free(param.x);
[e138de]383 Log() << Verbose(0) << "Offset vector: ";
384 x.Output();
385 Log() << Verbose(0) << endl;
[042f82]386 n.Normalize();
387 break;
388 };
[e138de]389 Log() << Verbose(0) << "Alignment vector: ";
390 n.Output();
391 Log() << Verbose(0) << endl;
[042f82]392 mol->Align(&n);
[14de469]393};
394
395/** Submenu for mirroring the atoms in the molecule.
[1907a7]396 * \param *mol molecule with all the atoms
[14de469]397 */
[7f3b9d]398static void MirrorAtoms(molecule *mol)
[14de469]399{
[042f82]400 atom *first, *second, *third;
401 Vector n;
402 char choice; // menu choice char
403
[e138de]404 Log() << Verbose(0) << "===========MIRROR ATOMS=========================" << endl;
405 Log() << Verbose(0) << " a - state three atoms defining mirror plane" << endl;
406 Log() << Verbose(0) << " b - state normal vector of mirror plane" << endl;
407 Log() << Verbose(0) << " c - state two atoms in normal direction" << endl;
408 Log() << Verbose(0) << "all else - go back" << endl;
409 Log() << Verbose(0) << "===============================================" << endl;
410 Log() << Verbose(0) << "INPUT: ";
[042f82]411 cin >> choice;
412
413 switch (choice) {
414 default:
415 case 'a': // three atoms defining mirror plane
416 first = mol->AskAtom("Enter first atom: ");
417 second = mol->AskAtom("Enter second atom: ");
418 third = mol->AskAtom("Enter third atom: ");
419
420 n.MakeNormalVector((const Vector *)&first->x,(const Vector *)&second->x,(const Vector *)&third->x);
421 break;
422 case 'b': // normal vector of mirror plane
[e138de]423 Log() << Verbose(0) << "Enter normal vector of mirror plane." << endl;
[042f82]424 n.AskPosition(mol->cell_size,0);
425 n.Normalize();
426 break;
427 case 'c': // three atoms defining mirror plane
428 first = mol->AskAtom("Enter first atom: ");
429 second = mol->AskAtom("Enter second atom: ");
430
431 n.CopyVector((const Vector *)&first->x);
432 n.SubtractVector((const Vector *)&second->x);
433 n.Normalize();
434 break;
435 };
[e138de]436 Log() << Verbose(0) << "Normal vector: ";
437 n.Output();
438 Log() << Verbose(0) << endl;
[042f82]439 mol->Mirror((const Vector *)&n);
[14de469]440};
441
442/** Submenu for removing the atoms from the molecule.
[1907a7]443 * \param *mol molecule with all the atoms
[14de469]444 */
[7f3b9d]445static void RemoveAtoms(molecule *mol)
[14de469]446{
[042f82]447 atom *first, *second;
448 int axis;
449 double tmp1, tmp2;
450 char choice; // menu choice char
451
[e138de]452 Log() << Verbose(0) << "===========REMOVE ATOMS=========================" << endl;
453 Log() << Verbose(0) << " a - state atom for removal by number" << endl;
454 Log() << Verbose(0) << " b - keep only in radius around atom" << endl;
455 Log() << Verbose(0) << " c - remove this with one axis greater value" << endl;
456 Log() << Verbose(0) << "all else - go back" << endl;
457 Log() << Verbose(0) << "===============================================" << endl;
458 Log() << Verbose(0) << "INPUT: ";
[042f82]459 cin >> choice;
460
461 switch (choice) {
462 default:
463 case 'a':
464 if (mol->RemoveAtom(mol->AskAtom("Enter number of atom within molecule: ")))
[e138de]465 Log() << Verbose(1) << "Atom removed." << endl;
[042f82]466 else
[e138de]467 Log() << Verbose(1) << "Atom not found." << endl;
[042f82]468 break;
469 case 'b':
470 second = mol->AskAtom("Enter number of atom as reference point: ");
[e138de]471 Log() << Verbose(0) << "Enter radius: ";
[042f82]472 cin >> tmp1;
473 first = mol->start;
[c54da3]474 second = first->next;
[375b458]475 while(second != mol->end) {
476 first = second;
[c54da3]477 second = first->next;
[042f82]478 if (first->x.DistanceSquared((const Vector *)&second->x) > tmp1*tmp1) // distance to first above radius ...
479 mol->RemoveAtom(first);
480 }
481 break;
482 case 'c':
[e138de]483 Log() << Verbose(0) << "Which axis is it: ";
[042f82]484 cin >> axis;
[e138de]485 Log() << Verbose(0) << "Lower boundary: ";
[042f82]486 cin >> tmp1;
[e138de]487 Log() << Verbose(0) << "Upper boundary: ";
[042f82]488 cin >> tmp2;
489 first = mol->start;
[a5b2c3a]490 second = first->next;
491 while(second != mol->end) {
492 first = second;
493 second = first->next;
[375b458]494 if ((first->x.x[axis] < tmp1) || (first->x.x[axis] > tmp2)) {// out of boundary ...
[e138de]495 //Log() << Verbose(0) << "Atom " << *first << " with " << first->x.x[axis] << " on axis " << axis << " is out of bounds [" << tmp1 << "," << tmp2 << "]." << endl;
[042f82]496 mol->RemoveAtom(first);
[375b458]497 }
[042f82]498 }
499 break;
500 };
[e138de]501 //mol->Output();
[042f82]502 choice = 'r';
[14de469]503};
504
505/** Submenu for measuring out the atoms in the molecule.
506 * \param *periode periodentafel
[1907a7]507 * \param *mol molecule with all the atoms
[14de469]508 */
[d52ea1b]509static void MeasureAtoms(periodentafel *periode, molecule *mol, config *configuration)
[14de469]510{
[042f82]511 atom *first, *second, *third;
512 Vector x,y;
513 double min[256], tmp1, tmp2, tmp3;
514 int Z;
515 char choice; // menu choice char
516
[e138de]517 Log() << Verbose(0) << "===========MEASURE ATOMS=========================" << endl;
518 Log() << Verbose(0) << " a - calculate bond length between one atom and all others" << endl;
519 Log() << Verbose(0) << " b - calculate bond length between two atoms" << endl;
520 Log() << Verbose(0) << " c - calculate bond angle" << endl;
521 Log() << Verbose(0) << " d - calculate principal axis of the system" << endl;
522 Log() << Verbose(0) << " e - calculate volume of the convex envelope" << endl;
523 Log() << Verbose(0) << " f - calculate temperature from current velocity" << endl;
524 Log() << Verbose(0) << " g - output all temperatures per step from velocities" << endl;
525 Log() << Verbose(0) << "all else - go back" << endl;
526 Log() << Verbose(0) << "===============================================" << endl;
527 Log() << Verbose(0) << "INPUT: ";
[042f82]528 cin >> choice;
529
530 switch(choice) {
531 default:
[e138de]532 Log() << Verbose(1) << "Not a valid choice." << endl;
[042f82]533 break;
534 case 'a':
535 first = mol->AskAtom("Enter first atom: ");
536 for (int i=MAX_ELEMENTS;i--;)
537 min[i] = 0.;
538
539 second = mol->start;
540 while ((second->next != mol->end)) {
541 second = second->next; // advance
542 Z = second->type->Z;
543 tmp1 = 0.;
544 if (first != second) {
545 x.CopyVector((const Vector *)&first->x);
546 x.SubtractVector((const Vector *)&second->x);
547 tmp1 = x.Norm();
548 }
549 if ((tmp1 != 0.) && ((min[Z] == 0.) || (tmp1 < min[Z]))) min[Z] = tmp1;
[e138de]550 //Log() << Verbose(0) << "Bond length between Atom " << first->nr << " and " << second->nr << ": " << tmp1 << " a.u." << endl;
[042f82]551 }
552 for (int i=MAX_ELEMENTS;i--;)
[e138de]553 if (min[i] != 0.) Log() << Verbose(0) << "Minimum Bond length between " << first->type->name << " Atom " << first->nr << " and next Ion of type " << (periode->FindElement(i))->name << ": " << min[i] << " a.u." << endl;
[042f82]554 break;
555
556 case 'b':
557 first = mol->AskAtom("Enter first atom: ");
558 second = mol->AskAtom("Enter second atom: ");
559 for (int i=NDIM;i--;)
560 min[i] = 0.;
561 x.CopyVector((const Vector *)&first->x);
562 x.SubtractVector((const Vector *)&second->x);
563 tmp1 = x.Norm();
[e138de]564 Log() << Verbose(1) << "Distance vector is ";
565 x.Output();
566 Log() << Verbose(0) << "." << endl << "Norm of distance is " << tmp1 << "." << endl;
[042f82]567 break;
568
569 case 'c':
[e138de]570 Log() << Verbose(0) << "Evaluating bond angle between three - first, central, last - atoms." << endl;
[042f82]571 first = mol->AskAtom("Enter first atom: ");
572 second = mol->AskAtom("Enter central atom: ");
573 third = mol->AskAtom("Enter last atom: ");
574 tmp1 = tmp2 = tmp3 = 0.;
575 x.CopyVector((const Vector *)&first->x);
576 x.SubtractVector((const Vector *)&second->x);
577 y.CopyVector((const Vector *)&third->x);
578 y.SubtractVector((const Vector *)&second->x);
[e138de]579 Log() << Verbose(0) << "Bond angle between first atom Nr." << first->nr << ", central atom Nr." << second->nr << " and last atom Nr." << third->nr << ": ";
580 Log() << Verbose(0) << (acos(x.ScalarProduct((const Vector *)&y)/(y.Norm()*x.Norm()))/M_PI*180.) << " degrees" << endl;
[042f82]581 break;
582 case 'd':
[e138de]583 Log() << Verbose(0) << "Evaluating prinicipal axis." << endl;
584 Log() << Verbose(0) << "Shall we rotate? [0/1]: ";
[042f82]585 cin >> Z;
586 if ((Z >=0) && (Z <=1))
[e138de]587 mol->PrincipalAxisSystem((bool)Z);
[042f82]588 else
[e138de]589 mol->PrincipalAxisSystem(false);
[042f82]590 break;
591 case 'e':
[d30402]592 {
[e138de]593 Log() << Verbose(0) << "Evaluating volume of the convex envelope.";
[d30402]594 class Tesselation *TesselStruct = NULL;
[776b64]595 const LinkedCell *LCList = NULL;
596 LCList = new LinkedCell(mol, 10.);
[e138de]597 FindConvexBorder(mol, TesselStruct, LCList, NULL);
598 double clustervolume = VolumeOfConvexEnvelope(TesselStruct, configuration);
599 Log() << Verbose(0) << "The tesselated surface area is " << clustervolume << "." << endl;\
[776b64]600 delete(LCList);
[d30402]601 delete(TesselStruct);
602 }
[042f82]603 break;
604 case 'f':
[e138de]605 mol->OutputTemperatureFromTrajectories((ofstream *)&cout, mol->MDSteps-1, mol->MDSteps);
[042f82]606 break;
607 case 'g':
608 {
609 char filename[255];
[e138de]610 Log() << Verbose(0) << "Please enter filename: " << endl;
[042f82]611 cin >> filename;
[e138de]612 Log() << Verbose(1) << "Storing temperatures in " << filename << "." << endl;
[042f82]613 ofstream *output = new ofstream(filename, ios::trunc);
[e138de]614 if (!mol->OutputTemperatureFromTrajectories(output, 0, mol->MDSteps))
615 Log() << Verbose(2) << "File could not be written." << endl;
[042f82]616 else
[e138de]617 Log() << Verbose(2) << "File stored." << endl;
[042f82]618 output->close();
619 delete(output);
620 }
621 break;
622 }
[14de469]623};
624
625/** Submenu for measuring out the atoms in the molecule.
[1907a7]626 * \param *mol molecule with all the atoms
[14de469]627 * \param *configuration configuration structure for the to be written config files of all fragments
628 */
[7f3b9d]629static void FragmentAtoms(molecule *mol, config *configuration)
[14de469]630{
[042f82]631 int Order1;
632 clock_t start, end;
633
[e138de]634 Log() << Verbose(0) << "Fragmenting molecule with current connection matrix ..." << endl;
635 Log() << Verbose(0) << "What's the desired bond order: ";
[042f82]636 cin >> Order1;
637 if (mol->first->next != mol->last) { // there are bonds
638 start = clock();
[e138de]639 mol->FragmentMolecule(Order1, configuration);
[042f82]640 end = clock();
[e138de]641 Log() << Verbose(0) << "Clocks for this operation: " << (end-start) << ", time: " << ((double)(end-start)/CLOCKS_PER_SEC) << "s." << endl;
[042f82]642 } else
[e138de]643 Log() << Verbose(0) << "Connection matrix has not yet been generated!" << endl;
[14de469]644};
645
[1907a7]646/********************************************** Submenu routine **************************************/
647
648/** Submenu for manipulating atoms.
649 * \param *periode periodentafel
650 * \param *molecules list of molecules whose atoms are to be manipulated
651 */
652static void ManipulateAtoms(periodentafel *periode, MoleculeListClass *molecules, config *configuration)
653{
[4777e9]654 atom *first, *second;
[1907a7]655 molecule *mol = NULL;
656 Vector x,y,z,n; // coordinates for absolute point in cell volume
657 double *factor; // unit factor if desired
[f1cccd]658 double bond, minBond;
[1907a7]659 char choice; // menu choice char
660 bool valid;
661
[e138de]662 Log() << Verbose(0) << "=========MANIPULATE ATOMS======================" << endl;
663 Log() << Verbose(0) << "a - add an atom" << endl;
664 Log() << Verbose(0) << "r - remove an atom" << endl;
665 Log() << Verbose(0) << "b - scale a bond between atoms" << endl;
666 Log() << Verbose(0) << "u - change an atoms element" << endl;
667 Log() << Verbose(0) << "l - measure lengths, angles, ... for an atom" << endl;
668 Log() << Verbose(0) << "all else - go back" << endl;
669 Log() << Verbose(0) << "===============================================" << endl;
[63f06e]670 if (molecules->NumberOfActiveMolecules() > 1)
[717e0c]671 eLog() << Verbose(2) << "There is more than one molecule active! Atoms will be added to each." << endl;
[e138de]672 Log() << Verbose(0) << "INPUT: ";
[1907a7]673 cin >> choice;
674
675 switch (choice) {
676 default:
[e138de]677 Log() << Verbose(0) << "Not a valid choice." << endl;
[1907a7]678 break;
679
680 case 'a': // add atom
[63f06e]681 for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++)
682 if ((*ListRunner)->ActiveFlag) {
[1907a7]683 mol = *ListRunner;
[e138de]684 Log() << Verbose(0) << "Current molecule is: " << mol->IndexNr << "\t" << mol->name << endl;
[1907a7]685 AddAtoms(periode, mol);
686 }
687 break;
688
689 case 'b': // scale a bond
[63f06e]690 for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++)
691 if ((*ListRunner)->ActiveFlag) {
[1907a7]692 mol = *ListRunner;
[e138de]693 Log() << Verbose(0) << "Current molecule is: " << mol->IndexNr << "\t" << mol->name << endl;
694 Log() << Verbose(0) << "Scaling bond length between two atoms." << endl;
[1907a7]695 first = mol->AskAtom("Enter first (fixed) atom: ");
696 second = mol->AskAtom("Enter second (shifting) atom: ");
[f1cccd]697 minBond = 0.;
[1907a7]698 for (int i=NDIM;i--;)
[f1cccd]699 minBond += (first->x.x[i]-second->x.x[i])*(first->x.x[i] - second->x.x[i]);
700 minBond = sqrt(minBond);
[e138de]701 Log() << Verbose(0) << "Current Bond length between " << first->type->name << " Atom " << first->nr << " and " << second->type->name << " Atom " << second->nr << ": " << minBond << " a.u." << endl;
702 Log() << Verbose(0) << "Enter new bond length [a.u.]: ";
[1907a7]703 cin >> bond;
704 for (int i=NDIM;i--;) {
[f1cccd]705 second->x.x[i] -= (second->x.x[i]-first->x.x[i])/minBond*(minBond-bond);
[1907a7]706 }
[e138de]707 //Log() << Verbose(0) << "New coordinates of Atom " << second->nr << " are: ";
708 //second->Output(second->type->No, 1);
[1907a7]709 }
710 break;
711
712 case 'c': // unit scaling of the metric
[63f06e]713 for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++)
714 if ((*ListRunner)->ActiveFlag) {
[1907a7]715 mol = *ListRunner;
[e138de]716 Log() << Verbose(0) << "Current molecule is: " << mol->IndexNr << "\t" << mol->name << endl;
717 Log() << Verbose(0) << "Angstroem -> Bohrradius: 1.8897261\t\tBohrradius -> Angstroem: 0.52917721" << endl;
718 Log() << Verbose(0) << "Enter three factors: ";
[1907a7]719 factor = new double[NDIM];
720 cin >> factor[0];
721 cin >> factor[1];
722 cin >> factor[2];
723 valid = true;
[776b64]724 mol->Scale((const double ** const)&factor);
[1907a7]725 delete[](factor);
726 }
727 break;
728
729 case 'l': // measure distances or angles
[63f06e]730 for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++)
731 if ((*ListRunner)->ActiveFlag) {
[1907a7]732 mol = *ListRunner;
[e138de]733 Log() << Verbose(0) << "Current molecule is: " << mol->IndexNr << "\t" << mol->name << endl;
[1907a7]734 MeasureAtoms(periode, mol, configuration);
735 }
736 break;
737
738 case 'r': // remove atom
[63f06e]739 for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++)
740 if ((*ListRunner)->ActiveFlag) {
[1907a7]741 mol = *ListRunner;
[e138de]742 Log() << Verbose(0) << "Current molecule is: " << mol->IndexNr << "\t" << mol->name << endl;
[1907a7]743 RemoveAtoms(mol);
744 }
745 break;
746
747 case 'u': // change an atom's element
[63f06e]748 for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++)
749 if ((*ListRunner)->ActiveFlag) {
[1907a7]750 int Z;
751 mol = *ListRunner;
[e138de]752 Log() << Verbose(0) << "Current molecule is: " << mol->IndexNr << "\t" << mol->name << endl;
[1907a7]753 first = NULL;
754 do {
[e138de]755 Log() << Verbose(0) << "Change the element of which atom: ";
[1907a7]756 cin >> Z;
757 } while ((first = mol->FindAtom(Z)) == NULL);
[e138de]758 Log() << Verbose(0) << "New element by atomic number Z: ";
[1907a7]759 cin >> Z;
760 first->type = periode->FindElement(Z);
[e138de]761 Log() << Verbose(0) << "Atom " << first->nr << "'s element is " << first->type->name << "." << endl;
[1907a7]762 }
763 break;
764 }
765};
766
767/** Submenu for manipulating molecules.
768 * \param *periode periodentafel
769 * \param *molecules list of molecule to manipulate
770 */
771static void ManipulateMolecules(periodentafel *periode, MoleculeListClass *molecules, config *configuration)
772{
[4777e9]773 atom *first = NULL;
[1907a7]774 Vector x,y,z,n; // coordinates for absolute point in cell volume
775 int j, axis, count, faktor;
776 char choice; // menu choice char
777 molecule *mol = NULL;
778 element **Elements;
779 Vector **vectors;
780 MoleculeLeafClass *Subgraphs = NULL;
781
[e138de]782 Log() << Verbose(0) << "=========MANIPULATE GLOBALLY===================" << endl;
783 Log() << Verbose(0) << "c - scale by unit transformation" << endl;
784 Log() << Verbose(0) << "d - duplicate molecule/periodic cell" << endl;
785 Log() << Verbose(0) << "f - fragment molecule many-body bond order style" << endl;
786 Log() << Verbose(0) << "g - center atoms in box" << endl;
787 Log() << Verbose(0) << "i - realign molecule" << endl;
788 Log() << Verbose(0) << "m - mirror all molecules" << endl;
789 Log() << Verbose(0) << "o - create connection matrix" << endl;
790 Log() << Verbose(0) << "t - translate molecule by vector" << endl;
791 Log() << Verbose(0) << "all else - go back" << endl;
792 Log() << Verbose(0) << "===============================================" << endl;
[63f06e]793 if (molecules->NumberOfActiveMolecules() > 1)
[717e0c]794 eLog() << Verbose(2) << "There is more than one molecule active! Atoms will be added to each." << endl;
[e138de]795 Log() << Verbose(0) << "INPUT: ";
[1907a7]796 cin >> choice;
797
798 switch (choice) {
799 default:
[e138de]800 Log() << Verbose(0) << "Not a valid choice." << endl;
[1907a7]801 break;
802
803 case 'd': // duplicate the periodic cell along a given axis, given times
[63f06e]804 for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++)
805 if ((*ListRunner)->ActiveFlag) {
[1907a7]806 mol = *ListRunner;
[e138de]807 Log() << Verbose(0) << "Current molecule is: " << mol->IndexNr << "\t" << mol->name << endl;
808 Log() << Verbose(0) << "State the axis [(+-)123]: ";
[1907a7]809 cin >> axis;
[e138de]810 Log() << Verbose(0) << "State the factor: ";
[1907a7]811 cin >> faktor;
812
[e138de]813 mol->CountAtoms(); // recount atoms
[1907a7]814 if (mol->AtomCount != 0) { // if there is more than none
815 count = mol->AtomCount; // is changed becausing of adding, thus has to be stored away beforehand
816 Elements = new element *[count];
817 vectors = new Vector *[count];
818 j = 0;
819 first = mol->start;
820 while (first->next != mol->end) { // make a list of all atoms with coordinates and element
821 first = first->next;
822 Elements[j] = first->type;
823 vectors[j] = &first->x;
824 j++;
825 }
826 if (count != j)
[717e0c]827 eLog() << Verbose(1) << "AtomCount " << count << " is not equal to number of atoms in molecule " << j << "!" << endl;
[1907a7]828 x.Zero();
829 y.Zero();
830 y.x[abs(axis)-1] = mol->cell_size[(abs(axis) == 2) ? 2 : ((abs(axis) == 3) ? 5 : 0)] * abs(axis)/axis; // last term is for sign, first is for magnitude
831 for (int i=1;i<faktor;i++) { // then add this list with respective translation factor times
832 x.AddVector(&y); // per factor one cell width further
833 for (int k=count;k--;) { // go through every atom of the original cell
834 first = new atom(); // create a new body
835 first->x.CopyVector(vectors[k]); // use coordinate of original atom
836 first->x.AddVector(&x); // translate the coordinates
837 first->type = Elements[k]; // insert original element
838 mol->AddAtom(first); // and add to the molecule (which increments ElementsInMolecule, AtomCount, ...)
839 }
840 }
841 if (mol->first->next != mol->last) // if connect matrix is present already, redo it
[e138de]842 mol->CreateAdjacencyList(mol->BondDistance, configuration->GetIsAngstroem(), &BondGraph::CovalentMinMaxDistance, NULL);
[1907a7]843 // free memory
844 delete[](Elements);
845 delete[](vectors);
846 // correct cell size
847 if (axis < 0) { // if sign was negative, we have to translate everything
848 x.Zero();
849 x.AddVector(&y);
850 x.Scale(-(faktor-1));
851 mol->Translate(&x);
852 }
853 mol->cell_size[(abs(axis) == 2) ? 2 : ((abs(axis) == 3) ? 5 : 0)] *= faktor;
854 }
855 }
856 break;
857
858 case 'f':
859 FragmentAtoms(mol, configuration);
860 break;
861
862 case 'g': // center the atoms
[63f06e]863 for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++)
864 if ((*ListRunner)->ActiveFlag) {
[1907a7]865 mol = *ListRunner;
[e138de]866 Log() << Verbose(0) << "Current molecule is: " << mol->IndexNr << "\t" << mol->name << endl;
[1907a7]867 CenterAtoms(mol);
868 }
869 break;
870
871 case 'i': // align all atoms
[63f06e]872 for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++)
873 if ((*ListRunner)->ActiveFlag) {
[1907a7]874 mol = *ListRunner;
[e138de]875 Log() << Verbose(0) << "Current molecule is: " << mol->IndexNr << "\t" << mol->name << endl;
[1907a7]876 AlignAtoms(periode, mol);
877 }
878 break;
879
880 case 'm': // mirror atoms along a given axis
[63f06e]881 for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++)
882 if ((*ListRunner)->ActiveFlag) {
[1907a7]883 mol = *ListRunner;
[e138de]884 Log() << Verbose(0) << "Current molecule is: " << mol->IndexNr << "\t" << mol->name << endl;
[1907a7]885 MirrorAtoms(mol);
886 }
887 break;
888
889 case 'o': // create the connection matrix
[63f06e]890 for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++)
891 if ((*ListRunner)->ActiveFlag) {
[b6d8a9]892 mol = *ListRunner;
893 double bonddistance;
894 clock_t start,end;
[e138de]895 Log() << Verbose(0) << "What's the maximum bond distance: ";
[b6d8a9]896 cin >> bonddistance;
897 start = clock();
[e138de]898 mol->CreateAdjacencyList(bonddistance, configuration->GetIsAngstroem(), &BondGraph::CovalentMinMaxDistance, NULL);
[b6d8a9]899 end = clock();
[e138de]900 Log() << Verbose(0) << "Clocks for this operation: " << (end-start) << ", time: " << ((double)(end-start)/CLOCKS_PER_SEC) << "s." << endl;
[b6d8a9]901 }
[1907a7]902 break;
903
904 case 't': // translate all atoms
[63f06e]905 for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++)
906 if ((*ListRunner)->ActiveFlag) {
[1907a7]907 mol = *ListRunner;
[e138de]908 Log() << Verbose(0) << "Current molecule is: " << mol->IndexNr << "\t" << mol->name << endl;
909 Log() << Verbose(0) << "Enter translation vector." << endl;
[1907a7]910 x.AskPosition(mol->cell_size,0);
[63f06e]911 mol->Center.AddVector((const Vector *)&x);
[1907a7]912 }
913 break;
914 }
915 // Free all
916 if (Subgraphs != NULL) { // free disconnected subgraph list of DFS analysis was performed
917 while (Subgraphs->next != NULL) {
918 Subgraphs = Subgraphs->next;
919 delete(Subgraphs->previous);
920 }
921 delete(Subgraphs);
922 }
923};
924
925
926/** Submenu for creating new molecules.
927 * \param *periode periodentafel
928 * \param *molecules list of molecules to add to
929 */
930static void EditMolecules(periodentafel *periode, MoleculeListClass *molecules)
931{
932 char choice; // menu choice char
[63f06e]933 Vector center;
[1907a7]934 int nr, count;
935 molecule *mol = NULL;
936
[e138de]937 Log() << Verbose(0) << "==========EDIT MOLECULES=====================" << endl;
938 Log() << Verbose(0) << "c - create new molecule" << endl;
939 Log() << Verbose(0) << "l - load molecule from xyz file" << endl;
940 Log() << Verbose(0) << "n - change molecule's name" << endl;
941 Log() << Verbose(0) << "N - give molecules filename" << endl;
942 Log() << Verbose(0) << "p - parse atoms in xyz file into molecule" << endl;
943 Log() << Verbose(0) << "r - remove a molecule" << endl;
944 Log() << Verbose(0) << "all else - go back" << endl;
945 Log() << Verbose(0) << "===============================================" << endl;
946 Log() << Verbose(0) << "INPUT: ";
[1907a7]947 cin >> choice;
948
949 switch (choice) {
950 default:
[e138de]951 Log() << Verbose(0) << "Not a valid choice." << endl;
[1907a7]952 break;
953 case 'c':
954 mol = new molecule(periode);
955 molecules->insert(mol);
956 break;
957
[63f06e]958 case 'l': // load from XYZ file
959 {
960 char filename[MAXSTRINGSIZE];
[e138de]961 Log() << Verbose(0) << "Format should be XYZ with: ShorthandOfElement\tX\tY\tZ" << endl;
[63f06e]962 mol = new molecule(periode);
963 do {
[e138de]964 Log() << Verbose(0) << "Enter file name: ";
[63f06e]965 cin >> filename;
966 } while (!mol->AddXYZFile(filename));
967 mol->SetNameFromFilename(filename);
968 // center at set box dimensions
[e138de]969 mol->CenterEdge(&center);
[63f06e]970 mol->cell_size[0] = center.x[0];
971 mol->cell_size[1] = 0;
972 mol->cell_size[2] = center.x[1];
973 mol->cell_size[3] = 0;
974 mol->cell_size[4] = 0;
975 mol->cell_size[5] = center.x[2];
976 molecules->insert(mol);
977 }
[1907a7]978 break;
979
980 case 'n':
[63f06e]981 {
982 char filename[MAXSTRINGSIZE];
983 do {
[e138de]984 Log() << Verbose(0) << "Enter index of molecule: ";
[63f06e]985 cin >> nr;
986 mol = molecules->ReturnIndex(nr);
987 } while (mol == NULL);
[e138de]988 Log() << Verbose(0) << "Enter name: ";
[63f06e]989 cin >> filename;
990 strcpy(mol->name, filename);
991 }
[1907a7]992 break;
993
994 case 'N':
[63f06e]995 {
996 char filename[MAXSTRINGSIZE];
997 do {
[e138de]998 Log() << Verbose(0) << "Enter index of molecule: ";
[63f06e]999 cin >> nr;
1000 mol = molecules->ReturnIndex(nr);
1001 } while (mol == NULL);
[e138de]1002 Log() << Verbose(0) << "Enter name: ";
[63f06e]1003 cin >> filename;
1004 mol->SetNameFromFilename(filename);
1005 }
[1907a7]1006 break;
1007
1008 case 'p': // parse XYZ file
[63f06e]1009 {
1010 char filename[MAXSTRINGSIZE];
1011 mol = NULL;
1012 do {
[e138de]1013 Log() << Verbose(0) << "Enter index of molecule: ";
[63f06e]1014 cin >> nr;
1015 mol = molecules->ReturnIndex(nr);
1016 } while (mol == NULL);
[e138de]1017 Log() << Verbose(0) << "Format should be XYZ with: ShorthandOfElement\tX\tY\tZ" << endl;
[63f06e]1018 do {
[e138de]1019 Log() << Verbose(0) << "Enter file name: ";
[63f06e]1020 cin >> filename;
1021 } while (!mol->AddXYZFile(filename));
1022 mol->SetNameFromFilename(filename);
1023 }
[1907a7]1024 break;
1025
1026 case 'r':
[e138de]1027 Log() << Verbose(0) << "Enter index of molecule: ";
[1907a7]1028 cin >> nr;
1029 count = 1;
[f7f7a4]1030 for(MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++)
[63f06e]1031 if (nr == (*ListRunner)->IndexNr) {
1032 mol = *ListRunner;
1033 molecules->ListOfMolecules.erase(ListRunner);
1034 delete(mol);
[f7f7a4]1035 break;
[63f06e]1036 }
[1907a7]1037 break;
1038 }
1039};
1040
1041
1042/** Submenu for merging molecules.
1043 * \param *periode periodentafel
1044 * \param *molecules list of molecules to add to
1045 */
1046static void MergeMolecules(periodentafel *periode, MoleculeListClass *molecules)
1047{
1048 char choice; // menu choice char
1049
[e138de]1050 Log() << Verbose(0) << "===========MERGE MOLECULES=====================" << endl;
1051 Log() << Verbose(0) << "a - simple add of one molecule to another" << endl;
1052 Log() << Verbose(0) << "e - embedding merge of two molecules" << endl;
1053 Log() << Verbose(0) << "m - multi-merge of all molecules" << endl;
1054 Log() << Verbose(0) << "s - scatter merge of two molecules" << endl;
1055 Log() << Verbose(0) << "t - simple merge of two molecules" << endl;
1056 Log() << Verbose(0) << "all else - go back" << endl;
1057 Log() << Verbose(0) << "===============================================" << endl;
1058 Log() << Verbose(0) << "INPUT: ";
[1907a7]1059 cin >> choice;
1060
1061 switch (choice) {
1062 default:
[e138de]1063 Log() << Verbose(0) << "Not a valid choice." << endl;
[1907a7]1064 break;
1065
[63f06e]1066 case 'a':
1067 {
1068 int src, dest;
1069 molecule *srcmol = NULL, *destmol = NULL;
1070 {
1071 do {
[e138de]1072 Log() << Verbose(0) << "Enter index of destination molecule: ";
[63f06e]1073 cin >> dest;
1074 destmol = molecules->ReturnIndex(dest);
1075 } while ((destmol == NULL) && (dest != -1));
1076 do {
[e138de]1077 Log() << Verbose(0) << "Enter index of source molecule to add from: ";
[63f06e]1078 cin >> src;
1079 srcmol = molecules->ReturnIndex(src);
1080 } while ((srcmol == NULL) && (src != -1));
1081 if ((src != -1) && (dest != -1))
1082 molecules->SimpleAdd(srcmol, destmol);
1083 }
1084 }
1085 break;
1086
[1907a7]1087 case 'e':
[f7f7a4]1088 {
1089 int src, dest;
1090 molecule *srcmol = NULL, *destmol = NULL;
1091 do {
[e138de]1092 Log() << Verbose(0) << "Enter index of matrix molecule (the variable one): ";
[f7f7a4]1093 cin >> src;
1094 srcmol = molecules->ReturnIndex(src);
1095 } while ((srcmol == NULL) && (src != -1));
1096 do {
[e138de]1097 Log() << Verbose(0) << "Enter index of molecule to merge into (the fixed one): ";
[f7f7a4]1098 cin >> dest;
1099 destmol = molecules->ReturnIndex(dest);
1100 } while ((destmol == NULL) && (dest != -1));
1101 if ((src != -1) && (dest != -1))
1102 molecules->EmbedMerge(destmol, srcmol);
1103 }
[1907a7]1104 break;
1105
1106 case 'm':
[63f06e]1107 {
1108 int nr;
1109 molecule *mol = NULL;
1110 do {
[e138de]1111 Log() << Verbose(0) << "Enter index of molecule to merge into: ";
[63f06e]1112 cin >> nr;
1113 mol = molecules->ReturnIndex(nr);
1114 } while ((mol == NULL) && (nr != -1));
1115 if (nr != -1) {
1116 int N = molecules->ListOfMolecules.size()-1;
1117 int *src = new int(N);
1118 for(MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++)
1119 if ((*ListRunner)->IndexNr != nr)
1120 src[N++] = (*ListRunner)->IndexNr;
1121 molecules->SimpleMultiMerge(mol, src, N);
1122 delete[](src);
1123 }
1124 }
[1907a7]1125 break;
1126
1127 case 's':
[e138de]1128 Log() << Verbose(0) << "Not implemented yet." << endl;
[1907a7]1129 break;
1130
1131 case 't':
[63f06e]1132 {
1133 int src, dest;
1134 molecule *srcmol = NULL, *destmol = NULL;
1135 {
1136 do {
[e138de]1137 Log() << Verbose(0) << "Enter index of destination molecule: ";
[63f06e]1138 cin >> dest;
1139 destmol = molecules->ReturnIndex(dest);
1140 } while ((destmol == NULL) && (dest != -1));
1141 do {
[e138de]1142 Log() << Verbose(0) << "Enter index of source molecule to merge into: ";
[63f06e]1143 cin >> src;
1144 srcmol = molecules->ReturnIndex(src);
1145 } while ((srcmol == NULL) && (src != -1));
1146 if ((src != -1) && (dest != -1))
1147 molecules->SimpleMerge(srcmol, destmol);
1148 }
1149 }
[1907a7]1150 break;
1151 }
1152};
1153
1154
[14de469]1155/********************************************** Test routine **************************************/
1156
1157/** Is called always as option 'T' in the menu.
[1907a7]1158 * \param *molecules list of molecules
[14de469]1159 */
[1907a7]1160static void testroutine(MoleculeListClass *molecules)
[14de469]1161{
[042f82]1162 // the current test routine checks the functionality of the KeySet&Graph concept:
1163 // We want to have a multiindex (the KeySet) describing a unique subgraph
[1907a7]1164 int i, comp, counter=0;
1165
1166 // create a clone
1167 molecule *mol = NULL;
1168 if (molecules->ListOfMolecules.size() != 0) // clone
1169 mol = (molecules->ListOfMolecules.front())->CopyMolecule();
1170 else {
[e138de]1171 eLog() << Verbose(0) << "I don't have anything to test on ... ";
[1907a7]1172 return;
1173 }
1174 atom *Walker = mol->start;
[6ac7ee]1175
[042f82]1176 // generate some KeySets
[e138de]1177 Log() << Verbose(0) << "Generating KeySets." << endl;
[042f82]1178 KeySet TestSets[mol->AtomCount+1];
1179 i=1;
1180 while (Walker->next != mol->end) {
1181 Walker = Walker->next;
1182 for (int j=0;j<i;j++) {
1183 TestSets[j].insert(Walker->nr);
1184 }
1185 i++;
1186 }
[e138de]1187 Log() << Verbose(0) << "Testing insertion of already present item in KeySets." << endl;
[042f82]1188 KeySetTestPair test;
1189 test = TestSets[mol->AtomCount-1].insert(Walker->nr);
1190 if (test.second) {
[e138de]1191 Log() << Verbose(1) << "Insertion worked?!" << endl;
[042f82]1192 } else {
[e138de]1193 Log() << Verbose(1) << "Insertion rejected: Present object is " << (*test.first) << "." << endl;
[042f82]1194 }
1195 TestSets[mol->AtomCount].insert(mol->end->previous->nr);
1196 TestSets[mol->AtomCount].insert(mol->end->previous->previous->previous->nr);
1197
1198 // constructing Graph structure
[e138de]1199 Log() << Verbose(0) << "Generating Subgraph class." << endl;
[042f82]1200 Graph Subgraphs;
1201
1202 // insert KeySets into Subgraphs
[e138de]1203 Log() << Verbose(0) << "Inserting KeySets into Subgraph class." << endl;
[042f82]1204 for (int j=0;j<mol->AtomCount;j++) {
1205 Subgraphs.insert(GraphPair (TestSets[j],pair<int, double>(counter++, 1.)));
1206 }
[e138de]1207 Log() << Verbose(0) << "Testing insertion of already present item in Subgraph." << endl;
[042f82]1208 GraphTestPair test2;
1209 test2 = Subgraphs.insert(GraphPair (TestSets[mol->AtomCount],pair<int, double>(counter++, 1.)));
1210 if (test2.second) {
[e138de]1211 Log() << Verbose(1) << "Insertion worked?!" << endl;
[042f82]1212 } else {
[e138de]1213 Log() << Verbose(1) << "Insertion rejected: Present object is " << (*(test2.first)).second.first << "." << endl;
[042f82]1214 }
1215
1216 // show graphs
[e138de]1217 Log() << Verbose(0) << "Showing Subgraph's contents, checking that it's sorted." << endl;
[042f82]1218 Graph::iterator A = Subgraphs.begin();
1219 while (A != Subgraphs.end()) {
[e138de]1220 Log() << Verbose(0) << (*A).second.first << ": ";
[042f82]1221 KeySet::iterator key = (*A).first.begin();
1222 comp = -1;
1223 while (key != (*A).first.end()) {
1224 if ((*key) > comp)
[e138de]1225 Log() << Verbose(0) << (*key) << " ";
[042f82]1226 else
[e138de]1227 Log() << Verbose(0) << (*key) << "! ";
[042f82]1228 comp = (*key);
1229 key++;
1230 }
[e138de]1231 Log() << Verbose(0) << endl;
[042f82]1232 A++;
1233 }
1234 delete(mol);
[14de469]1235};
1236
[dbe929]1237/** Tries given filename or standard on saving the config file.
1238 * \param *ConfigFileName name of file
1239 * \param *configuration pointer to configuration structure with all the values
1240 * \param *periode pointer to periodentafel structure with all the elements
[1907a7]1241 * \param *molecules list of molecules structure with all the atoms and coordinates
[dbe929]1242 */
[1907a7]1243static void SaveConfig(char *ConfigFileName, config *configuration, periodentafel *periode, MoleculeListClass *molecules)
[dbe929]1244{
[042f82]1245 char filename[MAXSTRINGSIZE];
1246 ofstream output;
1247 molecule *mol = new molecule(periode);
1248
[568be7]1249 if (!strcmp(configuration->configpath, configuration->GetDefaultPath())) {
[717e0c]1250 eLog() << Verbose(2) << "config is found under different path then stated in config file::defaultpath!" << endl;
[568be7]1251 }
1252
1253
1254 // first save as PDB data
1255 if (ConfigFileName != NULL)
1256 strcpy(filename, ConfigFileName);
1257 if (output == NULL)
1258 strcpy(filename,"main_pcp_linux");
1259 Log() << Verbose(0) << "Saving as pdb input ";
1260 if (configuration->SavePDB(filename, molecules))
1261 Log() << Verbose(0) << "done." << endl;
1262 else
1263 Log() << Verbose(0) << "failed." << endl;
1264
1265 // then save as tremolo data file
1266 if (ConfigFileName != NULL)
1267 strcpy(filename, ConfigFileName);
1268 if (output == NULL)
1269 strcpy(filename,"main_pcp_linux");
1270 Log() << Verbose(0) << "Saving as tremolo data input ";
1271 if (configuration->SaveTREMOLO(filename, molecules))
1272 Log() << Verbose(0) << "done." << endl;
1273 else
1274 Log() << Verbose(0) << "failed." << endl;
1275
[437922]1276 // translate each to its center and merge all molecules in MoleculeListClass into this molecule
[042f82]1277 int N = molecules->ListOfMolecules.size();
[ae38fb]1278 int *src = new int[N];
[042f82]1279 N=0;
[437922]1280 for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++) {
[042f82]1281 src[N++] = (*ListRunner)->IndexNr;
[437922]1282 (*ListRunner)->Translate(&(*ListRunner)->Center);
1283 }
[042f82]1284 molecules->SimpleMultiAdd(mol, src, N);
[ae38fb]1285 delete[](src);
[357fba]1286
[437922]1287 // ... and translate back
[63f06e]1288 for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++) {
1289 (*ListRunner)->Center.Scale(-1.);
1290 (*ListRunner)->Translate(&(*ListRunner)->Center);
1291 (*ListRunner)->Center.Scale(-1.);
1292 }
[042f82]1293
[e138de]1294 Log() << Verbose(0) << "Storing configuration ... " << endl;
[042f82]1295 // get correct valence orbitals
1296 mol->CalculateOrbitals(*configuration);
1297 configuration->InitMaxMinStopStep = configuration->MaxMinStopStep = configuration->MaxPsiDouble;
1298 if (ConfigFileName != NULL) { // test the file name
[437922]1299 strcpy(filename, ConfigFileName);
1300 output.open(filename, ios::trunc);
[042f82]1301 } else if (strlen(configuration->configname) != 0) {
1302 strcpy(filename, configuration->configname);
1303 output.open(configuration->configname, ios::trunc);
1304 } else {
1305 strcpy(filename, DEFAULTCONFIG);
1306 output.open(DEFAULTCONFIG, ios::trunc);
1307 }
1308 output.close();
1309 output.clear();
[e138de]1310 Log() << Verbose(0) << "Saving of config file ";
[042f82]1311 if (configuration->Save(filename, periode, mol))
[e138de]1312 Log() << Verbose(0) << "successful." << endl;
[042f82]1313 else
[e138de]1314 Log() << Verbose(0) << "failed." << endl;
[042f82]1315
1316 // and save to xyz file
1317 if (ConfigFileName != NULL) {
1318 strcpy(filename, ConfigFileName);
1319 strcat(filename, ".xyz");
1320 output.open(filename, ios::trunc);
1321 }
1322 if (output == NULL) {
1323 strcpy(filename,"main_pcp_linux");
1324 strcat(filename, ".xyz");
1325 output.open(filename, ios::trunc);
1326 }
[e138de]1327 Log() << Verbose(0) << "Saving of XYZ file ";
[042f82]1328 if (mol->MDSteps <= 1) {
1329 if (mol->OutputXYZ(&output))
[e138de]1330 Log() << Verbose(0) << "successful." << endl;
[042f82]1331 else
[e138de]1332 Log() << Verbose(0) << "failed." << endl;
[042f82]1333 } else {
1334 if (mol->OutputTrajectoriesXYZ(&output))
[e138de]1335 Log() << Verbose(0) << "successful." << endl;
[042f82]1336 else
[e138de]1337 Log() << Verbose(0) << "failed." << endl;
[042f82]1338 }
1339 output.close();
1340 output.clear();
1341
1342 // and save as MPQC configuration
1343 if (ConfigFileName != NULL)
1344 strcpy(filename, ConfigFileName);
1345 if (output == NULL)
1346 strcpy(filename,"main_pcp_linux");
[e138de]1347 Log() << Verbose(0) << "Saving as mpqc input ";
[042f82]1348 if (configuration->SaveMPQC(filename, mol))
[e138de]1349 Log() << Verbose(0) << "done." << endl;
[042f82]1350 else
[e138de]1351 Log() << Verbose(0) << "failed." << endl;
[042f82]1352
1353 if (!strcmp(configuration->configpath, configuration->GetDefaultPath())) {
[717e0c]1354 eLog() << Verbose(2) << "config is found under different path then stated in config file::defaultpath!" << endl;
[042f82]1355 }
[568be7]1356
[042f82]1357 delete(mol);
[dbe929]1358};
1359
[ca2b83]1360/** Parses the command line options.
1361 * \param argc argument count
1362 * \param **argv arguments array
[1907a7]1363 * \param *molecules list of molecules structure
[ca2b83]1364 * \param *periode elements structure
1365 * \param configuration config file structure
1366 * \param *ConfigFileName pointer to config file name in **argv
[d7d29c]1367 * \param *PathToDatabases pointer to db's path in **argv
[ca2b83]1368 * \return exit code (0 - successful, all else - something's wrong)
1369 */
[989bf6]1370static int ParseCommandLineOptions(int argc, char **argv, MoleculeListClass *&molecules, periodentafel *&periode, config& configuration, char *&ConfigFileName)
[14de469]1371{
[042f82]1372 Vector x,y,z,n; // coordinates for absolute point in cell volume
1373 double *factor; // unit factor if desired
1374 ifstream test;
1375 ofstream output;
1376 string line;
1377 atom *first;
1378 bool SaveFlag = false;
1379 int ExitFlag = 0;
1380 int j;
1381 double volume = 0.;
[f1cccd]1382 enum ConfigStatus configPresent = absent;
[042f82]1383 clock_t start,end;
1384 int argptr;
[b6d8a9]1385 molecule *mol = NULL;
[b21a64]1386 string BondGraphFileName("");
[717e0c]1387 int verbosity = 0;
[989bf6]1388 strncpy(configuration.databasepath, LocalPath, MAXSTRINGSIZE-1);
[6ac7ee]1389
[042f82]1390 if (argc > 1) { // config file specified as option
1391 // 1. : Parse options that just set variables or print help
1392 argptr = 1;
1393 do {
1394 if (argv[argptr][0] == '-') {
[e138de]1395 Log() << Verbose(0) << "Recognized command line argument: " << argv[argptr][1] << ".\n";
[042f82]1396 argptr++;
1397 switch(argv[argptr-1][1]) {
1398 case 'h':
1399 case 'H':
1400 case '?':
[e138de]1401 Log() << Verbose(0) << "MoleCuilder suite" << endl << "==================" << endl << endl;
1402 Log() << Verbose(0) << "Usage: " << argv[0] << "[config file] [-{acefpsthH?vfrp}] [further arguments]" << endl;
1403 Log() << Verbose(0) << "or simply " << argv[0] << " without arguments for interactive session." << endl;
1404 Log() << Verbose(0) << "\t-a Z x1 x2 x3\tAdd new atom of element Z at coordinates (x1,x2,x3)." << endl;
1405 Log() << Verbose(0) << "\t-A <source>\tCreate adjacency list from bonds parsed from 'dbond'-style file." <<endl;
1406 Log() << Verbose(0) << "\t-b xx xy xz yy yz zz\tCenter atoms in domain with given symmetric matrix of (xx,xy,xz,yy,yz,zz)." << endl;
1407 Log() << Verbose(0) << "\t-B xx xy xz yy yz zz\tBound atoms by domain with given symmetric matrix of (xx,xy,xz,yy,yz,zz)." << endl;
1408 Log() << Verbose(0) << "\t-c x1 x2 x3\tCenter atoms in domain with a minimum distance to boundary of (x1,x2,x3)." << endl;
1409 Log() << Verbose(0) << "\t-C\tPair Correlation analysis." << endl;
1410 Log() << Verbose(0) << "\t-d x1 x2 x3\tDuplicate cell along each axis by given factor." << endl;
1411 Log() << Verbose(0) << "\t-D <bond distance>\tDepth-First-Search Analysis of the molecule, giving cycles and tree/back edges." << endl;
1412 Log() << Verbose(0) << "\t-e <file>\tSets the databases path to be parsed (default: ./)." << endl;
1413 Log() << Verbose(0) << "\t-E <id> <Z>\tChange atom <id>'s element to <Z>, <id> begins at 0." << endl;
1414 Log() << Verbose(0) << "\t-f/F <dist> <order>\tFragments the molecule in BOSSANOVA manner (with/out rings compressed) and stores config files in same dir as config (return code 0 - fragmented, 2 - no fragmentation necessary)." << endl;
1415 Log() << Verbose(0) << "\t-g <file>\tParses a bond length table from the given file." << endl;
1416 Log() << Verbose(0) << "\t-h/-H/-?\tGive this help screen." << endl;
1417 Log() << Verbose(0) << "\t-L <step0> <step1> <prefix>\tStore a linear interpolation between two configurations <step0> and <step1> into single config files with prefix <prefix> and as Trajectories into the current config file." << endl;
1418 Log() << Verbose(0) << "\t-m <0/1>\tCalculate (0)/ Align in(1) PAS with greatest EV along z axis." << endl;
1419 Log() << Verbose(0) << "\t-M <basis>\tSetting basis to store to MPQC config files." << endl;
1420 Log() << Verbose(0) << "\t-n\tFast parsing (i.e. no trajectories are looked for)." << endl;
1421 Log() << Verbose(0) << "\t-N <radius> <file>\tGet non-convex-envelope." << endl;
1422 Log() << Verbose(0) << "\t-o <out>\tGet volume of the convex envelope (and store to tecplot file)." << endl;
1423 Log() << Verbose(0) << "\t-O\tCenter atoms in origin." << endl;
1424 Log() << Verbose(0) << "\t-p <file>\tParse given xyz file and create raw config file from it." << endl;
1425 Log() << Verbose(0) << "\t-P <file>\tParse given forces file and append as an MD step to config file via Verlet." << endl;
1426 Log() << Verbose(0) << "\t-r <id>\t\tRemove an atom with given id." << endl;
1427 Log() << Verbose(0) << "\t-R <id> <radius>\t\tRemove all atoms out of sphere around a given one." << endl;
1428 Log() << Verbose(0) << "\t-s x1 x2 x3\tScale all atom coordinates by this vector (x1,x2,x3)." << endl;
1429 Log() << Verbose(0) << "\t-S <file> Store temperatures from the config file in <file>." << endl;
1430 Log() << Verbose(0) << "\t-t x1 x2 x3\tTranslate all atoms by this vector (x1,x2,x3)." << endl;
1431 Log() << Verbose(0) << "\t-T x1 x2 x3\tTranslate periodically all atoms by this vector (x1,x2,x3)." << endl;
1432 Log() << Verbose(0) << "\t-u rho\tsuspend in water solution and output necessary cell lengths, average density rho and repetition." << endl;
[717e0c]1433 Log() << Verbose(0) << "\t-v\t\tsets verbosity (more is more)." << endl;
1434 Log() << Verbose(0) << "\t-V\t\tGives version information." << endl;
[e138de]1435 Log() << Verbose(0) << "Note: config files must not begin with '-' !" << endl;
[042f82]1436 return (1);
1437 break;
1438 case 'v':
[717e0c]1439 while (argv[argptr-1][verbosity+1] == 'v') {
1440 verbosity++;
1441 }
1442 setVerbosity(verbosity);
1443 Log() << Verbose(0) << "Setting verbosity to " << verbosity << "." << endl;
1444 break;
[042f82]1445 case 'V':
[e138de]1446 Log() << Verbose(0) << argv[0] << " " << VERSIONSTRING << endl;
1447 Log() << Verbose(0) << "Build your own molecule position set." << endl;
[042f82]1448 return (1);
1449 break;
1450 case 'e':
1451 if ((argptr >= argc) || (argv[argptr][0] == '-')) {
[e138de]1452 eLog() << Verbose(0) << "Not enough or invalid arguments for specifying element db: -e <db file>" << endl;
[042f82]1453 } else {
[e138de]1454 Log() << Verbose(0) << "Using " << argv[argptr] << " as elements database." << endl;
[042f82]1455 strncpy (configuration.databasepath, argv[argptr], MAXSTRINGSIZE-1);
1456 argptr+=1;
1457 }
1458 break;
[b21a64]1459 case 'g':
1460 if ((argptr >= argc) || (argv[argptr][0] == '-')) {
[e138de]1461 eLog() << Verbose(0) << "Not enough or invalid arguments for specifying bond length table: -g <table file>" << endl;
[b21a64]1462 } else {
1463 BondGraphFileName = argv[argptr];
[e138de]1464 Log() << Verbose(0) << "Using " << BondGraphFileName << " as bond length table." << endl;
[b21a64]1465 argptr+=1;
1466 }
1467 break;
[042f82]1468 case 'n':
[e138de]1469 Log() << Verbose(0) << "I won't parse trajectories." << endl;
[042f82]1470 configuration.FastParsing = true;
1471 break;
1472 default: // no match? Step on
1473 argptr++;
1474 break;
1475 }
1476 } else
1477 argptr++;
1478 } while (argptr < argc);
1479
[b21a64]1480 // 3a. Parse the element database
[042f82]1481 if (periode->LoadPeriodentafel(configuration.databasepath)) {
[e138de]1482 Log() << Verbose(0) << "Element list loaded successfully." << endl;
1483 //periode->Output();
[042f82]1484 } else {
[e138de]1485 Log() << Verbose(0) << "Element list loading failed." << endl;
[042f82]1486 return 1;
1487 }
[34e0013]1488 // 3b. Find config file name and parse if possible, also BondGraphFileName
[042f82]1489 if (argv[1][0] != '-') {
[b6d8a9]1490 // simply create a new molecule, wherein the config file is loaded and the manipulation takes place
[e138de]1491 Log() << Verbose(0) << "Config file given." << endl;
[042f82]1492 test.open(argv[1], ios::in);
1493 if (test == NULL) {
1494 //return (1);
1495 output.open(argv[1], ios::out);
1496 if (output == NULL) {
[e138de]1497 Log() << Verbose(1) << "Specified config file " << argv[1] << " not found." << endl;
[f1cccd]1498 configPresent = absent;
[042f82]1499 } else {
[e138de]1500 Log() << Verbose(0) << "Empty configuration file." << endl;
[042f82]1501 ConfigFileName = argv[1];
[f1cccd]1502 configPresent = empty;
[042f82]1503 output.close();
1504 }
1505 } else {
1506 test.close();
1507 ConfigFileName = argv[1];
[e138de]1508 Log() << Verbose(1) << "Specified config file found, parsing ... ";
[fa649a]1509 switch (configuration.TestSyntax(ConfigFileName, periode)) {
[042f82]1510 case 1:
[e138de]1511 Log() << Verbose(0) << "new syntax." << endl;
[fa649a]1512 configuration.Load(ConfigFileName, BondGraphFileName, periode, molecules);
[f1cccd]1513 configPresent = present;
[042f82]1514 break;
1515 case 0:
[e138de]1516 Log() << Verbose(0) << "old syntax." << endl;
[fa649a]1517 configuration.LoadOld(ConfigFileName, BondGraphFileName, periode, molecules);
[f1cccd]1518 configPresent = present;
[042f82]1519 break;
1520 default:
[e138de]1521 Log() << Verbose(0) << "Unknown syntax or empty, yet present file." << endl;
[f1cccd]1522 configPresent = empty;
[042f82]1523 }
1524 }
1525 } else
[f1cccd]1526 configPresent = absent;
[fa649a]1527 // set mol to first active molecule
1528 if (molecules->ListOfMolecules.size() != 0) {
1529 for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++)
1530 if ((*ListRunner)->ActiveFlag) {
1531 mol = *ListRunner;
1532 break;
1533 }
1534 }
1535 if (mol == NULL) {
1536 mol = new molecule(periode);
1537 mol->ActiveFlag = true;
1538 molecules->insert(mol);
1539 }
1540
[042f82]1541 // 4. parse again through options, now for those depending on elements db and config presence
1542 argptr = 1;
1543 do {
[e138de]1544 Log() << Verbose(0) << "Current Command line argument: " << argv[argptr] << "." << endl;
[042f82]1545 if (argv[argptr][0] == '-') {
1546 argptr++;
[f1cccd]1547 if ((configPresent == present) || (configPresent == empty)) {
[042f82]1548 switch(argv[argptr-1][1]) {
1549 case 'p':
[ebcade]1550 if (ExitFlag == 0) ExitFlag = 1;
[042f82]1551 if ((argptr >= argc) || (argv[argptr][0] == '-')) {
1552 ExitFlag = 255;
[e138de]1553 eLog() << Verbose(0) << "Not enough arguments for parsing: -p <xyz file>" << endl;
[042f82]1554 } else {
1555 SaveFlag = true;
[e138de]1556 Log() << Verbose(1) << "Parsing xyz file for new atoms." << endl;
[042f82]1557 if (!mol->AddXYZFile(argv[argptr]))
[e138de]1558 Log() << Verbose(2) << "File not found." << endl;
[042f82]1559 else {
[e138de]1560 Log() << Verbose(2) << "File found and parsed." << endl;
[f1cccd]1561 configPresent = present;
[042f82]1562 }
1563 }
1564 break;
1565 case 'a':
[ebcade]1566 if (ExitFlag == 0) ExitFlag = 1;
[09048c]1567 if ((argptr >= argc) || (argv[argptr][0] == '-') || (!IsValidNumber(argv[argptr+1])) || (!IsValidNumber(argv[argptr+2])) || (!IsValidNumber(argv[argptr+3]))) {
[042f82]1568 ExitFlag = 255;
[e138de]1569 eLog() << Verbose(0) << "Not enough or invalid arguments for adding atom: -a <element> <x> <y> <z>" << endl;
[042f82]1570 } else {
1571 SaveFlag = true;
[e138de]1572 Log() << Verbose(1) << "Adding new atom with element " << argv[argptr] << " at (" << argv[argptr+1] << "," << argv[argptr+2] << "," << argv[argptr+3] << "), ";
[042f82]1573 first = new atom;
1574 first->type = periode->FindElement(atoi(argv[argptr]));
1575 if (first->type != NULL)
[e138de]1576 Log() << Verbose(2) << "found element " << first->type->name << endl;
[042f82]1577 for (int i=NDIM;i--;)
1578 first->x.x[i] = atof(argv[argptr+1+i]);
1579 if (first->type != NULL) {
1580 mol->AddAtom(first); // add to molecule
[f1cccd]1581 if ((configPresent == empty) && (mol->AtomCount != 0))
1582 configPresent = present;
[042f82]1583 } else
[e138de]1584 eLog() << Verbose(1) << "Could not find the specified element." << endl;
[042f82]1585 argptr+=4;
1586 }
1587 break;
1588 default: // no match? Don't step on (this is done in next switch's default)
1589 break;
1590 }
1591 }
[f1cccd]1592 if (configPresent == present) {
[042f82]1593 switch(argv[argptr-1][1]) {
[f3278b]1594 case 'M':
[042f82]1595 if ((argptr >= argc) || (argv[argptr][0] == '-')) {
1596 ExitFlag = 255;
[e138de]1597 eLog() << Verbose(0) << "Not enough or invalid arguments given for setting MPQC basis: -B <basis name>" << endl;
[042f82]1598 } else {
1599 configuration.basis = argv[argptr];
[e138de]1600 Log() << Verbose(1) << "Setting MPQC basis to " << configuration.basis << "." << endl;
[042f82]1601 argptr+=1;
1602 }
1603 break;
1604 case 'D':
[ebcade]1605 if (ExitFlag == 0) ExitFlag = 1;
[042f82]1606 {
[e138de]1607 Log() << Verbose(1) << "Depth-First-Search Analysis." << endl;
[042f82]1608 MoleculeLeafClass *Subgraphs = NULL; // list of subgraphs from DFS analysis
1609 int *MinimumRingSize = new int[mol->AtomCount];
1610 atom ***ListOfLocalAtoms = NULL;
1611 class StackClass<bond *> *BackEdgeStack = NULL;
1612 class StackClass<bond *> *LocalBackEdgeStack = NULL;
[e138de]1613 mol->CreateAdjacencyList(atof(argv[argptr]), configuration.GetIsAngstroem(), &BondGraph::CovalentMinMaxDistance, NULL);
1614 Subgraphs = mol->DepthFirstSearchAnalysis(BackEdgeStack);
[042f82]1615 if (Subgraphs != NULL) {
[7218f8]1616 int FragmentCounter = 0;
[042f82]1617 while (Subgraphs->next != NULL) {
1618 Subgraphs = Subgraphs->next;
[e138de]1619 Subgraphs->FillBondStructureFromReference(mol, FragmentCounter, ListOfLocalAtoms, false); // we want to keep the created ListOfLocalAtoms
[042f82]1620 LocalBackEdgeStack = new StackClass<bond *> (Subgraphs->Leaf->BondCount);
[e138de]1621 Subgraphs->Leaf->PickLocalBackEdges(ListOfLocalAtoms[FragmentCounter], BackEdgeStack, LocalBackEdgeStack);
1622 Subgraphs->Leaf->CyclicStructureAnalysis(LocalBackEdgeStack, MinimumRingSize);
[042f82]1623 delete(LocalBackEdgeStack);
1624 delete(Subgraphs->previous);
[7218f8]1625 FragmentCounter++;
[042f82]1626 }
1627 delete(Subgraphs);
1628 for (int i=0;i<FragmentCounter;i++)
[7218f8]1629 Free(&ListOfLocalAtoms[i]);
[b66c22]1630 Free(&ListOfLocalAtoms);
[042f82]1631 }
1632 delete(BackEdgeStack);
1633 delete[](MinimumRingSize);
1634 }
1635 //argptr+=1;
1636 break;
[db6bf74]1637 case 'C':
1638 if (ExitFlag == 0) ExitFlag = 1;
[f4e1f5]1639 if ((argptr+2 >= argc) || (!IsValidNumber(argv[argptr])) || (argv[argptr][0] == '-') || (argv[argptr+1][0] == '-') || (argv[argptr+2][0] == '-')) {
[db6bf74]1640 ExitFlag = 255;
[e138de]1641 eLog() << Verbose(0) << "Not enough or invalid arguments given for pair correlation analysis: -C <Z> <output> <bin output>" << endl;
[db6bf74]1642 } else {
1643 SaveFlag = false;
[09048c]1644 ofstream output(argv[argptr+1]);
1645 ofstream binoutput(argv[argptr+2]);
[db6bf74]1646 const double radius = 5.;
[09048c]1647
1648 // get the boundary
[f4e1f5]1649 class molecule *Boundary = NULL;
[776b64]1650 class Tesselation *TesselStruct = NULL;
1651 const LinkedCell *LCList = NULL;
[f4e1f5]1652 // find biggest molecule
[a5551b]1653 int counter = 0;
[f4e1f5]1654 for (MoleculeList::iterator BigFinder = molecules->ListOfMolecules.begin(); BigFinder != molecules->ListOfMolecules.end(); BigFinder++) {
1655 if ((Boundary == NULL) || (Boundary->AtomCount < (*BigFinder)->AtomCount)) {
1656 Boundary = *BigFinder;
1657 }
[a5551b]1658 counter++;
1659 }
1660 bool *Actives = Malloc<bool>(counter, "ParseCommandLineOptions() - case C -- *Actives");
1661 counter = 0;
1662 for (MoleculeList::iterator BigFinder = molecules->ListOfMolecules.begin(); BigFinder != molecules->ListOfMolecules.end(); BigFinder++) {
1663 Actives[counter] = (*BigFinder)->ActiveFlag;
1664 (*BigFinder)->ActiveFlag = (*BigFinder == Boundary) ? false : true;
[f4e1f5]1665 }
[776b64]1666 LCList = new LinkedCell(Boundary, 2.*radius);
[f4e1f5]1667 element *elemental = periode->FindElement((const int) atoi(argv[argptr]));
[e138de]1668 FindNonConvexBorder(Boundary, TesselStruct, LCList, radius, NULL);
[7ea9e6]1669 int ranges[NDIM] = {1,1,1};
[e138de]1670 CorrelationToSurfaceMap *surfacemap = PeriodicCorrelationToSurface( molecules, elemental, TesselStruct, LCList, ranges );
1671 BinPairMap *binmap = BinData( surfacemap, 0.5, 0., 0. );
[db6bf74]1672 OutputCorrelation ( &binoutput, binmap );
1673 output.close();
1674 binoutput.close();
[a5551b]1675 for (MoleculeList::iterator BigFinder = molecules->ListOfMolecules.begin(); BigFinder != molecules->ListOfMolecules.end(); BigFinder++)
1676 (*BigFinder)->ActiveFlag = Actives[counter];
1677 Free(&Actives);
[776b64]1678 delete(LCList);
1679 delete(TesselStruct);
[09048c]1680 argptr+=3;
[db6bf74]1681 }
1682 break;
[042f82]1683 case 'E':
[ebcade]1684 if (ExitFlag == 0) ExitFlag = 1;
[042f82]1685 if ((argptr+1 >= argc) || (!IsValidNumber(argv[argptr])) || (argv[argptr+1][0] == '-')) {
1686 ExitFlag = 255;
[e138de]1687 eLog() << Verbose(0) << "Not enough or invalid arguments given for changing element: -E <atom nr.> <element>" << endl;
[042f82]1688 } else {
1689 SaveFlag = true;
[e138de]1690 Log() << Verbose(1) << "Changing atom " << argv[argptr] << " to element " << argv[argptr+1] << "." << endl;
[042f82]1691 first = mol->FindAtom(atoi(argv[argptr]));
1692 first->type = periode->FindElement(atoi(argv[argptr+1]));
1693 argptr+=2;
1694 }
1695 break;
[9f97c5]1696 case 'F':
[ebcade]1697 if (ExitFlag == 0) ExitFlag = 1;
[9f97c5]1698 if (argptr+5 >=argc) {
1699 ExitFlag = 255;
[e138de]1700 eLog() << Verbose(0) << "Not enough or invalid arguments given for filling box with water: -F <dist_x> <dist_y> <dist_z> <randatom> <randmol> <DoRotate>" << endl;
[9f97c5]1701 } else {
1702 SaveFlag = true;
[e138de]1703 Log() << Verbose(1) << "Filling Box with water molecules." << endl;
[9f97c5]1704 // construct water molecule
1705 molecule *filler = new molecule(periode);;
1706 molecule *Filling = NULL;
1707 atom *second = NULL, *third = NULL;
1708 first = new atom();
1709 first->type = periode->FindElement(1);
1710 first->x.Init(0.441, -0.143, 0.);
1711 filler->AddAtom(first);
1712 second = new atom();
1713 second->type = periode->FindElement(1);
1714 second->x.Init(-0.464, 1.137, 0.0);
1715 filler->AddAtom(second);
1716 third = new atom();
1717 third->type = periode->FindElement(8);
1718 third->x.Init(-0.464, 0.177, 0.);
1719 filler->AddAtom(third);
1720 filler->AddBond(first, third, 1);
1721 filler->AddBond(second, third, 1);
1722 // call routine
1723 double distance[NDIM];
1724 for (int i=0;i<NDIM;i++)
1725 distance[i] = atof(argv[argptr+i]);
[e138de]1726 Filling = FillBoxWithMolecule(molecules, filler, configuration, distance, atof(argv[argptr+3]), atof(argv[argptr+4]), atoi(argv[argptr+5]));
[9f97c5]1727 if (Filling != NULL) {
1728 molecules->insert(Filling);
1729 }
1730 delete(filler);
1731 argptr+=6;
1732 }
1733 break;
[042f82]1734 case 'A':
[ebcade]1735 if (ExitFlag == 0) ExitFlag = 1;
[042f82]1736 if ((argptr >= argc) || (argv[argptr][0] == '-')) {
1737 ExitFlag =255;
[e138de]1738 eLog() << Verbose(0) << "Missing source file for bonds in molecule: -A <bond sourcefile>" << endl;
[042f82]1739 } else {
[e138de]1740 Log() << Verbose(0) << "Parsing bonds from " << argv[argptr] << "." << endl;
[042f82]1741 ifstream *input = new ifstream(argv[argptr]);
[e138de]1742 mol->CreateAdjacencyListFromDbondFile(input);
[042f82]1743 input->close();
1744 argptr+=1;
1745 }
1746 break;
1747 case 'N':
[ebcade]1748 if (ExitFlag == 0) ExitFlag = 1;
[042f82]1749 if ((argptr+1 >= argc) || (argv[argptr+1][0] == '-')){
1750 ExitFlag = 255;
[e138de]1751 eLog() << Verbose(0) << "Not enough or invalid arguments given for non-convex envelope: -o <radius> <tecplot output file>" << endl;
[042f82]1752 } else {
[776b64]1753 class Tesselation *T = NULL;
1754 const LinkedCell *LCList = NULL;
[9a0dc8]1755 molecule * Boundary = NULL;
1756 //string filename(argv[argptr+1]);
1757 //filename.append(".csv");
1758 Log() << Verbose(0) << "Evaluating non-convex envelope of biggest molecule.";
[e138de]1759 Log() << Verbose(1) << "Using rolling ball of radius " << atof(argv[argptr]) << " and storing tecplot data in " << argv[argptr+1] << "." << endl;
[9a0dc8]1760 // find biggest molecule
1761 int counter = 0;
1762 for (MoleculeList::iterator BigFinder = molecules->ListOfMolecules.begin(); BigFinder != molecules->ListOfMolecules.end(); BigFinder++) {
1763 (*BigFinder)->CountAtoms();
1764 if ((Boundary == NULL) || (Boundary->AtomCount < (*BigFinder)->AtomCount)) {
1765 Boundary = *BigFinder;
1766 }
1767 counter++;
1768 }
1769 Log() << Verbose(1) << "Biggest molecule has " << Boundary->AtomCount << " atoms." << endl;
[f7f7a4]1770 start = clock();
[9a0dc8]1771 LCList = new LinkedCell(Boundary, atof(argv[argptr])*2.);
1772 FindNonConvexBorder(Boundary, T, LCList, atof(argv[argptr]), argv[argptr+1]);
[e138de]1773 //FindDistributionOfEllipsoids(T, &LCList, N, number, filename.c_str());
[f7f7a4]1774 end = clock();
[e138de]1775 Log() << Verbose(0) << "Clocks for this operation: " << (end-start) << ", time: " << ((double)(end-start)/CLOCKS_PER_SEC) << "s." << endl;
[776b64]1776 delete(LCList);
[042f82]1777 argptr+=2;
1778 }
1779 break;
1780 case 'S':
[ebcade]1781 if (ExitFlag == 0) ExitFlag = 1;
[042f82]1782 if ((argptr >= argc) || (argv[argptr][0] == '-')) {
1783 ExitFlag = 255;
[e138de]1784 eLog() << Verbose(0) << "Not enough or invalid arguments given for storing tempature: -S <temperature file>" << endl;
[042f82]1785 } else {
[e138de]1786 Log() << Verbose(1) << "Storing temperatures in " << argv[argptr] << "." << endl;
[042f82]1787 ofstream *output = new ofstream(argv[argptr], ios::trunc);
[e138de]1788 if (!mol->OutputTemperatureFromTrajectories(output, 0, mol->MDSteps))
1789 Log() << Verbose(2) << "File could not be written." << endl;
[042f82]1790 else
[e138de]1791 Log() << Verbose(2) << "File stored." << endl;
[042f82]1792 output->close();
1793 delete(output);
1794 argptr+=1;
1795 }
1796 break;
[85bac0]1797 case 'L':
[ebcade]1798 if (ExitFlag == 0) ExitFlag = 1;
[f7f7a4]1799 if ((argptr >= argc) || (argv[argptr][0] == '-')) {
1800 ExitFlag = 255;
[e138de]1801 eLog() << Verbose(0) << "Not enough or invalid arguments given for storing tempature: -L <step0> <step1> <prefix> <identity mapping?>" << endl;
[f7f7a4]1802 } else {
1803 SaveFlag = true;
[e138de]1804 Log() << Verbose(1) << "Linear interpolation between configuration " << argv[argptr] << " and " << argv[argptr+1] << "." << endl;
[f7f7a4]1805 if (atoi(argv[argptr+3]) == 1)
[e138de]1806 Log() << Verbose(1) << "Using Identity for the permutation map." << endl;
1807 if (!mol->LinearInterpolationBetweenConfiguration(atoi(argv[argptr]), atoi(argv[argptr+1]), argv[argptr+2], configuration, atoi(argv[argptr+3])) == 1 ? true : false)
1808 Log() << Verbose(2) << "Could not store " << argv[argptr+2] << " files." << endl;
[f7f7a4]1809 else
[e138de]1810 Log() << Verbose(2) << "Steps created and " << argv[argptr+2] << " files stored." << endl;
[f7f7a4]1811 argptr+=4;
1812 }
[85bac0]1813 break;
[042f82]1814 case 'P':
[ebcade]1815 if (ExitFlag == 0) ExitFlag = 1;
[042f82]1816 if ((argptr >= argc) || (argv[argptr][0] == '-')) {
1817 ExitFlag = 255;
[e138de]1818 eLog() << Verbose(0) << "Not enough or invalid arguments given for parsing and integrating forces: -P <forces file>" << endl;
[042f82]1819 } else {
1820 SaveFlag = true;
[e138de]1821 Log() << Verbose(1) << "Parsing forces file and Verlet integrating." << endl;
1822 if (!mol->VerletForceIntegration(argv[argptr], configuration))
1823 Log() << Verbose(2) << "File not found." << endl;
[042f82]1824 else
[e138de]1825 Log() << Verbose(2) << "File found and parsed." << endl;
[042f82]1826 argptr+=1;
1827 }
1828 break;
[a5b2c3a]1829 case 'R':
[ebcade]1830 if (ExitFlag == 0) ExitFlag = 1;
1831 if ((argptr+1 >= argc) || (argv[argptr][0] == '-') || (!IsValidNumber(argv[argptr])) || (!IsValidNumber(argv[argptr+1]))) {
[a5b2c3a]1832 ExitFlag = 255;
[e138de]1833 eLog() << Verbose(0) << "Not enough or invalid arguments given for removing atoms: -R <id> <distance>" << endl;
[a5b2c3a]1834 } else {
1835 SaveFlag = true;
[e138de]1836 Log() << Verbose(1) << "Removing atoms around " << argv[argptr] << " with radius " << argv[argptr+1] << "." << endl;
[a5b2c3a]1837 double tmp1 = atof(argv[argptr+1]);
1838 atom *third = mol->FindAtom(atoi(argv[argptr]));
1839 atom *first = mol->start;
1840 if ((third != NULL) && (first != mol->end)) {
1841 atom *second = first->next;
1842 while(second != mol->end) {
1843 first = second;
1844 second = first->next;
1845 if (first->x.DistanceSquared((const Vector *)&third->x) > tmp1*tmp1) // distance to first above radius ...
1846 mol->RemoveAtom(first);
1847 }
1848 } else {
[717e0c]1849 eLog() << Verbose(1) << "Removal failed due to missing atoms on molecule or wrong id." << endl;
[a5b2c3a]1850 }
1851 argptr+=2;
1852 }
1853 break;
[042f82]1854 case 't':
[ebcade]1855 if (ExitFlag == 0) ExitFlag = 1;
[09048c]1856 if ((argptr+2 >= argc) || (!IsValidNumber(argv[argptr])) || (!IsValidNumber(argv[argptr+1])) || (!IsValidNumber(argv[argptr+2])) ) {
[042f82]1857 ExitFlag = 255;
[e138de]1858 eLog() << Verbose(0) << "Not enough or invalid arguments given for translation: -t <x> <y> <z>" << endl;
[042f82]1859 } else {
[ebcade]1860 if (ExitFlag == 0) ExitFlag = 1;
[042f82]1861 SaveFlag = true;
[e138de]1862 Log() << Verbose(1) << "Translating all ions by given vector." << endl;
[042f82]1863 for (int i=NDIM;i--;)
1864 x.x[i] = atof(argv[argptr+i]);
1865 mol->Translate((const Vector *)&x);
1866 argptr+=3;
1867 }
[f7f7a4]1868 break;
[21c017]1869 case 'T':
[ebcade]1870 if (ExitFlag == 0) ExitFlag = 1;
[09048c]1871 if ((argptr+2 >= argc) || (!IsValidNumber(argv[argptr])) || (!IsValidNumber(argv[argptr+1])) || (!IsValidNumber(argv[argptr+2])) ) {
[21c017]1872 ExitFlag = 255;
[e138de]1873 eLog() << Verbose(0) << "Not enough or invalid arguments given for periodic translation: -T <x> <y> <z>" << endl;
[21c017]1874 } else {
[ebcade]1875 if (ExitFlag == 0) ExitFlag = 1;
[21c017]1876 SaveFlag = true;
[e138de]1877 Log() << Verbose(1) << "Translating all ions periodically by given vector." << endl;
[21c017]1878 for (int i=NDIM;i--;)
1879 x.x[i] = atof(argv[argptr+i]);
1880 mol->TranslatePeriodically((const Vector *)&x);
1881 argptr+=3;
1882 }
1883 break;
[042f82]1884 case 's':
[ebcade]1885 if (ExitFlag == 0) ExitFlag = 1;
[09048c]1886 if ((argptr >= argc) || (!IsValidNumber(argv[argptr])) || (!IsValidNumber(argv[argptr+1])) || (!IsValidNumber(argv[argptr+2])) ) {
[042f82]1887 ExitFlag = 255;
[e138de]1888 eLog() << Verbose(0) << "Not enough or invalid arguments given for scaling: -s <factor_x> [factor_y] [factor_z]" << endl;
[042f82]1889 } else {
1890 SaveFlag = true;
1891 j = -1;
[e138de]1892 Log() << Verbose(1) << "Scaling all ion positions by factor." << endl;
[042f82]1893 factor = new double[NDIM];
1894 factor[0] = atof(argv[argptr]);
[09048c]1895 factor[1] = atof(argv[argptr+1]);
1896 factor[2] = atof(argv[argptr+2]);
[776b64]1897 mol->Scale((const double ** const)&factor);
[042f82]1898 for (int i=0;i<NDIM;i++) {
1899 j += i+1;
1900 x.x[i] = atof(argv[NDIM+i]);
1901 mol->cell_size[j]*=factor[i];
1902 }
1903 delete[](factor);
[09048c]1904 argptr+=3;
[042f82]1905 }
1906 break;
1907 case 'b':
[ebcade]1908 if (ExitFlag == 0) ExitFlag = 1;
1909 if ((argptr+5 >= argc) || (argv[argptr][0] == '-') || (!IsValidNumber(argv[argptr])) || (!IsValidNumber(argv[argptr+1])) || (!IsValidNumber(argv[argptr+2])) || (!IsValidNumber(argv[argptr+3])) || (!IsValidNumber(argv[argptr+4])) || (!IsValidNumber(argv[argptr+5])) ) {
[042f82]1910 ExitFlag = 255;
[e138de]1911 eLog() << Verbose(0) << "Not enough or invalid arguments given for centering in box: -b <xx> <xy> <xz> <yy> <yz> <zz>" << endl;
[042f82]1912 } else {
1913 SaveFlag = true;
[a8b9d61]1914 j = -1;
[e138de]1915 Log() << Verbose(1) << "Centering atoms in config file within given simulation box." << endl;
[042f82]1916 for (int i=0;i<6;i++) {
1917 mol->cell_size[i] = atof(argv[argptr+i]);
1918 }
1919 // center
[e138de]1920 mol->CenterInBox();
[21c017]1921 argptr+=6;
[042f82]1922 }
1923 break;
[f3278b]1924 case 'B':
[ebcade]1925 if (ExitFlag == 0) ExitFlag = 1;
1926 if ((argptr+5 >= argc) || (argv[argptr][0] == '-') || (!IsValidNumber(argv[argptr])) || (!IsValidNumber(argv[argptr+1])) || (!IsValidNumber(argv[argptr+2])) || (!IsValidNumber(argv[argptr+3])) || (!IsValidNumber(argv[argptr+4])) || (!IsValidNumber(argv[argptr+5])) ) {
[f3278b]1927 ExitFlag = 255;
[e138de]1928 eLog() << Verbose(0) << "Not enough or invalid arguments given for bounding in box: -B <xx> <xy> <xz> <yy> <yz> <zz>" << endl;
[f3278b]1929 } else {
1930 SaveFlag = true;
1931 j = -1;
[e138de]1932 Log() << Verbose(1) << "Centering atoms in config file within given simulation box." << endl;
[f3278b]1933 for (int i=0;i<6;i++) {
1934 mol->cell_size[i] = atof(argv[argptr+i]);
1935 }
1936 // center
[e138de]1937 mol->BoundInBox();
[f3278b]1938 argptr+=6;
1939 }
1940 break;
[042f82]1941 case 'c':
[ebcade]1942 if (ExitFlag == 0) ExitFlag = 1;
1943 if ((argptr+2 >= argc) || (argv[argptr][0] == '-') || (!IsValidNumber(argv[argptr])) || (!IsValidNumber(argv[argptr+1])) || (!IsValidNumber(argv[argptr+2])) ) {
[042f82]1944 ExitFlag = 255;
[e138de]1945 eLog() << Verbose(0) << "Not enough or invalid arguments given for centering with boundary: -c <boundary_x> <boundary_y> <boundary_z>" << endl;
[042f82]1946 } else {
1947 SaveFlag = true;
1948 j = -1;
[e138de]1949 Log() << Verbose(1) << "Centering atoms in config file within given additional boundary." << endl;
[042f82]1950 // make every coordinate positive
[e138de]1951 mol->CenterEdge(&x);
[042f82]1952 // update Box of atoms by boundary
1953 mol->SetBoxDimension(&x);
1954 // translate each coordinate by boundary
1955 j=-1;
1956 for (int i=0;i<NDIM;i++) {
1957 j += i+1;
[36ec71]1958 x.x[i] = atof(argv[argptr+i]);
[042f82]1959 mol->cell_size[j] += x.x[i]*2.;
1960 }
1961 mol->Translate((const Vector *)&x);
[21c017]1962 argptr+=3;
[042f82]1963 }
1964 break;
1965 case 'O':
[ebcade]1966 if (ExitFlag == 0) ExitFlag = 1;
[042f82]1967 SaveFlag = true;
[e138de]1968 Log() << Verbose(1) << "Centering atoms on edge and setting box dimensions." << endl;
[36ec71]1969 x.Zero();
[e138de]1970 mol->CenterEdge(&x);
[042f82]1971 mol->SetBoxDimension(&x);
[21c017]1972 argptr+=0;
[042f82]1973 break;
1974 case 'r':
[ebcade]1975 if (ExitFlag == 0) ExitFlag = 1;
1976 if ((argptr >= argc) || (argv[argptr][0] == '-') || (!IsValidNumber(argv[argptr]))) {
1977 ExitFlag = 255;
[e138de]1978 eLog() << Verbose(0) << "Not enough or invalid arguments given for removing atoms: -r <id>" << endl;
[ebcade]1979 } else {
1980 SaveFlag = true;
[e138de]1981 Log() << Verbose(1) << "Removing atom " << argv[argptr] << "." << endl;
[ebcade]1982 atom *first = mol->FindAtom(atoi(argv[argptr]));
1983 mol->RemoveAtom(first);
1984 argptr+=1;
1985 }
[042f82]1986 break;
1987 case 'f':
[ebcade]1988 if (ExitFlag == 0) ExitFlag = 1;
1989 if ((argptr+1 >= argc) || (argv[argptr][0] == '-') || (!IsValidNumber(argv[argptr])) || (!IsValidNumber(argv[argptr+1]))) {
[042f82]1990 ExitFlag = 255;
[e138de]1991 eLog() << Verbose(0) << "Not enough or invalid arguments for fragmentation: -f <max. bond distance> <bond order>" << endl;
[042f82]1992 } else {
[e138de]1993 Log() << Verbose(0) << "Fragmenting molecule with bond distance " << argv[argptr] << " angstroem, order of " << argv[argptr+1] << "." << endl;
1994 Log() << Verbose(0) << "Creating connection matrix..." << endl;
[042f82]1995 start = clock();
[e138de]1996 mol->CreateAdjacencyList(atof(argv[argptr++]), configuration.GetIsAngstroem(), &BondGraph::CovalentMinMaxDistance, NULL);
1997 Log() << Verbose(0) << "Fragmenting molecule with current connection matrix ..." << endl;
[042f82]1998 if (mol->first->next != mol->last) {
[e138de]1999 ExitFlag = mol->FragmentMolecule(atoi(argv[argptr]), &configuration);
[042f82]2000 }
2001 end = clock();
[e138de]2002 Log() << Verbose(0) << "Clocks for this operation: " << (end-start) << ", time: " << ((double)(end-start)/CLOCKS_PER_SEC) << "s." << endl;
[042f82]2003 argptr+=2;
2004 }
2005 break;
2006 case 'm':
[ebcade]2007 if (ExitFlag == 0) ExitFlag = 1;
[042f82]2008 j = atoi(argv[argptr++]);
2009 if ((j<0) || (j>1)) {
[717e0c]2010 eLog() << Verbose(1) << "Argument of '-m' should be either 0 for no-rotate or 1 for rotate." << endl;
[042f82]2011 j = 0;
2012 }
2013 if (j) {
2014 SaveFlag = true;
[e138de]2015 Log() << Verbose(0) << "Converting to prinicipal axis system." << endl;
[042f82]2016 } else
[e138de]2017 Log() << Verbose(0) << "Evaluating prinicipal axis." << endl;
2018 mol->PrincipalAxisSystem((bool)j);
[042f82]2019 break;
2020 case 'o':
[ebcade]2021 if (ExitFlag == 0) ExitFlag = 1;
[f7f7a4]2022 if ((argptr+1 >= argc) || (argv[argptr][0] == '-')){
[042f82]2023 ExitFlag = 255;
[e138de]2024 eLog() << Verbose(0) << "Not enough or invalid arguments given for convex envelope: -o <convex output file> <non-convex output file>" << endl;
[042f82]2025 } else {
[776b64]2026 class Tesselation *TesselStruct = NULL;
2027 const LinkedCell *LCList = NULL;
[e138de]2028 Log() << Verbose(0) << "Evaluating volume of the convex envelope.";
2029 Log() << Verbose(1) << "Storing tecplot convex data in " << argv[argptr] << "." << endl;
2030 Log() << Verbose(1) << "Storing tecplot non-convex data in " << argv[argptr+1] << "." << endl;
[776b64]2031 LCList = new LinkedCell(mol, 10.);
[e138de]2032 //FindConvexBorder(mol, LCList, argv[argptr]);
2033 FindNonConvexBorder(mol, TesselStruct, LCList, 5., argv[argptr+1]);
2034// RemoveAllBoundaryPoints(TesselStruct, mol, argv[argptr]);
2035 double volumedifference = ConvexizeNonconvexEnvelope(TesselStruct, mol, argv[argptr]);
2036 double clustervolume = VolumeOfConvexEnvelope(TesselStruct, &configuration);
2037 Log() << Verbose(0) << "The tesselated volume area is " << clustervolume << " " << (configuration.GetIsAngstroem() ? "angstrom" : "atomiclength") << "^3." << endl;
2038 Log() << Verbose(0) << "The non-convex tesselated volume area is " << clustervolume-volumedifference << " " << (configuration.GetIsAngstroem() ? "angstrom" : "atomiclength") << "^3." << endl;
[776b64]2039 delete(TesselStruct);
2040 delete(LCList);
[f7f7a4]2041 argptr+=2;
[042f82]2042 }
2043 break;
2044 case 'U':
[ebcade]2045 if (ExitFlag == 0) ExitFlag = 1;
2046 if ((argptr+1 >= argc) || (argv[argptr][0] == '-') || (!IsValidNumber(argv[argptr])) || (!IsValidNumber(argv[argptr+1])) ) {
[042f82]2047 ExitFlag = 255;
[e138de]2048 eLog() << Verbose(0) << "Not enough or invalid arguments given for suspension with specified volume: -U <volume> <density>" << endl;
[042f82]2049 volume = -1; // for case 'u': don't print error again
2050 } else {
2051 volume = atof(argv[argptr++]);
[e138de]2052 Log() << Verbose(0) << "Using " << volume << " angstrom^3 as the volume instead of convex envelope one's." << endl;
[042f82]2053 }
2054 case 'u':
[ebcade]2055 if (ExitFlag == 0) ExitFlag = 1;
2056 if ((argptr >= argc) || (argv[argptr][0] == '-') || (!IsValidNumber(argv[argptr])) ) {
[042f82]2057 if (volume != -1)
2058 ExitFlag = 255;
[e138de]2059 eLog() << Verbose(0) << "Not enough arguments given for suspension: -u <density>" << endl;
[042f82]2060 } else {
2061 double density;
2062 SaveFlag = true;
[e138de]2063 Log() << Verbose(0) << "Evaluating necessary cell volume for a cluster suspended in water.";
[042f82]2064 density = atof(argv[argptr++]);
2065 if (density < 1.0) {
[e138de]2066 eLog() << Verbose(0) << "Density must be greater than 1.0g/cm^3 !" << endl;
[042f82]2067 density = 1.3;
2068 }
2069// for(int i=0;i<NDIM;i++) {
2070// repetition[i] = atoi(argv[argptr++]);
2071// if (repetition[i] < 1)
[717e0c]2072// eLog() << Verbose(1) << "repetition value must be greater 1!" << endl;
[042f82]2073// repetition[i] = 1;
2074// }
[e138de]2075 PrepareClustersinWater(&configuration, mol, volume, density); // if volume == 0, will calculate from ConvexEnvelope
[042f82]2076 }
2077 break;
2078 case 'd':
[ebcade]2079 if (ExitFlag == 0) ExitFlag = 1;
2080 if ((argptr+2 >= argc) || (argv[argptr][0] == '-') || (!IsValidNumber(argv[argptr])) || (!IsValidNumber(argv[argptr+1])) || (!IsValidNumber(argv[argptr+2])) ) {
[042f82]2081 ExitFlag = 255;
[e138de]2082 eLog() << Verbose(0) << "Not enough or invalid arguments given for repeating cells: -d <repeat_x> <repeat_y> <repeat_z>" << endl;
[042f82]2083 } else {
2084 SaveFlag = true;
2085 for (int axis = 1; axis <= NDIM; axis++) {
2086 int faktor = atoi(argv[argptr++]);
2087 int count;
2088 element ** Elements;
2089 Vector ** vectors;
2090 if (faktor < 1) {
[717e0c]2091 eLog() << Verbose(1) << "Repetition factor mus be greater than 1!" << endl;
[042f82]2092 faktor = 1;
2093 }
[e138de]2094 mol->CountAtoms(); // recount atoms
[042f82]2095 if (mol->AtomCount != 0) { // if there is more than none
2096 count = mol->AtomCount; // is changed becausing of adding, thus has to be stored away beforehand
2097 Elements = new element *[count];
2098 vectors = new Vector *[count];
2099 j = 0;
2100 first = mol->start;
2101 while (first->next != mol->end) { // make a list of all atoms with coordinates and element
2102 first = first->next;
2103 Elements[j] = first->type;
2104 vectors[j] = &first->x;
2105 j++;
2106 }
2107 if (count != j)
[717e0c]2108 eLog() << Verbose(1) << "AtomCount " << count << " is not equal to number of atoms in molecule " << j << "!" << endl;
[042f82]2109 x.Zero();
2110 y.Zero();
2111 y.x[abs(axis)-1] = mol->cell_size[(abs(axis) == 2) ? 2 : ((abs(axis) == 3) ? 5 : 0)] * abs(axis)/axis; // last term is for sign, first is for magnitude
2112 for (int i=1;i<faktor;i++) { // then add this list with respective translation factor times
2113 x.AddVector(&y); // per factor one cell width further
2114 for (int k=count;k--;) { // go through every atom of the original cell
2115 first = new atom(); // create a new body
2116 first->x.CopyVector(vectors[k]); // use coordinate of original atom
2117 first->x.AddVector(&x); // translate the coordinates
2118 first->type = Elements[k]; // insert original element
2119 mol->AddAtom(first); // and add to the molecule (which increments ElementsInMolecule, AtomCount, ...)
2120 }
2121 }
2122 // free memory
2123 delete[](Elements);
2124 delete[](vectors);
2125 // correct cell size
2126 if (axis < 0) { // if sign was negative, we have to translate everything
2127 x.Zero();
2128 x.AddVector(&y);
2129 x.Scale(-(faktor-1));
2130 mol->Translate(&x);
2131 }
2132 mol->cell_size[(abs(axis) == 2) ? 2 : ((abs(axis) == 3) ? 5 : 0)] *= faktor;
2133 }
2134 }
2135 }
2136 break;
2137 default: // no match? Step on
2138 if ((argptr < argc) && (argv[argptr][0] != '-')) // if it started with a '-' we've already made a step!
2139 argptr++;
2140 break;
2141 }
2142 }
2143 } else argptr++;
2144 } while (argptr < argc);
2145 if (SaveFlag)
2146 SaveConfig(ConfigFileName, &configuration, periode, molecules);
2147 } else { // no arguments, hence scan the elements db
2148 if (periode->LoadPeriodentafel(configuration.databasepath))
[e138de]2149 Log() << Verbose(0) << "Element list loaded successfully." << endl;
[042f82]2150 else
[e138de]2151 Log() << Verbose(0) << "Element list loading failed." << endl;
[042f82]2152 configuration.RetrieveConfigPathAndName("main_pcp_linux");
2153 }
2154 return(ExitFlag);
[ca2b83]2155};
2156
2157/********************************************** Main routine **************************************/
[14de469]2158
[ca2b83]2159int main(int argc, char **argv)
2160{
[042f82]2161 periodentafel *periode = new periodentafel; // and a period table of all elements
2162 MoleculeListClass *molecules = new MoleculeListClass; // list of all molecules
2163 molecule *mol = NULL;
[db6bf74]2164 config *configuration = new config;
[042f82]2165 char choice; // menu choice char
2166 Vector x,y,z,n; // coordinates for absolute point in cell volume
2167 ifstream test;
2168 ofstream output;
2169 string line;
2170 char *ConfigFileName = NULL;
[437922]2171 int j;
[042f82]2172
[717e0c]2173 setVerbosity(0);
[e138de]2174
[042f82]2175 // =========================== PARSE COMMAND LINE OPTIONS ====================================
[db6bf74]2176 j = ParseCommandLineOptions(argc, argv, molecules, periode, *configuration, ConfigFileName);
[042f82]2177 switch(j) {
[b6d8a9]2178 case 255: // something went wrong
[c26f44]2179 case 2: // just for -f option
[7218f8]2180 case 1: // just for -v and -h options
[c26f44]2181 delete(molecules); // also free's all molecules contained
2182 delete(periode);
[7218f8]2183 delete(configuration);
[e138de]2184 Log() << Verbose(0) << "Maximum of allocated memory: "
[c26f44]2185 << MemoryUsageObserver::getInstance()->getMaximumUsedMemory() << endl;
[e138de]2186 Log() << Verbose(0) << "Remaining non-freed memory: "
[c26f44]2187 << MemoryUsageObserver::getInstance()->getUsedMemorySize() << endl;
[7218f8]2188 MemoryUsageObserver::getInstance()->purgeInstance();
[1614174]2189 logger::purgeInstance();
2190 errorLogger::purgeInstance();
[7218f8]2191 return (j == 1 ? 0 : j);
[042f82]2192 default:
2193 break;
2194 }
2195
2196 // General stuff
2197 if (molecules->ListOfMolecules.size() == 0) {
[1907a7]2198 mol = new molecule(periode);
2199 if (mol->cell_size[0] == 0.) {
[e138de]2200 Log() << Verbose(0) << "enter lower tridiagonal form of basis matrix" << endl << endl;
[1907a7]2201 for (int i=0;i<6;i++) {
[e138de]2202 Log() << Verbose(1) << "Cell size" << i << ": ";
[1907a7]2203 cin >> mol->cell_size[i];
2204 }
2205 }
[7218f8]2206 mol->ActiveFlag = true;
[1907a7]2207 molecules->insert(mol);
[042f82]2208 }
[6ac7ee]2209
[042f82]2210 // =========================== START INTERACTIVE SESSION ====================================
[6ac7ee]2211
[042f82]2212 // now the main construction loop
[e138de]2213 Log() << Verbose(0) << endl << "Now comes the real construction..." << endl;
[042f82]2214 do {
[e138de]2215 Log() << Verbose(0) << endl << endl;
2216 Log() << Verbose(0) << "============Molecule list=======================" << endl;
[042f82]2217 molecules->Enumerate((ofstream *)&cout);
[e138de]2218 Log() << Verbose(0) << "============Menu===============================" << endl;
2219 Log() << Verbose(0) << "a - set molecule (in)active" << endl;
2220 Log() << Verbose(0) << "e - edit molecules (load, parse, save)" << endl;
2221 Log() << Verbose(0) << "g - globally manipulate atoms in molecule" << endl;
2222 Log() << Verbose(0) << "M - Merge molecules" << endl;
2223 Log() << Verbose(0) << "m - manipulate atoms" << endl;
2224 Log() << Verbose(0) << "-----------------------------------------------" << endl;
2225 Log() << Verbose(0) << "c - edit the current configuration" << endl;
2226 Log() << Verbose(0) << "-----------------------------------------------" << endl;
2227 Log() << Verbose(0) << "s - save current setup to config file" << endl;
2228 Log() << Verbose(0) << "T - call the current test routine" << endl;
2229 Log() << Verbose(0) << "q - quit" << endl;
2230 Log() << Verbose(0) << "===============================================" << endl;
2231 Log() << Verbose(0) << "Input: ";
[1907a7]2232 cin >> choice;
[6ac7ee]2233
[042f82]2234 switch (choice) {
2235 case 'a': // (in)activate molecule
[1907a7]2236 {
[e138de]2237 Log() << Verbose(0) << "Enter index of molecule: ";
[1907a7]2238 cin >> j;
[63f06e]2239 for(MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++)
2240 if ((*ListRunner)->IndexNr == j)
2241 (*ListRunner)->ActiveFlag = !(*ListRunner)->ActiveFlag;
[1907a7]2242 }
[042f82]2243 break;
[1907a7]2244
[042f82]2245 case 'c': // edit each field of the configuration
[db6bf74]2246 configuration->Edit();
[042f82]2247 break;
[6ac7ee]2248
[ca3ccc]2249 case 'e': // create molecule
2250 EditMolecules(periode, molecules);
2251 break;
2252
[1907a7]2253 case 'g': // manipulate molecules
[db6bf74]2254 ManipulateMolecules(periode, molecules, configuration);
[1907a7]2255 break;
[6ac7ee]2256
[1907a7]2257 case 'M': // merge molecules
2258 MergeMolecules(periode, molecules);
2259 break;
[6ac7ee]2260
[1907a7]2261 case 'm': // manipulate atoms
[db6bf74]2262 ManipulateAtoms(periode, molecules, configuration);
[1907a7]2263 break;
[6ac7ee]2264
[042f82]2265 case 'q': // quit
2266 break;
[6ac7ee]2267
[042f82]2268 case 's': // save to config file
[db6bf74]2269 SaveConfig(ConfigFileName, configuration, periode, molecules);
[042f82]2270 break;
[6ac7ee]2271
[042f82]2272 case 'T':
2273 testroutine(molecules);
2274 break;
[6ac7ee]2275
[042f82]2276 default:
2277 break;
2278 };
2279 } while (choice != 'q');
2280
2281 // save element data base
[db6bf74]2282 if (periode->StorePeriodentafel(configuration->databasepath)) //ElementsFileName
[e138de]2283 Log() << Verbose(0) << "Saving of elements.db successful." << endl;
[042f82]2284 else
[e138de]2285 Log() << Verbose(0) << "Saving of elements.db failed." << endl;
[042f82]2286
2287 delete(molecules); // also free's all molecules contained
2288 delete(periode);
[db6bf74]2289 delete(configuration);
[b66c22]2290
[e138de]2291 Log() << Verbose(0) << "Maximum of allocated memory: "
[b66c22]2292 << MemoryUsageObserver::getInstance()->getMaximumUsedMemory() << endl;
[e138de]2293 Log() << Verbose(0) << "Remaining non-freed memory: "
[b66c22]2294 << MemoryUsageObserver::getInstance()->getUsedMemorySize() << endl;
[db6bf74]2295 MemoryUsageObserver::purgeInstance();
[1614174]2296 logger::purgeInstance();
2297 errorLogger::purgeInstance();
[b66c22]2298
[042f82]2299 return (0);
[14de469]2300}
2301
2302/********************************************** E N D **************************************************/
Note: See TracBrowser for help on using the repository browser.