CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes
edm::Hash< I > Class Template Reference

#include <Hash.h>

Public Types

typedef hash_detail::value_type value_type
 

Public Member Functions

value_type compactForm () const
 
 Hash ()
 
 Hash (value_type const &v)
 
 Hash (Hash< I > const &)
 
bool isCompactForm () const
 
bool isValid () const
 
bool operator!= (Hash< I > const &other) const
 
bool operator< (Hash< I > const &other) const
 
Hash< I > & operator= (Hash< I > const &iRHS)
 
bool operator== (Hash< I > const &other) const
 
bool operator> (Hash< I > const &other) const
 
std::ostream & print (std::ostream &os) const
 
void reset ()
 
size_t smallHash () const
 returns a short hash which can be used with hashing containers More...
 
void swap (Hash< I > &other)
 
void toDigest (cms::Digest &digest) const
 
void toString (std::string &result) const
 

Static Public Member Functions

static short Class_Version ()
 

Private Member Functions

template<typename Op >
bool compareUsing (Hash< I > const &iOther, Op op) const
 
void throwIfIllFormed () const
 

Private Attributes

value_type hash_
 

Detailed Description

template<int I>
class edm::Hash< I >

Definition at line 43 of file Hash.h.

Member Typedef Documentation

template<int I>
typedef hash_detail::value_type edm::Hash< I >::value_type

Definition at line 45 of file Hash.h.

Constructor & Destructor Documentation

template<int I>
edm::Hash< I >::Hash ( )
inline

Definition at line 118 of file Hash.h.

References edm::hash_detail::fixup_(), edm::Hash< I >::hash_, and findQualityFiles::v.

value_type hash_
Definition: Hash.h:106
std::string const & InvalidHash()
Definition: Hash.cc:11
template<int I>
edm::Hash< I >::Hash ( value_type const &  v)
explicit
template<int I>
edm::Hash< I >::Hash ( Hash< I > const &  iOther)
inline

Definition at line 128 of file Hash.h.

References edm::hash_detail::fixup_(), and edm::Hash< I >::hash_.

128  : hash_(iOther.hash_) {
130  }
value_type hash_
Definition: Hash.h:106
void fixup_(value_type &hash)
Definition: Hash.cc:32

Member Function Documentation

template<int I>
static short edm::Hash< I >::Class_Version ( )
inlinestatic

Definition at line 81 of file Hash.h.

81 {return 11;}
template<int I>
Hash< I >::value_type edm::Hash< I >::compactForm ( ) const
inline

Definition at line 214 of file Hash.h.

References edm::hash_detail::compactForm_(), and edm::Hash< I >::hash_.

Referenced by edm::StreamerOutputModuleBase::serializeRegistry().

214  {
216  }
value_type hash_
Definition: Hash.h:106
value_type compactForm_(value_type const &hash)
Definition: Hash.cc:19
template<int I>
template<typename Op >
bool edm::Hash< I >::compareUsing ( Hash< I > const &  iOther,
Op  op 
) const
inlineprivate

Definition at line 91 of file Hash.h.

Referenced by edm::Hash< I >::operator!=(), edm::Hash< I >::operator<(), edm::Hash< I >::operator==(), and edm::Hash< I >::operator>().

91  {
93  bool otherCF = hash_detail::isCompactForm_(iOther.hash_);
94  if(meCF == otherCF) {
95  return op(this->hash_,iOther.hash_);
96  }
97  //copy constructor will do compact form conversion
98  if(meCF) {
99  Hash<I> temp(iOther);
100  return op(this->hash_,temp.hash_);
101  }
102  Hash<I> temp(*this);
103  return op(temp.hash_,iOther.hash_);
104  }
value_type hash_
Definition: Hash.h:106
bool isCompactForm_(value_type const &hash)
Definition: Hash.cc:67
template<int I>
bool edm::Hash< I >::isCompactForm ( ) const
inline

Definition at line 230 of file Hash.h.

References edm::Hash< I >::hash_, and edm::hash_detail::isCompactForm_().

230  {
232  }
value_type hash_
Definition: Hash.h:106
bool isCompactForm_(value_type const &hash)
Definition: Hash.cc:67
template<int I>
bool edm::Hash< I >::isValid ( void  ) const
inline
template<int I>
bool edm::Hash< I >::operator!= ( Hash< I > const &  other) const
inline

Definition at line 179 of file Hash.h.

References edm::Hash< I >::compareUsing().

