| [14de469] | 1 | /** \file MoleculeListClass.cpp
 | 
|---|
 | 2 |  * 
 | 
|---|
 | 3 |  * Function implementations for the class MoleculeListClass.
 | 
|---|
 | 4 |  * 
 | 
|---|
 | 5 |  */
 | 
|---|
 | 6 | 
 | 
|---|
 | 7 | #include "molecules.hpp"
 | 
|---|
 | 8 | 
 | 
|---|
 | 9 | /*********************************** Functions for class MoleculeListClass *************************/
 | 
|---|
 | 10 | 
 | 
|---|
 | 11 | /** Constructor for MoleculeListClass.
 | 
|---|
 | 12 |  */
 | 
|---|
 | 13 | MoleculeListClass::MoleculeListClass()
 | 
|---|
 | 14 | {
 | 
|---|
 | 15 | };
 | 
|---|
 | 16 | 
 | 
|---|
 | 17 | /** constructor for MoleculeListClass.
 | 
|---|
 | 18 |  * \param NumMolecules number of molecules to allocate for
 | 
|---|
 | 19 |  * \param NumAtoms number of atoms to allocate for
 | 
|---|
 | 20 |  */
 | 
|---|
 | 21 | MoleculeListClass::MoleculeListClass(int NumMolecules, int NumAtoms)
 | 
|---|
 | 22 | {
 | 
|---|
 | 23 |   ListOfMolecules = (molecule **) Malloc(sizeof(molecule *)*NumMolecules, "MoleculeListClass:MoleculeListClass: **ListOfMolecules");
 | 
|---|
| [7f3b9d] | 24 |   for (int i=NumMolecules;i--;)
 | 
|---|
| [14de469] | 25 |     ListOfMolecules[i] = NULL;
 | 
|---|
 | 26 |   NumberOfMolecules = NumMolecules;
 | 
|---|
 | 27 |   NumberOfTopAtoms = NumAtoms;
 | 
|---|
 | 28 | };
 | 
|---|
 | 29 | 
 | 
|---|
 | 30 | 
 | 
|---|
 | 31 | /** Destructor for MoleculeListClass.
 | 
|---|
 | 32 |  */
 | 
|---|
 | 33 | MoleculeListClass::~MoleculeListClass()
 | 
|---|
 | 34 | {
 | 
|---|
| [db942e] | 35 |   cout << Verbose(3) << this << ": Freeing ListOfMolcules." << endl;
 | 
|---|
| [7f3b9d] | 36 |   for (int i=NumberOfMolecules;i--;) {
 | 
|---|
| [14de469] | 37 |     if (ListOfMolecules[i] != NULL) { // if NULL don't free
 | 
|---|
 | 38 |       cout << Verbose(4) << "ListOfMolecules: Freeing " << ListOfMolecules[i] << "." << endl;
 | 
|---|
 | 39 |       delete(ListOfMolecules[i]);
 | 
|---|
 | 40 |       ListOfMolecules[i] = NULL;
 | 
|---|
 | 41 |     }
 | 
|---|
 | 42 |   }
 | 
|---|
 | 43 |   cout << Verbose(4) << "Freeing ListOfMolecules." << endl;
 | 
|---|
 | 44 |   Free((void **)&ListOfMolecules, "MoleculeListClass:MoleculeListClass: **ListOfMolecules");
 | 
|---|
 | 45 | };
 | 
|---|
 | 46 | 
 | 
|---|
| [db942e] | 47 | /** Compare whether two molecules are equal.
 | 
|---|
 | 48 |  * \param *a molecule one
 | 
|---|
 | 49 |  * \param *n molecule two
 | 
|---|
 | 50 |  * \return lexical value (-1, 0, +1)
 | 
|---|
 | 51 |  */
 | 
|---|
| [14de469] | 52 | int MolCompare(const void *a, const void *b)
 | 
|---|
 | 53 | {
 | 
|---|
 | 54 |   int *aList = NULL, *bList = NULL;
 | 
|---|
 | 55 |   int Count, Counter, aCounter, bCounter;
 | 
|---|
 | 56 |   int flag;
 | 
|---|
 | 57 |   atom *aWalker = NULL;
 | 
|---|
 | 58 |   atom *bWalker = NULL;
 | 
|---|
 | 59 |   
 | 
|---|
 | 60 |   // sort each atom list and put the numbers into a list, then go through
 | 
|---|
 | 61 |   //cout << "Comparing fragment no. " << *(molecule **)a << " to " << *(molecule **)b << "." << endl;
 | 
|---|
 | 62 |   if ( (**(molecule **)a).AtomCount < (**(molecule **)b).AtomCount ) {
 | 
|---|
 | 63 |     return -1;
 | 
|---|
 | 64 |   } else { if ((**(molecule **)a).AtomCount > (**(molecule **)b).AtomCount)
 | 
|---|
 | 65 |     return +1;
 | 
|---|
 | 66 |     else {
 | 
|---|
 | 67 |       Count = (**(molecule **)a).AtomCount;
 | 
|---|
| [7f3b9d] | 68 |       aList = new int[Count];
 | 
|---|
 | 69 |       bList = new int[Count];
 | 
|---|
| [14de469] | 70 |   
 | 
|---|
 | 71 |       // fill the lists
 | 
|---|
 | 72 |       aWalker = (**(molecule **)a).start;
 | 
|---|
 | 73 |       bWalker = (**(molecule **)b).start;
 | 
|---|
 | 74 |       Counter = 0;
 | 
|---|
 | 75 |       aCounter = 0;
 | 
|---|
 | 76 |       bCounter = 0;
 | 
|---|
 | 77 |       while ((aWalker->next != (**(molecule **)a).end) && (bWalker->next != (**(molecule **)b).end)) {
 | 
|---|
 | 78 |         aWalker = aWalker->next;
 | 
|---|
 | 79 |         bWalker = bWalker->next;
 | 
|---|
 | 80 |         if (aWalker->GetTrueFather() == NULL)
 | 
|---|
 | 81 |           aList[Counter] = Count + (aCounter++);
 | 
|---|
 | 82 |         else
 | 
|---|
 | 83 |           aList[Counter] = aWalker->GetTrueFather()->nr;
 | 
|---|
 | 84 |         if (bWalker->GetTrueFather() == NULL)
 | 
|---|
 | 85 |           bList[Counter] = Count + (bCounter++);
 | 
|---|
 | 86 |         else
 | 
|---|
 | 87 |           bList[Counter] = bWalker->GetTrueFather()->nr;
 | 
|---|
 | 88 |         Counter++;
 | 
|---|
 | 89 |       }
 | 
|---|
 | 90 |       // check if AtomCount was for real
 | 
|---|
 | 91 |       flag = 0;
 | 
|---|
 | 92 |       if ((aWalker->next == (**(molecule **)a).end) && (bWalker->next != (**(molecule **)b).end)) {
 | 
|---|
 | 93 |         flag = -1;
 | 
|---|
 | 94 |       } else {
 | 
|---|
 | 95 |         if ((aWalker->next != (**(molecule **)a).end) && (bWalker->next == (**(molecule **)b).end))
 | 
|---|
 | 96 |           flag = 1;
 | 
|---|
 | 97 |       }
 | 
|---|
 | 98 |       if (flag == 0) {
 | 
|---|
 | 99 |         // sort the lists
 | 
|---|
 | 100 |         gsl_heapsort(aList,Count, sizeof(int), CompareDoubles); 
 | 
|---|
 | 101 |         gsl_heapsort(bList,Count, sizeof(int), CompareDoubles);
 | 
|---|
 | 102 |         // compare the lists 
 | 
|---|
 | 103 |         
 | 
|---|
 | 104 |         flag = 0;
 | 
|---|
 | 105 |         for(int i=0;i<Count;i++) {
 | 
|---|
 | 106 |           if (aList[i] < bList[i]) {
 | 
|---|
 | 107 |             flag = -1;
 | 
|---|
 | 108 |           } else {
 | 
|---|
 | 109 |             if (aList[i] > bList[i])
 | 
|---|
 | 110 |               flag = 1;
 | 
|---|
 | 111 |           }
 | 
|---|
 | 112 |           if (flag != 0)
 | 
|---|
 | 113 |             break;
 | 
|---|
 | 114 |         }
 | 
|---|
 | 115 |       }
 | 
|---|
| [7f3b9d] | 116 |       delete[](aList);
 | 
|---|
 | 117 |       delete[](bList);
 | 
|---|
| [14de469] | 118 |       return flag;
 | 
|---|
 | 119 |     }
 | 
|---|
 | 120 |   }
 | 
|---|
 | 121 |   return  -1;
 | 
|---|
 | 122 | };
 | 
