11 #include "TApplication.h"
15 #include "TAttMarker.h"
24 #include "TGraphErrors.h"
25 #include "TMultiGraph.h"
59 inline bool setLogX(
TObject*
object)
63 T* p =
dynamic_cast<T*
>(object);
75 const std::string MASTER =
"__H__";
77 const char*
const JName_t =
"?";
78 const char*
const JTitle_t =
"%";
88 int main(
int argc,
char **argv)
93 typedef JRange<double> JRange_t;
124 JParser<> zap(
"General purpose plot program for 1D ROOT objects.");
126 zap[
'f'] =
make_field(inputFile,
"<input file>:<object name>");
128 zap[
'w'] =
make_field(canvas,
"size of canvas <nx>x<ny> [pixels]") = JCanvas(500, 500);
130 zap[
'L'] =
make_field(legend,
"position legend e.g. TR") =
"",
"TL",
"TR",
"BR",
"BL";
131 zap[
'x'] =
make_field(
X,
"abscissa range") = JRange_t();
132 zap[
'y'] =
make_field(
Y,
"ordinate range") = JRange_t();
133 zap[
'z'] =
make_field(
Z,
"ordinate range of projection)") = JRange_t();
134 zap[
'X'] =
make_field(logx,
"logarithmic x-axis (-XX log10 axis)");
135 zap[
'Y'] =
make_field(logy,
"logarithmic y-axis");
136 zap[
'Z'] =
make_field(logz,
"logarithmic y-axis; after projection");
137 zap[
'P'] =
make_field(project,
"projection") =
'\0',
'x',
'X',
'y',
'Y';
138 zap[
'>'] =
make_field(xLabel,
"x-axis label") =
"";
139 zap[
'^'] =
make_field(yLabel,
"y-axis label") =
"";
142 zap[
'l'] =
make_field(lineWidth,
"line width") = 2;
143 zap[
'S'] =
make_field(markerSize,
"marker size") = 1.0;
144 zap[
'O'] =
make_field(option,
"plotting option") =
"";
146 zap[
'B'] =
make_field(batch,
"batch processing");
147 zap[
'T'] =
make_field(title,
"graphics title ("
148 <<
"\"" << JName_t <<
"\" -> ROOT name; "
149 <<
"\"" << JTitle_t <<
"\" -> ROOT title)") =
"KM3NeT preliminary";
151 zap[
'g'] =
make_field(group,
"group colour codes of objects") = 1;
152 zap[
't'] =
make_field(xTimeFormat,
"set time format for x-axis, e.g. \%d\\/\%m\\/\\%y%F1970-01-01 00:00:00") =
"";
157 catch(
const exception &error) {
158 FATAL(error.what() << endl);
162 gROOT->SetBatch(batch);
164 TApplication* tp =
new TApplication(
"user", NULL, NULL);
165 TCanvas* cv =
new TCanvas(
"c1",
"c1", canvas.x, canvas.y);
167 JSinglePointer<TStyle> gStyle(
new JStyle(
"gplot", cv->GetWw(), cv->GetWh()));
169 gROOT->SetStyle(
"gplot");
173 cv->SetFillStyle(4000);
174 cv->SetFillColor(kWhite);
183 Double_t xmin = numeric_limits<double>::max();
184 Double_t xmax = numeric_limits<double>::lowest();
186 Double_t ymin = numeric_limits<double>::max();
187 Double_t ymax = numeric_limits<double>::lowest();
192 const bool px = (project ==
'x' || project ==
'X');
193 const bool py = (project ==
'y' || project ==
'Y');
194 const bool pz = (project ==
'z' || project ==
'Z');
196 logy = (logy || logz);
211 DEBUG(
"Input: " << *input << endl);
216 ERROR(
"File: " << input->getFullFilename() <<
" not opened." << endl);
220 const TRegexp regexp(input->getObjectName());
222 TIter iter(dir->GetListOfKeys());
224 for (TKey* key; (key = (TKey*) iter.Next()) != NULL; ) {
226 const TString tag(key->GetName());
228 DEBUG(
"Key: " << tag <<
" match = " << tag.Contains(regexp) << endl);
232 if (tag.Contains(regexp) &&
isTObject(key)) {
234 if (title == JName_t) {
235 title = key->GetName();
236 }
else if (title == JTitle_t) {
237 title = key->GetTitle();
240 JRootObject object(key->ReadObj());
253 line.SetLineColor(marker.GetMarkerColor());
259 TProfile&
h1 =
dynamic_cast<TProfile&
>(*object);
261 object = h1.ProjectionX();
267 TH2& h2 =
dynamic_cast<TH2&
>(*object);
273 h2.GetYaxis()->FindBin(
Z.getLowerLimit()),
274 h2.GetYaxis()->FindBin(
Z.getUpperLimit()) - 1);
278 h2.GetYaxis()->GetNbins());
284 h2.GetXaxis()->FindBin(
Z.getLowerLimit()),
285 h2.GetXaxis()->FindBin(
Z.getUpperLimit()) - 1);
289 h2.GetXaxis()->GetNbins());
293 ERROR(
"For 2D histograms, use option option -P for projections or use JPlot2D" << endl);
302 TH3& h3 =
dynamic_cast<TH3&
>(*object);
318 ERROR(
"For 3D histograms, use option option -P for projections or use JPlot2D -P <projection>" << endl);
328 if (dynamic_cast<TMarker*>(
object.
get()) == NULL) {
329 dynamic_cast<TAttMarker&
>(*object) = marker;
334 if (dynamic_cast<TLine*>(
object.
get()) == NULL) {
335 dynamic_cast<TAttLine&
> (*object) = line;
344 TAttFill& fill =
dynamic_cast<TAttFill&
>(*object);
346 fill.SetFillColor(marker.GetMarkerColor());
357 TH1&
h1 =
dynamic_cast<TH1&
>(*object);
359 for (
int i = 1; i <= h1.GetNbinsX(); ++i) {
360 h1.SetBinError(i, 0.0);
367 TGraphErrors&
g1 =
dynamic_cast<TGraphErrors&
>(*object);
369 for (Int_t i = 0; i != g1.GetN(); ++i) {
381 TH1&
h1 =
dynamic_cast<TH1&
>(*object);
383 h1.SetStats(stats != -1);
385 xmin = min(xmin, h1.GetXaxis()->GetXmin());
386 xmax = max(xmax, h1.GetXaxis()->GetXmax());
387 ymin = min(ymin, logy ? h1.GetMinimum(0.0) : h1.GetMinimum());
388 ymax = max(ymax, h1.GetMaximum());
394 TGraph&
g1 =
dynamic_cast<TGraph&
>(*object);
396 for (Int_t i = 0; i != g1.GetN(); ++i) {
398 xmin = min(xmin, g1.GetX()[i]);
399 xmax = max(xmax, g1.GetX()[i]);
401 if (!logy || g1.GetY()[i] > 0.0) {
402 ymin = min(ymin, g1.GetY()[i]);
403 ymax = max(ymax, g1.GetY()[i]);
411 TGraphErrors&
g1 =
dynamic_cast<TGraphErrors&
>(*object);
413 for (Int_t i = 0; i != g1.GetN(); ++i) {
414 if (!logy || g1.GetY()[i] - g1.GetEY()[i] > 0.0) { ymin = min(ymin, g1.GetY()[i] - g1.GetEY()[i]); }
415 if (!logy || g1.GetY()[i] + g1.GetEY()[i] > 0.0) { ymax = max(ymax, g1.GetY()[i] + g1.GetEY()[i]); }
422 TMultiGraph& m1 =
dynamic_cast<TMultiGraph&
>(*object);
424 for (TIter i1(m1.GetListOfGraphs()); TGraph*
g1 =
dynamic_cast<TGraph*
>(i1()); ) {
426 for (Int_t i = 0; i != g1->GetN(); ++i) {
428 xmin = min(xmin, g1->GetX()[i]);
429 xmax = max(xmax, g1->GetX()[i]);
431 if (!logy || g1->GetY()[i] > 0.0) {
432 ymin = min(ymin, g1->GetY()[i]);
433 ymax = max(ymax, g1->GetY()[i]);
442 TF2& f2 =
dynamic_cast<TF2&
>(*object);
445 TString formula = f2.GetExpFormula();
446 TString _z_ = TString::Format(
"%f", 0.5 * (
Z.getLowerLimit() +
Z.getUpperLimit()));
453 f2.GetRange(__xmin, __ymin, __xmax, __ymax);
457 formula.ReplaceAll(
"y", _z_);
461 f1->SetRange(__xmin, __xmax);
465 formula.ReplaceAll(
"x", _z_);
466 formula.ReplaceAll(
"y",
"x");
470 f1->SetRange(__ymin, __ymax);
474 ERROR(
"For 2D functions, use option option -P for projections or use JPlot2D" << endl);
479 DEBUG(
"TF1: " << f1->GetExpFormula() << endl);
481 f1->SetParameters(f2.GetParameters());
489 TF1& f1 =
dynamic_cast<TF1&
>(*object);
494 f1.GetRange(__xmin, __xmax);
496 xmin = min(xmin, __xmin);
497 xmax = max(xmax, __xmax);
498 ymin = min(ymin, f1.GetMinimum());
499 ymax = max(ymax, f1.GetMaximum());
505 THStack& hs =
dynamic_cast<THStack&
>(*object);
507 NOTICE(
"THStack" << endl);
509 TIterator*
iterator = hs.GetHists()->MakeIterator();
511 for (
size_t index = 1;
TObject* i = iterator->Next(); ++index) {
513 TH1&
h1 =
dynamic_cast<TH1&
>(*i);
515 NOTICE(
"TH1[" << index <<
"] " << h1.GetName() << endl);
517 xmin = min(xmin, h1.GetXaxis()->GetXmin());
518 xmax = max(xmax, h1.GetXaxis()->GetXmax());
520 ymin = min(ymin, logy ? h1.GetMinimum(0.0) : h1.GetMinimum());
521 ymax = max(ymax, h1.GetMaximum());
524 h1.SetLineColor(kBlack);
533 TLine&
h1 =
dynamic_cast<TLine&
>(*object);
535 xmin = min(xmin, h1.GetX1());
536 xmax = max(xmax, h1.GetX2());
537 ymin = min(ymin, h1.GetY1());
538 ymax = max(ymax, h1.GetY2());
544 for (TString buffer[] = {
object.getLabel(), input->getFilename().c_str(),
"" }, *i = buffer; *i !=
""; ++i) {
546 *i = (*i)(TRegexp(
"\\[.*\\]"));
548 if (i->Length() > 2) {
549 object.setLabel((*i)(1, i->Length() - 2));
553 DEBUG(
"Add object: " << tag <<
" with label <" <<
object.
getLabel() <<
">" << endl);
556 master =
dynamic_cast<TH1*
>(
object.get());
559 listOfObjects.push_back(
object);
564 if (listOfObjects.empty()) {
565 ERROR(
"Nothing to draw." << endl);
574 TH1*
h1 =
dynamic_cast<TH1*
> (i->get());
575 TGraph*
g1 =
dynamic_cast<TGraph*
> (i->get());
576 TMultiGraph* m1 =
dynamic_cast<TMultiGraph*
>(i->get());
577 TAttLine* ls =
dynamic_cast<TAttLine*
> (i->get());
584 iterator = h1->GetListOfFunctions()->MakeIterator();
586 }
else if (g1 != NULL) {
588 iterator = g1->GetListOfFunctions()->MakeIterator();
590 }
else if (m1 != NULL) {
592 for (TIter i1(m1->GetListOfGraphs()); TGraph* gi =
dynamic_cast<TGraph*
>(i1()); ) {
593 for (TIter i2(gi->GetListOfFunctions()); TF1* fi =
dynamic_cast<TF1*
>(i2()); ) {
598 iterator = list.MakeIterator();
601 if (iterator != NULL) {
603 Double_t x1[] = { numeric_limits<Double_t>::max(), numeric_limits<Double_t>::max() };
604 Double_t x2[] = { numeric_limits<Double_t>::lowest(), numeric_limits<Double_t>::lowest() };
606 for (
int nf = 0, ns = 0, nc = 1; TF1* f1 = (TF1*) iterator->Next(); ++nf) {
608 f1->GetRange(x1[1], x2[1]);
613 if (listOfObjects.size() == 1) {
615 if (x1[0] == x1[1] &&
628 f1->SetLineColor(ls->GetLineColor());
640 f1->GetRange(__xmin, __xmax);
642 ymin = min(ymin, f1->GetMinimum(__xmin, __xmax));
643 ymax = max(ymax, f1->GetMaximum(__xmin, __xmax));
650 if (
X != JRange_t()) {
651 xmin =
X.getLowerLimit();
652 xmax =
X.getUpperLimit();
655 if (
Y != JRange_t()) {
656 ymin =
Y.getLowerLimit();
657 ymax =
Y.getUpperLimit();
664 if (!listOfObjects.empty()) {
668 master =
new TH1D(MASTER.c_str(), NULL, 100, xmin, xmax);
672 for (Int_t i = 1; i <=
master->GetXaxis()->GetNbins(); ++i) {
673 master->SetBinContent(i, ymin);
680 TText* p =
new TText(0.5, 0.5,
MAKE_CSTRING(
"No data"));
688 if (logx) { gPad->SetLogx(); }
689 if (logy) { gPad->SetLogy(); }
691 master->GetXaxis()->SetRangeUser(xmin, xmax);
692 master->SetTitle(title.c_str());
701 if (xLabel !=
"") {
master->GetXaxis()->SetTitle(xLabel.c_str());
master->GetXaxis()->CenterTitle(
true); }
702 if (yLabel !=
"") {
master->GetYaxis()->SetTitle(yLabel.c_str());
master->GetYaxis()->CenterTitle(
true); }
704 master->GetXaxis()->SetMoreLogLabels((logx == 1 &&
log10(xmax/xmin) < 2) ||
705 (logx > 1 && (xmax-xmin) < 2));
707 master->GetYaxis()->SetMoreLogLabels( logy &&
log10(ymax/ymin) < 2);
708 master->GetYaxis()->SetNoExponent ( logy &&
log10(ymax/ymin) < 2);
711 master->SetNdivisions(i->second, i->first.c_str());
714 if (xTimeFormat !=
"") {
716 master->GetXaxis()->SetTimeDisplay(1);
718 if (xTimeFormat ==
"utc") {
719 master->GetXaxis()->SetTimeFormat(
"#splitline{}{#splitline{%d-%m-%y}{ %H:%M}}");
720 master->GetXaxis()->SetTimeOffset(0.0,
"gmt");
721 }
else if (xTimeFormat ==
"UTC") {
722 master->GetXaxis()->SetTimeFormat(
"%d-%m-%y");
723 master->GetXaxis()->SetTimeOffset(0.0,
"gmt");
725 master->GetXaxis()->SetTimeFormat(xTimeFormat.c_str());
729 master->Draw(option.c_str());
734 if (dynamic_cast<TH1*>(i->get()) !=
master) {
735 if (setLogX<TH1> (i->get())) {}
736 else if (setLogX<TF1> (i->get())) {}
737 else if (setLogX<TGraphErrors>(i->get())) {}
738 else if (setLogX<TGraph> (i->get())) {}
739 else if (setLogX<TMultiGraph> (i->get())) {}
740 else if (setLogX<TLine> (i->get())) {}
741 else if (setLogX<TEllipse> (i->get())) {}
746 if (grid.count(
'x') || grid.count(
'X')) { gPad->SetGridx(); }
747 if (grid.count(
'y') || grid.count(
'Y')) { gPad->SetGridy(); }
750 gStyle->SetOptStat(stats);
752 gStyle->SetOptFit(kFALSE);
757 DEBUG(
"Draw " << (*i)->GetName() <<
' ' << (*i)->GetTitle() << endl);
759 string buffer(option);
767 TF1* f1 =
dynamic_cast<TF1*
> (i->get());
768 TGraph*
g1 =
dynamic_cast<TGraph*
> (i->get());
769 TMultiGraph* q1 =
dynamic_cast<TMultiGraph*
>(i->get());
776 if (g1->GetN() > 1 && drawLine)
784 for (TIter i1(q1->GetListOfGraphs()); TGraph* gi =
dynamic_cast<TGraph*
>(i1()); ) {
786 string zbuf = buffer;
788 if (gi->GetN() > 1 && drawLine)
793 gi->Draw(zbuf.c_str());
798 (*i).Draw(buffer.c_str());
806 Ssiz_t height = listOfObjects.size();
810 width = max(width, i->getLabel().Length());
813 TLegend* lg =
getLegend(width, height, legend);
816 lg->AddEntry(*i,
" " + i->getLabel(),
isTAttLine(*i) ?
"L" :
"LPF");
832 return (
master != NULL ? 0 : 1);
Utility class to parse command line options.
then echo Test string reversed by master(hit< return > to continue)." $DIR/JProcess -c "$DIR/JEcho" -rC fi if (( 1 ))
int main(int argc, char *argv[])
std::string getLabel(const JLocation &location)
Get module label for monitoring and other applications.
#define MAKE_CSTRING(A)
Make C-string.
then for HISTOGRAM in h0 h1
Empty structure for specification of parser element that is initialised (i.e. does not require input)...
then fatal Wrong number of arguments fi set_variable STRING $argv[1] set_variable DETECTORXY_TXT $WORKDIR $DETECTORXY_TXT tail read X Y CHI2 RMS printf optimum n $X $Y $CHI2 $RMS awk v Y
bool isTAttLine(const TObject *object)
Get drawing option of TH1.
I/O formatting auxiliaries.
void setLogarithmicX(TList *list)
Make x-axis of objects in list logarithmic (e.g. after using log10()).
T & getInstance(const T &object)
Get static instance from temporary object.
#define make_field(A,...)
macro to convert parameter to JParserTemplateElement object
set_variable E_E log10(E_{fit}/E_{#mu})"
do set_variable OUTPUT_DIRECTORY $WORKDIR T
then break fi done getCenter read X Y Z let X
General purpose messaging.
static const char LABEL_TERMINATOR
label terminator
void setRange(double &xmin, double &xmax, const bool logx)
Set axis range.
Auxiliary class to define a range between two values.
Utility class to parse command line options.
TLegend * getLegend(const Int_t width, const Int_t height, const std::string option="TR")
Get legend.
then usage $script< input_file >< detector_file > fi set_variable OUTPUT_DIR set_variable SELECTOR JDAQTimesliceL1 set_variable DEBUG case set_variable DEBUG
Auxiliary class to handle multiple boolean-like I/O.
bool isTObject(const TKey *key)
Check if given key corresponds to a TObject.
TDirectory * getDirectory(const JRootObjectID &id)
Get TDirectory pointer.
do set_variable MODULE getModule a $WORKDIR detector_a datx L $STRING JEditDetector a $WORKDIR detector_a datx M $MODULE setz o $WORKDIR detector_a datx JEditDetector a $WORKDIR detector_b datx M $MODULE setz o $WORKDIR detector_b datx done echo Output stored at $WORKDIR detector_a datx and $WORKDIR tripod_a txt JDrawDetector2D a $WORKDIR detector_a datx a $WORKDIR detector_b datx L BL o detector $FORMAT $BATCH JDrawDetector2D T $WORKDIR tripod_a txt T $WORKDIR tripod_b txt L BL o tripod $FORMAT $BATCH JCompareDetector a $WORKDIR detector_a datx b $WORKDIR detector_b datx o $WORKDIR abc root &dev null for KEY in X Y Z
Double_t g1(const Double_t x)
Function.