CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Private Attributes
HcalCoderFactory Class Reference

#include <HcalCoderFactory.h>

Public Types

enum  CoderType { DB, NOMINAL }
 

Public Member Functions

std::unique_ptr< HcalCodercoder (const DetId &detId) const
 user gets control of the pointer More...
 
 HcalCoderFactory (CoderType coderType)
 
void setDbService (const HcalDbService *service)
 

Private Attributes

CoderType theCoderType
 
const HcalDbServicetheDbService
 

Detailed Description

Definition at line 8 of file HcalCoderFactory.h.

Member Enumeration Documentation

Enumerator
DB 
NOMINAL 

Definition at line 10 of file HcalCoderFactory.h.

Constructor & Destructor Documentation

HcalCoderFactory::HcalCoderFactory ( CoderType  coderType)

Definition at line 5 of file HcalCoderFactory.cc.

5 : theCoderType(coderType), theDbService(nullptr) {}
const HcalDbService * theDbService
CoderType theCoderType

Member Function Documentation

std::unique_ptr< HcalCoder > HcalCoderFactory::coder ( const DetId detId) const

user gets control of the pointer

Definition at line 7 of file HcalCoderFactory.cc.

References DB, HcalDbService::getHcalCoder(), HcalDbService::getHcalShape(), mps_fire::result, theCoderType, and theDbService.

Referenced by HcalElectronicsSim::convert(), and setDbService().

7  {
8  HcalCoder* result = nullptr;
9  if (theCoderType == DB) {
10  assert(theDbService != nullptr);
11  HcalGenericDetId hcalGenDetId(id);
12  const HcalQIECoder* qieCoder = theDbService->getHcalCoder(hcalGenDetId);
13  const HcalQIEShape* qieShape = theDbService->getHcalShape(hcalGenDetId);
14  result = new HcalCoderDb(*qieCoder, *qieShape);
15  } else {
16  result = new HcalNominalCoder();
17  }
18  return std::unique_ptr<HcalCoder>(result);
19 }
const HcalDbService * theDbService
const HcalQIECoder * getHcalCoder(const HcalGenericDetId &fId) const
const HcalQIEShape * getHcalShape(const HcalGenericDetId &fId) const
CoderType theCoderType
void HcalCoderFactory::setDbService ( const HcalDbService service)
inline

Definition at line 14 of file HcalCoderFactory.h.

References coder(), and theDbService.

Referenced by HcalTBDigiProducer::initializeEvent().

14 { theDbService = service; }
const HcalDbService * theDbService

Member Data Documentation

CoderType HcalCoderFactory::theCoderType
private

Definition at line 20 of file HcalCoderFactory.h.

Referenced by coder().

const HcalDbService* HcalCoderFactory::theDbService
private

Definition at line 21 of file HcalCoderFactory.h.

Referenced by coder(), and setDbService().