28int main(
int argc, 
char **argv)
 
   44    JParser<> zap(
"Auxiliary program to print the ranges of x, y, z and c values of 3D ROOT objects.");
 
   46    zap[
'f'] = 
make_field(inputFile,  
"<input file>:<object name>");
 
   47    zap[
'x'] = 
make_field(x,          
"x range")                     = JRange_t();
 
   48    zap[
'y'] = 
make_field(y,          
"y range")                     = JRange_t();
 
   49    zap[
'z'] = 
make_field(z,          
"z range")                     = JRange_t();
 
   50    zap[
'c'] = 
make_field(c,          
"c 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();
 
   63  JRange_t C = JRange_t::DEFAULT_RANGE();  
 
   65  for (vector<JRootObjectID>::const_iterator input = inputFile.begin(); input != inputFile.end(); ++input) {
 
   67    DEBUG(
"Input: " << *input << endl);
 
   69    TDirectory* dir = getDirectory(*input);
 
   72      ERROR(
"File: " << input->getFullFilename() << 
" not opened." << endl);
 
   76    const TRegexp regexp(input->getObjectName());
 
   78    TIter iter(dir->GetListOfKeys());
 
   80    for (TKey* key; (key = (TKey*) iter.Next()) != NULL; ) {
 
   82      const TString tag(key->GetName());
 
   84      DEBUG(
"Key: " << tag << 
" match = " << tag.Contains(regexp) << endl);
 
   88      if (tag.Contains(regexp) && isTObject(key)) {
 
   90        TObject* 
object = key->ReadObj();
 
   94          TH3& h3 = 
dynamic_cast<TH3&
>(*object);
 
   96          X.combine(x.join(JRange_t(h3.GetXaxis()->GetXmin(), h3.GetXaxis()->GetXmax())));
 
   97          Y.combine(y.join(JRange_t(h3.GetYaxis()->GetXmin(), h3.GetYaxis()->GetXmax())));
 
   98          Z.combine(z.join(JRange_t(h3.GetZaxis()->GetXmin(), h3.GetZaxis()->GetXmax())));
 
   99          C.combine(c.join(JRange_t(h3.GetMinimum(),          h3.GetMaximum())));
 
  107  cout << 
SCIENTIFIC(15,5) << X.getLowerLimit() << 
' '  
  108       << 
SCIENTIFIC(15,5) << Y.getLowerLimit() << 
' '  
  109       << 
SCIENTIFIC(15,5) << Z.getLowerLimit() << 
' ' 
  110       << 
SCIENTIFIC(15,5) << C.getLowerLimit() << 
' '      
  111       << 
SCIENTIFIC(15,5) << X.getUpperLimit() << 
' '  
  112       << 
SCIENTIFIC(15,5) << Y.getUpperLimit() << 
' ' 
  113       << 
SCIENTIFIC(15,5) << Z.getUpperLimit() << 
' ' 
  114       << 
SCIENTIFIC(15,5) << C.getUpperLimit() << endl;