mockgallib/src

particle.h

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef PARTICLE_H
#define PARTICLE_H 1

struct Particle {
  float x[3];
  float z;
  float vr;
  float radec[2];
  float M;
  float w;
  float flag;
};

#endif