|---|
 | 123 | 
 | 
|---|
 | 124 | /** Simple output of the pointers in ListOfMolecules.
 | 
|---|
 | 125 |  * \param *out output stream
 | 
|---|
 | 126 |  */
 | 
|---|
 | 127 | void MoleculeListClass::Output(ofstream *out)
 | 
|---|
 | 128 | {
 | 
|---|
 | 129 |   *out<< Verbose(1) << "MoleculeList: ";
 | 
|---|
 | 130 |   for (int i=0;i<NumberOfMolecules;i++)
 | 
|---|
 | 131 |     *out << ListOfMolecules[i] << "\t";
 | 
|---|
 | 132 |   *out << endl;
 | 
|---|
 | 133 | };
 | 
|---|
 | 134 | 
 | 
|---|
| [390248] | 135 | /** Calculates necessary hydrogen correction due to unwanted interaction between saturated ones.
 | 
|---|
 | 136 |  * If for a pair of two hydrogen atoms a and b, at least is a saturated one, and a and b are not
 | 
|---|
 | 137 |  * bonded to the same atom, then we add for this pair a correction term constructed from a Morse
 | 
|---|
 | 138 |  * potential function fit to QM calculations with respecting to the interatomic hydrogen distance.
 | 
|---|
 | 139 |  * \param *out output stream for debugging
 | 
|---|
 | 140 |  * \param *path path to file
 | 
|---|
 | 141 |  */
 | 
|---|
 | 142 | bool MoleculeListClass::AddHydrogenCorrection(ofstream *out, char *path)
 | 
