| 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). |
| 39 |
< |
* [4] Vardeman & Gezelter, in progress (2009). |
| 40 |
< |
* |
| 39 |
> |
* [4] Kuang & Gezelter, J. Chem. Phys. 133, 164101 (2010). |
| 40 |
> |
* [4] , Stocker & Gezelter, J. Chem. Theory Comput. 7, 834 (2011). * |
| 41 |
|
* Created by Charles F. Vardeman II on 3/15/06. |
| 42 |
|
* @author Charles F. Vardeman II |
| 43 |
< |
* @version $Id: shapedLatticeSpherical.hpp,v 1.3 2009-11-25 20:01:58 gezelter Exp $ |
| 43 |
> |
* @version $Id$ |
| 44 |
|
* |
| 45 |
|
*/ |
| 46 |
|
#ifndef NANOPARTICLEBUILDER_SHAPEDLATTICESPHERICAL_HPP |
| 55 |
|
*/ |
| 56 |
|
class shapedLatticeSpherical: public shapedLattice{ |
| 57 |
|
public: |
| 58 |
< |
shapedLatticeSpherical(double latticeConstant, std::string latticeType, double radius); |
| 58 |
> |
shapedLatticeSpherical(RealType latticeConstant, std::string latticeType, RealType radius); |
| 59 |
|
virtual bool isInterior(Vector3d point); |
| 60 |
|
private: |
| 61 |
< |
double sphereRadius_; |
| 61 |
> |
RealType sphereRadius_; |
| 62 |
|
}; |
| 63 |
|
} |
| 64 |
|
|