Selector to fill a set of histograms and merging via file.
#define ProofSimpleFile_cxx
#include <TFormula.h>
ProofSimpleFile::ProofSimpleFile()
{
fNhist = 16;
fHistTop = nullptr;
fHistDir = nullptr;
fRandom = nullptr;
fFile = nullptr;
fProofFile = nullptr;
fFileDir = nullptr;
}
ProofSimpleFile::~ProofSimpleFile()
{
if (fRandom) delete fRandom;
}
Int_t ProofSimpleFile::CreateHistoArrays()
{
if (fNhist <= 0) {
Error(
"CreateHistoArrays",
"fNhist must be positive!");
return -1;
}
fHistTop =
new TH1F*[fNhist];
fHistDir =
new TH1F*[fNhist];
return 0;
}
void ProofSimpleFile::Begin(
TTree * )
{
if (fInput->FindObject("ProofSimpleFile_NHist")) {
Ssiz_t from = iopt + strlen(
"nhist=");
}
}
void ProofSimpleFile::SlaveBegin(
TTree * )
{
if (fInput->FindObject("ProofSimpleFile_NHist")) {
Ssiz_t from = iopt + strlen(
"nhist=");
}
if (out) fProofFile->SetOutputFileName(
out->GetTitle());
fFile = fProofFile->OpenFile("RECREATE");
if (fFile && fFile->IsZombie())
SafeDelete(fFile);
if (!fFile) {
" instance is invalid!", fProofFile->GetName());
Abort(amsg, kAbortProcess);
return;
}
if (CreateHistoArrays() != 0) {
Abort("ProofSimpleFile::SlaveBegin: could not create histograms", kAbortProcess);
return;
}
if (!(fFileDir = fFile->mkdir("blue"))) {
Abort("ProofSimpleFile::SlaveBegin: could not create directory 'blue' in file!",
kAbortProcess);
return;
}
fHistTop[
i]->SetFillColor(
kRed);
fHistTop[
i]->SetDirectory(fFile);
fHistDir[
i]->SetFillColor(
kBlue);
fHistDir[
i]->SetDirectory(fFileDir);
}
}
{
if (fRandom && fHistTop[
i] && fHistDir[
i]) {
fHistTop[
i]->Fill(fRandom->Gaus(0.,1.));
fHistDir[
i]->Fill(fRandom->Gaus(0.,1.));
}
}
}
void ProofSimpleFile::SlaveTerminate()
{
if (fFile) {
fFile->cd();
if (fHistTop[
i] && fHistTop[
i]->GetEntries() > 0) {
fHistTop[
i]->SetDirectory(
nullptr);
}
}
fFileDir->cd();
if (fHistDir[
i] && fHistDir[
i]->GetEntries() > 0) {
fHistDir[
i]->SetDirectory(
nullptr);
}
}
if (cleanup) {
Info(
"SlaveTerminate",
"nothing to save: just cleanup everything ...");
TUrl uf(*(fFile->GetEndpointUrl()));
} else {
Info(
"SlaveTerminate",
"objects saved into '%s%s': sending related TProofOutputFile ...",
fProofFile->GetFileName(), fProofFile->GetOptionsAnchor());
fProofFile->Print();
fOutput->Add(fProofFile);
}
}
}
void ProofSimpleFile::Terminate()
{
if ((fProofFile =
TString outputFile(fProofFile->GetOutputFileName());
TString outputName(fProofFile->GetName());
outputName += ".root";
Printf(
"outputFile: %s", outputFile.Data());
Error(
"Terminate",
"could not open file: %s", outputFile.Data());
return;
}
} else {
Error(
"Terminate",
"TProofOutputFile not found");
return;
}
if (CreateHistoArrays() != 0) {
Error(
"Terminate",
"could not create histograms");
return;
}
PlotHistos(0);
PlotHistos(1);
}
void ProofSimpleFile::PlotHistos(
Int_t opt)
{
if (opt == 0) {
TCanvas *
c1 =
new TCanvas(
"c1",
"ProofSimpleFile top dir canvas",200,10,700,700);
nside = (nside*nside < fNhist) ? nside+1 : nside;
c1->Divide(nside,nside,0,0);
}
} else if (opt == 1) {
TCanvas *
c2 =
new TCanvas(
"c2",
"ProofSimpleFile 'blue' sub-dir canvas",400,60,700,700);
nside = (nside*nside < fNhist) ? nside+1 : nside;
c2->Divide(nside,nside,0,0);
if ((fFileDir = (
TDirectory *) fFile->Get(
"blue"))) {
}
} else {
Error(
"PlotHistos",
"directory 'blue' not found in output file");
}
} else {
Error(
"PlotHistos",
"unknown option: %d", opt);
}
}
Selector to fill a set of histograms and merging via file.
void Info(const char *location, const char *msgfmt,...)
Use this function for informational messages.
void Error(const char *location, const char *msgfmt,...)
Use this function in case an error occurred.
char * Form(const char *fmt,...)
Formats a string in a circular formatting buffer.
void Printf(const char *fmt,...)
Formats a string in a circular formatting buffer and prints the string.
R__EXTERN TSystem * gSystem
Describe directory structure in memory.
virtual void Close(Option_t *option="")
virtual Bool_t cd()
Change current directory to "this" directory.
static TFile * Open(const char *name, Option_t *option="", const char *ftitle="", Int_t compress=ROOT::RCompressionSetting::EDefaults::kUseCompiledDefault, Int_t netopt=0)
Create / open a file.
1-D histogram with a float per channel (see TH1 documentation)
The TNamed class is the base class for all named ROOT classes.
Named parameter, streamable and storable.
const AParamType & GetVal() const
Class to steer the merging of files produced on the workers.
Random number generator class based on M.
Int_t Atoi() const
Return integer value of string.
Bool_t IsDigit() const
Returns true if all characters in string are digits (0-9) or white spaces, i.e.
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString.
A TTree represents a columnar dataset.
This class represents a WWW compatible URL.
Double_t Sqrt(Double_t x)
Returns the square root of x.