|---|
 | 143 | {
 | 
|---|
 | 144 |   atom *Walker = NULL;
 | 
|---|
 | 145 |   atom *Runner = NULL;
 | 
|---|
 | 146 |   double ***FitConstant = NULL, **correction = NULL;
 | 
|---|
 | 147 |   int a,b;
 | 
|---|
 | 148 |   ofstream output;
 | 
|---|
 | 149 |   ifstream input;
 | 
|---|
 | 150 |   string line;
 | 
|---|
 | 151 |   stringstream zeile;
 | 
|---|
 | 152 |   double distance;
 | 
|---|
 | 153 |   char ParsedLine[1023];
 | 
|---|
 | 154 |   double tmp;
 | 
|---|
 | 155 |   char *FragmentNumber = NULL;
 | 
|---|
 | 156 | 
 | 
|---|
 | 157 |   cout << Verbose(1) << "Saving hydrogen saturation correction ... ";
 | 
|---|
 | 158 |   // 0. parse in fit constant files that should have the same dimension as the final energy files
 | 
|---|
 | 159 |   // 0a. find dimension of matrices with constants
 | 
|---|
 | 160 |   line = path;
 | 
|---|
 | 161 |   line.append("/");
 | 
|---|
 | 162 |   line += FRAGMENTPREFIX;
 | 
|---|
 | 163 |   line += "1";
 | 
|---|
 | 164 |   line += FITCONSTANTSUFFIX;
 | 
|---|
 | 165 |   input.open(line.c_str());
 | 
|---|
 | 166 |   if (input == NULL) {
 | 
|---|
 | 167 |     cerr << endl << "Unable to open " << line << ", is the directory correct?" << endl;
 | 
|---|
 | 168 |     return false;
 | 
|---|
 | 169 |   }
 | 
|---|
 | 170 |   a=0;
 | 
|---|
 | 171 |   b=-1; // we overcount by one 
 | 
|---|
 | 172 |   while (!input.eof()) {
 | 
|---|
 | 173 |     input.getline(ParsedLine, 1023);
 | 
|---|
 | 174 |     zeile.str(ParsedLine);
 | 
|---|
 | 175 |     int i=0;
 | 
|---|
 | 176 |     while (!zeile.eof()) {
 | 
|---|
 | 177 |       zeile >> distance;
 | 
|---|
 | 178 |       i++;
 | 
|---|
 | 179 |     }
 | 
|---|
 | 180 |     if (i > a) 
 | 
|---|
 | 181 |       a = i; 
 | 
|---|
 | 182 |     b++;
 | 
|---|
 | 183 |   }
 | 
|---|
 | 184 |   cout << "I recognized " << a << " columns and " << b << " rows, ";
 | 
|---|
 | 185 |   input.close();
 | 
|---|
 | 186 |   
 | 
|---|
 | 187 |   // 0b. allocate memory for constants
 | 
|---|
 | 188 |   FitConstant = (double ***) Malloc(sizeof(double **)*3, "MoleculeListClass::AddHydrogenCorrection: ***FitConstant");
 | 
|---|
 | 189 |   for (int k=0;k<3;k++) {
 | 
|---|
 | 190 |     FitConstant[k] = (double **) Malloc(sizeof(double *)*a, "MoleculeListClass::AddHydrogenCorrection: **FitConstant[]");
 | 
|---|
 | 191 |     for (int i=a;i--;) {
 | 
|---|
 | 192 |       FitConstant[k][i] = (double *) Malloc(sizeof(double)*b, "MoleculeListClass::AddHydrogenCorrection: *FitConstant[][]");
 | 
|---|
 | 193 |     }
 | 
|---|
 | 194 |   }
 | 
|---|
 | 195 |   // 0c. parse in constants
 | 
|---|
 | 196 |   for (int i=0;i<3;i++) {
 | 
|---|
 | 197 |     line = path;
 | 
|---|
 | 198 |     line.append("/");
 | 
|---|
 | 199 |     line += FRAGMENTPREFIX;
 | 
|---|
 | 200 |     sprintf(ParsedLine, "%d", i+1);
 | 
|---|
 | 201 |     line += ParsedLine;
 | 
|---|
 | 202 |     line += FITCONSTANTSUFFIX;
 | 
|---|
 | 203 |     input.open(line.c_str());
 | 
|---|
 | 204 |     if (input == NULL) {
 | 
|---|
 | 205 |       cerr << endl << "Unable to open " << line << ", is the directory correct?" << endl;
 | 
|---|
 | 206 |       return false;
 | 
|---|
 | 207 |     }
 | 
|---|
 | 208 |     int k = 0,l;
 | 
|---|
 | 209 |     while ((!input.eof()) && (k < b)) {
 | 
|---|
 | 210 |       input.getline(ParsedLine, 1023);
 | 
|---|
 | 211 |       //cout << "Current Line: " << ParsedLine << endl;
 | 
|---|
 | 212 |       zeile.str(ParsedLine);
 | 
|---|
 | 213 |       zeile.clear();
 | 
|---|
 | 214 |       l = 0;
 | 
|---|
 | 215 |       while ((!zeile.eof()) && (l < a)) {
 | 
|---|
 | 216 |         zeile >> FitConstant[i][l][k];
 | 
|---|
 | 217 |         //cout << FitConstant[i][l][k] << "\t";
 | 
|---|
 | 218 |         l++;
 | 
|---|
 | 219 |       }
 | 
|---|
 | 220 |       //cout << endl;
 | 
|---|
 | 221 |       k++;
 | 
|---|
 | 222 |     }
 | 
|---|
 | 223 |     input.close();
 | 
|---|
 | 224 |   }
 | 
|---|
 | 225 |   for(int k=0;k<3;k++) {
 | 
|---|
 | 226 |     cout << "Constants " << k << ":" << endl;
 | 
|---|
 | 227 |     for (int j=0;j<b;j++) {
 | 
|---|
 | 228 |       for (int i=0;i<a;i++) {
 | 
|---|
 | 229 |         cout << FitConstant[k][i][j] << "\t";
 | 
|---|
 | 230 |       }
 | 
|---|
 | 231 |       cout << endl;
 | 
|---|
 | 232 |     }
 | 
|---|
 | 233 |     cout << endl;
 | 
|---|
 | 234 |   }
 | 
|---|
 | 235 |   
 | 
|---|
 | 236 |   // 0d. allocate final correction matrix
 | 
|---|
 | 237 |   correction = (double **) Malloc(sizeof(double *)*a, "MoleculeListClass::AddHydrogenCorrection: **correction");
 | 
|---|
 | 238 |   for (int i=a;i--;)
 | 
|---|
 | 239 |     correction[i] = (double *) Malloc(sizeof(double)*b, "MoleculeListClass::AddHydrogenCorrection: *correction[]");
 | 
|---|
 | 240 |         
 | 
|---|
 | 241 |   // 1a. go through every molecule in the list
 | 
|---|
 | 242 |   for(int i=NumberOfMolecules;i--;) {
 | 
|---|
 | 243 |     // 1b. zero final correction matrix
 | 
|---|
 | 244 |     for (int k=a;k--;)
 | 
|---|
 | 245 |       for (int j=b;j--;)
 | 
|---|
 | 246 |         correction[k][j] = 0.;
 | 
|---|
 | 247 |     // 2. take every hydrogen that is a saturated one
 | 
|---|
 | 248 |     Walker = ListOfMolecules[i]->start;
 | 
|---|
 | 249 |     while (Walker->next != ListOfMolecules[i]->end) {
 | 
|---|
 | 250 |       Walker = Walker->next;
 | 
|---|
 | 251 |       //cout << Verbose(1) << "Walker: " << *Walker << " with first bond " << *ListOfMolecules[i]->ListOfBondsPerAtom[Walker->nr][0] << "." << endl;
 | 
|---|
 | 252 |       if ((Walker->type->Z == 1) && ((Walker->father == NULL) || (Walker->father->type->Z != 1))) { // if it's a hydrogen
 | 
|---|
 | 253 |         Runner = ListOfMolecules[i]->start;
 | 
|---|
 | 254 |         while (Runner->next != ListOfMolecules[i]->end) {
 | 
|---|
 | 255 |           Runner = Runner->next;
 | 
|---|
 | 256 |           //cout << Verbose(2) << "Runner: " << *Runner << " with first bond " << *ListOfMolecules[i]->ListOfBondsPerAtom[Runner->nr][0] << "." << endl;
 | 
|---|
 | 257 |           // 3. take every other hydrogen that is the not the first and not bound to same bonding partner
 | 
|---|
 | 258 |           if ((Runner->type->Z == 1) && (Runner->nr > Walker->nr) && (ListOfMolecules[i]->ListOfBondsPerAtom[Runner->nr][0]->GetOtherAtom(Runner) != ListOfMolecules[i]->ListOfBondsPerAtom[Walker->nr][0]->GetOtherAtom(Walker))) {  // (hydrogens have only one bonding partner!)
 | 
|---|
 | 259 |             // 4. evaluate the morse potential for each matrix component and add up
 | 
|---|
 | 260 |             distance = sqrt(Runner->x.Distance(&Walker->x));
 | 
|---|
 | 261 |             //cout << "Fragment " << i << ": " << *Runner << "<= " << distance << "=>" << *Walker << ":" << endl;
 | 
|---|
 | 262 |             for(int k=0;k<a;k++) {
 | 
|---|
 | 263 |               for (int j=0;j<b;j++) {
 | 
|---|
 | 264 |                 switch(k) {
 | 
|---|
 | 265 |                 case 1:
 | 
|---|
 | 266 |                 case 7:
 | 
|---|
 | 267 |                 case 11:
 | 
|---|
 | 268 |                   tmp = pow(FitConstant[0][k][j] * ( 1. - exp(-FitConstant[1][k][j] * (distance - FitConstant[2][k][j]) ) ),2);
 | 
|---|
 | 269 |                   break;
 | 
|---|
 | 270 |                 default:
 | 
|---|
 | 271 |                   tmp = FitConstant[0][k][j] * pow( distance,  FitConstant[1][k][j]) + FitConstant[2][k][j];
 | 
|---|
 | 272 |                 };
 | 
|---|
 | 273 |                 correction[k][j] -= tmp;    // ground state is actually lower (disturbed by additional interaction)
 | 
|---|
 | 274 |                 //cout << tmp << "\t";
 | 
|---|
 | 275 |               }
 | 
|---|
 | 276 |               //cout << endl;
 | 
|---|
 | 277 |             }
 | 
|---|
 | 278 |             //cout << endl;
 | 
|---|
 | 279 |           }
 | 
|---|
 | 280 |         }
 | 
|---|
 | 281 |       }
 | 
|---|
 | 282 |     }
 | 
|---|
 | 283 |     // 5. write final matrix to file
 | 
|---|
 | 284 |     line = path;
 | 
|---|
 | 285 |     line.append("/");
 | 
|---|
 | 286 |     line += FRAGMENTPREFIX;
 | 
|---|
 | 287 |     FragmentNumber = FixedDigitNumber(NumberOfMolecules, i);
 | 
|---|
 | 288 |     line += FragmentNumber;
 | 
|---|
 | 289 |     delete(FragmentNumber);
 | 
|---|
 | 290 |     line += HCORRECTIONSUFFIX;
 | 
|---|
 | 291 |     output.open(line.c_str());
 | 
|---|
 | 292 |     output << "Time\t\tTotal\t\tKinetic\t\tNonLocal\tCorrelation\tExchange\tPseudo\t\tHartree\t\t-Gauss\t\tEwald\t\tIonKin\t\tETotal" << endl;
 | 
|---|
 | 293 |     for (int j=0;j<b;j++) {
 | 
|---|
 | 294 |       for(int i=0;i<a;i++)
 | 
|---|
 | 295 |         output << correction[i][j] << "\t";
 | 
|---|
 | 296 |       output << endl;
 | 
|---|
 | 297 |     }
 | 
|---|
 | 298 |     output.close();
 | 
|---|
 | 299 |   }
 | 
|---|
 | 300 |   line = path;
 | 
|---|
 | 301 |   line.append("/");
 | 
|---|
 | 302 |   line += HCORRECTIONSUFFIX;
 | 
|---|
 | 303 |   output.open(line.c_str());
 | 
|---|
 | 304 |   output << "Time\t\tTotal\t\tKinetic\t\tNonLocal\tCorrelation\tExchange\tPseudo\t\tHartree\t\t-Gauss\t\tEwald\t\tIonKin\t\tETotal" << endl;
 | 
|---|
 | 305 |   for (int j=0;j<b;j++) {
 | 
|---|
 | 306 |     for(int i=0;i<a;i++)
 | 
|---|
 | 307 |       output << 0 << "\t";
 | 
|---|
 | 308 |     output << endl;
 | 
|---|
 | 309 |   }
 | 
|---|
 | 310 |   output.close();
 | 
|---|
 | 311 |   // 6. free memory of parsed matrices
 | 
|---|
 | 312 |   FitConstant = (double ***) Malloc(sizeof(double **)*a, "MoleculeListClass::AddHydrogenCorrection: ***FitConstant");
 | 
|---|
 | 313 |   for (int k=0;k<3;k++) {
 | 
|---|
 | 314 |     FitConstant[k] = (double **) Malloc(sizeof(double *)*a, "MoleculeListClass::AddHydrogenCorrection: **FitConstant[]");
 | 
|---|
 | 315 |     for (int i=a;i--;) {
 | 
|---|
 | 316 |       FitConstant[k][i] = (double *) Malloc(sizeof(double)*b, "MoleculeListClass::AddHydrogenCorrection: *FitConstant[][]");
 | 
|---|
 | 317 |     }
 | 
|---|
 | 318 |   }
 | 
|---|
 | 319 |   cout << "done." << endl;
 | 
|---|
 | 320 |   return true;
 | 
|---|
 | 321 | };
 | 
