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

virtual uint32_t getHash (HcalDetId const &) const
 
uint32_t getHash (HcalDetId const &did) const override
 
virtual uint32_t getHash (HcalElectronicsId const &) const
 
uint32_t getHash (HcalElectronicsId const &eid) const override
 
virtual uint32_t getHash (HcalTrigTowerDetId const &) const
 
virtual uint32_t getHash (HcalTrigTowerDetId const &, HcalElectronicsId const &) const
 
uint32_t getHash (HcalTrigTowerDetId const &tid) const override
 
uint32_t getHash (HcalTrigTowerDetId const &tid, HcalElectronicsId const &eid) const override
 
virtual hashfunctions::HashType getHashType () const
 
virtual std::string getHashTypeName () const
 
virtual int getLinearHashType (hashfunctions::HashType htype) const
 
virtual std::string getName (HcalDetId const &) const
 
std::string getName (HcalDetId const &did) const override
 
virtual std::string getName (HcalElectronicsId const &) const
 
std::string getName (HcalElectronicsId const &eid) const override
 
virtual std::string getName (HcalTrigTowerDetId const &) const
 
virtual std::string getName (HcalTrigTowerDetId const &, HcalElectronicsId const &) const
 
std::string getName (HcalTrigTowerDetId const &tid) const override
 
std::string getName (HcalTrigTowerDetId const &tid, HcalElectronicsId const &eid) const override
 
 HashMapper ()
 
 HashMapper (hashfunctions::HashType htype)
 
virtual void initialize (hashfunctions::HashType htype)
 
virtual bool isDHash () const
 
virtual bool isEHash () const
 
virtual bool isMixHash () 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 17 of file HashMapper.h.

Constructor & Destructor Documentation

◆ HashMapper() [1/2]

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

Definition at line 20 of file HashMapper.h.

20 {}

◆ HashMapper() [2/2]

hcaldqm::mapper::HashMapper::HashMapper ( hashfunctions::HashType  htype)
inline

Definition at line 21 of file HashMapper.h.

21 : Mapper(), _htype(htype) {}

◆ ~HashMapper()

hcaldqm::mapper::HashMapper::~HashMapper ( )
inlineoverride

Definition at line 22 of file HashMapper.h.

22 {}

Member Function Documentation

◆ getHash() [1/8]

virtual uint32_t hcaldqm::mapper::Mapper::getHash
inline

Definition at line 26 of file Mapper.h.

26 { return 0; }

◆ getHash() [2/8]

uint32_t hcaldqm::mapper::HashMapper::getHash ( HcalDetId const &  did) const
inlineoverridevirtual

◆ getHash() [3/8]

virtual uint32_t hcaldqm::mapper::Mapper::getHash
inline

Definition at line 27 of file Mapper.h.

27 { return 0; }

◆ getHash() [4/8]

uint32_t hcaldqm::mapper::HashMapper::getHash ( HcalElectronicsId const &  eid) const
inlineoverridevirtual

◆ getHash() [5/8]

virtual uint32_t hcaldqm::mapper::Mapper::getHash
inline

Definition at line 28 of file Mapper.h.

28 { return 0; }

◆ getHash() [6/8]

virtual uint32_t hcaldqm::mapper::Mapper::getHash
inline

Definition at line 29 of file Mapper.h.

29 { return 0; }

◆ getHash() [7/8]

uint32_t hcaldqm::mapper::HashMapper::getHash ( HcalTrigTowerDetId const &  tid) const
inlineoverridevirtual

Reimplemented from hcaldqm::mapper::Mapper.

Definition at line 33 of file HashMapper.h.

33  {
35  }

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

◆ getHash() [8/8]

uint32_t hcaldqm::mapper::HashMapper::getHash ( HcalTrigTowerDetId const &  tid,
HcalElectronicsId const &  eid 
) const
inlineoverridevirtual

◆ getHashType()

virtual hashfunctions::HashType hcaldqm::mapper::HashMapper::getHashType ( ) const
inlinevirtual

Definition at line 55 of file HashMapper.h.

55 { return _htype; }

References _htype.

◆ getHashTypeName()

virtual std::string hcaldqm::mapper::HashMapper::getHashTypeName ( ) const
inlinevirtual

◆ getLinearHashType()

virtual int hcaldqm::mapper::HashMapper::getLinearHashType ( hashfunctions::HashType  htype) const
inlinevirtual

Definition at line 70 of file HashMapper.h.

70  {
71  int l = 0;
72  if (htype < hashfunctions::nHashType_did)
73  l = htype;
74  else if (htype < hashfunctions::nHashType_eid)
75  l = htype - 1;
76  else if (htype < hashfunctions::nHashType_tid)
77  l = htype - 2;
78  else
79  l = htype - 3;
80  return l;
81  }

References cmsLHEtoEOSManager::l, hcaldqm::hashfunctions::nHashType_did, hcaldqm::hashfunctions::nHashType_eid, and hcaldqm::hashfunctions::nHashType_tid.

