28 int main(
int argc, 
char **argv)
 
   51     JParser<> zap(
"Auxiliary program to test contents of 3D histograms.");
 
   53     zap[
'f'] = 
make_field(inputFile,  
"measurement histogram, e.g: <file name>:<object name>");
 
   68   catch(
const exception &error) {
 
   69     FATAL(error.what() << endl);
 
   72   int number_of_failures = 0;
 
   76     DEBUG(
"Input: " << *input << endl);
 
   81       FATAL(
"File: " << input->getFullFilename() << 
" not opened." << endl);
 
   84     const TRegexp regexp(input->getObjectName());
 
   86     TIter iter(dir->GetListOfKeys());
 
   88     for (TKey* key; (key = (TKey*) iter.Next()) != NULL; ) {
 
   90       const TString tag(key->GetName());
 
   92       DEBUG(
"Key: " << tag << 
" match = " << tag.Contains(regexp) << endl);
 
   96       if (tag.Contains(regexp) && 
isTObject(key)) {
 
  100         TH3* h3 = (
dynamic_cast<TH3*
>(p) != NULL ? 
dynamic_cast<TH3*
>(p) : NULL);       
 
  102         for (map_type::const_iterator i = zmap.begin(); i != zmap.end(); ++i) {
 
  104           const double    value = 
getResult(i->first, p);
 
  107           DEBUG(
"Global test " << i->first << 
' ' << (range(value) ? 
"passed" : 
"failed") << endl);
 
  113         int number_of_events   = 0;
 
  114         int number_of_outliers = 0;
 
  118           for (Int_t ix = 1; ix <= h3->GetXaxis()->GetNbins(); ++ix) {
 
  119             for (Int_t iy = 1; iy <= h3->GetYaxis()->GetNbins(); ++iy) {
 
  120               for (Int_t iz = 1; iz <= h3->GetZaxis()->GetNbins(); ++iz) {            
 
  122                 const Double_t 
x = h3->GetXaxis()->GetBinCenter(ix);
 
  123                 const Double_t 
y = h3->GetYaxis()->GetBinCenter(iy);
 
  124                 const Double_t z = h3->GetZaxis()->GetBinCenter(iz);          
 
  125                 const Double_t c = h3->GetBinContent(ix, iy, iz);
 
  127                 if (X(
x) == !invertX && 
 
  133                   const bool ok = (
C(c) == !invertC);
 
  135                   DEBUG(
"Test outlier " << h3->GetName() << 
" bin (" << ix << 
"," << iy << 
',' << iz << 
") (" << h3->GetXaxis()->GetBinLabel(ix) << 
"," << h3->GetYaxis()->GetBinLabel(iy) << 
"," << h3->GetZaxis()->GetBinLabel(iz) << 
") " << c << 
' ' << (ok ? 
"passed" : 
"failed") << endl);
 
  138                     ++number_of_outliers;
 
  147           FATAL(
"Object at " << *input << 
" is not TH3" << endl);
 
  151         cout << (number_of_outliers > numberOfOutliers ? 
RED : 
GREEN);
 
  152         NOTICE(
"Number of outliers \"" << p->GetName() << 
"\" = " << number_of_outliers << 
"/" << number_of_events << endl);
 
  155         if (number_of_outliers > numberOfOutliers) {
 
  156           ++number_of_failures;
 
  162   ASSERT(number_of_failures == 0);
 
I/O coloring auxiliaries.
 
General purpose messaging.
 
#define DEBUG(A)
Message macros.
 
#define ASSERT(A,...)
Assert macro.
 
Utility class to parse command line options.
 
#define make_field(A,...)
macro to convert parameter to JParserTemplateElement object
 
Auxiliary class to define a range between two values.
 
int main(int argc, char **argv)
 
Utility class to parse command line options.
 
TDirectory * getDirectory(const JRootObjectID &id)
Get TDirectory pointer.
 
bool isTObject(const TKey *key)
Check if given key corresponds to a TObject.
 
Double_t getResult(const TString &text, TObject *object=NULL)
Get result of given textual formula.
 
static const double C
Physics constants.
 
This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).
 
std::map< int, range_type > map_type
 
Type definition of range.
 
Empty structure for specification of parser element that is initialised (i.e. does not require input)...