|---|
| [2459b1] | 322 | 
 | 
|---|
 | 323 | /** Store force indices, i.e. the connection between the nuclear index in the total molecule config and the respective atom in fragment config.
 | 
|---|
 | 324 |  * \param *out output stream for debugging
 | 
|---|
 | 325 |  * \param *path path to file
 | 
|---|
 | 326 |  * \param *SortIndex Index to map from the BFS labeling to the sequence how of Ion_Type in the config
 | 
|---|
 | 327 |  * \return true - file written successfully, false - writing failed
 | 
|---|
 | 328 |  */
 | 
|---|
 | 329 | bool MoleculeListClass::StoreForcesFile(ofstream *out, char *path, int *SortIndex)
 | 
|---|
 | 330 | {
 | 
|---|
 | 331 |   bool status = true;
 | 
|---|
 | 332 |   ofstream ForcesFile;
 | 
|---|
 | 333 |   stringstream line;
 | 
|---|
 | 334 |   atom *Walker = NULL;
 | 
|---|
 | 335 |   element *runner = NULL;
 | 
|---|
 | 336 | 
 | 
|---|
 | 337 |   // open file for the force factors
 | 
|---|
 | 338 |   *out << Verbose(1) << "Saving  force factors ... ";
 | 
|---|
 | 339 |   line << path << "/" << FRAGMENTPREFIX << FORCESFILE;
 | 
|---|
 | 340 |   ForcesFile.open(line.str().c_str(), ios::out);
 | 
|---|
 | 341 |   if (ForcesFile != NULL) {
 | 
|---|
 | 342 |     //cout << Verbose(1) << "Final AtomicForcesList: ";
 | 
|---|
 | 343 |     //output << prefix << "Forces" << endl;
 | 
|---|
 | 344 |     for(int j=0;j<NumberOfMolecules;j++) {
 | 
|---|
 | 345 |       //if (TEList[j] != 0) {
 | 
|---|
 | 346 |       runner = ListOfMolecules[j]->elemente->start;
 | 
|---|
 | 347 |       while (runner->next != ListOfMolecules[j]->elemente->end) { // go through every element
 | 
|---|
 | 348 |         runner = runner->next;
 | 
|---|
 | 349 |         if (ListOfMolecules[j]->ElementsInMolecule[runner->Z]) { // if this element got atoms
 | 
|---|
 | 350 |           Walker = ListOfMolecules[j]->start;
 | 
|---|
 | 351 |           while (Walker->next != ListOfMolecules[j]->end) { // go through every atom of this element
 | 
|---|
 | 352 |             Walker = Walker->next;
 | 
|---|
 | 353 |             if (Walker->type->Z == runner->Z) {
 | 
|---|
 | 354 |               if ((Walker->GetTrueFather() != NULL) && (Walker->GetTrueFather() != Walker)) {// if there is a rea
 | 
|---|
 | 355 |                 //cout << "Walker is " << *Walker << " with true father " << *( Walker->GetTrueFather()) << ", it
 | 
|---|
 | 356 |                 ForcesFile <<  SortIndex[Walker->GetTrueFather()->nr] << "\t";
 | 
|---|
 | 357 |                 } else  // otherwise a -1 to indicate an added saturation hydrogen
 | 
|---|
 | 358 |                   ForcesFile << "-1\t";
 | 
|---|
 | 359 |               }
 | 
|---|
 | 360 |             }
 | 
|---|
 | 361 |           }
 | 
|---|
 | 362 |       }
 | 
|---|
 | 363 |       ForcesFile << endl;
 | 
|---|
 | 364 |     }
 | 
|---|
 | 365 |     ForcesFile.close();
 | 
|---|
 | 366 |     *out << Verbose(1) << "done." << endl;
 | 
|---|
 | 367 |   } else {
 | 
|---|
 | 368 |     status = false;
 | 
|---|
 | 369 |     *out << Verbose(1) << "failed to open file " << line.str() << "." << endl;
 | 
|---|
 | 370 |   }
 | 
|---|
 | 371 |   ForcesFile.close();
 | 
|---|
 | 372 |   
 | 
|---|
 | 373 |   return status;
 | 
|---|
 | 374 | };
 | 
|---|
 | 375 | 
 | 
|---|
| [14de469] | 376 | /** Writes a config file for each molecule in the given \a **FragmentList.
 | 
|---|
| [db942e] | 377 |  * \param *out output stream for debugging
 | 
|---|
| [14de469] | 378 |  * \param *configuration standard configuration to attach atoms in fragment molecule to.
 | 
|---|
 | 379 |  * \param *SortIndex Index to map from the BFS labeling to the sequence how of Ion_Type in the config
 | 
|---|
 | 380 |  * \return true - success (each file was written), false - something went wrong.
 | 
|---|
 | 381 |  */
 | 
|---|
| [db942e] | 382 | bool MoleculeListClass::OutputConfigForListOfFragments(ofstream *out, config *configuration, int *SortIndex)
 | 
