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 Member Functions | Private Attributes | Friends
DDLMap Class Reference

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)
 Called by loadAttributes AFTER attributes are loaded. More...
 
void processElement (const std::string &name, const std::string &nmspace, DDCompactView &cpv)
 Processing the element. More...
 
virtual ~DDLMap (void)
 
- 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)
 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

- Static Public Member Functions inherited from DDXMLElement
static std::string itostr (int i)
 WARNING: abused by other classes in this system: yet another conversion from int to std::string... More...
 
- 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 58 of file DDLMap.h.

Constructor & Destructor Documentation

DDLMap::DDLMap ( DDLElementRegistry myreg)

Definition at line 18 of file DDLMap.cc.

19  : DDXMLElement( myreg )
20 {}
DDXMLElement(DDLElementRegistry *myreg)
Constructor.
Definition: DDXMLElement.cc:15
DDLMap::~DDLMap ( void  )
virtual

Definition at line 22 of file DDLMap.cc.

23 {}

Member Function Documentation

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

Definition at line 155 of file DDLMap.cc.

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

Referenced by MapMakeDouble::operator()().

156 {
157  std::string ts(str, end);
159 }
DDLElementRegistry * myRegistry_
Definition: DDXMLElement.h:186
std::string pNameSpace
Definition: DDLMap.h:81
virtual std::vector< DDXMLAttribute >::const_iterator end(void)
ClhepEvaluator & evaluator()
double pDouble
Definition: DDLMap.h:79
double eval(const std::string &ns, const std::string &expr)
void DDLMap::do_makeName ( char const *  str,
char const *  end 
)
private

Definition at line 149 of file DDLMap.cc.

References pName, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by MapMakeName::operator()().

150 {
151  pName = std::string(str, end);
152 }
std::string pName
Definition: DDLMap.h:80
virtual std::vector< DDXMLAttribute >::const_iterator end(void)
void DDLMap::do_pair ( char const *  str,
char const *  end 
)
private

Definition at line 143 of file DDLMap.cc.

References pDouble, pMap, and pName.

Referenced by MapPair::operator()().

144 {
145  pMap[pName] = pDouble;
146 }
std::string pName
Definition: DDLMap.h:80
double pDouble
Definition: DDLMap.h:79
dd_map_type pMap
Definition: DDLMap.h:77
void DDLMap::errorOut ( const char *  str)
private

Definition at line 162 of file DDLMap.cc.

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

Referenced by processElement().

163 {
164  std::string msg("\nDDLMap: Failed to parse the following: \n");
165  msg+= std::string(str);
166  msg+="\n as a Map element (comma separated list of name=value).";
167  throwError(msg);
168 }
void throwError(const std::string &keyMessage) const
format std::string for throw an error.
ReadMapType< std::map< std::string, double > > & DDLMap::getMapOfMaps ( void  )

Definition at line 171 of file DDLMap.cc.

References pMapMap.

Referenced by DDLAlgorithm::processElement().

172 {
173  return pMapMap;
174 }
ReadMapType< std::map< std::string, double > > pMapMap
Definition: DDLMap.h:78
void DDLMap::preProcessElement ( const std::string &  name,
const std::string &  nmspace,
DDCompactView cpv 
)
virtual

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 76 of file DDLMap.cc.

References pDouble, pMap, pName, and pNameSpace.

77 {
78  pName = "";
79  pMap.clear() ;
80  //pMapMap.clear(); only the DDLAlgorithm is allowed to clear this guy!
81  pDouble = 0.0;
82  pNameSpace = nmspace;
83 }
std::string pNameSpace
Definition: DDLMap.h:81
std::string pName
Definition: DDLMap.h:80
double pDouble
Definition: DDLMap.h:79
dd_map_type pMap
Definition: DDLMap.h:77
void DDLMap::processElement ( const std::string &  name,
const std::string &  nmspace,
DDCompactView cpv 
)
virtual

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 86 of file DDLMap.cc.

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

