#ifndef _CELL_H
#define _CELL_H

#include "Main.h"

enum {
  eQ1, eQ2, eQ3, eQ4, eNQ
};

/* cell structure */
typedef struct SubCellTag {
  ename cell;         /* ename of a cell */
  float mass;         /* total mass under the tree branch */
  Vector cmass;       /* center of the mass for the cell */
} SubCell;

extern entity Cell{};

#endif /* _CELL_H */
