# | Line 149 | Line 149 | template<typename T> void NVT<T>::moveB( void ){ | |
---|---|---|
149 | } | |
150 | } | |
151 | ||
152 | + | template<typename T> void NVT<T>::resetIntegrator( void ){ |
153 | + | |
154 | + | chi = 0.0; |
155 | + | } |
156 | + | |
157 | template<typename T> int NVT<T>::readyCheck() { | |
158 | < | |
158 | > | |
159 | > | //check parent's readyCheck() first |
160 | > | if (T::readyCheck() == -1) |
161 | > | return -1; |
162 | > | |
163 | // First check to see if we have a target temperature. | |
164 | // Not having one is fatal. | |
165 |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |