#include <hash_vector.hh>
template<class
H, class T>
class hashVector< H, T >
Definition at line 32 of file hash_vector.hh.
◆ hashVector() [1/3]
template<class
H , class T >
Definition at line 54 of file hash_vector.hh.
55 : vector<T>(max), hashfun(f)
56{
57
58}
◆ hashVector() [2/3]
template<class
H , class T >
Definition at line 63 of file hash_vector.hh.
64 : vector<T>(max, initialValue), hashfun(f)
65{
66
67}
◆ hashVector() [3/3]
template<class
H , class T >
Definition at line 72 of file hash_vector.hh.
73 : vector<T>(
v), hashfun(
v.hashfun)
74{
75
76}
**********Class see also m_nmax DOUBLE PRECISION m_amel DOUBLE PRECISION m_x2 DOUBLE PRECISION m_alfinv DOUBLE PRECISION m_Xenph INTEGER m_KeyWtm INTEGER m_idyfs DOUBLE PRECISION m_zini DOUBLE PRECISION m_q2 DOUBLE PRECISION m_Wt_KF DOUBLE PRECISION m_WtCut INTEGER m_KFfin *COMMON c_KarLud $ !Input CMS energy[GeV] $ !CMS energy after beam spread beam strahlung[GeV] $ !Beam energy spread[GeV] $ !z boost due to beam spread $ !electron beam mass *ff pair spectrum $ !minimum v
◆ operator[]() [1/2]
template<class
H , class T >
Definition at line 81 of file hash_vector.hh.
82{
83
84
85 return vector<T>::operator[] ((*hashfun)(index) % size());
86}
◆ operator[]() [2/2]
template<class
H , class T >
const T & hashVector< H, T >::operator[] |
( |
const H & | index | ) |
const |
|
inline |
Definition at line 90 of file hash_vector.hh.
91{
92
93
94 return vector<T>::operator[] ((*hashfun)(index) % size());
95}
The documentation for this class was generated from the following file: