Jpp  17.1.1
the software that should make you happy
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Functions
JRebin1D.cc File Reference

Auxiliary program to rebin ROOT histograms. More...

#include <string>
#include <iostream>
#include <iomanip>
#include <sstream>
#include <cmath>
#include "TROOT.h"
#include "TFile.h"
#include "TObject.h"
#include "TKey.h"
#include "TH1D.h"
#include "TString.h"
#include "TRegexp.h"
#include "JGizmo/JRootObjectID.hh"
#include "JGizmo/JGizmoToolkit.hh"
#include "Jeep/JPrint.hh"
#include "Jeep/JParser.hh"
#include "Jeep/JMessage.hh"

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Detailed Description

Auxiliary program to rebin ROOT histograms.

The option -f corresponds to <file name>:<object name>.

Author
mdejong

Definition in file JRebin1D.cc.

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 31 of file JRebin1D.cc.

32 {
33  using namespace std;
34  using namespace JPP;
35 
36  vector<JRootObjectID> inputFile;
37  string outputFile;
39  int debug;
40 
41  try {
42 
43  JParser<> zap("Auxiliary program to rebin ROOT histograms.");
44 
45  zap['f'] = make_field(inputFile, "<input file>:<object name>");
46  zap['o'] = make_field(outputFile, "ROOT file with histogram(s)") = "rebin.root";
47  zap['x'] = make_field(X, "abscissa values");
48  zap['d'] = make_field(debug) = 0;
49 
50  zap(argc, argv);
51  }
52  catch(const exception &error) {
53  FATAL(error.what() << endl);
54  }
55 
56 
57  if (X.empty()) {
58  FATAL("No abscissa values." << endl);
59  }
60 
61  TFile out(outputFile.c_str(), "recreate");
62 
63  for (vector<JRootObjectID>::const_iterator input = inputFile.begin(); input != inputFile.end(); ++input) {
64 
65  DEBUG("Input: " << *input << endl);
66 
67  TDirectory* dir = getDirectory(*input);
68 
69  if (dir == NULL) {
70  ERROR("File: " << input->getFullFilename() << " not opened." << endl);
71  continue;
72  }
73 
74  const TRegexp regexp(input->getObjectName());
75 
76  TIter iter(dir->GetListOfKeys());
77 
78  for (TKey* key; (key = (TKey*) iter.Next()) != NULL; ) {
79 
80  const TString tag(key->GetName());
81 
82  DEBUG("Key: " << tag << " match = " << tag.Contains(regexp) << endl);
83 
84  // option match
85 
86  if (tag.Contains(regexp) && isTObject(key)) {
87 
88  TObject* object = key->ReadObj();
89 
90  try {
91 
92  TH1D& h0 = dynamic_cast<TH1D&>(*object);
93 
94  TH1D h1(h0.GetName(), NULL, X.size() - 1, X.data());
95 
96  for (int ix = 1; ix <= h1.GetXaxis()->GetNbins(); ++ix) {
97 
98  const Double_t xmin = h0.GetXaxis()->FindBin(h1.GetXaxis()->GetBinLowEdge(ix));
99  const Double_t xmax = h0.GetXaxis()->FindBin(h1.GetXaxis()->GetBinUpEdge (ix));
100 
101  const Int_t imin = xmin;
102  const Int_t imax = xmax;
103 
104  if (imax != imin) {
105 
106  Double_t Y = 0.0;
107  Double_t Z = 0.0;
108  Double_t W = 0.0;
109 
110  for (Int_t i = imin; i != imax; ++i) {
111 
112  const Double_t y = h0.GetBinContent(i);
113  const Double_t z = h0.GetBinWidth (i);
114  const Double_t w = h0.GetBinError (i);
115 
116  Y += y*z;
117  Z += z;
118  W += w*z * w*z;
119  }
120 
121  Y = Y / Z;
122  W = sqrt(W) / Z;
123 
124  h1.SetBinContent(ix, Y);
125  h1.SetBinError (ix, W);
126 
127  } else {
128 
129  ERROR("Invalid bin " << ix << " [" << FIXED(9,3) << xmin << "," << FIXED(9,3) << xmax << "]" << " -> " << imin << ' ' << imax << endl);
130  }
131  }
132 
133  out.WriteTObject(&h1);
134  }
135  catch(exception&) {}
136  }
137  }
138  }
139 
140  out.Write();
141  out.Close();
142 }
const double xmax
Definition: JQuadrature.cc:24
Utility class to parse command line options.
Definition: JParser.hh:1517
data_type w[N+1][M+1]
Definition: JPolint.hh:778
Definition: JRoot.hh:19
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
Auxiliary data structure for floating point format specification.
Definition: JManip.hh:446
string outputFile
#define make_field(A,...)
macro to convert parameter to JParserTemplateElement object
Definition: JParser.hh:1993
#define ERROR(A)
Definition: JMessage.hh:66
#define FATAL(A)
Definition: JMessage.hh:67
const double xmin
Definition: JQuadrature.cc:23
bool isTObject(const TKey *key)
Check if given key corresponds to a TObject.
no fit printf nominal n $STRING awk v X
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
int debug
debug level
#define DEBUG(A)
Message macros.
Definition: JMessage.hh:62