Referenced by getHashTypeName().

◆ getName() [1/8]

virtual std::string hcaldqm::mapper::Mapper::getName
inline

Definition at line 31 of file Mapper.h.

31 { return ""; }

◆ getName() [2/8]

std::string hcaldqm::mapper::HashMapper::getName ( HcalDetId const &  did) const
inlineoverridevirtual

◆ getName() [3/8]

virtual std::string hcaldqm::mapper::Mapper::getName
inline

Definition at line 32 of file Mapper.h.

32 { return ""; }

◆ getName() [4/8]

std::string hcaldqm::mapper::HashMapper::getName ( HcalElectronicsId const &  eid) const
inlineoverridevirtual

◆ getName() [5/8]

virtual std::string hcaldqm::mapper::Mapper::getName
inline

Definition at line 33 of file Mapper.h.

33 { return ""; }

◆ getName() [6/8]

virtual std::string hcaldqm::mapper::Mapper::getName
inline

Definition at line 34 of file Mapper.h.

34 { return ""; }

◆ getName() [7/8]

std::string hcaldqm::mapper::HashMapper::getName ( HcalTrigTowerDetId const &  tid) const
inlineoverridevirtual

Reimplemented from hcaldqm::mapper::Mapper.

Definition at line 46 of file HashMapper.h.

46  {
48  }

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

Referenced by plotting.Plot::draw().

◆ getName() [8/8]

std::string hcaldqm::mapper::HashMapper::getName ( HcalTrigTowerDetId const &  tid,
HcalElectronicsId const &  eid 
) const
inlineoverridevirtual

◆ initialize()

virtual void hcaldqm::mapper::HashMapper::initialize ( hashfunctions::HashType  htype)
inlinevirtual

Definition at line 25 of file HashMapper.h.

25 { _htype = htype; }

References _htype.

Referenced by hcaldqm::filter::HashFilter::initialize(), and hcaldqm::Container1D::initialize().

◆ isDHash()

virtual bool hcaldqm::mapper::HashMapper::isDHash ( ) const
inlinevirtual

◆ isEHash()

virtual bool hcaldqm::mapper::HashMapper::isEHash ( ) const
inlinevirtual

◆ isMixHash()

virtual bool hcaldqm::mapper::HashMapper::isMixHash ( ) const
inlinevirtual

◆ isTHash()

virtual bool hcaldqm::mapper::HashMapper::isTHash ( ) const
inlinevirtual

Member Data Documentation

◆ _htype

hashfunctions::HashType hcaldqm::mapper::HashMapper::_htype
protected
hcaldqm::mapper::HashMapper::getLinearHashType
virtual int getLinearHashType(hashfunctions::HashType htype) const
Definition: HashMapper.h:70
hcaldqm::hashfunctions::nHashType_did
Definition: HashFunctions.h:144
hcaldqm::mapper::HashMapper::_htype
hashfunctions::HashType _htype
Definition: HashMapper.h:84
hcaldqm::hashfunctions::hash_names
const std::string hash_names[nhashes]
Definition: HashFunctions.h:230
hcaldqm::hashfunctions::hash_eid
const hash_function_eid hash_eid[nHashType_eid - nHashType_did - 1]
Definition: HashFunctions.h:188
hcaldqm::mapper::Mapper::Mapper
Mapper()
Definition: Mapper.h:23
hcaldqm::hashfunctions::hash_did
const hash_function_did hash_did[nHashType_did]
Definition: HashFunctions.h:176
hcaldqm::hashfunctions::nHashType_tid
Definition: HashFunctions.h:163
funct::true
true
Definition: Factorize.h:173
hcaldqm::hashfunctions::name_tid
const name_function_tid name_tid[nHashType_tid - nHashType_eid - 1]
Definition: HashFunctions.h:225
hcaldqm::hashfunctions::hash_tid
const hash_function_tid hash_tid[nHashType_tid - nHashType_eid - 1]
Definition: HashFunctions.h:199
runTauDisplay.eid
eid
Definition: runTauDisplay.py:298
cmsLHEtoEOSManager.l
l
Definition: cmsLHEtoEOSManager.py:204
hcaldqm::hashfunctions::nHashType_mixid
Definition: HashFunctions.h:165
hcaldqm::hashfunctions::nHashType_eid
Definition: HashFunctions.h:156
hcaldqm::hashfunctions::hash_mixid
const hash_function_mixid hash_mixid[nHashType_mixid - nHashType_tid - 1]
Definition: HashFunctions.h:201
hcaldqm::hashfunctions::name_did
const name_function_did name_did[nHashType_did]
Definition: HashFunctions.h:202
hcaldqm::hashfunctions::name_mixid
const name_function_mixid name_mixid[nHashType_mixid - nHashType_tid - 1]
Definition: HashFunctions.h:227
hcaldqm::hashfunctions::name_eid
const name_function_eid name_eid[nHashType_eid - nHashType_did - 1]
Definition: HashFunctions.h:214