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=nullptr) |
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=nullptr) |
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=nullptr) |
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 52 of file Scanner.h.
References helper::Parser::elementType(), fwlite::Scanner< Collection >::objType, and edm::Wrapper< T >::typeInfo().
|
inline |
Definition at line 693 of file Scanner.h.
References fwlite::Scanner< Collection >::eventSelectors_, and collectionMerger::selector.
|
inline |
Definition at line 694 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 154 of file Scanner.h.
References fwlite::EventBase::atEnd(), TkAlMuonSelectors_cfi::cut, fwlite::Scanner< Collection >::event_, fwlite::Handle< T >::getByLabel(), fwlite::Scanner< Collection >::handle_, caHitNtupletGeneratorKernels::iev, fwlite::Scanner< Collection >::ignoreExceptions_, fwlite::Scanner< Collection >::instance_, dqmiolumiharvest::j, fwlite::Scanner< Collection >::label_, fwlite::Scanner< Collection >::maxEvents_, dqmiodumpmetadata::n, fwlite::Scanner< Collection >::objType, fwlite::Scanner< Collection >::process_, fwlite::Scanner< Collection >::selectEvent(), helper::ScannerBase::setCut(), helper::ScannerBase::setIgnoreExceptions(), helper::ScannerBase::test(), and fwlite::EventBase::toBegin().
|
inline |
Count the number of events, taking into account setMaxEvents() and the event selectors
Definition at line 178 of file Scanner.h.
References fwlite::EventBase::atEnd(), fwlite::Scanner< Collection >::event_, caHitNtupletGeneratorKernels::iev, 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 199 of file Scanner.h.
References helper::ScannerBase::addExpression(), fwlite::EventBase::atEnd(), DMR_cfg::cerr, TkAlMuonSelectors_cfi::cut, fwlite::Scanner< Collection >::event_, helper::ScannerBase::fill1D(), fwlite::Handle< T >::getByLabel(), fwlite::Scanner< Collection >::handle_, compareTotals::hist, caHitNtupletGeneratorKernels::iev, fwlite::Scanner< Collection >::ignoreExceptions_, fwlite::Scanner< Collection >::instance_, dqmiolumiharvest::j, fwlite::Scanner< Collection >::label_, fwlite::Scanner< Collection >::maxEvents_, dqmiodumpmetadata::n, fwlite::Scanner< Collection >::objType, fwlite::Scanner< Collection >::process_, fwlite::Scanner< Collection >::selectEvent(), helper::ScannerBase::setCut(), helper::ScannerBase::setIgnoreExceptions(), and fwlite::EventBase::toBegin().
Referenced by fwlite::Scanner< Collection >::draw().
|
inline |
Plot the expression 'expr' for events passing 'cut', in a histogram named 'hname'
Definition at line 248 of file Scanner.h.
References TkAlMuonSelectors_cfi::cut, fwlite::Scanner< Collection >::draw(), fwlite::Scanner< Collection >::getSameH1(), compareTotals::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 276 of file Scanner.h.
References DMR_cfg::cerr, TkAlMuonSelectors_cfi::cut, fwlite::Scanner< Collection >::draw(), fwlite::Scanner< Collection >::getSameH1(), fwlite::Scanner< Collection >::htempDelete(), and LaserClient_cfi::nbins.
|
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 298 of file Scanner.h.
References DMR_cfg::cerr, TkAlMuonSelectors_cfi::cut, fwlite::Scanner< Collection >::draw(), fwlite::Scanner< Collection >::getSameH1(), fwlite::Scanner< Collection >::htempDelete(), LaserClient_cfi::nbins, and fw3dlego::xbins.
|
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 411 of file Scanner.h.
References helper::ScannerBase::addExpression(), fwlite::EventBase::atEnd(), DMR_cfg::cerr, TkAlMuonSelectors_cfi::cut, fwlite::Scanner< Collection >::event_, helper::ScannerBase::fill2D(), fwlite::Handle< T >::getByLabel(), fwlite::Scanner< Collection >::handle_, compareTotals::hist, caHitNtupletGeneratorKernels::iev, fwlite::Scanner< Collection >::ignoreExceptions_, fwlite::Scanner< Collection >::instance_, dqmiolumiharvest::j, fwlite::Scanner< Collection >::label_, fwlite::Scanner< Collection >::maxEvents_, dqmiodumpmetadata::n, fwlite::Scanner< Collection >::objType, fwlite::Scanner< Collection >::process_, fwlite::Scanner< Collection >::selectEvent(), helper::ScannerBase::setCut(), helper::ScannerBase::setIgnoreExceptions(), and fwlite::EventBase::toBegin().
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 456 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_, compareTotals::hist, fwlite::Scanner< Collection >::htempDelete(), caHitNtupletGeneratorKernels::iev, fwlite::Scanner< Collection >::ignoreExceptions_, fwlite::Scanner< Collection >::instance_, dqmiolumiharvest::j, fwlite::Scanner< Collection >::label_, fwlite::Scanner< Collection >::maxEvents_, dqmiodumpmetadata::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(), x, TrackerOfflineValidation_Dqm_cff::xmax, TrackerOfflineValidation_Dqm_cff::xmin, L1TOccupancyClient_cfi::ymax, and L1TOccupancyClient_cfi::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 523 of file Scanner.h.
References DMR_cfg::cerr, TkAlMuonSelectors_cfi::cut, fwlite::Scanner< Collection >::draw2D(), fwlite::Scanner< Collection >::getSameH2(), fwlite::Scanner< Collection >::htempDelete(), and fw3dlego::xbins.
|
inline |
Draw a scatter plot of x vs y for events passing the cut.
Definition at line 546 of file Scanner.h.
References helper::ScannerBase::addExpression(), fwlite::EventBase::atEnd(), TkAlMuonSelectors_cfi::cut, fwlite::Scanner< Collection >::event_, helper::ScannerBase::fillGraph(), fwlite::Handle< T >::getByLabel(), fwlite::Scanner< Collection >::handle_, caHitNtupletGeneratorKernels::iev, fwlite::Scanner< Collection >::ignoreExceptions_, fwlite::Scanner< Collection >::instance_, dqmiolumiharvest::j, fwlite::Scanner< Collection >::label_, fwlite::Scanner< Collection >::maxEvents_, dqmiodumpmetadata::n, fwlite::Scanner< Collection >::objType, fwlite::Scanner< Collection >::process_, fwlite::Scanner< Collection >::selectEvent(), helper::ScannerBase::setCut(), helper::ScannerBase::setIgnoreExceptions(), and fwlite::EventBase::toBegin().
Referenced by fwlite::Scanner< Collection >::drawGraph().
|
inline |
Draw a scatter plot of x vs y for events passing the cut.
Definition at line 589 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 320 of file Scanner.h.
References helper::ScannerBase::addExpression(), fwlite::EventBase::atEnd(), DMR_cfg::cerr, TkAlMuonSelectors_cfi::cut, fwlite::Scanner< Collection >::event_, helper::ScannerBase::fillProf(), fwlite::Handle< T >::getByLabel(), fwlite::Scanner< Collection >::handle_, compareTotals::hist, caHitNtupletGeneratorKernels::iev, fwlite::Scanner< Collection >::ignoreExceptions_, fwlite::Scanner< Collection >::instance_, dqmiolumiharvest::j, fwlite::Scanner< Collection >::label_, fwlite::Scanner< Collection >::maxEvents_, dqmiodumpmetadata::n, fwlite::Scanner< Collection >::objType, fwlite::Scanner< Collection >::process_, fwlite::Scanner< Collection >::selectEvent(), helper::ScannerBase::setCut(), helper::ScannerBase::setIgnoreExceptions(), and fwlite::EventBase::toBegin().
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 364 of file Scanner.h.
References TkAlMuonSelectors_cfi::cut, fwlite::Scanner< Collection >::drawProf(), fwlite::Scanner< Collection >::getSameProf(), compareTotals::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 390 of file Scanner.h.
References trigObjTnPSource_cfi::bins, DMR_cfg::cerr, TkAlMuonSelectors_cfi::cut, fwlite::Scanner< Collection >::drawProf(), fwlite::Scanner< Collection >::getSameProf(), and fwlite::Scanner< Collection >::htempDelete().
|
inline |
Definition at line 695 of file Scanner.h.
References fwlite::Scanner< Collection >::eventSelectors_.
|
inline |
Fill a RooDataSet.
Definition at line 605 of file Scanner.h.
References helper::ScannerBase::addExpression(), helper::ScannerBase::addExtraCut(), fwlite::EventBase::atEnd(), eostools::cat(), DMR_cfg::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, caHitNtupletGeneratorKernels::iev, fwlite::Scanner< Collection >::ignoreExceptions_, fwlite::Scanner< Collection >::instance_, dqmiolumiharvest::j, fwlite::Scanner< Collection >::label_, fwlite::Scanner< Collection >::maxEvents_, dqmiodumpmetadata::n, Skims_PA_cff::name, fwlite::Scanner< Collection >::objType, fwlite::Scanner< Collection >::process_, fwlite::Scanner< Collection >::selectEvent(), helper::ScannerBase::setCut(), helper::ScannerBase::setIgnoreExceptions(), str, AlCaHLTBitMon_QueryRunRegistry::string, helper::ScannerBase::test(), fwlite::EventBase::toBegin(), and trigObjTnPSource_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 742 of file Scanner.h.
References DMR_cfg::cerr, HLT_2024v10_cff::Class, and compareTotals::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 758 of file Scanner.h.
References DMR_cfg::cerr, HLT_2024v10_cff::Class, and compareTotals::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 774 of file Scanner.h.
References DMR_cfg::cerr, HLT_2024v10_cff::Class, and compareTotals::hist.
Referenced by fwlite::Scanner< Collection >::drawProf().
|
inlineprivate |
Definition at line 732 of file Scanner.h.
References getGTfromDQMFile::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 80 of file Scanner.h.
References helper::ScannerBase::addExpression(), fwlite::EventBase::atEnd(), gather_cfg::cout, TkAlMuonSelectors_cfi::cut, edmPickEvents::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, caHitNtupletGeneratorKernels::iev, fwlite::Scanner< Collection >::ignoreExceptions_, fwlite::Scanner< Collection >::instance_, dqmiolumiharvest::j, fwlite::Scanner< Collection >::label_, mps_splice::line, fwlite::Scanner< Collection >::maxLinesToPrint_, dqmiodumpmetadata::n, fwlite::Scanner< Collection >::objType, helper::ScannerBase::print(), fwlite::Scanner< Collection >::printFullEventId_, fwlite::Scanner< Collection >::process_, writedatasetfile::run, fwlite::Scanner< Collection >::selectEvent(), helper::ScannerBase::setCut(), helper::ScannerBase::setIgnoreExceptions(), str, AlCaHLTBitMon_QueryRunRegistry::string, helper::ScannerBase::test(), fwlite::EventBase::toBegin(), and fwlite::Scanner< Collection >::wantMore().
|
inline |
Definition at line 696 of file Scanner.h.
References makeMEIFBenchmarkPlots::ev, fwlite::Scanner< Collection >::eventSelectors_, mps_fire::i, and dqmiodumpmetadata::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 689 of file Scanner.h.
References fwlite::Scanner< Collection >::exprSep_, and mps_merge::separator.
|
inline |
Definition at line 690 of file Scanner.h.
References fwlite::Scanner< Collection >::ignoreExceptions_.
|
inline |
Definition at line 704 of file Scanner.h.
References SiStripPI::max, and fwlite::Scanner< Collection >::maxEvents_.
|
inline |
Definition at line 691 of file Scanner.h.
References groupFilesInBlocks::lines, and fwlite::Scanner< Collection >::maxLinesToPrint_.
|
inline |
Definition at line 688 of file Scanner.h.
References fwlite::Scanner< Collection >::printFullEventId_, and ALPAKA_ACCELERATOR_NAMESPACE::riemannFit::printIt().
|
inlineprivate |
Definition at line 720 of file Scanner.h.
References submitPVResolutionJobs::stderr.
Referenced by fwlite::Scanner< Collection >::scan().
|
private |
Definition at line 707 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 715 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 711 of file Scanner.h.
Referenced by fwlite::Scanner< Collection >::fillDataSet(), fwlite::Scanner< Collection >::scan(), and fwlite::Scanner< Collection >::setExpressionSeparator().
|
private |
Definition at line 712 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 710 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 708 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 708 of file Scanner.h.
Referenced by Modules.SwitchProducer::__addParameter(), SequenceTypes.DummyModule::__repr__(), Modules.SwitchProducer::__setattr__(), 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 717 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 719 of file Scanner.h.
Referenced by fwlite::Scanner< Collection >::scan(), and fwlite::Scanner< Collection >::setMaxLinesToPrint().
|
private |
Definition at line 713 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 709 of file Scanner.h.
Referenced by fwlite::Scanner< Collection >::scan(), and fwlite::Scanner< Collection >::setPrintFullEventId().
|
private |
Definition at line 708 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().