| 34 | 
  | 
 *                                                                       | 
| 35 | 
  | 
 * [1]  Meineke, et al., J. Comp. Chem. 26, 252-271 (2005).              | 
| 36 | 
  | 
 * [2]  Fennell & Gezelter, J. Chem. Phys. 124, 234104 (2006).           | 
| 37 | 
< | 
 * [3]  Sun, Lin & Gezelter, J. Chem. Phys. 128, 24107 (2008).           | 
| 38 | 
< | 
 * [4]  Vardeman & Gezelter, in progress (2009).                         | 
| 37 | 
> | 
 * [3]  Sun, Lin & Gezelter, J. Chem. Phys. 128, 234107 (2008).           | 
| 38 | 
> | 
 * [4] Kuang & Gezelter,  J. Chem. Phys. 133, 164101 (2010). | 
| 39 | 
> | 
 * [4] , Stocker & Gezelter, J. Chem. Theory Comput. 7, 834 (2011). * | 
| 40 | 
  | 
 * | 
| 40 | 
– | 
 * | 
| 41 | 
  | 
 *  randomBuilder.cpp | 
| 42 | 
  | 
 * | 
| 43 | 
  | 
 *  Created by Charles F. Vardeman II on 10 Apr 2006. | 
| 44 | 
  | 
 *  @author  Charles F. Vardeman II | 
| 45 | 
< | 
 *  @version $Id: randomBuilder.cpp,v 1.8 2009-11-25 20:01:58 gezelter Exp $ | 
| 45 | 
> | 
 *  @version $Id$ | 
| 46 | 
  | 
 * | 
| 47 | 
  | 
 */ | 
| 48 | 
  | 
 | 
| 77 | 
  | 
 | 
| 78 | 
  | 
int main(int argc, char *argv []) { | 
| 79 | 
  | 
 | 
| 80 | 
– | 
  // register force fields | 
| 81 | 
– | 
  registerForceFields(); | 
| 80 | 
  | 
  registerLattice(); | 
| 81 | 
  | 
     | 
| 82 | 
  | 
  gengetopt_args_info args_info; | 
| 231 | 
  | 
  for (int i=0; i < nComponents; i++) { | 
| 232 | 
  | 
    molFractions[i] = (RealType)(nMol.at(i))/(RealType)nSites; | 
| 233 | 
  | 
    totalMolecules += nMol.at(i); | 
| 234 | 
< | 
    molecularMasses.push_back(getMolMass(oldInfo->getMoleculeStamp(i), | 
| 235 | 
< | 
                                         oldInfo->getForceField())); | 
| 234 | 
> | 
    molecularMasses.push_back(MoLocator::getMolMass(oldInfo->getMoleculeStamp(i), | 
| 235 | 
> | 
                                                    oldInfo->getForceField())); | 
| 236 | 
  | 
    totalMass += (RealType)(nMol.at(i)) * molecularMasses.at(i); | 
| 237 | 
  | 
  } | 
| 238 | 
  | 
  RealType avgMass = totalMass / (RealType) totalMolecules; | 
| 283 | 
  | 
 | 
| 284 | 
  | 
  createMdFile(inputFileName, outputFileName, nMol); | 
| 285 | 
  | 
 | 
| 286 | 
< | 
  if (oldInfo != NULL) | 
| 289 | 
< | 
    delete oldInfo; | 
| 286 | 
> | 
  delete oldInfo; | 
| 287 | 
  | 
 | 
| 288 | 
  | 
  // We need to read in the new SimInfo object, then Parse the  | 
| 289 | 
  | 
  // md file and set up the system | 
| 314 | 
  | 
  // Randomize a vector of ints: | 
| 315 | 
  | 
 | 
| 316 | 
  | 
  vector<int> ids; | 
| 317 | 
< | 
  for (int i = 0; i < sites.size(); i++) ids.push_back(i); | 
| 317 | 
> | 
  for (unsigned int i = 0; i < sites.size(); i++) ids.push_back(i); | 
| 318 | 
  | 
  std::random_shuffle(ids.begin(), ids.end()); | 
| 319 | 
  | 
 | 
| 320 | 
  | 
  Molecule* mol; | 
| 367 | 
  | 
   | 
| 368 | 
  | 
  oldMdFile.getline(buffer, MAXLEN); | 
| 369 | 
  | 
  | 
| 370 | 
< | 
  int i = 0; | 
| 370 | 
> | 
  unsigned int i = 0; | 
| 371 | 
  | 
  while (!oldMdFile.eof()) { | 
| 372 | 
  | 
     | 
| 373 | 
  | 
    //correct molecule number | 
| 374 | 
  | 
    if (strstr(buffer, "nMol") != NULL) { | 
| 375 | 
< | 
      if(i<nMol.size()){ | 
| 375 | 
> | 
      if (i<nMol.size()){ | 
| 376 | 
  | 
        sprintf(buffer, "\tnMol = %i;", nMol.at(i)); | 
| 377 | 
  | 
        newMdFile << buffer << std::endl; | 
| 378 | 
  | 
        i++; |