| 644 |
|
RealType mf; |
| 645 |
|
RealType lrPot; |
| 646 |
|
RealType vpair; |
| 647 |
+ |
RealType dVdFQ1(0.0); |
| 648 |
+ |
RealType dVdFQ2(0.0); |
| 649 |
|
potVec longRangePotential(0.0); |
| 650 |
|
potVec workPot(0.0); |
| 651 |
|
vector<int>::iterator ia, jb; |
| 657 |
|
idat.pot = &workPot; |
| 658 |
|
sdat.pot = fDecomp_->getEmbeddingPotential(); |
| 659 |
|
idat.vpair = &vpair; |
| 660 |
+ |
idat.dVdFQ1 = &dVdFQ1; |
| 661 |
+ |
idat.dVdFQ2 = &dVdFQ2; |
| 662 |
|
idat.f1 = &f1; |
| 663 |
|
idat.sw = &sw; |
| 664 |
|
idat.shiftedPot = (cutoffMethod_ == SHIFTED_POTENTIAL) ? true : false; |
| 723 |
|
vpair = 0.0; |
| 724 |
|
workPot = 0.0; |
| 725 |
|
f1 = V3Zero; |
| 726 |
+ |
dVdFQ1 = 0.0; |
| 727 |
+ |
dVdFQ2 = 0.0; |
| 728 |
|
|
| 729 |
|
fDecomp_->fillInteractionData(idat, atom1, atom2); |
| 730 |
|
|