35 |
|
* |
36 |
|
* [1] Meineke, et al., J. Comp. Chem. 26, 252-271 (2005). |
37 |
|
* [2] Fennell & Gezelter, J. Chem. Phys. 124, 234104 (2006). |
38 |
< |
* [3] Sun, Lin & Gezelter, J. Chem. Phys. 128, 24107 (2008). |
38 |
> |
* [3] Sun, Lin & Gezelter, J. Chem. Phys. 128, 234107 (2008). |
39 |
|
* [4] Kuang & Gezelter, J. Chem. Phys. 133, 164101 (2010). |
40 |
|
* [4] , Stocker & Gezelter, J. Chem. Theory Comput. 7, 834 (2011). * |
41 |
|
* Created by J. Daniel Gezelter on 09/26/06. |
176 |
|
std::vector<RealType> q2; |
177 |
|
std::vector<ComplexType> w; |
178 |
|
std::vector<ComplexType> w_hat; |
179 |
– |
std::map<std::pair<int,int>,ComplexType> QBar; |
179 |
|
std::vector<RealType> Q2; |
180 |
|
std::vector<RealType> Q; |
181 |
|
std::vector<ComplexType> W; |
182 |
|
std::vector<ComplexType> W_hat; |
183 |
< |
int nBonds, Nbonds; |
183 |
> |
int nBonds; |
184 |
|
SphericalHarmonic sphericalHarmonic; |
185 |
|
int i; |
186 |
|
|
199 |
|
Q.resize(lMax_+1); |
200 |
|
W.resize(lMax_+1); |
201 |
|
W_hat.resize(lMax_+1); |
203 |
– |
Nbonds = 0; |
202 |
|
|
203 |
|
for (int istep = 0; istep < nFrames; istep += step_) { |
204 |
|
reader.readFrame(istep); |
320 |
|
|
321 |
|
if ( distCOM < len_){ |
322 |
|
// Figure out where this distance goes... |
323 |
< |
int whichBin = distCOM / deltaR_; |
323 |
> |
int whichBin = int(distCOM / deltaR_); |
324 |
|
RCount_[whichBin]++; |
325 |
|
|
326 |
|
if(real(what[6]) < -0.15){ |