// @(#)root/proof:$Name: $:$Id: TProofLimitsFinder.cxx,v 1.1 2002/04/19 18:24:01 rdm Exp $
// Author: Maarten Ballintijn 19/04/2002
/*************************************************************************
* Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
//////////////////////////////////////////////////////////////////////////
// //
// TProofLimitsFinder //
// //
// Class to find nice axis limits and synchonize them between slaves //
// //
//////////////////////////////////////////////////////////////////////////
#include "TProofLimitsFinder.h"
#include "TProofServ.h"
#include "TSocket.h"
#include "TH1.h"
#include "TMessage.h"
ClassImp(TProofLimitsFinder)
//______________________________________________________________________________
TProofLimitsFinder::TProofLimitsFinder()
{
}
//______________________________________________________________________________
TProofLimitsFinder::~TProofLimitsFinder()
{
}
//______________________________________________________________________________
static void AutoBinFunc(TH1 *h, Double_t& xmin, Double_t& xmax,
Double_t& ymin, Double_t& ymax, Double_t& zmin, Double_t& zmax)
{
if ( gProofServ == 0 ) return;
TSocket *s = gProofServ->GetSocket();
TString key( h->GetName() );
TMessage mess(kPROOF_AUTOBIN);
mess << key << xmin << xmax << ymin << ymax << zmin << zmax;
s->Send(mess);
TMessage *answ;
if (s->Recv(answ) <= 0)
return;
(*answ) >> key >> xmin >> xmax >> ymin >> ymax >> zmin >> zmax;
delete answ;
}
//______________________________________________________________________________
Int_t TProofLimitsFinder::FindGoodLimits(TH1 *h, Axis_t xmin, Axis_t xmax)
{
Double_t dummy = 0;
AutoBinFunc(h, xmin, xmax, dummy, dummy, dummy, dummy);
return THLimitsFinder::FindGoodLimits( h, xmin, xmax);
}
//______________________________________________________________________________
Int_t TProofLimitsFinder::FindGoodLimits(TH1 *h, Axis_t xmin, Axis_t xmax, Axis_t ymin, Axis_t ymax)
{
Double_t dummy = 0;
AutoBinFunc(h, xmin, xmax, ymin, ymax, dummy, dummy);
return THLimitsFinder::FindGoodLimits( h, xmin, xmax, ymin, ymax);
}
//______________________________________________________________________________
Int_t TProofLimitsFinder::FindGoodLimits(TH1 *h, Axis_t xmin, Axis_t xmax, Axis_t ymin, Axis_t ymax, Axis_t zmin, Axis_t zmax)
{
AutoBinFunc(h, xmin, xmax, ymin, ymax, zmin, zmax);
return THLimitsFinder::FindGoodLimits( h, xmin, xmax, ymin, ymax, zmin, zmax);
}
ROOT page - Class index - 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.