CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes | Friends
DDLMap Class Referencefinal

DDLMap handles Map container. More...

#include <DDLMap.h>

Inheritance diagram for DDLMap:
DDXMLElement

Public Member Functions

 DDLMap (DDLElementRegistry *myreg)
 
ReadMapType< std::map< std::string, double > > & getMapOfMaps (void)
 
void preProcessElement (const std::string &name, const std::string &nmspace, DDCompactView &cpv) override
 Called by loadAttributes AFTER attributes are loaded. More...
 
void processElement (const std::string &name, const std::string &nmspace, DDCompactView &cpv) override
 Processing the element. More...
 
- Public Member Functions inherited from DDXMLElement
void appendText (const std::string &inText)
 append to the current (i.e. most recently added) More...
 
virtual std::vector< DDXMLAttribute >::const_iterator begin (void)
 
virtual void clear (void)
 clear this element's contents. More...
 
 DDXMLElement (DDLElementRegistry *myreg)
 Constructor. More...
 
 DDXMLElement (DDLElementRegistry *myreg, const bool &clearme)
 Constructor for autoClear element. More...
 
virtual std::vector< DDXMLAttribute >::const_iterator end (void)
 
virtual const std::string & get (const std::string &name, size_t aIndex=0) const
 Returns a specific value from the aIndex set of attributes. More...
 
virtual const std::string & getAttribute (const std::string &name) const
 Access to attributes by name. More...
 
virtual const DDXMLAttributegetAttributeSet (size_t aIndex=0) const
 Get a "row" of attributes, i.e. one attribute set. More...
 
virtual const DDName getDDName (const std::string &defaultNS, const std::string &attname=std::string("name"), size_t aIndex=0)
 
const std::string getText (size_t tindex=0) const
 retrieve the text blob. More...
 
virtual std::vector< std::string > getVectorAttribute (const std::string &name)
 Returns a set of values as a std::vector of strings, given the attribute name. More...
 
virtual bool gotText (void) const
 gotText()? kind of like gotMilk? Yes = text has already been encountered. More...
 
virtual bool isEmpty (void) const
 Have any elements of this type been encountered but not processed? More...
 
void loadAttributes (const std::string &elemName, const std::vector< std::string > &names, const std::vector< std::string > &values, const std::string &nmspace, DDCompactView &cpv)
 Load the element attributes. More...
 
void loadText (const std::string &inText)
 Used to load both text and XML comments into this object. More...
 
std::vector< DDXMLAttribute >::const_iterator & operator++ (int inc)
 Allow the elements of this type to be iterated over using ++ operator. More...
 
const std::string & parent (void) const
 access to parent element name More...
 
void setParent (const std::string &pename)
 Set parent element name to central list of names. More...
 
void setSelf (const std::string &sename)
 Set self element name to central list of names. More...
 
virtual size_t size (void) const
 Number of elements accumulated. More...
 
virtual void stream (std::ostream &os) const
 Allow for the elements to have their own streaming method, but also provide a default. More...
 
void throwError (const std::string &keyMessage) const
 format std::string for throw an error. More...
 
virtual ~DDXMLElement (void)=default
 Destructor. More...
 

Private Member Functions

void do_makeDouble (char const *str, char const *end)
 
void do_makeName (char const *str, char const *end)
 
void do_pair (char const *str, char const *end)
 
void errorOut (const char *str)
 

Private Attributes

double pDouble
 
dd_map_type pMap
 
ReadMapType< std::map< std::string, double > > pMapMap
 
std::string pName
 
std::string pNameSpace
 

Friends

class MapMakeDouble
 
class MapMakeName
 
class MapPair
 

Additional Inherited Members

- Protected Attributes inherited from DDXMLElement
DDLElementRegistrymyRegistry_
 

Detailed Description

DDLMap handles Map container.

Author
Michael Case

DDLMap.h - description

begin: Fri Nov 28, 2003 email: case@.nosp@m.ucdh.nosp@m.ep.uc.nosp@m.davi.nosp@m.s.edu

This is the Map container. It is a c++ stye std::map <std::string, double> and has a name associated with the Map for the DDD name-reference system.

Definition at line 33 of file DDLMap.h.

Constructor & Destructor Documentation

DDLMap::DDLMap ( DDLElementRegistry myreg)

Definition at line 56 of file DDLMap.cc.

