Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TProofLimitsFinder.cxx
Go to the documentation of this file.
1// @(#)root/proofplayer:$Id$
2// Author: Maarten Ballintijn 19/04/2002
3
4/*************************************************************************
5 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12/** \class TProofLimitsFinder
13\ingroup proofkernel
14
15Class to find axis limits and synchronize them between workers
16
17*/
18
19#include "TProofLimitsFinder.h"
20#include "TProofServ.h"
21#include "TSocket.h"
22#include "TH1.h"
23#include "TMessage.h"
24#include "TProofDebug.h"
25#include "TError.h"
26
28
29////////////////////////////////////////////////////////////////////////////////
30/// Get bining information. Send current min and max and receive common
31/// min max in return.
32
36 Double_t& zmin, Double_t& zmax)
37{
38 if (!gProofServ) return;
39
42
43 PDB(kGlobal, 2) {
44 ::Info("TProofLimitsFinder::AutoBinFunc",
45 "Sending %f, %f, %f, %f, %f, %f", xmin, xmax, ymin, ymax, zmin, zmax);
46 }
47 mess << key << xmin << xmax << ymin << ymax << zmin << zmax;
48
49 s->Send(mess);
50
51 Bool_t notdone = kTRUE;
52 while (notdone) {
53 TMessage *answ;
54 if (s->Recv(answ) <= 0 || !answ)
55 return;
56
57 Int_t what = answ->What();
58 if (what == kPROOF_AUTOBIN) {
59 (*answ) >> key >> xmin >> xmax >> ymin >> ymax >> zmin >> zmax;
60 notdone = kFALSE;
61 } else {
63 if (xrc == -1) {
64 ::Error("TProofLimitsFinder::AutoBinFunc", "command %d cannot be executed while processing", what);
65 } else if (xrc == -2) {
66 ::Error("TProofLimitsFinder::AutoBinFunc", "unknown command %d ! Protocol error?", what);
67 }
68 }
69 delete answ;
70 }
71}
72
73////////////////////////////////////////////////////////////////////////////////
74/// Find good limits
75
77{
78 Double_t dummy = 0;
79
80 TString key = h->GetName();
81 AutoBinFunc(key, xmin, xmax, dummy, dummy, dummy, dummy);
82
84}
85
86
87////////////////////////////////////////////////////////////////////////////////
88/// Find good limits
89
91{
92 Double_t dummy = 0;
93
94 TString key = h->GetName();
95 AutoBinFunc(key, xmin, xmax, ymin, ymax, dummy, dummy);
96
98}
99
100
101////////////////////////////////////////////////////////////////////////////////
102/// Find good limits
103
105{
106 TString key = h->GetName();
107 AutoBinFunc(key, xmin, xmax, ymin, ymax, zmin, zmax);
108
109 return THLimitsFinder::FindGoodLimits( h, xmin, xmax, ymin, ymax, zmin, zmax);
110}
@ kPROOF_AUTOBIN
#define h(i)
Definition RSha256.hxx:106
constexpr Bool_t kFALSE
Definition RtypesCore.h:101
constexpr Bool_t kTRUE
Definition RtypesCore.h:100
#define ClassImp(name)
Definition Rtypes.h:377
float xmin
float ymin
float xmax
float ymax
#define PDB(mask, level)
Definition TProofDebug.h:56
R__EXTERN TProofServ * gProofServ
Definition TProofServ.h:347
TH1 is the base class of all histogram classes in ROOT.
Definition TH1.h:59
virtual Int_t FindGoodLimits(TH1 *h, Double_t xmin, Double_t xmax)
Compute the best axis limits for the X axis.
UInt_t What() const
Definition TMessage.h:75
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
Definition TObject.cxx:987
virtual void Info(const char *method, const char *msgfmt,...) const
Issue info message.
Definition TObject.cxx:961
Class to find axis limits and synchronize them between workers.
static void AutoBinFunc(TString &key, Double_t &xmin, Double_t &xmax, Double_t &ymin, Double_t &ymax, Double_t &zmin, Double_t &zmax)
Get bining information.
Int_t FindGoodLimits(TH1 *h, Axis_t xmin, Axis_t xmax) override
Find good limits.
TSocket * GetSocket() const
Definition TProofServ.h:257
virtual Int_t HandleSocketInput(TMessage *mess, Bool_t all)
Process input coming from the client or from the master server.
virtual Int_t Recv(TMessage *&mess)
Receive a TMessage object.
Definition TSocket.cxx:818
virtual Int_t Send(const TMessage &mess)
Send a TMessage object.
Definition TSocket.cxx:522
Basic string class.
Definition TString.h:139
static const char * what
Definition stlLoader.cc:5