CMS 3D CMS Logo

DDStrVector.h
Go to the documentation of this file.
1 #ifndef DETECTOR_DESCRIPTION_CORE_DDSTRVECTOR_H
2 #define DETECTOR_DESCRIPTION_CORE_DDSTRVECTOR_H
3 
4 #include <iostream>
5 #include <memory>
6 #include <string>
7 #include <vector>
8 
11 
12 class DDStrVector;
13 
15 std::ostream & operator<<( std::ostream & o, const DDStrVector & cons );
16 
18 class DDStrVector : public DDBase< DDName, std::unique_ptr<std::vector<std::string>>>
19 {
20  public:
21 
24 
26  using value_type = std::vector<std::string>;
27 
29  DDStrVector();
30 
32  DDStrVector( const DDName & name );
33 
35  DDStrVector( const DDName & name, std::unique_ptr<std::vector<std::string>> value );
36 
38  size_t size() const { return rep().size(); }
39 
41  const value_type & values() const { return rep(); }
42 
44  std::string operator[]( size_t pos ) const { return rep()[pos]; }
45 
47  std::string value() const { return rep()[0]; }
48 
50  value_type::const_iterator vectorBegin() const { return rep().begin(); }
51 
53  value_type::const_iterator vectorEnd() const { return rep().end(); }
54 
56  operator std::string() const { return rep()[0]; }
57 
59  operator std::vector<std::string>() const { return rep(); }
60 
61 };
62 
63 #endif
Definition: DDBase.h:10
DDStrVector()
an uninitialized constant; one can assign an initialized constant to make it valid ...
Definition: DDStrVector.cc:5
DDName is used to identify DDD entities uniquely.
Definition: DDName.h:15
a named constant corresponding to the DDL-XML tag <Constant> and <ConstantsStrVector> ...
Definition: DDStrVector.h:18
size_t size() const
the size of the array of values
Definition: DDStrVector.h:38
uint16_t size_type
value_type::const_iterator vectorEnd() const
read-only iterator poining one place after the stored values
Definition: DDStrVector.h:53
const DDI::rep_traits< DDName, std::unique_ptr< std::vector< std::string > > >::reference rep() const
Definition: DDBase.h:80
value_type::const_iterator vectorBegin() const
read-only iterator pointing to the begin of the stored values
Definition: DDStrVector.h:50
std::ostream & operator<<(std::ostream &o, const DDStrVector &cons)
output operator for printing ...
Definition: DDStrVector.cc:20
Definition: value.py:1
std::string value() const
return the first stored value; does not check boundaries!
Definition: DDStrVector.h:47
const value_type & values() const
the stored values
Definition: DDStrVector.h:41
std::vector< std::string > value_type
value type of the managed object
Definition: DDStrVector.h:26
std::string operator[](size_t pos) const
returns the value on position pos; does not check boundaries!
Definition: DDStrVector.h:44