| version 1.1054 | version 1.1055 |
|---|
| |
| | |
| #include "common.h" | #include "common.h" |
| #include "Vector.h" | #include "Vector.h" |
| | #ifndef __CUDACC__ |
| #include "ResizeArray.h" | #include "ResizeArray.h" |
| | #endif |
| | |
| class Patch; | class Patch; |
| class Compute; | class Compute; |
| |
| float x,y,z,q; | float x,y,z,q; |
| }; | }; |
| | |
| | struct CudaForce { |
| | float x, y, z; |
| | }; |
| | |
| | #ifndef __CUDACC__ |
| typedef ResizeArray<CudaAtom> CudaAtomList; | typedef ResizeArray<CudaAtom> CudaAtomList; |
| typedef ResizeArray<CompAtom> CompAtomList; | typedef ResizeArray<CompAtom> CompAtomList; |
| typedef ResizeArray<CompAtomExt> CompAtomExtList; | typedef ResizeArray<CompAtomExt> CompAtomExtList; |
| |
| }; | }; |
| | |
| typedef ResizeArray<proxyTreeNode> proxyTreeNodeList; | typedef ResizeArray<proxyTreeNode> proxyTreeNodeList; |
| | #endif // __CUDACC__ |
| | |
| #endif /* NAMDTYPES_H */ | #endif /* NAMDTYPES_H */ |
| | |