1 |
< |
/* |
1 |
> |
/* |
2 |
|
* Copyright (c) 2005 The University of Notre Dame. All Rights Reserved. |
3 |
|
* |
4 |
|
* The University of Notre Dame grants you ("Licensee") a |
39 |
|
* such damages. |
40 |
|
*/ |
41 |
|
|
42 |
< |
/** |
43 |
< |
* @file NVE.hpp |
44 |
< |
* @author tlin |
45 |
< |
* @date 11/08/2004 |
46 |
< |
* @time 13:25am |
47 |
< |
* @version 1.0 |
48 |
< |
*/ |
42 |
> |
/** |
43 |
> |
* @file NVE.hpp |
44 |
> |
* @author tlin |
45 |
> |
* @date 11/08/2004 |
46 |
> |
* @time 13:25am |
47 |
> |
* @version 1.0 |
48 |
> |
*/ |
49 |
|
|
50 |
|
#ifndef INTEGRATOR_NVE_HPP |
51 |
|
#define INTEGRATOR_NVE_HPP |
54 |
|
|
55 |
|
namespace oopse { |
56 |
|
|
57 |
< |
class NVE : public VelocityVerletIntegrator{ |
58 |
< |
public: |
59 |
< |
NVE(SimInfo* info); |
57 |
> |
class NVE : public VelocityVerletIntegrator{ |
58 |
> |
public: |
59 |
> |
NVE(SimInfo* info); |
60 |
|
|
61 |
< |
private: |
62 |
< |
virtual void moveA(); |
63 |
< |
virtual void moveB(); |
64 |
< |
virtual double calcConservedQuantity(); |
65 |
< |
}; |
61 |
> |
private: |
62 |
> |
virtual void moveA(); |
63 |
> |
virtual void moveB(); |
64 |
> |
virtual RealType calcConservedQuantity(); |
65 |
> |
}; |
66 |
|
|
67 |
|
} //end namespace oopse |
68 |
|
|