some clone changes and setting the gui image read frequency to be one for eiger in gui

This commit is contained in:
Maliakal Dhanya
2014-09-10 14:39:02 +02:00
parent 92c56739d9
commit baf65e8318
3 changed files with 6 additions and 1 deletions

View File

@ -92,9 +92,10 @@ public:
void SetData(int nbinsx, double xmin, double xmax, int nbinsy,double ymin, double ymax,double *d,double zmin=0, double zmax=-1){
hist->SetData(nbinsx,xmin,xmax,nbinsy,ymin,ymax,d,zmin,zmax);
}
double* GetDataPtr() {return hist->GetDataPtr();}
int GetBinIndex(int bx,int by) {return hist->GetBinIndex(bx,by);}
int FindBinIndex(double x,double y) {return hist->FindBinIndex(x,y);}