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 {
20  public:
21 
24 
26  using value_type = std::vector<double>;
27 
29  DDVector();
30 
32  DDVector( const DDName & name );
33 
35  DDVector( const DDName & name, std::unique_ptr<std::vector<double> > value );
36 
38  size_t size() const { return rep().size(); }
39 
41  const value_type & values() const { return rep(); }
42 
44  double operator[](size_t pos) const { return rep()[pos]; }
45 
47  double 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 double() const { return rep()[0]; }
57 
59  operator std::vector<double>() const { return rep(); }
60 
62  operator std::vector<int>() const;
63 };
64 #endif
Definition: DDBase.h:10
double operator[](size_t pos) const
returns the value on position pos; does not check boundaries!
Definition: DDVector.h:44
size_t size() const
the size of the array of values
Definition: DDVector.h:38
DDName is used to identify DDD entities uniquely.
Definition: DDName.h:15
double value() const
return the first stored value; does not check boundaries!
Definition: DDVector.h:47
uint16_t size_type
value_type::const_iterator vectorBegin() const
read-only iterator pointing to the begin of the stored values
Definition: DDVector.h:50
std::ostream & operator<<(std::ostream &o, const DDVector &cons)
output operator for printing ...
Definition: DDVector.cc:20
const DDI::rep_traits< DDName, std::unique_ptr< std::vector< double > > >::reference rep() const
Definition: DDBase.h:80
Definition: value.py:1
a named constant corresponding to the DDL-XML tag <Constant> and <ConstantsVector> ...
Definition: DDVector.h:18
std::vector< double > value_type
value type of the managed object
Definition: DDVector.h:26
DDVector()
an uninitialized constant; one can assign an initialized constant to make it valid ...
Definition: DDVector.cc:5
const value_type & values() const
the stored values
Definition: DDVector.h:41
value_type::const_iterator vectorEnd() const
read-only iterator poining one place after the stored values
Definition: DDVector.h:53