| 62 | 
  | 
  useReactionField = 0; | 
| 63 | 
  | 
  useGB = 0; | 
| 64 | 
  | 
  useEAM = 0; | 
| 65 | 
+ | 
  useSolidThermInt = 0; | 
| 66 | 
+ | 
  useLiquidThermInt = 0; | 
| 67 | 
  | 
 | 
| 68 | 
+ | 
  haveCutoffGroups = false; | 
| 69 | 
+ | 
 | 
| 70 | 
  | 
  excludes = Exclude::Instance(); | 
| 71 | 
  | 
 | 
| 72 | 
  | 
  myConfiguration = new SimState(); | 
| 446 | 
  | 
  excl = excludes->getFortranArray(); | 
| 447 | 
  | 
   | 
| 448 | 
  | 
#ifdef IS_MPI | 
| 449 | 
< | 
  n_global = mpiSim->getTotAtoms(); | 
| 449 | 
> | 
  n_global = mpiSim->getNAtomsGlobal(); | 
| 450 | 
  | 
#else | 
| 451 | 
  | 
  n_global = n_atoms; | 
| 452 | 
  | 
#endif | 
| 453 | 
  | 
   | 
| 454 | 
  | 
  isError = 0; | 
| 455 | 
  | 
   | 
| 456 | 
< | 
  getFortranGroupArray(this, mfact, ngroup, groupList, groupStart); | 
| 457 | 
< | 
   | 
| 456 | 
> | 
  getFortranGroupArrays(this, FglobalGroupMembership, mfact); | 
| 457 | 
> | 
  //it may not be a good idea to pass the address of first element in vector | 
| 458 | 
> | 
  //since c++ standard does not require vector to be stored continuously in meomory | 
| 459 | 
> | 
  //Most of the compilers will organize the memory of vector continuously | 
| 460 | 
  | 
  setFsimulation( &fInfo, &n_global, &n_atoms, identArray, &n_exclude, excl,  | 
| 461 | 
  | 
                  &nGlobalExcludes, globalExcludes, molMembershipArray,  | 
| 462 | 
< | 
                  &mfact[0], &ngroup, &groupList[0], &groupStart[0], &isError); | 
| 463 | 
< | 
   | 
| 462 | 
> | 
                  &mfact[0], &ngroup, &FglobalGroupMembership[0], &isError);  | 
| 463 | 
> | 
 | 