|---|
| [14de469] | 383 | {
 | 
|---|
 | 384 |   ofstream outputFragment;
 | 
|---|
| [c750cc] | 385 |   char FragmentName[MAXSTRINGSIZE];
 | 
|---|
 | 386 |   char PathBackup[MAXSTRINGSIZE];
 | 
|---|
| [14de469] | 387 |   bool result = true;
 | 
|---|
 | 388 |   bool intermediateResult = true;
 | 
|---|
 | 389 |   atom *Walker = NULL;
 | 
|---|
| [e9b8bb] | 390 |   Vector BoxDimension;
 | 
|---|
| [1e9384] | 391 |   char *FragmentNumber = NULL;
 | 
|---|
| [5e4058] | 392 |   char *path = NULL;
 | 
|---|
| [14de469] | 393 |   int FragmentCounter = 0;
 | 
|---|
| [a8aac8d] | 394 |   ofstream output;
 | 
|---|
| [14de469] | 395 |   
 | 
|---|
 | 396 |   // store the fragments as config and as xyz
 | 
|---|
 | 397 |   for(int i=0;i<NumberOfMolecules;i++) {
 | 
|---|
| [db942e] | 398 |     // save default path as it is changed for each fragment
 | 
|---|
| [5e4058] | 399 |     path = configuration->GetDefaultPath();
 | 
|---|
 | 400 |     if (path != NULL)
 | 
|---|
 | 401 |       strcpy(PathBackup, path);
 | 
|---|
 | 402 |     else
 | 
|---|
 | 403 |       cerr << "OutputConfigForListOfFragments: NULL default path obtained from config!" << endl;
 | 
|---|
| [db942e] | 404 | 
 | 
|---|
 | 405 |     // correct periodic
 | 
|---|
 | 406 |     ListOfMolecules[i]->ScanForPeriodicCorrection(out);
 | 
|---|
 | 407 | 
 | 
|---|
 | 408 |     // output xyz file
 | 
|---|
 | 409 |     FragmentNumber = FixedDigitNumber(NumberOfMolecules, FragmentCounter++);
 | 
|---|
 | 410 |     sprintf(FragmentName, "%s/%s%s.conf.xyz", configuration->configpath, FRAGMENTPREFIX, FragmentNumber);
 | 
|---|
 | 411 |     outputFragment.open(FragmentName, ios::out);
 | 
|---|
| [1e9384] | 412 |     *out << Verbose(2) << "Saving bond fragment No. " << FragmentNumber << "/" << FragmentCounter-1 << " as XYZ ...";
 | 
|---|
| [390248] | 413 |     if ((intermediateResult = ListOfMolecules[i]->OutputXYZ(&outputFragment)))
 | 
|---|
| [db942e] | 414 |       *out << " done." << endl;
 | 
|---|
 | 415 |     else
 | 
|---|
 | 416 |       *out << " failed." << endl;
 | 
|---|
 | 417 |     result = result && intermediateResult;
 | 
|---|
 | 418 |     outputFragment.close();
 | 
|---|
 | 419 |     outputFragment.clear();
 | 
|---|
 | 420 | 
 | 
|---|
| [c1fc22] | 421 |     // list atoms in fragment for debugging
 | 
|---|
| [db942e] | 422 |     *out << Verbose(2) << "Contained atoms: ";
 | 
|---|
 | 423 |     Walker = ListOfMolecules[i]->start;
 | 
|---|
 | 424 |     while (Walker->next != ListOfMolecules[i]->end) {
 | 
|---|
 | 425 |       Walker = Walker->next;
 | 
|---|
 | 426 |       *out << Walker->Name << " ";
 | 
|---|
| [14de469] | 427 |     }
 | 
|---|
| [db942e] | 428 |     *out << endl;
 | 
|---|
 | 429 |     
 | 
|---|
 | 430 |     // center on edge
 | 
|---|
 | 431 |     ListOfMolecules[i]->CenterEdge(out, &BoxDimension);
 | 
|---|
 | 432 |     ListOfMolecules[i]->SetBoxDimension(&BoxDimension);  // update Box of atoms by boundary
 | 
|---|
 | 433 |     int j = -1;
 | 
|---|
| [7f3b9d] | 434 |     for (int k=0;k<NDIM;k++) {
 | 
|---|
| [db942e] | 435 |       j += k+1;
 | 
|---|
| [d427bd] | 436 |       BoxDimension.x[k] = 2.5* (configuration->GetIsAngstroem() ? 1. : 1./AtomicLengthToAngstroem);
 | 
|---|
| [db942e] | 437 |       ListOfMolecules[i]->cell_size[j] += BoxDimension.x[k]*2.;
 | 
|---|
| [14de469] | 438 |     }
 | 
|---|
| [db942e] | 439 |     ListOfMolecules[i]->Translate(&BoxDimension);
 | 
|---|
 | 440 | 
 | 
|---|
 | 441 |     // also calculate necessary orbitals
 | 
|---|
 | 442 |     ListOfMolecules[i]->CountElements();  // this is a bugfix, atoms should should actually be added correctly to this fragment 
 | 
|---|
 | 443 |     ListOfMolecules[i]->CalculateOrbitals(*configuration);
 | 
|---|
 | 444 |     
 | 
|---|
 | 445 |     // change path in config
 | 
|---|
| [c1fc22] | 446 |     //strcpy(PathBackup, configuration->configpath);
 | 
|---|
 | 447 |     sprintf(FragmentName, "%s/%s%s/", PathBackup, FRAGMENTPREFIX, FragmentNumber);
 | 
|---|
| [db942e] | 448 |     configuration->SetDefaultPath(FragmentName);
 | 
|---|
| [c1fc22] | 449 |     
 | 
|---|
 | 450 |     // and save as config
 | 
|---|
 | 451 |     sprintf(FragmentName, "%s/%s%s.conf", configuration->configpath, FRAGMENTPREFIX, FragmentNumber);
 | 
|---|
 | 452 |     outputFragment.open(FragmentName, ios::out);
 | 
|---|
| [1e9384] | 453 |     *out << Verbose(2) << "Saving bond fragment No. " << FragmentNumber << "/" << FragmentCounter-1 << " as config ...";
 | 
|---|
| [390248] | 454 |     if ((intermediateResult = configuration->Save(&outputFragment, ListOfMolecules[i]->elemente, ListOfMolecules[i])))
 | 
|---|
| [db942e] | 455 |       *out << " done." << endl;
 | 
|---|
 | 456 |     else
 | 
|---|
 | 457 |       *out << " failed." << endl;
 | 
|---|
| [c1fc22] | 458 | 
 | 
|---|
| [db942e] | 459 |     // restore old config
 | 
|---|
 | 460 |     configuration->SetDefaultPath(PathBackup);
 | 
|---|
| [c1fc22] | 461 | 
 | 
|---|
 | 462 |     result = result && intermediateResult;
 | 
|---|
 | 463 |     outputFragment.close();
 | 
|---|
 | 464 |     outputFragment.clear();
 | 
|---|
 | 465 | 
 | 
|---|
 | 466 |     // and save as mpqc input file
 | 
|---|
 | 467 |     sprintf(FragmentName, "%s/%s%s.in", configuration->configpath, FRAGMENTPREFIX, FragmentNumber);
 | 
|---|
 | 468 |     outputFragment.open(FragmentName, ios::out);
 | 
|---|
 | 469 |     *out << Verbose(2) << "Saving bond fragment No. " << FragmentNumber << "/" << FragmentCounter-1 << " as mpqc input ...";
 | 
|---|
 | 470 |     if ((intermediateResult = configuration->SaveMPQC(&outputFragment, ListOfMolecules[i])))
 | 
|---|
 | 471 |       *out << " done." << endl;
 | 
|---|
 | 472 |     else
 | 
|---|
 | 473 |       *out << " failed." << endl;
 | 
|---|
 | 474 |        
 | 
|---|
| [db942e] | 475 |     result = result && intermediateResult;
 | 
|---|
 | 476 |     outputFragment.close();
 | 
|---|
 | 477 |     outputFragment.clear();
 | 
|---|
| [7f3b9d] | 478 |     delete(FragmentNumber);
 | 
|---|
 | 479 |     //Free((void **)&FragmentNumber, "MoleculeListClass::OutputConfigForListOfFragments: *FragmentNumber");
 | 
|---|
| [14de469] | 480 |   }
 | 
|---|
| [2459b1] | 481 |   cout << " done." << endl;
 | 
|---|
| [14de469] | 482 |   
 | 
|---|
 | 483 |   // printing final number
 | 
|---|
| [db942e] | 484 |   *out << "Final number of fragments: " << FragmentCounter << "." << endl;
 | 
|---|
| [14de469] | 485 |       
 | 
|---|
 | 486 |   return result;
 | 
|---|
 | 487 | };
 | 
|---|
 | 488 | 
 | 
|---|
 | 489 | /******************************************* Class MoleculeLeafClass ************************************************/
 | 
|---|
 | 490 | 
 | 
|---|
 | 491 | /** Constructor for MoleculeLeafClass root leaf.
 | 
|---|
 | 492 |  * \param *Up Leaf on upper level
 | 
|---|
 | 493 |  * \param *PreviousLeaf NULL - We are the first leaf on this level, otherwise points to previous in list
 | 
|---|
 | 494 |  */
 | 
|---|
 | 495 | //MoleculeLeafClass::MoleculeLeafClass(MoleculeLeafClass *Up = NULL, MoleculeLeafClass *Previous = NULL)
 | 
|---|
 | 496 | MoleculeLeafClass::MoleculeLeafClass(MoleculeLeafClass *PreviousLeaf = NULL)
 | 
|---|
 | 497 | {
 | 
|---|
 | 498 | //  if (Up != NULL)
 | 
|---|
 | 499 | //    if (Up->DownLeaf == NULL) // are we the first down leaf for the upper leaf?
 | 
|---|
 | 500 | //      Up->DownLeaf = this;
 | 
|---|
 | 501 | //  UpLeaf = Up;
 | 
|---|
 | 502 | //  DownLeaf = NULL;
 | 
|---|
 | 503 |   Leaf = NULL;
 | 
|---|
 | 504 |   previous = PreviousLeaf;
 | 
|---|
 | 505 |   if (previous != NULL) {
 | 
|---|
 | 506 |     MoleculeLeafClass *Walker = previous->next;
 | 
|---|
 | 507 |     previous->next = this;
 | 
|---|
 | 508 |     next = Walker;
 | 
|---|
 | 509 |   } else {
 | 
|---|
 | 510 |     next = NULL;
 | 
|---|
 | 511 |   }
 | 
|---|
 | 512 | };
 | 
