CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
PythonParameterSet Class Reference

#include <PythonParameterSet.h>

Public Member Functions

void addNewFileInPath (bool tracked, std::string const &name, std::string const &value)
 
template<typename T >
void addParameter (bool tracked, std::string const &name, T const &value)
 
template<typename T >
void addParameters (bool tracked, std::string const &name, boost::python::list value)
 unfortunate side effect: destroys the original list! More...
 
void addPSet (bool tracked, std::string const &name, PythonParameterSet const &ppset)
 
void addVPSet (bool tracked, std::string const &name, boost::python::list value)
 
std::string dump () const
 
template<typename T >
T getParameter (bool tracked, std::string const &name) const
 
template<typename T >
boost::python::list getParameters (bool tracked, std::string const &name) const
 templated on the type of the contained object More...
 
PythonParameterSet getPSet (bool tracked, std::string const &name) const
 
boost::python::list getVPSet (bool tracked, std::string const &name)
 
edm::ESInputTag newESInputTag (std::string const &module, std::string const &data)
 
edm::EventID newEventID (unsigned int run, unsigned int lumi, unsigned int event)
 
edm::EventRange newEventRange (unsigned int start, unsigned int startLumi, unsigned int startSub, unsigned int end, unsigned int endLumi, unsigned int endSub)
 
edm::InputTag newInputTag (std::string const &label, std::string const &instance, std::string const &process)
 
edm::LuminosityBlockID newLuminosityBlockID (unsigned int run, unsigned int lumi)
 
edm::LuminosityBlockRange newLuminosityBlockRange (unsigned int start, unsigned int startSub, unsigned int end, unsigned int endSub)
 
PythonParameterSet newPSet () const
 
edm::ParameterSetpset ()
 
edm::ParameterSet const & pset () const
 
 PythonParameterSet ()
 
 PythonParameterSet (edm::ParameterSet const &p)
 

Private Attributes

edm::ParameterSet theParameterSet
 

Detailed Description

Definition at line 18 of file PythonParameterSet.h.

Constructor & Destructor Documentation

PythonParameterSet::PythonParameterSet ( )

Definition at line 4 of file PythonParameterSet.cc.

Referenced by getPSet(), getVPSet(), and newPSet().

6 {
7 }
edm::ParameterSet theParameterSet
PythonParameterSet::PythonParameterSet ( edm::ParameterSet const &  p)
inline

Definition at line 22 of file PythonParameterSet.h.

Member Function Documentation

void PythonParameterSet::addNewFileInPath ( bool  tracked,
std::string const &  name,
std::string const &  value 
)

Definition at line 43 of file PythonParameterSet.cc.

References addParameter().

Referenced by BOOST_PYTHON_MODULE().

44 {
46 }
void addParameter(bool tracked, std::string const &name, T const &value)
template<typename T >
void PythonParameterSet::addParameter ( bool  tracked,
std::string const &  name,
T const &  value 
)
inline

Definition at line 40 of file PythonParameterSet.h.

References mergeVDriftHistosByStation::name, theParameterSet, and relativeConstraints::value.

Referenced by editorTools.UserCodeTool::__init__(), metTools.AddMETCollection::__init__(), trackTools.MakeAODTrackCandidates::__init__(), HiCoreTools.RestrictInputToAOD::__init__(), coreTools.RunOnData::__init__(), metUncertaintyTools.RunMEtUncertainties::__init__(), jetTools.AddJetCollection::__init__(), Vispa.Plugins.ConfigEditor.ToolDataAccessor.ImportTool::__init__(), editorTools.ChangeSource::__init__(), HiCoreTools.RemoveMCMatching::__init__(), cmsswVersionTools.PickRelValInputFiles::__init__(), coreTools.RemoveMCMatching::__init__(), trackTools.MakePATTrackCandidates::__init__(), trigTools.SwitchOnTrigger::__init__(), HiCoreTools.RemoveAllPATObjectsBut::__init__(), HiCoreTools.RemoveSpecificPATObjects::__init__(), trigTools.SwitchOnTriggerStandAlone::__init__(), trackTools.MakeTrackCandidates::__init__(), tauTools.AddTauCollection::__init__(), trigTools.SwitchOnTriggerMatching::__init__(), HiCoreTools.RemoveCleaning::__init__(), HiCoreTools.AddCleaning::__init__(), trigTools.SwitchOnTriggerMatchingStandAlone::__init__(), jetTools.SwitchJetCollection::__init__(), trigTools.SwitchOnTriggerMatchEmbedding::__init__(), jetTools.AddJetID::__init__(), jetTools.SetTagInfos::__init__(), addNewFileInPath(), addParameters(), addPSet(), and addVPSet().

