CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Attributes
hcaldqm::mapper::HashMapper Class Reference

#include <HashMapper.h>

Inheritance diagram for hcaldqm::mapper::HashMapper:
hcaldqm::mapper::Mapper hcaldqm::filter::HashFilter

Public Member Functions

uint32_t getHash (HcalDetId const &did) const override
 
uint32_t getHash (HcalElectronicsId const &eid) const override
 
uint32_t getHash (HcalTrigTowerDetId const &tid) const override
 
virtual hashfunctions::HashType getHashType () const
 
virtual std::string getHashTypeName () const
 
virtual int getLinearHashType (hashfunctions::HashType htype) const
 
std::string getName (HcalDetId const &did) const override
 
std::string getName (HcalElectronicsId const &eid) const override
 
std::string getName (HcalTrigTowerDetId const &tid) const override
 
 HashMapper ()
 
 HashMapper (hashfunctions::HashType htype)
 
virtual void initialize (hashfunctions::HashType htype)
 
virtual bool isDHash () const
 
virtual bool isEHash () const
 
virtual bool isTHash () const
 
 ~HashMapper () override
 
- Public Member Functions inherited from hcaldqm::mapper::Mapper
 Mapper ()
 
virtual ~Mapper ()
 

Protected Attributes

hashfunctions::HashType _htype
 

Detailed Description

Definition at line 19 of file HashMapper.h.

Constructor & Destructor Documentation

hcaldqm::mapper::HashMapper::HashMapper ( )
inline

Definition at line 23 of file HashMapper.h.

23 {}
hcaldqm::mapper::HashMapper::HashMapper ( hashfunctions::HashType  htype)
inline

Definition at line 24 of file HashMapper.h.

24  : Mapper(), _htype(htype)
25  {}
hashfunctions::HashType _htype
Definition: HashMapper.h:83
hcaldqm::mapper::HashMapper::~HashMapper ( )
inlineoverride

Definition at line 26 of file HashMapper.h.

26 {}

Member Function Documentation

uint32_t hcaldqm::mapper::HashMapper::getHash ( HcalDetId const &  did) const
inlineoverridevirtual
uint32_t hcaldqm::mapper::HashMapper::getHash ( HcalElectronicsId const &  eid) const
inlineoverridevirtual
uint32_t hcaldqm::mapper::HashMapper::getHash ( HcalTrigTowerDetId const &  tid) const
inlineoverridevirtual
virtual hashfunctions::HashType hcaldqm::mapper::HashMapper::getHashType ( ) const
inlinevirtual

Definition at line 52 of file HashMapper.h.

References _htype.

53  {return _htype;}
hashfunctions::HashType _htype
Definition: HashMapper.h:83
virtual std::string hcaldqm::mapper::HashMapper::getHashTypeName ( ) const
inlinevirtual
virtual int hcaldqm::mapper::HashMapper::getLinearHashType ( hashfunctions::HashType  htype) const
inlinevirtual

Definition at line 70 of file HashMapper.h.

References checklumidiff::l, hcaldqm::hashfunctions::nHashType_did, and hcaldqm::hashfunctions::nHashType_eid.

Referenced by getHashTypeName().

71  {
72  int l = 0;
74  l = htype;
75  else if (htype<hashfunctions::nHashType_eid)
76  l = htype - 1;
77  else
78  l = htype - 2;
79  return l;
80  }
std::string hcaldqm::mapper::HashMapper::getName ( HcalDetId const &  did) const
inlineoverridevirtual
std::string hcaldqm::mapper::HashMapper::getName ( HcalElectronicsId const &  eid) const
inlineoverridevirtual
std::string hcaldqm::mapper::HashMapper::getName ( HcalTrigTowerDetId const &  tid) const
inlineoverridevirtual

Reimplemented from hcaldqm::mapper::Mapper.

Definition at line 46 of file HashMapper.h.

References _htype, hcaldqm::hashfunctions::name_tid, and hcaldqm::hashfunctions::nHashType_eid.

Referenced by plotting.Plot::draw().

hashfunctions::HashType _htype
Definition: HashMapper.h:83
name_function_tid const name_tid[nHashType_tid-nHashType_eid-1]
virtual void hcaldqm::mapper::HashMapper::initialize ( hashfunctions::HashType  htype)
inlinevirtual
virtual bool hcaldqm::mapper::HashMapper::isDHash ( ) const
inlinevirtual
virtual bool hcaldqm::mapper::HashMapper::isEHash ( ) const
inlinevirtual
virtual bool hcaldqm::mapper::HashMapper::isTHash ( ) const
inlinevirtual

Member Data Documentation

hashfunctions::HashType hcaldqm::mapper::HashMapper::_htype
protected