Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
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 {
19  typedef Vector Row;
21 
27  struct _identity {
28  template <typename T>
29  T operator()( const T& value ) const {
30  return value;
31  }
32  };
33 
34 } // end of namespace GaudiPython
35 #endif // GAUDIPYTHON_VECTOR_H
It is here due to &#39;missing&#39;(?) std::identity.
Definition: Vector.h:27
std::vector< double > Vector
useful type definition for implicit loos
Definition: Vector.h:18
GaudiPython.h GaudiPython/GaudiPython.h.
Definition: AlgDecorators.h:37
std::vector< Row > Matrix
Definition: Vector.h:20
T operator()(const T &value) const
Definition: Vector.h:29
Vector Row
Definition: Vector.h:19