179  {
180  return this->compareUsing(other, std::not_equal_to<std::string>());
181  }
bool compareUsing(Hash< I > const &iOther, Op op) const
Definition: Hash.h:91
template<int I>
bool edm::Hash< I >::operator< ( Hash< I > const &  other) const
inline

Definition at line 158 of file Hash.h.

References edm::Hash< I >::compareUsing().

158  {
159  return this->compareUsing(other, std::less<std::string>());
160  }
bool compareUsing(Hash< I > const &iOther, Op op) const
Definition: Hash.h:91
template<int I>
Hash< I > & edm::Hash< I >::operator= ( Hash< I > const &  iRHS)
inline

Definition at line 135 of file Hash.h.

References edm::hash_detail::fixup_(), and edm::Hash< I >::hash_.

135  {
136  hash_ = iRHS.hash_;
138  return *this;
139  }
value_type hash_
Definition: Hash.h:106
void fixup_(value_type &hash)
Definition: Hash.cc:32
template<int I>
bool edm::Hash< I >::operator== ( Hash< I > const &  other) const
inline

Definition at line 172 of file Hash.h.

References edm::Hash< I >::compareUsing().

172  {
173  return this->compareUsing(other, std::equal_to<std::string>());
174  }
bool compareUsing(Hash< I > const &iOther, Op op) const
Definition: Hash.h:91
template<int I>
bool edm::Hash< I >::operator> ( Hash< I > const &  other) const
inline

Definition at line 165 of file Hash.h.

References edm::Hash< I >::compareUsing().

165  {
166  return this->compareUsing(other, std::greater<std::string>());
167  }
bool compareUsing(Hash< I > const &iOther, Op op) const
Definition: Hash.h:91
template<int I>
std::ostream & edm::Hash< I >::print ( std::ostream &  os) const
inline

Definition at line 186 of file Hash.h.

References edm::Hash< I >::hash_, and edm::hash_detail::print_().

186  {
187  return hash_detail::print_(os, hash_);
188  }
value_type hash_
Definition: Hash.h:106
std::ostream & print_(std::ostream &os, value_type const &hash)
Definition: Hash.cc:106
template<int I>
void edm::Hash< I >::reset ( void  )
inline

Definition at line 144 of file Hash.h.

References edm::Hash< I >::hash_, and edm::detail::InvalidHash().

Referenced by edm::EventSelector::acceptEvent(), edm::ProcessConfiguration::Transients::reset(), and edm::ProcessHistory::Transients::reset().

144  {
146  }
value_type hash_
Definition: Hash.h:106
std::string const & InvalidHash()
Definition: Hash.cc:11
template<int I>
size_t edm::Hash< I >::smallHash ( ) const
inline

returns a short hash which can be used with hashing containers

Definition at line 221 of file Hash.h.

References edm::Hash< I >::hash_, and edm::hash_detail::smallHash_().

Referenced by edm::dqh::parentage_hash::operator()(), edm::ParentageRegistry::key_hash::operator()(), edm::pset::Registry::key_hash::operator()(), and pat::TriggerObjectStandAlone::packP4().

221  {
223  }
value_type hash_
Definition: Hash.h:106
size_t smallHash_(value_type const &hash)
Definition: Hash.cc:57
template<int I>
void edm::Hash< I >::swap ( Hash< I > &  other)
inline
template<int I>
void edm::Hash< I >::throwIfIllFormed ( ) const
private

Hexified version of data must contain a multiple of 2 bytes. If it does not, throw an exception.

template<int I>
void edm::Hash< I >::toDigest ( cms::Digest digest) const
inline

Definition at line 200 of file Hash.h.

References edm::Hash< I >::hash_, and edm::hash_detail::toDigest_().

Referenced by edm::ParameterSetEntry::toDigest().

200  {
201  hash_detail::toDigest_(digest, hash_);
202  }
value_type hash_
Definition: Hash.h:106
void toDigest_(cms::Digest &digest, value_type const &hash)
Definition: Hash.cc:96
template<int I>
void edm::Hash< I >::toString ( std::string &  result) const
inline

Definition at line 193 of file Hash.h.

References edm::Hash< I >::hash_, and edm::hash_detail::toString_().

Referenced by edm::ParameterSetConverter::convertParameterSets(), and edm::ParameterSetEntry::toString().

193  {
195  }
value_type hash_
Definition: Hash.h:106
void toString_(std::string &result, value_type const &hash)
Definition: Hash.cc:87

Member Data Documentation

template<int I>
value_type edm::Hash< I >::hash_
private