10#define ProofSimple_cxx
36ProofSimple::ProofSimple()
54ProofSimple::~ProofSimple()
76 if (fInput->FindObject(
"ProofSimple_NHist")) {
80 }
else if ((iopt = option.
Index(
"nhist=")) !=
kNPOS) {
82 Ssiz_t from = iopt + strlen(
"nhist=");
83 if (option.
Tokenize(
s, from,
";") &&
s.IsDigit()) fNhist =
s.Atoi();
86 Abort(
"fNhist must be > 0! Hint: proof->SetParameter(\"ProofSimple_NHist\","
87 " (Long_t) <nhist>)", kAbortProcess);
91 if (fInput->FindObject(
"ProofSimple_NHist3")) {
95 }
else if ((iopt = option.
Index(
"nhist3=")) !=
kNPOS) {
97 Ssiz_t from = iopt + strlen(
"nhist3=");
98 if (option.
Tokenize(
s, from,
";") &&
s.IsDigit()) fNhist3 =
s.Atoi();
102 TNamed *
nm =
dynamic_cast<TNamed *
>(fInput->FindObject(
"ProofSimple_Ntuple"));
117 if (ontp.Contains(
"|plot") || ontp ==
"plot") {
119 ontp.ReplaceAll(
"|plot",
"");
120 if (ontp ==
"plot") ontp =
"";
122 if (ontp.BeginsWith(
"dataset")) fHasNtuple = 2;
127void ProofSimple::SlaveBegin(
TTree * )
137 if (fInput->FindObject(
"ProofSimple_NHist")) {
141 }
else if ((iopt = option.
Index(
"nhist=")) !=
kNPOS) {
143 Ssiz_t from = iopt + strlen(
"nhist=");
144 if (option.
Tokenize(
s, from,
";") &&
s.IsDigit()) fNhist =
s.Atoi();
147 Abort(
"fNhist must be > 0! Hint: proof->SetParameter(\"ProofSimple_NHist\","
148 " (Long_t) <nhist>)", kAbortProcess);
151 fHist =
new TH1F*[fNhist];
155 for (
Int_t i=0; i < fNhist; i++) {
157 fHist[i] =
new TH1F(hn.
Data(), hn.
Data(), 100, -3., 3.);
158 fHist[i]->SetFillColor(
kRed);
159 fOutput->Add(fHist[i]);
163 if (fInput->FindObject(
"ProofSimple_NHist3")) {
167 }
else if ((iopt = option.
Index(
"nhist3=")) !=
kNPOS) {
169 Ssiz_t from = iopt + strlen(
"nhist3=");
170 if (option.
Tokenize(
s, from,
";") &&
s.IsDigit()) fNhist3 =
s.Atoi();
173 fHist3 =
new TH3F*[fNhist3];
174 Info(
"Begin",
"%d 3D histograms requested", fNhist3);
176 for (
Int_t i=0; i < fNhist3; i++) {
179 100, -3., 3., 100, -3., 3., 100, -3., 3.);
180 fOutput->Add(fHist3[i]);
185 if (fInput->FindObject(
"ProofSimple_TestLabelMerging")) {
186 fHLab =
new TH1F(
"hlab",
"Test merging of histograms with automatic labels", 10, 0., 10.);
191 TNamed *
nm =
dynamic_cast<TNamed *
>(fInput->FindObject(
"ProofSimple_Ntuple"));
206 if (ontp.Contains(
"|plot") || ontp ==
"plot") {
208 ontp.ReplaceAll(
"|plot",
"");
209 if (ontp ==
"plot") ontp =
"";
211 TString locfn(
"SimpleNtuple.root");
212 if (ontp.BeginsWith(
"merge")) {
213 ontp.Replace(0,5,
"");
218 fProofFile->SetRetrieve(
kTRUE);
220 if ((iret = ontp.Index(
"|retrieve=")) !=
kNPOS) {
222 fn = ontp(iret + rettag.Length(), ontp.Length() - iret - rettag.Length());
229 if (iof !=
kNPOS) ontp.Remove(0, iof + 1);
230 if (!ontp.IsNull()) {
231 fProofFile->SetOutputFileName(ontp.Data());
234 if (fn.
IsNull()) fn = locfn;
236 fProofFile->SetTitle(fn);
237 }
else if (ontp.BeginsWith(
"dataset")) {
240 if (iof !=
kNPOS) ontp.Remove(0, iof + 1);
241 TString dsname = (!ontp.IsNull()) ? ontp.
Data() :
"dataset_ntuple";
246 }
else if (!ontp.IsNull()) {
247 Warning(
"SlaveBegin",
"ntuple options unknown: ignored (%s)", ontp.Data());
253 fFile = fProofFile->OpenFile(
"RECREATE");
254 if (fFile && fFile->IsZombie())
SafeDelete(fFile);
258 Info(
"SlaveBegin",
"could not create '%s': instance is invalid!", fProofFile->GetName());
264 fNtp =
new TNtuple(
"ntuple",
"Demo ntuple",
"px:py:pz:random:i");
267 fNtp->SetDirectory(fFile);
299 for (
Int_t i=0; i < fNhist; i++) {
300 if (fRandom && fHist[i]) {
305 for (
Int_t i=0; i < fNhist3; i++) {
306 if (fRandom && fHist3[i]) {
308 fHist3[i]->Fill(
x,
x,
x);
311 if (fHLab && fRandom) {
314 fRandom->RndmArray(10, rr);
315 for (
Int_t i=0; i < 10; i++) {
324 if (fNtp) FillNtuple(entry);
330void ProofSimple::FillNtuple(
Long64_t entry)
355 fRandom->Rannor(px,py);
356 random = fRandom->Rndm();
358 Abort(
"no way to get random numbers! Stop processing", kAbortProcess);
363 fNtp->Fill(px,py,pz,random,i);
370void ProofSimple::SlaveTerminate()
379 Error(
"SlaveTerminate",
"'ntuple' is undefined!");
384 if (fNtp->GetEntries() > 0) {
388 fOutput->Add(fProofFile);
392 fNtp->SetDirectory(0);
397 TUrl uf(*(fFile->GetEndpointUrl()));
406void ProofSimple::Terminate()
420 c1 =
new TCanvas(
"c1",
"Proof ProofSimple canvas",200,10,700,700);
422 nside = (nside*nside < fNhist) ? nside+1 : nside;
423 c1->Divide(nside,nside,0,0);
427 for (
Int_t i=0; i < fNhist; i++) {
438 if (tryfc && GetHistosFromFC(
c1) != 0) {
439 Warning(
"Terminate",
"histograms not found");
447 if (fHLab && !
gROOT->IsBatch()) {
449 Int_t nb = fHLab->GetNbinsX();
451 Double_t entb = fHLab->GetEntries() / nb;
453 for (
Int_t i = 0; i < nb; i++) {
455 Int_t ib = fHLab->GetXaxis()->FindBin(lab);
456 Info(
"Terminate",
" %s [%d]:\t%f", lab.
Data(), ib, fHLab->GetBinContent(ib)/entb);
459 Warning(
"Terminate",
"no entries in the hlab histogram!");
464 if (fHasNtuple != 1 || !fPlotNtuple)
return;
469 dynamic_cast<TProofOutputFile*
>(fOutput->FindObject(
"SimpleNtuple.root")))) {
471 TString outputFile(fProofFile->GetOutputFileName());
472 TString outputName(fProofFile->GetName());
473 outputName +=
".root";
474 Printf(
"outputFile: %s", outputFile.Data());
479 Printf(
"Managed to open file: %s", outputFile.Data());
480 fNtp = (
TNtuple *) fFile->Get(
"ntuple");
482 Error(
"Terminate",
"could not open file: %s", outputFile.Data());
487 Error(
"Terminate",
"TProofOutputFile not found");
492 if (fNtp) PlotNtuple(fNtp,
"proof ntuple");
496void ProofSimple::PlotNtuple(
TNtuple *ntp,
const char *ntptitle)
517 ntp->
Draw(
"3*px+2",
"px**2+py**2>1");
519 ntp->
Draw(
"2*px+2",
"pz>2",
"same");
521 ntp->
Draw(
"1.3*px+2",
"(px^2+py^2>4) && py>0",
"same");
527 ntp->
Draw(
"pz:py:px",
"(pz<10 && pz>6)+(pz<4 && pz>3)");
529 ntp->
Draw(
"pz:py:px",
"pz<6 && pz>4",
"same");
531 ntp->
Draw(
"pz:py:px",
"pz<4 && pz>3",
"same");
535 l2->
AddText(
"You can interactively rotate this view in 2 ways:");
536 l2->
AddText(
" - With the RotateCube in clicking in this pad");
537 l2->
AddText(
" - Selecting View with x3d in the View menu");
554 if (strcmp(
fc->ClassName(),
"TFileCollection"))
continue;
557 fHist =
new TH1F*[fNhist];
558 for (
Int_t i = 0; i < fNhist; i++) { fHist[i] = 0; }
568 for (
Int_t i = 0; i < fNhist; i++) {
574 fHist[i] = (
TH1F *)
h->Clone();
575 fHist[i]->SetDirectory(0);
580 Error(
"GetHistosFromFC",
"histo '%s' not found in file '%s'",
591 if (!fc_found)
return -1;
592 if (!hs_found)
return -1;
594 for (
Int_t i = 0; i < fNhist; i++) {
597 fHist[i]->DrawCopy();
600 Info(
"GetHistosFromFC",
"histograms read from %d files in TFileCollection '%s'",
601 fc->GetList()->GetSize(),
fc->GetName());
Selector to fill a set of histograms.
void Info(const char *location, const char *msgfmt,...)
void Error(const char *location, const char *msgfmt,...)
void Warning(const char *location, const char *msgfmt,...)
char * Form(const char *fmt,...)
void Printf(const char *fmt,...)
R__EXTERN TSystem * gSystem
static struct mg_connection * fc(struct mg_context *ctx)
virtual void SetFillColor(Color_t fcolor)
Set the fill area color.
virtual void SetFillStyle(Style_t fstyle)
Set the fill area style.
virtual void SetLineColor(Color_t lcolor)
Set the line color.
virtual void SetMarkerColor(Color_t mcolor=1)
Set the marker color.
virtual void SetTextAlign(Short_t align=11)
Set the text alignment.
TVirtualPad * cd(Int_t subpadnumber=0)
Set current canvas & pad.
Describe directory structure in memory.
virtual void Close(Option_t *option="")
Delete all objects from memory and directory structure itself.
Class that contains a list of TFileInfo's and accumulated meta data information about its entries.
Class describing a generic file including meta information.
TUrl * GetCurrentUrl() const
Return the current url.
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format.
static TFile * Open(const char *name, Option_t *option="", const char *ftitle="", Int_t compress=ROOT::RCompressionSetting::EDefaults::kUseGeneralPurpose, Int_t netopt=0)
Create / open a file.
1-D histogram with a float per channel (see TH1 documentation)}
3-D histogram with a float per channel (see TH1 documentation)}
The TNamed class is the base class for all named ROOT classes.
virtual const char * GetName() const
Returns name of object.
A simple TTree restricted to a list of float variables only.
The most important graphics class in the ROOT system.
virtual void SetLogy(Int_t value=1)
Set Lin/Log scale for Y.
virtual void RedrawAxis(Option_t *option="")
Redraw the frame axis Redrawing axis may be necessary in case of superimposed histograms when one or ...
virtual void SetGrid(Int_t valuex=1, Int_t valuey=1)
TVirtualPad * cd(Int_t subpadnumber=0)
Set Current pad.
TFrame * GetFrame()
Get frame.
Named parameter, streamable and storable.
const AParamType & GetVal() const
A Pave (see TPave) with text, lines or/and boxes inside.
virtual TText * AddText(Double_t x1, Double_t y1, const char *label)
Add a new Text line to this pavetext at given coordinates.
virtual void Draw(Option_t *option="")
Draw this pavetext with its current attributes.
Class to steer the merging of files produced on the workers.
TObject * GetOutput(const char *name)
Get specified object that has been produced during the processing (see Process()).
Random number generator class based on M.
A sorted doubly linked list.
void Add(TObject *obj)
Add object in sorted list.
TString & Replace(Ssiz_t pos, Ssiz_t n, const char *s)
const char * Data() const
TString & ReplaceAll(const TString &s1, const TString &s2)
TObjArray * Tokenize(const TString &delim) const
This function is used to isolate sequential tokens in a TString.
TString & Remove(Ssiz_t pos)
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString.
void Form(const char *fmt,...)
Formats a string using a printf style format descriptor.
Ssiz_t Index(const char *pat, Ssiz_t i=0, ECaseCompare cmp=kExact) const
virtual const char * BaseName(const char *pathname)
Base name of a file name. Base name of /user/root is root.
virtual int Unlink(const char *name)
Unlink, i.e.
A TTree represents a columnar dataset.
virtual void Draw(Option_t *opt)
Default Draw method for all objects.
This class represents a WWW compatible URL.
const char * GetUrl(Bool_t withDeflt=kFALSE) const
Return full URL.
const char * GetFile() const
static constexpr double nm
static constexpr double s
static constexpr double pi
Double_t Sqrt(Double_t x)