Jpp
Functions
JPrintTreeScanner.cc File Reference
#include <string>
#include <iostream>
#include <iomanip>
#include <limits>
#include "JDAQ/JDAQTimesliceIO.hh"
#include "JDAQ/JDAQEvaluator.hh"
#include "JROOT/JROOTClassSelector.hh"
#include "JSupport/JTreeScanner.hh"
#include "JSupport/JSupport.hh"
#include "JSupport/JAutoTreeScanner.hh"
#include "Jeep/JTimer.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

Program to test ordered reading using JSUPPORT::JTreeScanner.

Author
mdejong

Definition in file JPrintTreeScanner.cc.

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

Definition at line 26 of file JPrintTreeScanner.cc.

27 {
28  using namespace std;
29  using namespace JPP;
30  using namespace KM3NETDAQ;
31 
32  JMultipleFileScanner<> inputFile;
33  JROOTClassSelector selector;
34  JLimit numberOfEvents;
35  int debug;
36 
37  try {
38 
39  JParser<> zap("Program to test ordered reading from a ROOT TTree.");
40 
41  zap['f'] = make_field(inputFile);
42  zap['C'] = make_field(selector) = getROOTClassSelection<JDAQTimesliceTypes_t>();
43  zap['n'] = make_field(numberOfEvents) = JLimit();
44  zap['d'] = make_field(debug) = 2;
45 
46  zap(argc, argv);
47  }
48  catch(const exception& error) {
49  FATAL(error.what() << endl);
50  }
51 
52 
54 
56 
57  JTreeScannerInterface<JDAQTimeslice>* ps = zmap[selector];
58 
59  JTimer timer;
60 
61  timer.start();
62 
63  ps->configure(inputFile, numberOfEvents);
64 
65  timer.stop();
66 
67  timer.print(cout, milli_t);
68 
69  while (ps->hasNext()) {
70 
71  JDAQTimeslice* p = ps->next();
72 
73  cout << *p << endl;
74  }
75 }
JSUPPORT::JAutoTreeScanner
Auxiliary class to select JTreeScanner based on ROOT class name.
Definition: JAutoTreeScanner.hh:34
JEEP::JTimer
Auxiliary class for CPU timing and usage.
Definition: JTimer.hh:32
JSUPPORT::JLimit
Auxiliary class for defining the range of iterations of objects.
Definition: JLimit.hh:41
JLANG::JType
Auxiliary class for a type holder.
Definition: JType.hh:19
JEEP::JTimer::print
void print(std::ostream &out, const JScale_t scale=milli_t) const
Print timer data.
Definition: JTimer.hh:161
JEEP::JTimer::start
void start()
Start timer.
Definition: JTimer.hh:89
KM3NETDAQ::JDAQTimeslice
Data time slice.
Definition: JDAQTimeslice.hh:30
JPARSER::JParser
Utility class to parse command line options.
Definition: JParser.hh:1493
JEEP::milli_t
milli
Definition: JScale.hh:30
JPP
This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).
Definition: JAAnetToolkit.hh:37
JROOT::JROOTClassSelector
Auxiliary class to select ROOT class based on class name.
Definition: JROOTClassSelector.hh:32
debug
int debug
debug level
Definition: JSirene.cc:59
JSUPPORT::JTreeScanner
Template definition for direct access of elements in ROOT TChain.
Definition: JTreeScanner.hh:91
JSUPPORT::JTreeScannerInterface
Auxiliary interface for direct access of elements in ROOT TChain.
Definition: JTreeScannerInterface.hh:34
make_field
#define make_field(A,...)
macro to convert parameter to JParserTemplateElement object
Definition: JParser.hh:1954
JSUPPORT::JMultipleFileScanner<>
std
Definition: jaanetDictionary.h:36
KM3NETDAQ
KM3NeT DAQ data structures and auxiliaries.
Definition: DataQueue.cc:39
JEEP::JTimer::stop
void stop()
Stop timer.
Definition: JTimer.hh:113
FATAL
#define FATAL(A)
Definition: JMessage.hh:67