fwlite::Scanner<C>, a way to inspect or plots elements of a collection C by using the StringParser. More...
#include <Scanner.h>
Public Types | |
typedef fwlite::Handle< Collection > | HandleT |
The type of the Handle to read the Ts from the event. Needed to resolve its Type. More... | |
Public Member Functions | |
void | addEventSelector (fwlite::EventSelector *selector) |
void | clearEventSelector () |
size_t | count (const char *cut) |
size_t | countEvents () |
TH1 * | draw (const char *expr, const char *cut, TString drawopt, TH1 *hist) |
TH1 * | draw (const char *expr, const char *cut="", TString drawopt="", const char *hname="htemp", const TH1 *htemplate=0) |
TH1 * | draw (const char *expr, int nbins, double xlow, double xhigh, const char *cut="", const char *drawopt="", const char *hname="htemp") |
TH1 * | draw (const char *expr, int nbins, double *xbins, const char *cut="", const char *drawopt="", const char *hname="htemp") |
TH2 * | draw2D (TString xexpr, TString yexpr, const char *cut, TString drawopt, TH2 *hist) |
Just like draw() except that it uses TH2. Note that the order is (x,y) while in ROOT it's usually (y,x)! More... | |
TH2 * | draw2D (TString xexpr, TString yexpr, const char *cut="", TString drawopt="", const char *hname="htemp", TH2 *htemplate=0) |
TH2 * | draw2D (TString xexpr, int xbins, double xlow, double xhigh, TString yexpr, int ybins, double ylow, double yhigh, const char *cut="", const char *drawopt="", const char *hname="htemp") |
Just like draw() except that it uses TH2. Note that the order is (x,y) while in ROOT it's usually (y,x)! More... | |
TGraph * | drawGraph (TString xexpr, TString yexpr, const char *cut, TString drawopt, TGraph *graph) |
TGraph * | drawGraph (TString xexpr, TString yexpr, const char *cut="", TString drawopt="AP", const char *gname="htemp") |
TProfile * | drawProf (TString xexpr, TString yexpr, const char *cut, TString drawopt, TProfile *hist) |
Just like draw() except that it uses TProfile. Note that the order is (x,y) while in ROOT it's usually (y,x)! More... | |
TProfile * | drawProf (TString xexpr, TString yexpr, const char *cut="", TString drawopt="", const char *hname="htemp", TProfile *htemplate=0) |
Just like draw() except that it uses TProfile. Note that the order is (x,y) while in ROOT it's usually (y,x)! More... | |
TProfile * | drawProf (TString xexpr, int bins, double xlow, double xhigh, TString yexpr, const char *cut="", const char *drawopt="", const char *hname="htemp") |
Just like draw() except that it uses TProfile. Note that the order is (x,y) while in ROOT it's usually (y,x)! More... | |
TObjArray & | eventSelectors () |
RooDataSet * | fillDataSet (const char *realvars, const char *boolvars, const char *cut="", const char *name="data") |
void | scan (const char *exprs, const char *cut="", int nmax=-1) |
Scanner (fwlite::EventBase *ev, const char *label, const char *instance="", const char *process="") | |
bool | selectEvent (const fwlite::EventBase &ev) const |
void | setExpressionSeparator (TString separator) |
void | setIgnoreExceptions (bool ignoreThem) |
void | setMaxEvents (int max) |
void | setMaxLinesToPrint (int lines) |
void | setPrintFullEventId (bool printIt=true) |
Private Member Functions | |
TH1 * | getSameH1 (const char *hname) |
TH2 * | getSameH2 (const char *hname) |
TProfile * | getSameProf (const char *hname) |
void | htempDelete () |
bool | wantMore () const |
Private Attributes | |
fwlite::EventBase * | event_ |
TObjArray | eventSelectors_ |
TString | exprSep_ |
HandleT | handle_ |
bool | ignoreExceptions_ |
std::string | instance_ |
std::string | label_ |
int | maxEvents_ |
int | maxLinesToPrint_ |
edm::TypeWithDict | objType |
bool | printFullEventId_ |
std::string | process_ |
fwlite::Scanner<C>, a way to inspect or plots elements of a collection C by using the StringParser.
fwlite::Scanner<C>, a way to inspect or plots elements of a collection C by using the StringParser.
The collection can be something as easy as std::vector<T>, but also some other fancy EDM collections like RefVector, RefToBaseVector and OwnVector (and probably PtrVector, but it was not tested)
If you're using something other than std::vector, you must provide the full typename, including all optional template parameters; e.g. you can't have C = edm::RefVector<reco::MuonCollection>, but you need C = edm::RefVector<vector<reco::Muon>,reco::Muon,edm::refhelper::FindUsingAdvance<vector<reco::Muon>,reco::Muon> > In order to figure out what is the correct full name for a collection in an event, open it in ROOT/FWLite, get the branch name including the trailing ".obj" (hint: Events->GetAlias("label")) usually works), and then do Events->GetBranch("xxx.obj")->GetClassName() to get something like edm::Wrapper<X>. then X is what you want to use to create the fwlite::Scanner. Don't use typedefs, they don't work.
typedef fwlite::Handle<Collection> fwlite::Scanner< Collection >::HandleT |
|
inline |
Create a Scanner, passing a fwlite Event and the labels (just like you would in 'getByLabel')
Definition at line 50 of file Scanner.h.
References helper::Parser::elementType(), fwlite::Scanner< Collection >::objType, and edm::Wrapper< T >::typeInfo().
|
inline |
Definition at line 567 of file Scanner.h.
References fwlite::Scanner< Collection >::eventSelectors_.
|
inline |
Definition at line 568 of file Scanner.h.
References fwlite::Scanner< Collection >::eventSelectors_.
|
inline |
Count the number of entries that pass a given cut. See setMaxEvents() to specify how many events to loop on when counting. Events can be further selected by using addEventSelector().
Definition at line 145 of file Scanner.h.
References fwlite::EventBase::atEnd(), fwlite::Scanner< Collection >::event_, fwlite::Handle< T >::getByLabel(), fwlite::Scanner< Collection >::handle_, fwlite::Scanner< Collection >::ignoreExceptions_, fwlite::Scanner< Collection >::instance_, fwlite::Scanner< Collection >::label_, fwlite::Scanner< Collection >::maxEvents_, gen::n, fwlite::Scanner< Collection >::objType, fwlite::Scanner< Collection >::process_, fwlite::Scanner< Collection >::selectEvent(), helper::ScannerBase::setCut(), helper::ScannerBase::setIgnoreExceptions(), helper::ScannerBase::test(), fwlite::EventBase::toBegin(), and create_public_pileup_plots::vals.
|
inline |
Count the number of events, taking into account setMaxEvents() and the event selectors
Definition at line 166 of file Scanner.h.
References fwlite::EventBase::atEnd(), fwlite::Scanner< Collection >::event_, fwlite::Scanner< Collection >::maxEvents_, fwlite::Scanner< Collection >::selectEvent(), and fwlite::EventBase::toBegin().
|
inline |
Plot the expression expr for events passing 'cut, into histogram hist. hist is not reset before filling it, so it will add to the existing content.
If "NORM" is specified in the draw options, the output histogram is normalized If "GOFF" is specified in the draw options, the output histogram is not drawn
See setMaxEvents() to specify how many events to loop on when plotting. Events can be further selected by using addEventSelector().
Definition at line 185 of file Scanner.h.
References helper::ScannerBase::addExpression(), fwlite::EventBase::atEnd(), MessageLogger_cfi::cerr, fwlite::Scanner< Collection >::event_, helper::ScannerBase::fill1D(), fwlite::Handle< T >::getByLabel(), fwlite::Scanner< Collection >::handle_, create_public_lumi_plots::hist, fwlite::Scanner< Collection >::ignoreExceptions_, fwlite::Scanner< Collection >::instance_, fwlite::Scanner< Collection >::label_, fwlite::Scanner< Collection >::maxEvents_, gen::n, fwlite::Scanner< Collection >::objType, fwlite::Scanner< Collection >::process_, fwlite::Scanner< Collection >::selectEvent(), helper::ScannerBase::setCut(), helper::ScannerBase::setIgnoreExceptions(), fwlite::EventBase::toBegin(), and create_public_pileup_plots::vals.
Referenced by fwlite::Scanner< Collection >::draw().
|
inline |
Plot the expression 'expr' for events passing 'cut', in a histogram named 'hname'
Definition at line 227 of file Scanner.h.
References TkAlMuonSelectors_cfi::cut, fwlite::Scanner< Collection >::draw(), fwlite::Scanner< Collection >::getSameH1(), create_public_lumi_plots::hist, and fwlite::Scanner< Collection >::htempDelete().
|
inline |
Make a histogram named hname with nbins from xlow to xhigh, and then call draw(). If "SAME" is passed in the draw options, complain and ignore the binning.
Definition at line 250 of file Scanner.h.
References MessageLogger_cfi::cerr, TkAlMuonSelectors_cfi::cut, fwlite::Scanner< Collection >::draw(), fwlite::Scanner< Collection >::getSameH1(), and fwlite::Scanner< Collection >::htempDelete().
|
inline |
Make a histogram named hname with nbins with boundaries xbins, and then call draw(). If "SAME" is passed in the draw options, complain and ignore the binning.
Definition at line 264 of file Scanner.h.
References MessageLogger_cfi::cerr, TkAlMuonSelectors_cfi::cut, fwlite::Scanner< Collection >::draw(), fwlite::Scanner< Collection >::getSameH1(), and fwlite::Scanner< Collection >::htempDelete().
|
inline |
Just like draw() except that it uses TH2. Note that the order is (x,y) while in ROOT it's usually (y,x)!
Definition at line 344 of file Scanner.h.
References helper::ScannerBase::addExpression(), fwlite::EventBase::atEnd(), MessageLogger_cfi::cerr, fwlite::Scanner< Collection >::event_, helper::ScannerBase::fill2D(), fwlite::Handle< T >::getByLabel(), fwlite::Scanner< Collection >::handle_, create_public_lumi_plots::hist, fwlite::Scanner< Collection >::ignoreExceptions_, fwlite::Scanner< Collection >::instance_, fwlite::Scanner< Collection >::label_, fwlite::Scanner< Collection >::maxEvents_, gen::n, fwlite::Scanner< Collection >::objType, fwlite::Scanner< Collection >::process_, fwlite::Scanner< Collection >::selectEvent(), helper::ScannerBase::setCut(), helper::ScannerBase::setIgnoreExceptions(), fwlite::EventBase::toBegin(), and create_public_pileup_plots::vals.
Referenced by fwlite::Scanner< Collection >::draw2D().
|
inline |
Just like draw() except that it uses TH2. Note that the order is (x,y) while in ROOT it's usually (y,x)! Note that automatical binning for TH2s is more expensive, as it requires to loop on the events twice!
Definition at line 378 of file Scanner.h.
References helper::ScannerBase::addExpression(), fwlite::EventBase::atEnd(), TkAlMuonSelectors_cfi::cut, fwlite::Scanner< Collection >::draw2D(), helper::ScannerBase::eval(), fwlite::Scanner< Collection >::event_, fwlite::Handle< T >::getByLabel(), fwlite::Scanner< Collection >::getSameH2(), fwlite::Scanner< Collection >::handle_, create_public_lumi_plots::hist, fwlite::Scanner< Collection >::htempDelete(), fwlite::Scanner< Collection >::ignoreExceptions_, fwlite::Scanner< Collection >::instance_, fwlite::Scanner< Collection >::label_, fwlite::Scanner< Collection >::maxEvents_, gen::n, fwlite::Scanner< Collection >::objType, fwlite::Scanner< Collection >::process_, fwlite::Scanner< Collection >::selectEvent(), helper::ScannerBase::setCut(), helper::ScannerBase::setIgnoreExceptions(), helper::ScannerBase::test(), fwlite::EventBase::toBegin(), create_public_pileup_plots::vals, x(), TrackerOfflineValidation_Dqm_cff::xmax, TrackerOfflineValidation_Dqm_cff::xmin, Phase2TrackerMonitorDigi_cff::ymax, and Phase2TrackerMonitorDigi_cff::ymin.
|
inline |
Just like draw() except that it uses TH2. Note that the order is (x,y) while in ROOT it's usually (y,x)!
Definition at line 422 of file Scanner.h.
References MessageLogger_cfi::cerr, TkAlMuonSelectors_cfi::cut, fwlite::Scanner< Collection >::draw2D(), fwlite::Scanner< Collection >::getSameH2(), and fwlite::Scanner< Collection >::htempDelete().
|
inline |
Draw a scatter plot of x vs y for events passing the cut.
Definition at line 436 of file Scanner.h.
References helper::ScannerBase::addExpression(), fwlite::EventBase::atEnd(), fwlite::Scanner< Collection >::event_, helper::ScannerBase::fillGraph(), fwlite::Handle< T >::getByLabel(), fwlite::Scanner< Collection >::handle_, fwlite::Scanner< Collection >::ignoreExceptions_, fwlite::Scanner< Collection >::instance_, fwlite::Scanner< Collection >::label_, fwlite::Scanner< Collection >::maxEvents_, gen::n, fwlite::Scanner< Collection >::objType, fwlite::Scanner< Collection >::process_, fwlite::Scanner< Collection >::selectEvent(), helper::ScannerBase::setCut(), helper::ScannerBase::setIgnoreExceptions(), fwlite::EventBase::toBegin(), and create_public_pileup_plots::vals.
Referenced by fwlite::Scanner< Collection >::drawGraph().
|
inline |
Draw a scatter plot of x vs y for events passing the cut.
Definition at line 470 of file Scanner.h.
References TkAlMuonSelectors_cfi::cut, fwlite::Scanner< Collection >::drawGraph(), and fwlite::Scanner< Collection >::htempDelete().
|
inline |
Just like draw() except that it uses TProfile. Note that the order is (x,y) while in ROOT it's usually (y,x)!
Definition at line 279 of file Scanner.h.
References helper::ScannerBase::addExpression(), fwlite::EventBase::atEnd(), MessageLogger_cfi::cerr, fwlite::Scanner< Collection >::event_, helper::ScannerBase::fillProf(), fwlite::Handle< T >::getByLabel(), fwlite::Scanner< Collection >::handle_, create_public_lumi_plots::hist, fwlite::Scanner< Collection >::ignoreExceptions_, fwlite::Scanner< Collection >::instance_, fwlite::Scanner< Collection >::label_, fwlite::Scanner< Collection >::maxEvents_, gen::n, fwlite::Scanner< Collection >::objType, fwlite::Scanner< Collection >::process_, fwlite::Scanner< Collection >::selectEvent(), helper::ScannerBase::setCut(), helper::ScannerBase::setIgnoreExceptions(), fwlite::EventBase::toBegin(), and create_public_pileup_plots::vals.
Referenced by fwlite::Scanner< Collection >::drawProf().
|
inline |
Just like draw() except that it uses TProfile. Note that the order is (x,y) while in ROOT it's usually (y,x)!
Definition at line 312 of file Scanner.h.
References TkAlMuonSelectors_cfi::cut, fwlite::Scanner< Collection >::drawProf(), fwlite::Scanner< Collection >::getSameProf(), create_public_lumi_plots::hist, and fwlite::Scanner< Collection >::htempDelete().
|
inline |
Just like draw() except that it uses TProfile. Note that the order is (x,y) while in ROOT it's usually (y,x)!
Definition at line 331 of file Scanner.h.
References MessageLogger_cfi::cerr, TkAlMuonSelectors_cfi::cut, fwlite::Scanner< Collection >::drawProf(), fwlite::Scanner< Collection >::getSameProf(), and fwlite::Scanner< Collection >::htempDelete().
|
inline |
Definition at line 569 of file Scanner.h.
References fwlite::Scanner< Collection >::eventSelectors_.
|
inline |
Fill a RooDataSet.
Definition at line 485 of file Scanner.h.
References helper::ScannerBase::addExpression(), helper::ScannerBase::addExtraCut(), fwlite::EventBase::atEnd(), eostools::cat(), MessageLogger_cfi::cerr, TkAlMuonSelectors_cfi::cut, helper::ScannerBase::eval(), fwlite::Scanner< Collection >::event_, fwlite::Scanner< Collection >::exprSep_, fwlite::Handle< T >::failedToGet(), fwlite::Handle< T >::getByLabel(), fwlite::Scanner< Collection >::handle_, mps_fire::i, fwlite::Scanner< Collection >::ignoreExceptions_, fwlite::Scanner< Collection >::instance_, fwlite::Scanner< Collection >::label_, fwlite::Scanner< Collection >::maxEvents_, gen::n, dataset::name, fwlite::Scanner< Collection >::objType, fwlite::Scanner< Collection >::process_, fwlite::Scanner< Collection >::selectEvent(), helper::ScannerBase::setCut(), helper::ScannerBase::setIgnoreExceptions(), harvestTrackValidationPlots::str, AlCaHLTBitMon_QueryRunRegistry::string, helper::ScannerBase::test(), fwlite::EventBase::toBegin(), create_public_pileup_plots::vals, and JetChargeProducer_cfi::var.
|
inlineprivate |
Get whatever histogram makes sense for a plot passing "SAME" in drawOpt, and call it hname Currently it won't work if the histogram of which we want to be "SAME" is not called "htemp"
Definition at line 612 of file Scanner.h.
References MessageLogger_cfi::cerr, fftjetcommon_cfi::Class, and create_public_lumi_plots::hist.
Referenced by fwlite::Scanner< Collection >::draw().
|
inlineprivate |
Get whatever histogram makes sense for a plot passing "SAME" in drawOpt, and call it hname Currently it won't work if the histogram of which we want to be "SAME" is not called "htemp"
Definition at line 628 of file Scanner.h.
References MessageLogger_cfi::cerr, fftjetcommon_cfi::Class, and create_public_lumi_plots::hist.
Referenced by fwlite::Scanner< Collection >::draw2D().
|
inlineprivate |
Get whatever histogram makes sense for a plot passing "SAME" in drawOpt, and call it hname Currently it won't work if the histogram of which we want to be "SAME" is not called "htemp"
Definition at line 644 of file Scanner.h.
References MessageLogger_cfi::cerr, fftjetcommon_cfi::Class, and create_public_lumi_plots::hist.
Referenced by fwlite::Scanner< Collection >::drawProf().
|
inlineprivate |
Definition at line 603 of file Scanner.h.
References MuonAssociatorByHits_cfi::obj.
Referenced by fwlite::Scanner< Collection >::draw(), fwlite::Scanner< Collection >::draw2D(), fwlite::Scanner< Collection >::drawGraph(), and fwlite::Scanner< Collection >::drawProf().
|
inline |
Scan the first nmax entries of the event and print out the values of some expressions.
The cut is applied to the individual entries. To set Event-wide cuts, use addEventSelector().
The different expressions are separated by ":", unless changed using setExpressionSeparator. The title of each column is the text of the expression, unless one specifies it differently by using the notation "@label=expression"
Each row is prefixed by the event id (Run/LS/Event on Data, entry number within the file for MC) and by the index of the object within the collection. The behaviour can be changed through the setPrintFullEventId() method.
The printing will pause by default every 50 lines (see setMaxLinesToPrint() to change this) Scanning will stop after nmax events.
Definition at line 77 of file Scanner.h.
References helper::ScannerBase::addExpression(), fwlite::EventBase::atEnd(), gather_cfg::cout, TkAlMuonSelectors_cfi::cut, event(), fwlite::Scanner< Collection >::event_, edm::EventBase::eventAuxiliary(), fwlite::Scanner< Collection >::exprSep_, fwlite::Handle< T >::failedToGet(), fwlite::Handle< T >::getByLabel(), fwlite::Scanner< Collection >::handle_, mps_fire::i, fwlite::Scanner< Collection >::ignoreExceptions_, fwlite::Scanner< Collection >::instance_, fwlite::Scanner< Collection >::label_, geometryCSVtoXML::line, fwlite::Scanner< Collection >::maxLinesToPrint_, gen::n, fwlite::Scanner< Collection >::objType, helper::ScannerBase::print(), fwlite::Scanner< Collection >::printFullEventId_, fwlite::Scanner< Collection >::process_, findQualityFiles::run, fwlite::Scanner< Collection >::selectEvent(), helper::ScannerBase::setCut(), helper::ScannerBase::setIgnoreExceptions(), harvestTrackValidationPlots::str, AlCaHLTBitMon_QueryRunRegistry::string, helper::ScannerBase::test(), fwlite::EventBase::toBegin(), create_public_pileup_plots::vals, and fwlite::Scanner< Collection >::wantMore().
|
inline |
Definition at line 570 of file Scanner.h.
References fwlite::Scanner< Collection >::eventSelectors_, mps_fire::i, and gen::n.
Referenced by fwlite::Scanner< Collection >::count(), fwlite::Scanner< Collection >::countEvents(), fwlite::Scanner< Collection >::draw(), fwlite::Scanner< Collection >::draw2D(), fwlite::Scanner< Collection >::drawGraph(), fwlite::Scanner< Collection >::drawProf(), fwlite::Scanner< Collection >::fillDataSet(), and fwlite::Scanner< Collection >::scan().
|
inline |
Definition at line 563 of file Scanner.h.
References fwlite::Scanner< Collection >::exprSep_, and mps_merge::separator.
|
inline |
Definition at line 564 of file Scanner.h.
References fwlite::Scanner< Collection >::ignoreExceptions_.
|
inline |
Definition at line 577 of file Scanner.h.
References hpstanc_transforms::max, and fwlite::Scanner< Collection >::maxEvents_.
|
inline |
Definition at line 565 of file Scanner.h.
References fwlite::Scanner< Collection >::maxLinesToPrint_.
|
inline |
Definition at line 562 of file Scanner.h.
References fwlite::Scanner< Collection >::printFullEventId_.
|
inlineprivate |
Definition at line 592 of file Scanner.h.
References submit::answer.
Referenced by fwlite::Scanner< Collection >::scan().
|
private |
Definition at line 579 of file Scanner.h.
Referenced by fwlite::Scanner< Collection >::count(), fwlite::Scanner< Collection >::countEvents(), fwlite::Scanner< Collection >::draw(), fwlite::Scanner< Collection >::draw2D(), fwlite::Scanner< Collection >::drawGraph(), fwlite::Scanner< Collection >::drawProf(), fwlite::Scanner< Collection >::fillDataSet(), and fwlite::Scanner< Collection >::scan().
|
private |
Definition at line 587 of file Scanner.h.
Referenced by fwlite::Scanner< Collection >::addEventSelector(), fwlite::Scanner< Collection >::clearEventSelector(), fwlite::Scanner< Collection >::eventSelectors(), and fwlite::Scanner< Collection >::selectEvent().
|
private |
Definition at line 583 of file Scanner.h.
Referenced by fwlite::Scanner< Collection >::fillDataSet(), fwlite::Scanner< Collection >::scan(), and fwlite::Scanner< Collection >::setExpressionSeparator().
|
private |
Definition at line 584 of file Scanner.h.
Referenced by fwlite::Scanner< Collection >::count(), fwlite::Scanner< Collection >::draw(), fwlite::Scanner< Collection >::draw2D(), fwlite::Scanner< Collection >::drawGraph(), fwlite::Scanner< Collection >::drawProf(), fwlite::Scanner< Collection >::fillDataSet(), and fwlite::Scanner< Collection >::scan().
|
private |
Definition at line 582 of file Scanner.h.
Referenced by fwlite::Scanner< Collection >::count(), fwlite::Scanner< Collection >::draw(), fwlite::Scanner< Collection >::draw2D(), fwlite::Scanner< Collection >::drawGraph(), fwlite::Scanner< Collection >::drawProf(), fwlite::Scanner< Collection >::fillDataSet(), fwlite::Scanner< Collection >::scan(), and fwlite::Scanner< Collection >::setIgnoreExceptions().
|
private |
Definition at line 580 of file Scanner.h.
Referenced by fwlite::Scanner< Collection >::count(), fwlite::Scanner< Collection >::draw(), fwlite::Scanner< Collection >::draw2D(), fwlite::Scanner< Collection >::drawGraph(), fwlite::Scanner< Collection >::drawProf(), fwlite::Scanner< Collection >::fillDataSet(), and fwlite::Scanner< Collection >::scan().
|
private |
Definition at line 580 of file Scanner.h.
Referenced by SequenceTypes.DummyModule::__repr__(), Mixins._Labelable::_findDependencies(), fwlite::Scanner< Collection >::count(), fwlite::Scanner< Collection >::draw(), fwlite::Scanner< Collection >::draw2D(), fwlite::Scanner< Collection >::drawGraph(), fwlite::Scanner< Collection >::drawProf(), fwlite::Scanner< Collection >::fillDataSet(), fwlite::Scanner< Collection >::scan(), and Mixins._Labelable::setLabel().
|
private |
Definition at line 589 of file Scanner.h.
Referenced by fwlite::Scanner< Collection >::count(), fwlite::Scanner< Collection >::countEvents(), fwlite::Scanner< Collection >::draw(), fwlite::Scanner< Collection >::draw2D(), fwlite::Scanner< Collection >::drawGraph(), fwlite::Scanner< Collection >::drawProf(), fwlite::Scanner< Collection >::fillDataSet(), and fwlite::Scanner< Collection >::setMaxEvents().
|
private |
Definition at line 591 of file Scanner.h.
Referenced by fwlite::Scanner< Collection >::scan(), and fwlite::Scanner< Collection >::setMaxLinesToPrint().
|
private |
Definition at line 585 of file Scanner.h.
Referenced by fwlite::Scanner< Collection >::count(), fwlite::Scanner< Collection >::draw(), fwlite::Scanner< Collection >::draw2D(), fwlite::Scanner< Collection >::drawGraph(), fwlite::Scanner< Collection >::drawProf(), fwlite::Scanner< Collection >::fillDataSet(), fwlite::Scanner< Collection >::scan(), and fwlite::Scanner< Collection >::Scanner().
|
private |
Definition at line 581 of file Scanner.h.
Referenced by fwlite::Scanner< Collection >::scan(), and fwlite::Scanner< Collection >::setPrintFullEventId().
|
private |
Definition at line 580 of file Scanner.h.
Referenced by fwlite::Scanner< Collection >::count(), fwlite::Scanner< Collection >::draw(), fwlite::Scanner< Collection >::draw2D(), fwlite::Scanner< Collection >::drawGraph(), fwlite::Scanner< Collection >::drawProf(), fwlite::Scanner< Collection >::fillDataSet(), and fwlite::Scanner< Collection >::scan().