57  : DDXMLElement( myreg )
58 {}
DDXMLElement(DDLElementRegistry *myreg)
Constructor.
Definition: DDXMLElement.cc:14

Member Function Documentation

void DDLMap::do_makeDouble ( char const *  str,
char const *  end 
)
private

Definition at line 183 of file DDLMap.cc.

References ClhepEvaluator::eval(), DDLElementRegistry::evaluator(), DDXMLElement::myRegistry_, pDouble, pNameSpace, and AlCaHLTBitMon_QueryRunRegistry::string.

184 {
185  std::string ts(str, end);
187 }
DDLElementRegistry * myRegistry_
Definition: DDXMLElement.h:172
std::string pNameSpace
Definition: DDLMap.h:53
virtual std::vector< DDXMLAttribute >::const_iterator end(void)
ClhepEvaluator & evaluator()
double pDouble
Definition: DDLMap.h:51
double eval(const std::string &ns, const std::string &expr)
#define str(s)
void DDLMap::do_makeName ( char const *  str,
char const *  end 
)
private

Definition at line 177 of file DDLMap.cc.

References pName, and AlCaHLTBitMon_QueryRunRegistry::string.

178 {
179  pName = std::string(str, end);
180 }
std::string pName
Definition: DDLMap.h:52
virtual std::vector< DDXMLAttribute >::const_iterator end(void)
#define str(s)
void DDLMap::do_pair ( char const *  str,
char const *  end 
)
private

Definition at line 171 of file DDLMap.cc.

References pDouble, pMap, and pName.

172 {
173  pMap[pName] = pDouble;
174 }
std::string pName
Definition: DDLMap.h:52
double pDouble
Definition: DDLMap.h:51
dd_map_type pMap
Definition: DDLMap.h:49
void DDLMap::errorOut ( const char *  str)
private

Definition at line 190 of file DDLMap.cc.

References mps_check::msg, AlCaHLTBitMon_QueryRunRegistry::string, and DDXMLElement::throwError().

Referenced by processElement().

191 {
192  std::string msg("\nDDLMap: Failed to parse the following: \n");
193  msg+= std::string(str);
194  msg+="\n as a Map element (comma separated list of name=value).";
195  throwError(msg);
196 }
void throwError(const std::string &keyMessage) const
format std::string for throw an error.
tuple msg
Definition: mps_check.py:279
#define str(s)
ReadMapType< std::map< std::string, double > > & DDLMap::getMapOfMaps ( void  )

Definition at line 199 of file DDLMap.cc.

References pMapMap.

200 {
201  return pMapMap;
202 }
ReadMapType< std::map< std::string, double > > pMapMap
Definition: DDLMap.h:50
void DDLMap::preProcessElement ( const std::string &  name,
const std::string &  nmspace,
DDCompactView cpv 
)
overridevirtual

Called by loadAttributes AFTER attributes are loaded.

The preProcessElement method can assume that the attributes are loaded and perform any code that is necessary at the start of an element.

This would allow users to call their own code to setup anything necessary for the continued processing of the child elements.

Reimplemented from DDXMLElement.

Definition at line 108 of file DDLMap.cc.

References pDouble, pMap, pName, and pNameSpace.

109 {
110  pName = "";
111  pMap.clear();
112  //pMapMap.clear(); only the DDLAlgorithm is allowed to clear this guy!
113  pDouble = 0.0;
114  pNameSpace = nmspace;
115 }
std::string pNameSpace
Definition: DDLMap.h:53
std::string pName
Definition: DDLMap.h:52
double pDouble
Definition: DDLMap.h:51
dd_map_type pMap
Definition: DDLMap.h:49
void DDLMap::processElement ( const std::string &  name,
const std::string &  nmspace,
DDCompactView cpv 
)
overridevirtual

Processing the element.

The processElement method completes any necessary work to process the XML element.

For example, this can be used to call the DDCore to make the geometry in memory. There is a default for this so that if not declared in the inheriting class, no processing is done.

Reimplemented from DDXMLElement.

Definition at line 118 of file DDLMap.cc.

References DDXMLElement::clear(), errorOut(), ClhepEvaluator::eval(), DDLElementRegistry::evaluator(), DDXMLElement::getAttributeSet(), DDXMLElement::getDDName(), DDXMLElement::getText(), info(), funct::m, DDXMLElement::myRegistry_, DDXMLElement::parent(), dumpparser::parse(), pMap, pMapMap, pNameSpace, AlCaHLTBitMon_QueryRunRegistry::string, and simpleEdmComparison::tName.

