CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes
Mapper::definition< ScannerT > Struct Template Reference

Public Member Functions

 definition (Mapper const &self)
 
rule< ScannerT > const & start () const
 

Public Attributes

rule< ScannerT > mapSet
 
rule< ScannerT > name
 
rule< ScannerT > ppair
 
rule< ScannerT > value
 

Detailed Description

template<typename ScannerT>
struct Mapper::definition< ScannerT >

Definition at line 41 of file DDLMap.cc.

Constructor & Destructor Documentation

template<typename ScannerT >
Mapper::definition< ScannerT >::definition ( Mapper const &  self)
inline

Definition at line 62 of file DDLMap.cc.

References dataset::name, and relativeConstraints::value.

63  {
64  mapSet
65  = ppair[self.mapPair()]
66  >> *((',' >> ppair)[self.mapPair()])
67  ;
68 
69  ppair
70  = name
71  >> ch_p('=') >> value
72  ;
73 
74  name
75  = (alpha_p >> *alnum_p)[self.mapMakeName()]
76  ;
77 
78  value
79  = (+(anychar_p - ','))[self.mapMakeDouble()]
80  ;
81  }
MapMakeName mapMakeName() const
Definition: DDLMap.cc:44
MapPair mapPair() const
Definition: DDLMap.cc:43
rule< ScannerT > mapSet
Definition: DDLMap.cc:83
rule< ScannerT > name
Definition: DDLMap.cc:83
rule< ScannerT > value
Definition: DDLMap.cc:83
rule< ScannerT > ppair
Definition: DDLMap.cc:83

Member Function Documentation

template<typename ScannerT >
rule<ScannerT> const& Mapper::definition< ScannerT >::start ( ) const
inline

Definition at line 86 of file DDLMap.cc.

Referenced by progressbar.ProgressBar::__next__(), Types.LuminosityBlockRange::cppID(), and Types.EventRange::cppID().

86 { return mapSet; }
rule< ScannerT > mapSet
Definition: DDLMap.cc:83

Member Data Documentation

template<typename ScannerT >
rule<ScannerT> Mapper::definition< ScannerT >::mapSet

Definition at line 83 of file DDLMap.cc.

template<typename ScannerT >
rule<ScannerT> Mapper::definition< ScannerT >::name

Definition at line 83 of file DDLMap.cc.

Referenced by ElectronMVAID.ElectronMVAID::__call__(), dirstructure.Directory::__create_pie_image(), DisplayManager.DisplayManager::__del__(), dqm_interfaces.DirID::__eq__(), BeautifulSoup.Tag::__eq__(), dirstructure.Directory::__get_full_path(), dirstructure.Comparison::__get_img_name(), dataset.Dataset::__getDataType(), dataset.Dataset::__getFileInfoList(), dirstructure.Comparison::__make_image(), core.autovars.NTupleVariable::__repr__(), core.autovars.NTupleObjectType::__repr__(), core.autovars.NTupleObject::__repr__(), core.autovars.NTupleCollection::__repr__(), dirstructure.Directory::__repr__(), dqm_interfaces.DirID::__repr__(), dirstructure.Comparison::__repr__(), config.Service::__setattr__(), config.CFG::__str__(), counter.Counter::__str__(), average.Average::__str__(), BeautifulSoup.Tag::__str__(), BeautifulSoup.SoupStrainer::__str__(), core.autovars.NTupleObjectType::addSubObjects(), core.autovars.NTupleObjectType::addVariables(), core.autovars.NTupleObjectType::allVars(), dirstructure.Directory::calcStats(), validation.Sample::digest(), python.rootplot.utilities.Hist::divide(), python.rootplot.utilities.Hist::divide_wilson(), DisplayManager.DisplayManager::Draw(), TreeCrawler.Package::dump(), core.autovars.NTupleVariable::fillBranch(), core.autovars.NTupleObject::fillBranches(), core.autovars.NTupleCollection::fillBranchesScalar(), core.autovars.NTupleCollection::fillBranchesVector(), core.autovars.NTupleCollection::get_cpp_declaration(), core.autovars.NTupleCollection::get_cpp_wrapper_class(), core.autovars.NTupleCollection::get_py_wrapper_class(), utils.StatisticalTest::get_status(), production_tasks.Task::getname(), dataset.CMSDataset::getPrimaryDatasetEntries(), dataset.PrivateDataset::getPrimaryDatasetEntries(), VIDSelectorBase.VIDSelectorBase::initialize(), personalPlayback.Applet::log(), core.autovars.NTupleVariable::makeBranch(), core.autovars.NTupleObject::makeBranches(), core.autovars.NTupleCollection::makeBranchesScalar(), core.autovars.NTupleCollection::makeBranchesVector(), dirstructure.Directory::print_report(), dataset.BaseDataset::printInfo(), dataset.Dataset::printInfo(), production_tasks.MonitorJobs::run(), BeautifulSoup.SoupStrainer::searchTag(), python.rootplot.utilities.Hist::TGraph(), python.rootplot.utilities.Hist::TH1F(), Vispa.Views.PropertyView.Property::valueChanged(), counter.Counter::write(), and average.Average::write().

template<typename ScannerT >
rule<ScannerT> Mapper::definition< ScannerT >::ppair

Definition at line 83 of file DDLMap.cc.

template<typename ScannerT >
rule<ScannerT> Mapper::definition< ScannerT >::value