CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Attributes
EcalRegionCabling Class Reference

#include <EcalRegionCabling.h>

Public Member Functions

 EcalRegionCabling (edm::ParameterSet &conf, const EcalElectronicsMapping *m)
 
uint32_t elementIndex (const double eta, const double phi) const
 
const ESElectronicsMapperes_mapping () const
 
const EcalElectronicsMappingmapping () const
 
 ~EcalRegionCabling ()
 

Static Public Member Functions

static uint32_t elementIndex (const int FEDindex)
 
static uint32_t esElementIndex (const int FEDindex)
 
static int esFedIndex (const uint32_t index)
 
static int fedIndex (const uint32_t index)
 
static uint32_t maxElementIndex ()
 
static uint32_t maxESElementIndex ()
 

Private Attributes

const ESElectronicsMapperes_mapping_
 
const EcalElectronicsMappingmapping_
 

Detailed Description

Definition at line 13 of file EcalRegionCabling.h.

Constructor & Destructor Documentation

EcalRegionCabling::EcalRegionCabling ( edm::ParameterSet conf,
const EcalElectronicsMapping m 
)
inline

Definition at line 15 of file EcalRegionCabling.h.

References es_mapping_, and edm::ParameterSet::getParameter().

15  : mapping_(m) {
16  const edm::ParameterSet esMap = conf.getParameter<edm::ParameterSet>("esMapping");
17  es_mapping_ = new ESElectronicsMapper(esMap);
18  }
T getParameter(std::string const &) const
const ESElectronicsMapper * es_mapping_
const EcalElectronicsMapping * mapping_
EcalRegionCabling::~EcalRegionCabling ( )
inline

Definition at line 20 of file EcalRegionCabling.h.

References es_mapping_.

20  {
21  // this pointer is own by this object.
22  delete es_mapping_;
23  }
const ESElectronicsMapper * es_mapping_

Member Function Documentation

static uint32_t EcalRegionCabling::elementIndex ( const int  FEDindex)
inlinestatic

Definition at line 32 of file EcalRegionCabling.h.

References createfilelist::int, FEDNumbering::MAXECALFEDID, and FEDNumbering::MINECALFEDID.

Referenced by elementIndex().

32  {
33  //do a test for the time being
34  if (FEDindex > FEDNumbering::MAXECALFEDID || FEDindex < FEDNumbering::MINECALFEDID) {
35  edm::LogError("IncorrectMapping") << "FEDindex: " << FEDindex
36  << " is not between: " << (int)FEDNumbering::MINECALFEDID << " and "
37  << (int)FEDNumbering::MAXECALFEDID;
38  return 0;
39  }
40  uint32_t eI = FEDindex - FEDNumbering::MINECALFEDID;
41  return eI;
42  }
return((rh^lh)&mask)
uint32_t EcalRegionCabling::elementIndex ( const double  eta,
const double  phi 
) const
inline

Definition at line 66 of file EcalRegionCabling.h.

References elementIndex(), EcalElectronicsMapping::GetFED(), and mapping().

66  {
67  int FEDindex = mapping()->GetFED(eta, phi);
68  return elementIndex(FEDindex);
69  }
int GetFED(double eta, double phi) const
const EcalElectronicsMapping * mapping() const
static uint32_t elementIndex(const int FEDindex)
const ESElectronicsMapper* EcalRegionCabling::es_mapping ( ) const
inline

Definition at line 25 of file EcalRegionCabling.h.

References es_mapping_.

25 { return es_mapping_; }
const ESElectronicsMapper * es_mapping_
static uint32_t EcalRegionCabling::esElementIndex ( const int  FEDindex)
inlinestatic

Definition at line 44 of file EcalRegionCabling.h.

References createfilelist::int, FEDNumbering::MAXPreShowerFEDID, and FEDNumbering::MINPreShowerFEDID.

44  {
45  //do a test for the time being
47  edm::LogError("IncorrectMapping") << "FEDindex: " << FEDindex
48  << " is not between: " << (int)FEDNumbering::MINPreShowerFEDID << " and "
49  << (int)FEDNumbering::MAXPreShowerFEDID;
50  return 0;
51  }
52  uint32_t eI = FEDindex - FEDNumbering::MINPreShowerFEDID;
53  return eI;
54  }
return((rh^lh)&mask)
static int EcalRegionCabling::esFedIndex ( const uint32_t  index)
inlinestatic
static int EcalRegionCabling::fedIndex ( const uint32_t  index)
inlinestatic

Definition at line 56 of file EcalRegionCabling.h.

References FEDNumbering::MINECALFEDID.

Referenced by ECALRegFEDSelector::produce().

const EcalElectronicsMapping* EcalRegionCabling::mapping ( ) const
inline

Definition at line 24 of file EcalRegionCabling.h.

References mapping_.

Referenced by elementIndex().

24 { return mapping_; }
const EcalElectronicsMapping * mapping_
static uint32_t EcalRegionCabling::maxElementIndex ( )
inlinestatic
static uint32_t EcalRegionCabling::maxESElementIndex ( )
inlinestatic

Member Data Documentation

const ESElectronicsMapper* EcalRegionCabling::es_mapping_
private

Definition at line 73 of file EcalRegionCabling.h.

Referenced by EcalRegionCabling(), es_mapping(), and ~EcalRegionCabling().

const EcalElectronicsMapping* EcalRegionCabling::mapping_
private

Definition at line 72 of file EcalRegionCabling.h.

Referenced by mapping().