40  {
41  if(tracked) {
42  theParameterSet.template addParameter<T>(name, value);
43  } else {
44  theParameterSet.template addUntrackedParameter<T>(name, value);
45  }
46  }
edm::ParameterSet theParameterSet
template<typename T >
void PythonParameterSet::addParameters ( bool  tracked,
std::string const &  name,
boost::python::list  value 
)
inline

unfortunate side effect: destroys the original list!

Definition at line 60 of file PythonParameterSet.h.

References addParameter(), findQualityFiles::v, and relativeConstraints::value.

61  {
62  std::vector<T> v = edm::toVector<T>(value);
63  addParameter(tracked, name, v);
64  }
void addParameter(bool tracked, std::string const &name, T const &value)
void PythonParameterSet::addPSet ( bool  tracked,
std::string const &  name,
PythonParameterSet const &  ppset 
)
inline

these custom classes do seem to be a hassle to wrap, compared to, say, InputTag maybe we will need to template these someday

Definition at line 70 of file PythonParameterSet.h.

References addParameter(), and theParameterSet.

Referenced by BOOST_PYTHON_MODULE().

71  {
72  addParameter(tracked, name, ppset.theParameterSet);
73  }
void addParameter(bool tracked, std::string const &name, T const &value)
void PythonParameterSet::addVPSet ( bool  tracked,
std::string const &  name,
boost::python::list  value 
)

Definition at line 10 of file PythonParameterSet.cc.

References addParameter(), findQualityFiles::v, and relativeConstraints::value.

Referenced by BOOST_PYTHON_MODULE().

12 {
13  std::vector<PythonParameterSet> v
14  = edm::toVector<PythonParameterSet>(value);
15  std::vector<edm::ParameterSet> v2;
16  v2.reserve(v.size());
17  for(std::vector<PythonParameterSet>::iterator ppsetItr = v.begin(), ppsetItrEnd = v.end();
18  ppsetItr != ppsetItrEnd; ++ppsetItr)
19  {
20  v2.push_back(ppsetItr->theParameterSet);
21  }
22  addParameter(tracked, name, v2);
23 }
void addParameter(bool tracked, std::string const &name, T const &value)
std::string PythonParameterSet::dump ( void  ) const
inline

Definition at line 124 of file PythonParameterSet.h.

References edm::ParameterSet::dump(), and theParameterSet.

Referenced by BOOST_PYTHON_MODULE(), and PythonProcessDesc::dump().

124 {return theParameterSet.dump();}
edm::ParameterSet theParameterSet
std::string dump(unsigned int indent=0) const
template<typename T >
T PythonParameterSet::getParameter ( bool  tracked,
std::string const &  name 
) const
inline

Definition at line 27 of file PythonParameterSet.h.

References mergeVDriftHistosByStation::name, query::result, and theParameterSet.

27  {
28  T result;
29  if(tracked) {
30  result = theParameterSet.template getParameter<T>(name);
31  } else {
32  result = theParameterSet.template getUntrackedParameter<T>(name);
33  }
34  return result;
35  }
edm::ParameterSet theParameterSet
tuple result
Definition: query.py:137
long double T
template<typename T >
boost::python::list PythonParameterSet::getParameters ( bool  tracked,
std::string const &  name 
) const
inline

templated on the type of the contained object

Definition at line 52 of file PythonParameterSet.h.

References mergeVDriftHistosByStation::name, edm::toPythonList(), and findQualityFiles::v.

52  {
53  std::vector<T> v = getParameter<std::vector<T> >(tracked, name);
54  return edm::toPythonList(v);
55  }
boost::python::list toPythonList(const std::vector< T > &v)
Definition: PythonWrapper.h:16
PythonParameterSet PythonParameterSet::getPSet ( bool  tracked,
std::string const &  name 
) const
inline

Definition at line 76 of file PythonParameterSet.h.

References PythonParameterSet().

Referenced by BOOST_PYTHON_MODULE().

76  {
77  return PythonParameterSet(getParameter<edm::ParameterSet>(tracked, name));
78  }
boost::python::list PythonParameterSet::getVPSet ( bool  tracked,
std::string const &  name 
)

Definition at line 26 of file PythonParameterSet.cc.

References edm::ParameterSet::getParameterSetVector(), edm::ParameterSet::getUntrackedParameterSetVector(), ConfigFiles::l, list(), PythonParameterSet(), theParameterSet, and findQualityFiles::v.

