Gaudi Framework, version v22r0

Home   Generated: 9 Feb 2011

GaudiUtils::GenericHash< T > Struct Template Reference

Generic hash implementation (for easy migration to the new Hash class). More...

#include <Hash.h>

Inheritance diagram for GaudiUtils::GenericHash< T >:
Inheritance graph
[legend]
Collaboration diagram for GaudiUtils::GenericHash< T >:
Collaboration graph
[legend]

List of all members.

Public Member Functions

std::size_t operator() (const T &key) const
 the generic hash function

Detailed Description

template<class T>
struct GaudiUtils::GenericHash< T >

Generic hash implementation (for easy migration to the new Hash class).

Definition at line 30 of file Hash.h.


Member Function Documentation

template<class T >
std::size_t GaudiUtils::GenericHash< T >::operator() ( const T &  key  )  const [inline]

the generic hash function

Definition at line 34 of file Hash.h.

00034                                                        {
00035       std::size_t res = 0 ;
00036       std::size_t len = sizeof(T) ;
00037       const char* p = reinterpret_cast<const char*>( &key );
00038       while( len-- ) { res = ( res << 1 ) ^ *p; ++p; }
00039       return res;
00040     }


The documentation for this struct was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines

Generated at Wed Feb 9 16:33:39 2011 for Gaudi Framework, version v22r0 by Doxygen version 1.6.2 written by Dimitri van Heesch, © 1997-2004