| # | Line 264 | Line 264 | namespace OpenMD { | |
|---|---|---|
| 264 | for (int l = 0; l <= lMax_; l++) { | |
| 265 | q2[l] = 0.0; | |
| 266 | for (int m = -l; m <= l; m++){ | |
| 267 | < | q[std::make_pair(l,m)] /= (RealType)nBonds; |
| 267 | > | q[std::make_pair(l,m)] /= (RealType)nBonds; |
| 268 | q2[l] += norm(q[std::make_pair(l,m)]); | |
| 269 | } | |
| 270 | q_l[l] = sqrt(q2[l] * 4.0 * NumericConstant::PI / (RealType)(2*l + 1)); | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |