source: src/helpers.hpp@ 390248

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 390248 was bc84e47, checked in by Frederik Heber <heber@…>, 17 years ago

cosmetics

  • Property mode set to 100644
File size: 8.2 KB
Line 
1/** \file helpers.hpp
2 *
3 * Declaration of some auxiliary functions for memory dis-/allocation and so on
4 */
5
6#ifndef HELPERS_HPP_
7#define HELPERS_HPP_
8
9using namespace std;
10
11#include <iostream>
12#include <iomanip>
13#include <fstream>
14#include <sstream>
15#include <math.h>
16#include <string>
17#include <string.h>
18#include <stdio.h>
19#include <stdlib.h>
20#include <time.h>
21
22#include "defs.hpp"
23
24// include config.h
25#ifdef HAVE_CONFIG_H
26#include <config.h>
27#endif
28
29/********************************************** helpful functions *********************************/
30
31// taken out of TREMOLO
32/*@-namechecks@*/
33#ifndef __GNUC__
34# undef __attribute__
35# define __attribute__(x)
36#endif
37/*@=namechecks@*/
38
39/* Behandelt aufgetretene Fehler. error ist der Fehlertyp(enum Errors)
40 void *SpecialData ist ein untypisierter Zeiger auf Spezielle Daten zur Fehlerbehandlung.
41 Man koennte auch noch einen Zeiger auf eine Funktion uebergeben */
42extern void /*@exits@*/ debug(const char *output);
43 //__attribute__ ((__return__));
44#define debug(data) debug_in((data), __FILE__, __LINE__)
45
46extern void /*@exits@*/ debug_in(const char *output,
47 const char *file, const int line);
48 //__attribute__ ((__return__));
49
50double ask_value(const char *text);
51bool check_bounds(double *x, double *cell_size);
52void bound(double *b, double lower_bound, double upper_bound);
53void flip(double *x, double *y);
54int pot(int base, int n);
55void * Malloc(size_t size, const char* output);
56void * Calloc(size_t size, const char* output);
57void * ReAlloc(void * OldPointer, size_t size, const char* output);
58char* MallocString(size_t size, const char* output);
59void Free(void ** buffer, const char* output);
60char *FixedDigitNumber(const int FragmentNumber, const int digits);
61
62/********************************************** helpful template functions *********************************/
63
64/** Creates a lookup table for true father's Atom::Nr -> atom ptr.
65 * \param *out output stream for debugging
66 * \param *start begin of chain list
67 * \paran *end end of chain list
68 * \param **Lookuptable pointer to return allocated lookup table (should be NULL on start)
69 * \param count optional predetermined count for table (otherwise we set the count to highest true father id)
70 * \return true - success, false - failure
71 */
72template <typename T> bool CreateFatherLookupTable(ofstream *out, T *start, T *end, T **&LookupTable, int count = 0)
73{
74 bool status = true;
75 T *Walker = NULL;
76 int AtomNo;
77
78 if (LookupTable != NULL) {
79 *out << "Pointer for Lookup table is not NULL! Aborting ..." <<endl;
80 return false;
81 }
82
83 // count them
84 if (count == 0) {
85 Walker = start;
86 while (Walker->next != end) { // create a lookup table (Atom::nr -> atom) used as a marker table lateron
87 Walker = Walker->next;
88 count = (count < Walker->GetTrueFather()->nr) ? Walker->GetTrueFather()->nr : count;
89 }
90 }
91 if (count <= 0) {
92 *out << "Count of lookup list is 0 or less." << endl;
93 return false;
94 }
95
96 // allocat and fill
97 LookupTable = (T **) Malloc(sizeof(T *)*count, "CreateFatherLookupTable - **LookupTable");
98 if (LookupTable == NULL) {
99 cerr << "LookupTable memory allocation failed!" << endl;
100 status = false;
101 } else {
102 Walker = start;
103 while (Walker->next != end) { // create a lookup table (Atom::nr -> atom) used as a marker table lateron
104 Walker = Walker->next;
105 AtomNo = Walker->GetTrueFather()->nr;
106 if ((AtomNo >= 0) && (AtomNo < count)) {
107 //*out << "Setting LookupTable[" << AtomNo << "] to " << *Walker << endl;
108 LookupTable[AtomNo] = Walker;
109 } else {
110 *out << "Walker " << *Walker << " exceeded range of nuclear ids [0, " << count << ")." << endl;
111 status = false;
112 break;
113 }
114 }
115 }
116
117 return status;
118};
119
120/******************************** Some templates for list management ***********************************/
121
122/** Adds linking of an item to a list.
123 * \param *walker
124 * \return true - adding succeeded, false - error in list
125 */
126template <typename X> void link(X *walker, X *end)
127{
128 X *vorher = end->previous;
129 if (vorher != NULL)
130 vorher->next = walker;
131 end->previous = walker;
132 walker->previous = vorher;
133 walker->next = end;
134};
135
136/** Removes linking of an item in a list.
137 * \param *walker
138 * \return true - removing succeeded, false - given item not found in list
139 */
140template <typename X> void unlink(X *walker)
141{
142 if (walker->next != NULL)
143 walker->next->previous = walker->previous;
144 if (walker->previous != NULL)
145 walker->previous->next = walker->next;
146};
147
148/** Adds new item before an item \a *end in a list.
149 * \param *pointer item to be added
150 * \param *end end of list
151 * \return true - addition succeeded, false - unable to add item to list
152 */
153template <typename X> bool add(X *pointer, X *end)
154{
155 if (end != NULL) {
156 link(pointer, end);
157 } else {
158 pointer->previous = NULL;
159 pointer->next = NULL;
160 }
161 return true;
162};
163
164/** Finds item in list
165 * \param *suche search criteria
166 * \param *start begin of list
167 * \param *end end of list
168 * \return X - if found, NULL - if not found
169 */
170template <typename X, typename Y> X * find(Y *suche, X *start, X *end)
171{
172 X *walker = start;
173 while (walker->next != end) { // go through list
174 walker = walker->next; // step onward beforehand
175 if (*walker->sort == *suche) return (walker);
176 }
177 return NULL;
178};
179
180/** Removes an item from the list without check.
181 * \param *walker item to be removed
182 * \return true - removing succeeded, false - given item not found in list
183 */
184template <typename X> void removewithoutcheck(X *walker)
185{
186 if (walker != NULL) {
187 unlink(walker);
188 delete(walker);
189 walker = NULL;
190 }
191};
192
193/** Removes an item from the list, checks if exists.
194 * Checks beforehand if atom is really within molecule list.
195 * \param *pointer item to be removed
196 * \param *start begin of list
197 * \param *end end of list
198 * \return true - removing succeeded, false - given item not found in list
199 */
200template <typename X> bool remove(X *pointer, X *start, X *end)
201{
202 X *walker = find (pointer->sort, start, end);
203/* while (walker->next != pointer) { // search through list
204 walker = walker->next;
205 if (walker == end) return false; // item not found in list
206 }*/
207 // atom found, now unlink
208 if (walker != NULL)
209 removewithoutcheck(walker);
210 else
211 return false;
212 return true;
213};
214
215/** Cleans the whole list.
216 * \param *start begin of list
217 * \param *end end of list
218 * \return true - list was cleaned successfully, false - error in list structure
219 */
220template <typename X> bool cleanup(X *start, X *end)
221{
222 X *pointer = start->next;
223 X *walker;
224 while (pointer != end) { // go through list
225 walker = pointer; // mark current
226 pointer = pointer->next; // step onward beforehand
227 // remove walker
228 unlink(walker);
229 delete(walker);
230 walker = NULL;
231 }
232 return true;
233};
234
235/** Returns the first marker in a chain list.
236 * \param *me one arbitrary item in chain list
237 * \return poiner to first marker
238 */
239template <typename X> X *GetFirst(X *me)
240{
241 X *Binder = me;
242 while(Binder->previous != NULL)
243 Binder = Binder->previous;
244 return Binder;
245};
246
247/** Returns the last marker in a chain list.
248 * \param *me one arbitrary item in chain list
249 * \return poiner to last marker
250 */
251template <typename X> X *GetLast(X *me)
252{
253 X *Binder = me;
254 while(Binder->next != NULL)
255 Binder = Binder->next;
256 return Binder;
257};
258
259/** Frees a two-dimensional array.
260 * \param *ptr pointer to array
261 * \param dim first dim of array
262 */
263template <typename X> void Free2DArray(X **ptr, int dim)
264{
265 int i;
266 if (ptr != NULL) {
267 for(i=dim;i--;)
268 if (ptr[i] != NULL)
269 free(ptr[i]);
270 free(ptr);
271 }
272};
273
274/************************************* Class Verbose & Binary *******************************/
275
276/** Verbose is an IO manipulator, that writes tabs according to \a Verbosity level.
277 */
278class Verbose
279{
280 public:
281 Verbose(int value) : Verbosity(value) { }
282
283 ostream& print (ostream &ost) const;
284 private:
285 int Verbosity;
286};
287
288ostream& operator<<(ostream& ost,const Verbose& m);
289
290/** Binary is an IO manipulator, that writes 0 and 1 according to number \a Binary.
291 */
292class Binary
293{
294 public:
295 Binary(int value) : BinaryNumber(value) { }
296
297 ostream& print (ostream &ost) const;
298 private:
299 int BinaryNumber;
300};
301
302ostream& operator<<(ostream& ost,const Binary& m);
303
304
305
306#endif /*HELPERS_HPP_*/
Note: See TracBrowser for help on using the repository browser.