123456
int depth = 600; //x int height = 600; //y int width = 600; //z vector<vector<vector<float>>> phantom_energy (height, vector<float> (width), vector<vector<float>> (depth));
vector<vector<vector<float>>> phantom_energy (height, vector<vector<float>> (width, vector<float> (depth, 0.0f)));