"platforms/cuda-old/src/kernels/kForces.cu" did not exist on "fed50628f2919c311a8b91b0c6a44f42d304fda3"
kCalculateAmoebaCudaWcaDispersionParticle.h 301 Bytes
Newer Older
Mark Friedrichs's avatar
Mark Friedrichs committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef AMOEBA_CUDA_WCA_DISPERSION_PARTICLE_H
#define AMOEBA_CUDA_WCA_DISPERSION_PARTICLE_H

struct WcaDispersionParticle {

    // coordinates

    float x;
    float y;
    float z;

    // radius &  epsilon

    float radius;
    float epsilon;

    float force[3];
Peter Eastman's avatar
Peter Eastman committed
18
    float padding;
Mark Friedrichs's avatar
Mark Friedrichs committed
19
20
21
22
23

};

#endif