Auxiliary program to print ROOT TChain information.  
More...
#include <string>
#include <iostream>
#include <iomanip>
#include <set>
#include <memory>
#include <string.h>
#include "TError.h"
#include "TROOT.h"
#include "TFile.h"
#include "TKey.h"
#include "TTree.h"
#include "TChain.h"
#include "JSystem/JGlob.hh"
#include "Jeep/JParser.hh"
#include "Jeep/JMessage.hh"
 
Go to the source code of this file.
 | 
| int  | main (int argc, char **argv) | 
|   | 
Auxiliary program to print ROOT TChain information. 
- Author
 - mdejong 
 
Definition in file JPrintChain.cc.
 
      
        
          | int main  | 
          ( | 
          int  | 
          argc,  | 
        
        
           | 
           | 
          char **  | 
          argv  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
Definition at line 66 of file JPrintChain.cc.
   76     JParser<> zap(
"Auxiliary program to print ROOT TChain information.");
 
   83   catch(
const exception &error) {
 
   84     FATAL(error.what() << endl);
 
   87   gErrorIgnoreLevel = kFatal;
 
   95     TFile* 
file = TFile::Open(file_name->c_str());
 
   99       TIter iter(file->GetListOfKeys(), kIterBackward);
 
  101       for (TKey* key; (key = (TKey*) iter.Next()) != NULL; ) {
 
  103         TKey* p = 
dynamic_cast<TKey*
>(file->GetListOfKeys()->Before(key));
 
  105         if (p == NULL || strcmp(key->GetName(), p->GetName()) != 0) {                      
 
  107           TTree* tree = 
dynamic_cast<TTree*
>(key->ReadObj());
 
  110             buffer.insert(JChain(tree->GetName()));
 
  121   for (
auto& chain : buffer) {
 
  124       chain->Add(file_name->c_str());
 
  127     cout << setw(24) << left  <<  chain->GetName()    << 
' ' 
  128          << setw(10) << right <<  chain->GetEntries() << endl;
 
Utility class to parse command line options. 
 
then usage $script[< detector identifier >< run range >]< QA/QCfile > nExample script to produce data quality plots nWhen a detector identifier and run range are data are downloaded from the database nand subsequently stored in the given QA QC file
 
static JGlob getFilenames
Function object to get list of files for given pattern. 
 
#define make_field(A,...)
macro to convert parameter to JParserTemplateElement object