|---|
 | 513 | 
 | 
|---|
 | 514 | /** Destructor for MoleculeLeafClass.
 | 
|---|
 | 515 |  */
 | 
|---|
 | 516 | MoleculeLeafClass::~MoleculeLeafClass()
 | 
|---|
 | 517 | {
 | 
|---|
 | 518 | //  if (DownLeaf != NULL) {// drop leaves further down
 | 
|---|
 | 519 | //    MoleculeLeafClass *Walker = DownLeaf;
 | 
|---|
 | 520 | //    MoleculeLeafClass *Next;
 | 
|---|
 | 521 | //    do {
 | 
|---|
 | 522 | //      Next = Walker->NextLeaf;
 | 
|---|
 | 523 | //      delete(Walker);
 | 
|---|
 | 524 | //      Walker = Next;
 | 
|---|
 | 525 | //    } while (Walker != NULL);
 | 
|---|
 | 526 | //    // Last Walker sets DownLeaf automatically to NULL
 | 
|---|
 | 527 | //  }
 | 
|---|
 | 528 |   // remove the leaf itself
 | 
|---|
 | 529 |   if (Leaf != NULL) {
 | 
|---|
 | 530 |     delete(Leaf);
 | 
|---|
 | 531 |     Leaf = NULL;
 | 
|---|
 | 532 |   }
 | 
|---|
 | 533 |   // remove this Leaf from level list
 | 
|---|
 | 534 |   if (previous != NULL)   
 | 
|---|
 | 535 |     previous->next = next;
 | 
|---|
 | 536 | //  } else { // we are first in list (connects to UpLeaf->DownLeaf)
 | 
|---|
 | 537 | //    if ((NextLeaf != NULL) && (NextLeaf->UpLeaf == NULL))
 | 
|---|
 | 538 | //      NextLeaf->UpLeaf = UpLeaf;  // either null as we are top level or the upleaf of the first node
 | 
|---|
 | 539 | //    if (UpLeaf != NULL)
 | 
|---|
 | 540 | //      UpLeaf->DownLeaf = NextLeaf;  // either null as we are only leaf or NextLeaf if we are just the first
 | 
|---|
 | 541 | //  }
 | 
|---|
 | 542 | //  UpLeaf = NULL;
 | 
|---|
 | 543 |   if (next != NULL) // are we last in list
 | 
|---|
 | 544 |     next->previous = previous;
 | 
|---|
 | 545 |   next = NULL;
 | 
|---|
 | 546 |   previous = NULL;
 | 
|---|
 | 547 | };
 | 
|---|
 | 548 | 
 | 
|---|
 | 549 | /** Adds \a molecule leaf to the tree.
 | 
|---|
 | 550 |  * \param *ptr ptr to molecule to be added
 | 
|---|
 | 551 |  * \param *Previous previous MoleculeLeafClass referencing level and which on the level
 | 
|---|
 | 552 |  * \return true - success, false - something went wrong
 | 
|---|
 | 553 |  */
 | 
|---|
 | 554 | bool MoleculeLeafClass::AddLeaf(molecule *ptr, MoleculeLeafClass *Previous)
 | 
|---|
 | 555 | {
 | 
|---|
 | 556 |   return false;
 | 
|---|
 | 557 | };
 | 
|---|
| [c82f3d] | 558 | 
 | 
|---|
 | 559 | /** Fills the bond structure of this chain list subgraphs that are derived from a complete \a *reference molecule.
 | 
|---|
 | 560 |  * Calls this routine in each MoleculeLeafClass::next subgraph if it's not NULL.
 | 
|---|
 | 561 |  * \param *out output stream for debugging
 | 
|---|
 | 562 |  * \param *reference reference molecule with the bond structure to be copied
 | 
|---|
 | 563 |  * \param &FragmentCounter Counter needed to address \a **ListOfLocalAtoms
 | 
|---|
 | 564 |  * \param ***ListOfLocalAtoms Lookup table for each subgraph and index of each atom in \a *reference, may be NULL on start, then it is filled
 | 
|---|
 | 565 |  * \param FreeList true - ***ListOfLocalAtoms is free'd before return, false - it is not
 | 
|---|
 | 566 |  * \return true - success, false - faoilure
 | 
|---|
 | 567 |  */
 | 
|---|
 | 568 | bool MoleculeLeafClass::FillBondStructureFromReference(ofstream *out, molecule *reference, int &FragmentCounter, atom ***&ListOfLocalAtoms, bool FreeList)
 | 
|---|
 | 569 | {
 | 
|---|
 | 570 |   atom *Walker = NULL, *OtherWalker = NULL;
 | 
|---|
 | 571 |   bond *Binder = NULL;
 | 
|---|
 | 572 |   bool status = true;
 | 
|---|
 | 573 |   int AtomNo;
 | 
|---|
 | 574 | 
 | 
|---|
| [d2a294] | 575 |   // fill ListOfLocalAtoms if NULL was given
 | 
|---|
 | 576 |   if (!FillListOfLocalAtoms(out, ListOfLocalAtoms, FragmentCounter, reference->AtomCount, FreeList)) {
 | 
|---|
 | 577 |     *out << Verbose(1) << "Filling of ListOfLocalAtoms failed." << endl;
 | 
|---|
 | 578 |     return false;
 | 
|---|
| [c82f3d] | 579 |   }
 | 
|---|
 | 580 |   
 | 
|---|
 | 581 |   if (status) {
 | 
|---|
 | 582 |     *out << Verbose(1) << "Creating adjacency list for subgraph " << this << "." << endl;
 | 
|---|
 | 583 |     Walker = Leaf->start;
 | 
|---|
 | 584 |     while (Walker->next != Leaf->end) {
 | 
|---|
 | 585 |       Walker = Walker->next;
 | 
|---|
 | 586 |       AtomNo = Walker->father->nr;  // global id of the current walker
 | 
|---|
 | 587 |       for(int i=0;i<reference->NumberOfBondsPerAtom[AtomNo];i++) { // go through father's bonds and copy them all
 | 
|---|
 | 588 |         Binder = reference->ListOfBondsPerAtom[AtomNo][i];
 | 
|---|
 | 589 |         OtherWalker = ListOfLocalAtoms[FragmentCounter][Binder->GetOtherAtom(Walker->father)->nr];    // local copy of current bond partner of walker
 | 
|---|
 | 590 |         if (OtherWalker != NULL) {
 | 
|---|
 | 591 |           if (OtherWalker->nr > Walker->nr)
 | 
|---|
 | 592 |           Leaf->AddBond(Walker, OtherWalker, Binder->BondDegree);
 | 
|---|
 | 593 |         } else {
 | 
|---|
 | 594 |           *out << Verbose(1) << "OtherWalker = ListOfLocalAtoms[" << FragmentCounter << "][" << Binder->GetOtherAtom(Walker->father)->nr << "] is NULL!" << endl;
 | 
|---|
 | 595 |           status = false;
 | 
|---|
 | 596 |         }
 | 
|---|
 | 597 |       }
 | 
|---|
 | 598 |     }
 | 
|---|
 | 599 |     Leaf->CreateListOfBondsPerAtom(out);
 | 
|---|
 | 600 |     FragmentCounter++;
 | 
|---|
 | 601 |     if (next != NULL)
 | 
|---|
 | 602 |       status = next->FillBondStructureFromReference(out, reference, FragmentCounter, ListOfLocalAtoms);
 | 
|---|
 | 603 |   }
 | 
|---|
 | 604 |   
 | 
|---|
 | 605 |   if (FreeList) {
 | 
|---|
 | 606 |     // free the index lookup list
 | 
|---|
| [386aa2] | 607 |     Free((void **)&ListOfLocalAtoms[FragmentCounter], "MoleculeLeafClass::FillBondStructureFromReference - **ListOfLocalAtoms[]");
 | 
|---|
 | 608 |     if (ListOfLocalAtoms[FragmentCounter] == NULL)
 | 
|---|
| [c82f3d] | 609 |       Free((void **)&ListOfLocalAtoms, "MoleculeLeafClass::FillBondStructureFromReference - ***ListOfLocalAtoms");
 | 
|---|
 | 610 |   }
 | 
|---|
| [386aa2] | 611 |   FragmentCounter--;
 | 
|---|
| [c82f3d] | 612 |   return status;
 | 
|---|
 | 613 | };
 | 
