The Gaudi Framework  v29r0 (ff2e7097)
Vector.h
Go to the documentation of this file.
1 #ifndef GAUDIPYTHON_VECTOR_H
2 #define GAUDIPYTHON_VECTOR_H 1
3 // ============================================================================
4 // Include files
5 // ============================================================================
6 // STD & STL
7 // ============================================================================
8 #include <functional>
9 #include <vector>
10 // ============================================================================
11 // GaudiPython
12 // ============================================================================
14 // ============================================================================
15 
16 namespace GaudiPython
17 {
20  typedef Vector Row;
22 
28  template <class TYPE>
29  struct _identity : public std::unary_function<TYPE, TYPE> {
30  inline Vector::value_type operator()( const Vector::value_type& value ) const { return value; }
31  };
32 
33 } // end of namespace GaudiPython
34 #endif // GAUDIPYTHON_VECTOR_H
It is here due to &#39;missing&#39;(?) std::identity.
Definition: Vector.h:29
Vector::value_type operator()(const Vector::value_type &value) const
Definition: Vector.h:30
std::vector< double > Vector
useful type definition for implicit loos
Definition: Vector.h:19
GaudiPython.h GaudiPython/GaudiPython.h.
Definition: AlgDecorators.h:37
std::vector< Row > Matrix
Definition: Vector.h:21
Vector Row
Definition: Vector.h:20