#ifndef CTDR_TREE_H_DEF
#define CTDR_TREE_H_DEF
#include "TTree.h"
#include "TFile.h"
#include "TClass.h"
class CTDR_Tree: public TObject{
protected:
int NDivx;
int NDivy;
int NDivz;
double Lx;
double Ly;
double Lz;
double lowx;
double lowy;
double lowz;
double highx;
double highy;
double highz;
public:
CTDR_Tree();
CTDR_Tree(int NdivX,int NdivY, int NdivZ,double LX, double LY, double LZ);
void SetPoints(double x, double y, double z);
Long64_t Hash(double x ,double y , double z);
ClassDef(CTDR_Tree,0);
};
#endif
ROOT page - Class index - Class Hierarchy - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.