|---|
 | 614 | 
 | 
|---|
| [386aa2] | 615 | /** Fills the root stack for sites to be used as root in fragmentation depending on order or adaptivity criteria
 | 
|---|
 | 616 |  * Again, as in \sa FillBondStructureFromReference steps recursively through each Leaf in this chain list of molecule's.
 | 
|---|
 | 617 |  * \param *out output stream for debugging
 | 
|---|
 | 618 |  * \param *&RootStack stack to be filled
 | 
|---|
| [5de3c9] | 619 |  * \param *AtomMask defines true/false per global Atom::nr to mask in/out each nuclear site
 | 
|---|
| [386aa2] | 620 |  * \param &FragmentCounter counts through the fragments in this MoleculeLeafClass
 | 
|---|
 | 621 |  * \return true - stack is non-empty, fragmentation necessary, false - stack is empty, no more sites to update
 | 
|---|
 | 622 |  */
 | 
|---|
| [de293ac] | 623 | bool MoleculeLeafClass::FillRootStackForSubgraphs(ofstream *out, KeyStack *&RootStack, bool *AtomMask, int &FragmentCounter)
 | 
|---|
| [386aa2] | 624 | {
 | 
|---|
| [5de3c9] | 625 |   atom *Walker = NULL, *Father = NULL;
 | 
|---|
| [386aa2] | 626 | 
 | 
|---|
 | 627 |   if (RootStack != NULL) {
 | 
|---|
| [de293ac] | 628 |     // find first root candidates 
 | 
|---|
 | 629 |     if (&(RootStack[FragmentCounter]) != NULL) {
 | 
|---|
 | 630 |       RootStack[FragmentCounter].clear();  
 | 
|---|
 | 631 |       Walker = Leaf->start;
 | 
|---|
 | 632 |       while (Walker->next != Leaf->end) { // go through all (non-hydrogen) atoms
 | 
|---|
 | 633 |         Walker = Walker->next;
 | 
|---|
 | 634 |         Father = Walker->GetTrueFather();
 | 
|---|
 | 635 |         if (AtomMask[Father->nr]) // apply mask
 | 
|---|
 | 636 |     #ifdef ADDHYDROGEN
 | 
|---|
 | 637 |           if (Walker->type->Z != 1) // skip hydrogen
 | 
|---|
 | 638 |     #endif
 | 
|---|
 | 639 |             RootStack[FragmentCounter].push_front(Walker->nr);
 | 
|---|
| [d2a294] | 640 |       }
 | 
|---|
| [de293ac] | 641 |       if (next != NULL)
 | 
|---|
 | 642 |         next->FillRootStackForSubgraphs(out, RootStack, AtomMask, ++FragmentCounter);
 | 
|---|
 | 643 |     }  else {
 | 
|---|
 | 644 |       *out << Verbose(1) << "Rootstack[" << FragmentCounter  << "] is NULL." << endl;
 | 
|---|
 | 645 |       return false;
 | 
|---|
| [386aa2] | 646 |     }
 | 
|---|
| [d2a294] | 647 |     FragmentCounter--;
 | 
|---|
| [386aa2] | 648 |     return true;
 | 
|---|
| [d2a294] | 649 |   } else {
 | 
|---|
 | 650 |     *out << Verbose(1) << "Rootstack is NULL." << endl;
 | 
|---|
| [386aa2] | 651 |     return false;
 | 
|---|
| [d2a294] | 652 |   }
 | 
|---|
 | 653 | };
 | 
|---|
 | 654 | 
 | 
|---|
 | 655 | /** Fills a lookup list of father's Atom::nr -> atom for each subgraph.
 | 
|---|
 | 656 |  * \param *out output stream fro debugging
 | 
|---|
 | 657 |  * \param ***ListOfLocalAtoms Lookup table for each subgraph and index of each atom in global molecule, may be NULL on start, then it is filled
 | 
|---|
 | 658 |  * \param &FragmentCounter counts the fragments as we move along the list
 | 
|---|
 | 659 |  * \param GlobalAtomCount number of atoms in the complete molecule
 | 
|---|
 | 660 |  * \param &FreeList true - ***ListOfLocalAtoms is free'd before return, false - it is not
 | 
|---|
 | 661 |  * \return true - succes, false - failure
 | 
|---|
 | 662 |  */
 | 
|---|
 | 663 | bool MoleculeLeafClass::FillListOfLocalAtoms(ofstream *out, atom ***&ListOfLocalAtoms, int &FragmentCounter, int GlobalAtomCount, bool &FreeList)
 | 
|---|
 | 664 | {
 | 
|---|
 | 665 |   bool status = true;
 | 
|---|
 | 666 |   
 | 
|---|
 | 667 |   int Counter = Count();
 | 
|---|
 | 668 |   if (ListOfLocalAtoms == NULL) { // allocated initial pointer
 | 
|---|
 | 669 |     // allocate and set each field to NULL
 | 
|---|
 | 670 |     ListOfLocalAtoms = (atom ***) Malloc(sizeof(atom **)*Counter, "MoleculeLeafClass::FillBondStructureFromReference - ***ListOfLocalAtoms");
 | 
|---|
 | 671 |     if (ListOfLocalAtoms != NULL) {
 | 
|---|
| [7f3b9d] | 672 |       for (int i=Counter;i--;)
 | 
|---|
| [d2a294] | 673 |         ListOfLocalAtoms[i] = NULL;
 | 
|---|
 | 674 |       FreeList = FreeList && true;
 | 
|---|
 | 675 |     } else
 | 
|---|
 | 676 |       status = false;
 | 
|---|
 | 677 |   }
 | 
|---|
 | 678 |   
 | 
|---|
 | 679 |   if ((ListOfLocalAtoms != NULL) && (ListOfLocalAtoms[FragmentCounter] == NULL)) { // allocate and fill list of this fragment/subgraph
 | 
|---|
 | 680 |     status = status && CreateFatherLookupTable(out, Leaf->start, Leaf->end, ListOfLocalAtoms[FragmentCounter], GlobalAtomCount);
 | 
|---|
 | 681 |     FreeList = FreeList && true;
 | 
|---|
 | 682 |   }
 | 
|---|
 | 683 |   
 | 
|---|
 | 684 |   return status;
 | 
|---|
 | 685 | };
 | 
|---|
 | 686 | 
 | 
|---|
 | 687 | /** The indices per keyset are compared to the respective father's Atom::nr in each subgraph and thus put into \a **&FragmentList.
 | 
|---|
 | 688 |  * \param *out output stream fro debugging
 | 
|---|
 | 689 |  * \param *reference reference molecule with the bond structure to be copied
 | 
|---|
 | 690 |  * \param *KeySetList list with all keysets
 | 
|---|
 | 691 |  * \param ***ListOfLocalAtoms Lookup table for each subgraph and index of each atom in global molecule, may be NULL on start, then it is filled
 | 
|---|
 | 692 |  * \param **&FragmentList list to be allocated and returned
 | 
|---|
 | 693 |  * \param &FragmentCounter counts the fragments as we move along the list
 | 
|---|
 | 694 |  * \param FreeList true - ***ListOfLocalAtoms is free'd before return, false - it is not
 | 
|---|
 | 695 |  * \retuen true - success, false - failure
 | 
|---|
 | 696 |  */
 | 
|---|
 | 697 | bool MoleculeLeafClass::AssignKeySetsToFragment(ofstream *out, molecule *reference, Graph *KeySetList, atom ***&ListOfLocalAtoms, Graph **&FragmentList, int &FragmentCounter, bool FreeList)
 | 