Referenced by BOOST_PYTHON_MODULE().

27 {
28  std::vector<edm::ParameterSet> const& v =
30 
31  // convert to PythonParameterSets
33  for(std::vector<edm::ParameterSet>::const_iterator psetItr = v.begin(), psetItrEnd = v.end();
34  psetItr != psetItrEnd; ++psetItr)
35  {
36  l.append(PythonParameterSet(*psetItr));
37  }
38 
39  return l;
40 }
edm::ParameterSet theParameterSet
VParameterSet const & getParameterSetVector(std::string const &name) const
VParameterSet getUntrackedParameterSetVector(std::string const &name, VParameterSet const &defaultValue) const
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger list("!*","!HLTx*"if it matches 2 triggers or more) will accept the event if all the matching triggers are FAIL.It will reject the event if any of the triggers are PASS or EXCEPTION(this matches the behavior of"!*"before the partial wildcard feature was incorporated).Triggers which are in the READY state are completely ignored.(READY should never be returned since the trigger paths have been run
edm::ESInputTag PythonParameterSet::newESInputTag ( std::string const &  module,
std::string const &  data 
)
inline

Definition at line 93 of file PythonParameterSet.h.

Referenced by BOOST_PYTHON_MODULE().

94  {
95  return edm::ESInputTag(module, data);
96  }
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
Definition: vlib.h:208
edm::EventID PythonParameterSet::newEventID ( unsigned int  run,
unsigned int  lumi,
unsigned int  event 
)
inline

Definition at line 98 of file PythonParameterSet.h.

Referenced by BOOST_PYTHON_MODULE().

98  {
99  return edm::EventID(run, lumi, event);
100  }
tuple lumi
Definition: fjr2json.py:35
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
edm::EventRange PythonParameterSet::newEventRange ( unsigned int  start,
unsigned int  startLumi,
unsigned int  startSub,
unsigned int  end,
unsigned int  endLumi,
unsigned int  endSub 
)
inline

Definition at line 111 of file PythonParameterSet.h.

Referenced by BOOST_PYTHON_MODULE().

112  {
113  return edm::EventRange(start, startLumi, startSub, end, endLumi, endSub);
114  }
tuple start
Check for commandline option errors.
Definition: dqm_diff.py:58
#define end
Definition: vmac.h:37
edm::InputTag PythonParameterSet::newInputTag ( std::string const &  label,
std::string const &  instance,
std::string const &  process 
)
inline

Definition at line 87 of file PythonParameterSet.h.

Referenced by BOOST_PYTHON_MODULE().

89  {
91  }
static PFTauRenderPlugin instance
tuple process
Definition: LaserDQM_cfg.py:3
edm::LuminosityBlockID PythonParameterSet::newLuminosityBlockID ( unsigned int  run,
unsigned int  lumi 
)
inline

Definition at line 102 of file PythonParameterSet.h.

Referenced by BOOST_PYTHON_MODULE().

edm::LuminosityBlockRange PythonParameterSet::newLuminosityBlockRange ( unsigned int  start,
unsigned int  startSub,
unsigned int  end,
unsigned int  endSub 
)
inline

Definition at line 106 of file PythonParameterSet.h.

Referenced by BOOST_PYTHON_MODULE().

107  {
108  return edm::LuminosityBlockRange(start, startSub, end, endSub);
109  }
tuple start
Check for commandline option errors.
Definition: dqm_diff.py:58
#define end
Definition: vmac.h:37
PythonParameterSet PythonParameterSet::newPSet ( ) const
inline

Definition at line 118 of file PythonParameterSet.h.

References PythonParameterSet().

Referenced by BOOST_PYTHON_MODULE().

edm::ParameterSet& PythonParameterSet::pset ( )
inline

Definition at line 120 of file PythonParameterSet.h.

References theParameterSet.

Referenced by PythonProcessDesc::parameterSet(), and edm::readPSetsFrom().

120 {return theParameterSet;}
edm::ParameterSet theParameterSet
edm::ParameterSet const& PythonParameterSet::pset ( ) const
inline

Definition at line 122 of file PythonParameterSet.h.

References theParameterSet.

122 {return theParameterSet;}
edm::ParameterSet theParameterSet

Member Data Documentation

edm::ParameterSet PythonParameterSet::theParameterSet
private

Definition at line 127 of file PythonParameterSet.h.

Referenced by addParameter(), addPSet(), dump(), getParameter(), getVPSet(), and pset().