CMS 3D CMS Logo

DDVector.h
Go to the documentation of this file.
1 #ifndef DDVector_h
2 #define DDVector_h
3 
6 #include <memory>
7 #include <vector>
8 #include <iostream>
9 
10 class DDVector;
11 
13 std::ostream& operator<<(std::ostream& o, const DDVector& cons);
14 
15 //typedef std::vector<double> dd_constant_type;
16 
18 class DDVector : public DDBase<DDName, std::unique_ptr<std::vector<double> > > {
19 public:
22 
24  using value_type = std::vector<double>;
25 
27  DDVector();
28 
30  DDVector(const DDName& name);
31 
33  DDVector(const DDName& name, std::unique_ptr<std::vector<double> > value);
34 
36  size_t size() const { return rep().size(); }
37 
39  const value_type& values() const { return rep(); }
40 
42  double operator[](size_t pos) const { return rep()[pos]; }
43 
45  double value() const { return rep()[0]; }
46 
48  value_type::const_iterator vectorBegin() const { return rep().begin(); }
49 
51  value_type::const_iterator vectorEnd() const { return rep().end(); }
52 
54  operator double() const { return rep()[0]; }
55 
57  operator std::vector<double>() const { return rep(); }
58 
60  operator std::vector<int>() const;
61 };
62 #endif
Definition: DDBase.h:10
double value() const
return the first stored value; does not check boundaries!
Definition: DDVector.h:45
size_t size() const
the size of the array of values
Definition: DDVector.h:36
DDName is used to identify DDD entities uniquely.
Definition: DDName.h:17
const DDI::rep_traits< DDName, std::unique_ptr< std::vector< double > > >::reference rep() const
Definition: DDBase.h:65
std::unique_ptr< T, impl::DeviceDeleter > unique_ptr
uint16_t size_type
std::ostream & operator<<(std::ostream &o, const DDVector &cons)
output operator for printing ...
Definition: DDVector.cc:11
value_type::const_iterator vectorEnd() const
read-only iterator poining one place after the stored values
Definition: DDVector.h:51
Definition: value.py:1
a named constant corresponding to the DDL-XML tag <Constant> and <ConstantsVector> ...
Definition: DDVector.h:18
double operator[](size_t pos) const
returns the value on position pos; does not check boundaries!
Definition: DDVector.h:42
std::vector< double > value_type
value type of the managed object
Definition: DDVector.h:24
DDVector()
an uninitialized constant; one can assign an initialized constant to make it valid ...
Definition: DDVector.cc:5
value_type::const_iterator vectorBegin() const
read-only iterator pointing to the begin of the stored values
Definition: DDVector.h:48
const value_type & values() const
the stored values
Definition: DDVector.h:39