|---|
 | 698 | {
 | 
|---|
 | 699 |   bool status = true;
 | 
|---|
 | 700 |   int KeySetCounter = 0;
 | 
|---|
 | 701 |   
 | 
|---|
 | 702 |   // fill ListOfLocalAtoms if NULL was given
 | 
|---|
 | 703 |   if (!FillListOfLocalAtoms(out, ListOfLocalAtoms, FragmentCounter, reference->AtomCount, FreeList)) {
 | 
|---|
 | 704 |     *out << Verbose(1) << "Filling of ListOfLocalAtoms failed." << endl;
 | 
|---|
 | 705 |     return false;
 | 
|---|
 | 706 |   }
 | 
|---|
 | 707 | 
 | 
|---|
 | 708 |   // allocate fragment list
 | 
|---|
 | 709 |   if (FragmentList == NULL) {
 | 
|---|
 | 710 |     KeySetCounter = Count();
 | 
|---|
| [bf46da] | 711 |     FragmentList = (Graph **) Malloc(sizeof(Graph *)*KeySetCounter, "MoleculeLeafClass::AssignKeySetsToFragment - **FragmentList");
 | 
|---|
| [7f3b9d] | 712 |     for(int i=KeySetCounter;i--;)
 | 
|---|
| [d2a294] | 713 |       FragmentList[i] = NULL;
 | 
|---|
 | 714 |     KeySetCounter = 0;
 | 
|---|
 | 715 |   }
 | 
|---|
 | 716 |   
 | 
|---|
 | 717 |   if ((KeySetList != NULL) && (KeySetList->size() != 0)) { // if there are some scanned keysets at all
 | 
|---|
 | 718 |     // assign scanned keysets
 | 
|---|
 | 719 |     if (FragmentList[FragmentCounter] == NULL)
 | 
|---|
 | 720 |       FragmentList[FragmentCounter] = new Graph;
 | 
|---|
 | 721 |     KeySet *TempSet = new KeySet;
 | 
|---|
 | 722 |     for(Graph::iterator runner = KeySetList->begin();runner != KeySetList->end(); runner++) { // key sets contain global numbers!
 | 
|---|
 | 723 |       if ( ListOfLocalAtoms[FragmentCounter][reference->FindAtom(*((*runner).first.begin()))->nr]->nr != -1) {// as we may assume that that bond structure is unchanged, we only test the first key in each set
 | 
|---|
 | 724 |         // translate keyset to local numbers
 | 
|---|
 | 725 |         for(KeySet::iterator sprinter = (*runner).first.begin(); sprinter != (*runner).first.end(); sprinter++)
 | 
|---|
 | 726 |           TempSet->insert(ListOfLocalAtoms[FragmentCounter][reference->FindAtom(*sprinter)->nr]->nr);
 | 
|---|
 | 727 |         // insert into FragmentList
 | 
|---|
 | 728 |         FragmentList[FragmentCounter]->insert(GraphPair (*TempSet, pair<int,double>(KeySetCounter++, (*runner).second.second)));
 | 
|---|
 | 729 |       }
 | 
|---|
 | 730 |       TempSet->clear();
 | 
|---|
 | 731 |     }
 | 
|---|
 | 732 |     delete(TempSet);
 | 
|---|
 | 733 |     if (KeySetCounter == 0) {// if there are no keysets, delete the list
 | 
|---|
 | 734 |       *out << Verbose(1) << "KeySetCounter is zero, deleting FragmentList." << endl;
 | 
|---|
 | 735 |       delete(FragmentList[FragmentCounter]);
 | 
|---|
 | 736 |     } else
 | 
|---|
 | 737 |       *out << Verbose(1) << KeySetCounter << " keysets were assigned to subgraph " << FragmentCounter << "." << endl;
 | 
|---|
 | 738 |     FragmentCounter++;
 | 
|---|
 | 739 |     if (next != NULL)
 | 
|---|
 | 740 |       next->AssignKeySetsToFragment(out, reference, KeySetList, ListOfLocalAtoms, FragmentList, FragmentCounter, FreeList);
 | 
|---|
 | 741 |     FragmentCounter--;
 | 
|---|
 | 742 |   } else
 | 
|---|
 | 743 |     *out << Verbose(1) << "KeySetList is NULL or empty." << endl;
 | 
|---|
 | 744 |   
 | 
|---|
 | 745 |   return status;
 | 
|---|
| [386aa2] | 746 | };
 | 
|---|
| [c82f3d] | 747 | 
 | 
|---|
| [87f6c9] | 748 | /** Translate list into global numbers (i.e. ones that are valid in "this" molecule, not in MolecularWalker->Leaf)
 | 
|---|
 | 749 |  * \param *out output stream for debugging
 | 
|---|
 | 750 |  * \param **FragmentList Graph with local numbers per fragment
 | 
|---|
 | 751 |  * \param &FragmentCounter counts the fragments as we move along the list
 | 
|---|
 | 752 |  * \param &TotalNumberOfKeySets global key set counter
 | 
|---|
 | 753 |  * \param &TotalGraph Graph to be filled with global numbers
 | 
|---|
 | 754 |  */ 
 | 
|---|
 | 755 | void MoleculeLeafClass::TranslateIndicesToGlobalIDs(ofstream *out, Graph **FragmentList, int &FragmentCounter, int &TotalNumberOfKeySets, Graph &TotalGraph)
 | 
|---|
 | 756 | {
 | 
|---|
| [362b0e] | 757 |   *out << Verbose(1) << "Begin of TranslateIndicesToGlobalIDs." << endl;
 | 
|---|
| [87f6c9] | 758 |   KeySet *TempSet = new KeySet;
 | 
|---|
| [de293ac] | 759 |   if (FragmentList[FragmentCounter] != NULL) {
 | 
|---|
 | 760 |     for(Graph::iterator runner = FragmentList[FragmentCounter]->begin(); runner != FragmentList[FragmentCounter]->end(); runner++) {
 | 
|---|
 | 761 |       for(KeySet::iterator sprinter = (*runner).first.begin(); sprinter != (*runner).first.end(); sprinter++)
 | 
|---|
 | 762 |         TempSet->insert((Leaf->FindAtom(*sprinter))->GetTrueFather()->nr);
 | 
|---|
 | 763 |       TotalGraph.insert(GraphPair(*TempSet, pair<int,double>(TotalNumberOfKeySets++, (*runner).second.second)));
 | 
|---|
 | 764 |       TempSet->clear();
 | 
|---|
 | 765 |     }
 | 
|---|
 | 766 |     delete(TempSet);
 | 
|---|
 | 767 |   } else {
 | 
|---|
 | 768 |     *out << Verbose(1) << "FragmentList is NULL." << endl;
 | 
|---|
| [87f6c9] | 769 |   }
 | 
|---|
 | 770 |   if (next != NULL)
 | 
|---|
 | 771 |     next->TranslateIndicesToGlobalIDs(out, FragmentList, ++FragmentCounter, TotalNumberOfKeySets, TotalGraph);
 | 
|---|
 | 772 |   FragmentCounter--;
 | 
|---|
| [362b0e] | 773 |   *out << Verbose(1) << "End of TranslateIndicesToGlobalIDs." << endl;
 | 
|---|
| [87f6c9] | 774 | };
 | 
|---|
 | 775 | 
 | 
|---|
| [386aa2] | 776 | /** Simply counts the number of items in the list, from given MoleculeLeafClass.
 | 
|---|
 | 777 |  * \return number of items
 | 
|---|
 | 778 |  */
 | 
|---|
| [d2a294] | 779 | int MoleculeLeafClass::Count() const
 | 
|---|
| [386aa2] | 780 | {
 | 
|---|
 | 781 |   if (next != NULL)
 | 
|---|
 | 782 |     return next->Count()+1;
 | 
|---|
 | 783 |   else
 | 
|---|
 | 784 |     return 1; 
 | 
|---|
 | 785 | };
 | 
|---|