119 {
120  std::string tTextToParse = getText();
122  std::string tName = atts.find("name")->second;
123 
124  if (tTextToParse.empty())
125  {
126  errorOut("No std::string to parse!");
127  }
128 
129  // NOT IMPLEMENTED YET
130  if (atts.find("type") != atts.end() && atts.find("type")->second == "string")
131  {
132  errorOut("Map of type std::string is not supported yet.");
133  }
134 
135  Mapper mapGrammar{this};
136 
137  pMap.clear();
138 
139  parse_info<> info = boost::spirit::classic::parse(tTextToParse.c_str(), mapGrammar >> end_p, space_p);
140  if (!info.full)
141  {
142  errorOut("Does not conform to name=value, name=value... etc. of ddl Map element.");
143  }
144 
145  if (parent() == "Algorithm" || parent() == "SpecPar")
146  {
147  pMapMap[tName] = pMap;
148  }
149  else if (parent() == "ConstantsSection" || parent() == "DDDefinition")
150  {
151  dd_map_type tMap;
152  for (std::map<std::string, double>::const_iterator it = pMap.begin(); it != pMap.end(); ++it)
153  {
154  tMap[it->first] = it->second;
155  }
156  DDMap m ( getDDName(pNameSpace) , std::make_unique<dd_map_type>( tMap ));
157  // clear the map of maps, because in these elements we only have ONE at a time.
158  pMapMap.clear();
159  }
160 
161  std::string nEntries = atts.find("nEntries")->second;
162  if (pMap.size() !=
163  size_t(myRegistry_->evaluator().eval(pNameSpace, nEntries)))
164  {
165  errorOut("Number of entries found in Map text does not match number in attribute nEntries.");
166  }
167  clear();
168 }
ReadMapType< std::map< std::string, double > > pMapMap
Definition: DDLMap.h:50
static const TGPicture * info(bool iBackgroundIsBlack)
DDLElementRegistry * myRegistry_
Definition: DDXMLElement.h:172
virtual const DDXMLAttribute & getAttributeSet(size_t aIndex=0) const
Get a "row" of attributes, i.e. one attribute set.
Definition: DDXMLElement.cc:72
std::string pNameSpace
Definition: DDLMap.h:53
const std::string & parent(void) const
access to parent element name
a named constant corresponding to the DDL-XML tag <Constant> and <ConstantsVector> ...
Definition: DDMap.h:22
std::map< std::string, std::string > DDXMLAttribute
Definition: DDXMLElement.h:45
ClhepEvaluator & evaluator()
Definition: DDLMap.cc:38
def parse(path, config)
Definition: dumpparser.py:13
void errorOut(const char *str)
Definition: DDLMap.cc:190
double eval(const std::string &ns, const std::string &expr)
virtual void clear(void)
clear this element&#39;s contents.
Definition: DDXMLElement.cc:54
virtual const DDName getDDName(const std::string &defaultNS, const std::string &attname=std::string("name"), size_t aIndex=0)
Definition: DDXMLElement.cc:79
dd_map_type pMap
Definition: DDLMap.h:49
const std::string getText(size_t tindex=0) const
retrieve the text blob.

Friends And Related Function Documentation

friend class MapMakeDouble
friend

Definition at line 37 of file DDLMap.h.

friend class MapMakeName
friend

Definition at line 36 of file DDLMap.h.

friend class MapPair
friend

Definition at line 35 of file DDLMap.h.

Member Data Documentation

double DDLMap::pDouble
private

Definition at line 51 of file DDLMap.h.

Referenced by do_makeDouble(), do_pair(), and preProcessElement().

dd_map_type DDLMap::pMap
private

Definition at line 49 of file DDLMap.h.

Referenced by do_pair(), preProcessElement(), and processElement().

ReadMapType<std::map<std::string,double> > DDLMap::pMapMap
private

Definition at line 50 of file DDLMap.h.

Referenced by getMapOfMaps(), and processElement().

std::string DDLMap::pName
private

Definition at line 52 of file DDLMap.h.

Referenced by do_makeName(), do_pair(), and preProcessElement().

std::string DDLMap::pNameSpace
private

Definition at line 53 of file DDLMap.h.

Referenced by do_makeDouble(), preProcessElement(), and processElement().