MIDSX 0.1
A x-ray transport code system for dosimetry
Loading...
Searching...
No Matches
voxel.h
1#ifndef VOXEL_H
2#define VOXEL_H
3
4#include <string>
5#include "quantity.h"
6
12struct Voxel {
13 uint8_t materialID = 0;
14 VectorValue dose;
15};
16
17#endif // VOXEL_H
Class which represents a vector quantity. Used by the Tally classes to store simulation data.
Definition quantity.h:10
Struct which represents a voxel.
Definition voxel.h:12