8 #include "TApplication.h" 
   13 #include "TProfile2D.h" 
   30 int main(
int argc, 
char **argv)
 
   35   typedef JRange<double>  JRange_t;
 
   45     JParser<> zap(
"Auxiliary program to print the ranges of x, y and z values of 2D ROOT objects.");
 
   47     zap[
'f'] = 
make_field(inputFile,  
"<input file>:<object name>");
 
   49     zap[
'y'] = 
make_field(y,          
"y range")                     = JRange_t();
 
   50     zap[
'z'] = 
make_field(z,          
"z range")                     = JRange_t();
 
   55   catch(
const exception &error) {
 
   56     FATAL(error.what() << endl);
 
   60   JRange_t 
X = JRange_t::DEFAULT_RANGE();
 
   61   JRange_t 
Y = JRange_t::DEFAULT_RANGE();
 
   62   JRange_t 
Z = JRange_t::DEFAULT_RANGE();
 
   66     DEBUG(
"Input: " << *input << endl);
 
   71       ERROR(
"File: " << input->getFullFilename() << 
" not opened." << endl);
 
   75     const TRegexp regexp(input->getObjectName());
 
   77     TIter iter(dir->GetListOfKeys());
 
   79     for (TKey* key; (key = (TKey*) iter.Next()) != NULL; ) {
 
   81       const TString tag(key->GetName());
 
   83       DEBUG(
"Key: " << tag << 
" match = " << tag.Contains(regexp) << endl);
 
   87       if (tag.Contains(regexp) && 
isTObject(key)) {
 
   89         TObject* 
object = key->ReadObj();
 
   93           TH2& h2 = 
dynamic_cast<TH2&
>(*object);
 
   95           X.combine(
x.join(JRange_t(h2.GetXaxis()->GetXmin(), h2.GetXaxis()->GetXmax())));
 
   96           Y.combine(y.join(JRange_t(h2.GetYaxis()->GetXmin(), h2.GetYaxis()->GetXmax())));
 
   97           Z.combine(z.join(JRange_t(h2.GetMinimum(),          h2.GetMaximum())));
 
  103           TProfile2D& h2 = 
dynamic_cast<TProfile2D&
>(*object);
 
  105           X.combine(
x.join(JRange_t(h2.GetXaxis()->GetXmin(), h2.GetXaxis()->GetXmax())));
 
  106           Y.combine(y.join(JRange_t(h2.GetYaxis()->GetXmin(), h2.GetYaxis()->GetXmax())));
 
  107           Z.combine(z.join(JRange_t(h2.GetMinimum(),          h2.GetMaximum())));
 
  113           TGraph2D& g2 = 
dynamic_cast<TGraph2D&
>(*object);
 
  115           for (Int_t i = 0; i != g2.GetN(); ++i) {
 
  116             if (
x(g2.GetX()[i]) &&
 
  119               X.include(g2.GetX()[i]);
 
  120               Y.include(g2.GetY()[i]);
 
  121               Z.include(g2.GetZ()[i]);
 
  131   cout << 
SCIENTIFIC(15,5) << 
X.getLowerLimit() << 
' '  
Utility class to parse command line options. 
 
int main(int argc, char *argv[])
 
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
 
I/O formatting auxiliaries. 
 
#define make_field(A,...)
macro to convert parameter to JParserTemplateElement object 
 
General purpose messaging. 
 
Auxiliary class to define a range between two values. 
 
Utility class to parse command line options. 
 
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
 
Auxiliary data structure for floating point format specification. 
 
#define DEBUG(A)
Message macros.