| 464 | 
  | 
  if( isError ){ | 
| 465 | 
  | 
     | 
| 466 | 
  | 
    sprintf( painCave.errMsg, | 
| 567 | 
  | 
} | 
| 568 | 
  | 
 | 
| 569 | 
  | 
 | 
| 570 | 
< | 
void getFortranGroupArray(SimInfo* info, vector<double>& mfact, int& ngroup,  | 
| 571 | 
< | 
                          vector<int>& groupList, vector<int>& groupStart){ | 
| 572 | 
< | 
  Molecule* mol; | 
| 570 | 
> | 
void SimInfo::getFortranGroupArrays(SimInfo* info,  | 
| 571 | 
> | 
                                    vector<int>& FglobalGroupMembership, | 
| 572 | 
> | 
                                    vector<double>& mfact){ | 
| 573 | 
> | 
   | 
| 574 | 
> | 
  Molecule* myMols; | 
| 575 | 
  | 
  Atom** myAtoms; | 
| 576 | 
  | 
  int numAtom; | 
| 569 | 
– | 
  int curIndex; | 
| 577 | 
  | 
  double mtot; | 
| 578 | 
< | 
 | 
| 579 | 
< | 
  mfact.clear(); | 
| 580 | 
< | 
  groupList.clear(); | 
| 581 | 
< | 
  groupStart.clear(); | 
| 578 | 
> | 
  int numMol; | 
| 579 | 
> | 
  int numCutoffGroups; | 
| 580 | 
> | 
  CutoffGroup* myCutoffGroup; | 
| 581 | 
> | 
  vector<CutoffGroup*>::iterator iterCutoff; | 
| 582 | 
> | 
  Atom* cutoffAtom; | 
| 583 | 
> | 
  vector<Atom*>::iterator iterAtom; | 
| 584 | 
> | 
  int atomIndex; | 
| 585 | 
> | 
  double totalMass; | 
| 586 | 
  | 
   | 
| 587 | 
< | 
  //Be careful, fortran array begin at 1 | 
| 588 | 
< | 
  curIndex = 1; | 
| 587 | 
> | 
  mfact.clear(); | 
| 588 | 
> | 
  FglobalGroupMembership.clear(); | 
| 589 | 
  | 
   | 
| 590 | 
< | 
  if(info->useMolecularCutoffs){ | 
| 591 | 
< | 
     | 
| 590 | 
> | 
 | 
| 591 | 
> | 
  // Fix the silly fortran indexing problem | 
| 592 | 
  | 
#ifdef IS_MPI | 
| 593 | 
< | 
    ngroup = mpiSim->getMyNMol(); | 
| 593 | 
> | 
  numAtom = mpiSim->getNAtomsGlobal(); | 
| 594 | 
  | 
#else | 
| 595 | 
< | 
    ngroup = info->n_mol; | 
| 596 | 
< | 
#endif | 
| 597 | 
< | 
     | 
| 598 | 
< | 
    for(int i = 0; i < ngroup; i ++){ | 
| 599 | 
< | 
      mol = &(info->molecules[i]); | 
| 589 | 
< | 
      numAtom = mol->getNAtoms(); | 
| 590 | 
< | 
      myAtoms = mol->getMyAtoms(); | 
| 591 | 
< | 
      mtot = 0.0; | 
| 595 | 
> | 
  numAtom = n_atoms; | 
| 596 | 
> | 
#endif | 
| 597 | 
> | 
  for (int i = 0; i < numAtom; i++)  | 
| 598 | 
> | 
    FglobalGroupMembership.push_back(globalGroupMembership[i] + 1); | 
| 599 | 
> | 
   | 
| 600 | 
  | 
 | 
| 601 | 
< | 
      for(int j=0; j < numAtom; j++) | 
| 602 | 
< | 
        mtot += myAtoms[j]->getMass();                 | 
| 603 | 
< | 
       | 
| 604 | 
< | 
      for(int j=0; j < numAtom; j++){  | 
| 605 | 
< | 
                | 
| 606 | 
< | 
        // We want the local Index: | 
| 607 | 
< | 
        groupList.push_back(myAtoms[j]->getIndex() + 1); | 
| 600 | 
< | 
        mfact.push_back(myAtoms[j]->getMass() / mtot); | 
| 601 | 
> | 
  myMols = info->molecules; | 
| 602 | 
> | 
  numMol = info->n_mol; | 
| 603 | 
> | 
  for(int i  = 0; i < numMol; i++){ | 
| 604 | 
> | 
    numCutoffGroups = myMols[i].getNCutoffGroups(); | 
| 605 | 
> | 
    for(myCutoffGroup =myMols[i].beginCutoffGroup(iterCutoff);  | 
| 606 | 
> | 
        myCutoffGroup != NULL;  | 
| 607 | 
> | 
        myCutoffGroup =myMols[i].nextCutoffGroup(iterCutoff)){ | 
| 608 | 
  | 
 | 
| 609 | 
< | 
      } | 
| 609 | 
> | 
      totalMass = myCutoffGroup->getMass(); | 
| 610 | 
  | 
       | 
| 611 | 
< | 
      groupStart.push_back(curIndex); | 
| 612 | 
< | 
      curIndex += numAtom; | 
| 613 | 
< | 
       | 
| 614 | 
< | 
    } //end for(int i =0 ; i < ngroup; i++)     | 
| 611 | 
> | 
      for(cutoffAtom = myCutoffGroup->beginAtom(iterAtom);  | 
| 612 | 
> | 
          cutoffAtom != NULL;  | 
| 613 | 
> | 
          cutoffAtom = myCutoffGroup->nextAtom(iterAtom)){ | 
| 614 | 
> | 
        mfact.push_back(cutoffAtom->getMass()/totalMass); | 
| 615 | 
> | 
      }   | 
| 616 | 
> | 
    } | 
| 617 | 
  | 
  } | 
| 618 | 
< | 
  else{ | 
| 610 | 
< | 
    //using atomic cutoff, every single atom is just a group | 
| 611 | 
< | 
     | 
| 612 | 
< | 
#ifdef IS_MPI | 
| 613 | 
< | 
    ngroup = mpiSim->getMyNlocal(); | 
| 614 | 
< | 
#else | 
| 615 | 
< | 
    ngroup = info->n_atoms; | 
| 616 | 
< | 
#endif | 
| 617 | 
< | 
     | 
| 618 | 
< | 
    for(int i =0 ; i < ngroup; i++){ | 
| 619 | 
< | 
      groupStart.push_back(curIndex++);        | 
| 620 | 
< | 
      groupList.push_back((info->atoms[i])->getIndex() + 1); | 
| 621 | 
< | 
      mfact.push_back(1.0); | 
| 622 | 
< | 
       | 
| 623 | 
< | 
    }//end for(int i =0 ; i < ngroup; i++) | 
| 624 | 
< | 
     | 
| 625 | 
< | 
  }//end if (info->useMolecularCutoffs) | 
| 626 | 
< | 
   | 
| 618 | 
> | 
 | 
| 619 | 
  | 
} |