CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Public Attributes | Private Member Functions | Friends
SiStripConfObject Class Reference

#include <SiStripConfObject.h>

Public Types

typedef std::map< std::string, std::string > parMap
 

Public Member Functions

template<class valueType >
valueType get (const std::string &name) const
 
bool isParameter (const std::string &name) const
 
void printDebug (std::stringstream &ss, const TrackerTopology *trackerTopo) const
 Prints the full list of parameters. More...
 
void printSummary (std::stringstream &ss, const TrackerTopology *trackerTopo) const
 Prints the full list of parameters. More...
 
template<class valueType >
bool put (const std::string &name, const valueType &inputValue)
 
 SiStripConfObject ()
 
template<class valueType >
bool update (const std::string &name, const valueType &inputValue)
 

Public Attributes

parMap parameters
 

Private Member Functions

template<class Archive >
void serialize (Archive &ar, const unsigned int version)
 

Friends

class boost::serialization::access
 
template<typename CondSerializationT , typename Enabled >
struct cond::serialization::access
 

Detailed Description

Author M. De Mattia - 16/11/2009

Simple class used to store configuration values.
It stores a map<std::string, std::string> with all the parameters and their values.
The put and get methods are provided to store and access the parameters.
The put method retuns a bool which is true if the insertion was successuful. If the parameter is already existing the insertion will not happen and the return value will be false.
The get method is templated and works like the getParameter<type> of the framework.
The isParameter method can be used to check whether a parameter exists. It will return a bool with the result.
The printSummary and printDebug method return both the full list of parameters.

Definition at line 31 of file SiStripConfObject.h.

Member Typedef Documentation

typedef std::map<std::string, std::string> SiStripConfObject::parMap

Definition at line 91 of file SiStripConfObject.h.

Constructor & Destructor Documentation

SiStripConfObject::SiStripConfObject ( )
inline

Definition at line 34 of file SiStripConfObject.h.

34 {}

Member Function Documentation

template<class valueType >
valueType SiStripConfObject::get ( const std::string &  name) const
inline
bool SiStripConfObject::isParameter ( const std::string &  name) const
inline

Definition at line 81 of file SiStripConfObject.h.

References printDebug(), and printSummary().

Referenced by StripCPE::StripCPE().

82  {
83  return( parameters.find(name) != parameters.end() );
84  }
void SiStripConfObject::printDebug ( std::stringstream &  ss,
const TrackerTopology trackerTopo 
) const

Prints the full list of parameters.

Definition at line 121 of file SiStripConfObject.cc.

References printSummary().

Referenced by APVCyclePhaseProducerFromL1TS::beginRun(), and isParameter().

122 {
123  printSummary(ss, trackerTopo);
124 }
void printSummary(std::stringstream &ss, const TrackerTopology *trackerTopo) const
Prints the full list of parameters.
void SiStripConfObject::printSummary ( std::stringstream &  ss,
const TrackerTopology trackerTopo 
) const

Prints the full list of parameters.

Definition at line 113 of file SiStripConfObject.cc.

Referenced by isParameter(), and printDebug().

114 {
115  parMap::const_iterator it = parameters.begin();
116  for( ; it != parameters.end(); ++it ) {
117  ss << "parameter name = " << it->first << " value = " << it->second << std::endl;
118  }
119 }
template<class valueType >
bool SiStripConfObject::put ( const std::string &  name,
const valueType &  inputValue 
)
inline

Definition at line 37 of file SiStripConfObject.h.

38  {
39  std::stringstream ss;
40  ss << inputValue;
41  if( parameters.insert(std::make_pair(name, ss.str())).second ) return true;
42  return false;
43  }
template<class Archive >
void SiStripConfObject::serialize ( Archive &  ar,
const unsigned int  version 
)
private
template<class valueType >
bool SiStripConfObject::update ( const std::string &  name,
const valueType &  inputValue 
)
inline

Updating the value stored as 'name' with 'inputValue'. False if parameter 'name' does not exist (and nothing is done then - use put(..) instead!), otherwise true.

Definition at line 50 of file SiStripConfObject.h.

References gather_cfg::cout.

Referenced by progressbar.ProgressBar::__next__(), MatrixUtil.Matrix::__setitem__(), MatrixUtil.Steps::__setitem__(), Vispa.Gui.VispaWidget.VispaWidget::autosize(), Vispa.Views.LineDecayView.LineDecayContainer::createObject(), Vispa.Views.LineDecayView.LineDecayContainer::deselectAllObjects(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::deselectAllWidgets(), Vispa.Gui.VispaWidget.VispaWidget::enableAutosizing(), dqm-mbProfile.Profile::finish(), progressbar.ProgressBar::finish(), Vispa.Gui.MenuWidget.MenuWidget::leaveEvent(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::mouseMoveEvent(), Vispa.Gui.MenuWidget.MenuWidget::mouseMoveEvent(), Vispa.Views.LineDecayView.LineDecayContainer::mouseMoveEvent(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::mouseReleaseEvent(), Vispa.Views.LineDecayView.LineDecayContainer::objectMoved(), MatrixUtil.Steps::overwrite(), Vispa.Views.LineDecayView.LineDecayContainer::removeObject(), Vispa.Gui.ConnectableWidget.ConnectableWidget::removePorts(), Vispa.Gui.FindDialog.FindDialog::reset(), Vispa.Gui.PortConnection.PointToPointConnection::select(), Vispa.Gui.VispaWidget.VispaWidget::select(), Vispa.Views.LineDecayView.LineDecayContainer::select(), Vispa.Gui.VispaWidget.VispaWidget::setText(), Vispa.Gui.VispaWidget.VispaWidget::setTitle(), Vispa.Gui.ZoomableWidget.ZoomableWidget::setZoom(), Vispa.Views.LineDecayView.LineDecayContainer::setZoom(), and Vispa.Gui.PortConnection.PointToPointConnection::updateConnection().

51  {
52  parMap::iterator it = parameters.find(name);
53  if (it == parameters.end()) {
54  std::cout << "WARNING in SiStripConfObject::update: parameter " << name << " not found, "
55  << "so cannot be updated to '" << inputValue << "'." << std::endl;
56  return false;
57  } else {
58  std::stringstream ss;
59  ss << inputValue;
60  it->second = ss.str();
61  return true;
62  }
63  }

Friends And Related Function Documentation

friend class boost::serialization::access
friend

Definition at line 95 of file SiStripConfObject.h.

template<typename CondSerializationT , typename Enabled >
friend struct cond::serialization::access
friend

Definition at line 95 of file SiStripConfObject.h.

Member Data Documentation

parMap SiStripConfObject::parameters