#ifndef MySD_h
#define MySD_h 1
#include<iostream>
#include<cstdlib>
using namespace std;
class MySD {
public:
MySD();
~MySD();
int GetVoxelXID(char PName[]);
int GetVoxelYID(char PName[]);
int GetVoxelZID(char PName[]);
void SumDepE(int x, int y, int z, double ene);
void ShowDepE(int x, int y, int z);
void WriteDepE();
void SetInitE(); // Initialization of DepE
private:
int size_x ;
int size_y ;
int size_z ;
double DepE[200][200][200];
};
#endif
-- SeoKonKang - 07 Apr 2009