87 {
88  DCOUT_V('P', "DDLMap::processElement started");
89 
90  std::string tTextToParse = getText();
92  std::string tName = atts.find("name")->second;
93 
94  if (tTextToParse.size() == 0)
95  {
96  errorOut("No std::string to parse!");
97  }
98 
99  // NOT IMPLEMENTED YET
100  if (atts.find("type") != atts.end() && atts.find("type")->second == "string")
101  {
102  errorOut("Map of type std::string is not supported yet.");
103  }
104 
105  Mapper mapGrammar;
106 
107  pMap.clear();
108 
109  parse_info<> info = boost::spirit::classic::parse(tTextToParse.c_str(), mapGrammar >> end_p, space_p);
110  if (!info.full)
111  {
112  errorOut("Does not conform to name=value, name=value... etc. of ddl Map element.");
113  }
114 
115  if (parent() == "Algorithm" || parent() == "SpecPar")
116  {
117  pMapMap[tName] = pMap;
118  }
119  else if (parent() == "ConstantsSection" || parent() == "DDDefinition")
120  {
121  dd_map_type * tMap = new dd_map_type;
122  for (std::map<std::string, double>::const_iterator it = pMap.begin(); it != pMap.end(); ++it)
123  {
124  (*tMap)[it->first] = it->second;
125  }
126  DDMap m ( getDDName(pNameSpace) , tMap);
127  // clear the map of maps, because in these elements we only have ONE at a time.
128  pMapMap.clear();
129  }
130 
131  std::string nEntries = atts.find("nEntries")->second;
132  if (pMap.size() !=
133  size_t(myRegistry_->evaluator().eval(pNameSpace, nEntries)))
134  {
135  errorOut("Number of entries found in Map text does not match number in attribute nEntries.");
136  }
137  clear();
138 
139  DCOUT_V('P', "DDLMap::processElement completed");
140 }
ReadMapType< std::map< std::string, double > > pMapMap
Definition: DDLMap.h:78
static const TGPicture * info(bool iBackgroundIsBlack)
DDLElementRegistry * myRegistry_
Definition: DDXMLElement.h:186
Evaluator * parse(const T &text)
ReadMapType< double > dd_map_type
simply a std::map&lt;std::string,double&gt; supporting an addional operator[] const
Definition: DDMap.h:16
virtual const DDXMLAttribute & getAttributeSet(size_t aIndex=0) const
Get a &quot;row&quot; of attributes, i.e. one attribute set.
Definition: DDXMLElement.cc:79
std::string pNameSpace
Definition: DDLMap.h:81
const std::string & parent(void) const
access to parent element name
a named constant corresponding to the DDL-XML tag &lt;Constant&gt; and &lt;ConstantsVector&gt; ...
Definition: DDMap.h:19
std::map< std::string, std::string > DDXMLAttribute
Definition: DDXMLElement.h:55
ClhepEvaluator & evaluator()
Definition: DDLMap.h:16
#define DCOUT_V(M_v_Y, M_v_S)
Definition: DDdebug.h:54
void errorOut(const char *str)
Definition: DDLMap.cc:162
double eval(const std::string &ns, const std::string &expr)
virtual void clear(void)
clear this element&#39;s contents.
Definition: DDXMLElement.cc:61
virtual const DDName getDDName(const std::string &defaultNS, const std::string &attname=std::string("name"), size_t aIndex=0)
Definition: DDXMLElement.cc:86
dd_map_type pMap
Definition: DDLMap.h:77
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 62 of file DDLMap.h.

friend class MapMakeName
friend

Definition at line 61 of file DDLMap.h.

friend class MapPair
friend

Definition at line 60 of file DDLMap.h.

Member Data Documentation

double DDLMap::pDouble
private

Definition at line 79 of file DDLMap.h.

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

dd_map_type DDLMap::pMap
private

Definition at line 77 of file DDLMap.h.

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

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

Definition at line 78 of file DDLMap.h.

Referenced by getMapOfMaps(), and processElement().

std::string DDLMap::pName
private

Definition at line 80 of file DDLMap.h.

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

std::string DDLMap::pNameSpace
private

Definition at line 81 of file DDLMap.h.

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