Gaudi Framework, version v23r2

Home   Generated: Thu Jun 28 2012
Public Member Functions

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.

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

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 Thu Jun 28 2012 23:27:52 for Gaudi Framework, version v23r2 by Doxygen version 1.7.2 written by Dimitri van Heesch, © 1997-2004