source: src/builder.cpp@ 673c7f

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 673c7f was 4eb4fe, checked in by Frederik Heber <heber@…>, 15 years ago

"-e <db path>" not necessary anymore.

Removed necessity of specifying path to databases (this was one check of molecuilder/test/testsuite.at which cannot be fulfilled anymore with boost::program_options)
For this to work a great number of small changes have been necessary:

class periodentafel:

  • all .db files merged into const char * arrays in elements_db.cpp
  • periodentafel rewritten:
  • FindElement(), AskElement() and EnterElement return element * const instead of const element * (i.e. the contents of the pointer is const (the element) not the pointer itself which is very vexatious (i.e. FindElement() yields const element * which can subsequently not be used for RemoveElement(), ...)
  • parsedElems is not needed anymore. Instead we operate on map elements directly
  • new unittest periodentafelTest which is made friend of periodentafel to be able to access private loading functions directly

A number of unit tests had to be changed (all that create elements during setUp() which is now unnecessary)

Some of the analysis_bonds function's signatures were changed in the process:

Finally, the respective tests are removed from molecuilder/tests/testsuite.at.

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