CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Types | Public Member Functions | Private Attributes
SiPixelFrameConverter Class Reference

#include <SiPixelFrameConverter.h>

Public Types

typedef
sipixelobjects::PixelFEDCabling 
PixelFEDCabling
 

Public Member Functions

bool hasDetUnit (uint32_t radId) const
 
 SiPixelFrameConverter (const SiPixelFedCabling *map, int fedId)
 
int toCabling (sipixelobjects::ElectronicIndex &cabling, const sipixelobjects::DetectorIndex &detector) const
 
int toDetector (const sipixelobjects::ElectronicIndex &cabling, sipixelobjects::DetectorIndex &detector) const
 
sipixelobjects::PixelROC const * toRoc (int link, int roc) const
 

Private Attributes

const PixelFEDCablingtheFed
 
int theFedId
 
const SiPixelFedCablingtheMap
 
SiPixelFedCablingTree const * theTree
 

Detailed Description

Definition at line 15 of file SiPixelFrameConverter.h.

Member Typedef Documentation

Definition at line 17 of file SiPixelFrameConverter.h.

Constructor & Destructor Documentation

SiPixelFrameConverter::SiPixelFrameConverter ( const SiPixelFedCabling map,
int  fedId 
)

Definition at line 14 of file SiPixelFrameConverter.cc.

15  : theFedId(fedId),
16  theMap(map),
17  theTree(dynamic_cast<SiPixelFedCablingTree const*>(map)),
18  theFed(theTree ? theTree->fed(fedId) : nullptr) {}
SiPixelFedCablingTree const * theTree
const SiPixelFedCabling * theMap
const PixelFEDCabling * fed(unsigned int idFed) const
get fed identified by its id
const PixelFEDCabling * theFed

Member Function Documentation

bool SiPixelFrameConverter::hasDetUnit ( uint32_t  radId) const

Definition at line 20 of file SiPixelFrameConverter.cc.

References SiPixelFedCabling::pathToDetUnitHasDetUnit(), theFedId, and theMap.

Referenced by SiPixelCoordinates::fedid(), SiPixelDataQuality::fillGlobalQualityPlot(), and SiPixelInformationExtractor::findNoisyPixels().

20  {
21  return theMap->pathToDetUnitHasDetUnit(rawId, static_cast<unsigned int>(theFedId));
22 }
const SiPixelFedCabling * theMap
virtual bool pathToDetUnitHasDetUnit(uint32_t rawDetId, unsigned int fedId) const =0
int SiPixelFrameConverter::toCabling ( sipixelobjects::ElectronicIndex cabling,
const sipixelobjects::DetectorIndex detector 
) const

Definition at line 36 of file SiPixelFrameConverter.cc.

References sipixelobjects::DetectorIndex::col, sipixelobjects::LocalPixel::dcol(), SiPixelFedCabling::findItem(), SiPixelFedCabling::pathToDetUnit(), sipixelobjects::LocalPixel::pxid(), sipixelobjects::DetectorIndex::rawId, sipixelobjects::PixelROC::rawId(), sipixelobjects::DetectorIndex::row, theMap, sipixelobjects::PixelROC::toLocal(), and sipixelobjects::LocalPixel::valid().

Referenced by SiPixelCoordinates::channel(), SiPixelInformationExtractor::findNoisyPixels(), SiPixelSCurveCalibrationAnalysis::makeThresholdSummary(), SiPixelTopoFinder::onlineRocColRow(), and SiPixelCoordinates::roc().

36  {
37  std::vector<CablingPathToDetUnit> path = theMap->pathToDetUnit(detector.rawId);
38  typedef std::vector<CablingPathToDetUnit>::const_iterator IT;
39  for (IT it = path.begin(); it != path.end(); ++it) {
40  const PixelROC* roc = theMap->findItem(*it);
41  if (!roc)
42  return 2;
43  if (roc->rawId() != detector.rawId)
44  return 3;
45 
46  GlobalPixel global = {detector.row, detector.col};
47  //LogTrace("")<<"GLOBAL PIXEL: row=" << global.row <<" col="<< global.col;
48 
49  LocalPixel local = roc->toLocal(global);
50  // LogTrace("")<<"LOCAL PIXEL: dcol ="
51  //<< local.dcol()<<" pxid="<< local.pxid()<<" inside: " <<local.valid();
52 
53  if (!local.valid())
54  continue;
55  ElectronicIndex cabIdx = {static_cast<int>(it->link), static_cast<int>(it->roc), local.dcol(), local.pxid()};
56  cabling = cabIdx;
57  return 0;
58  }
59  return 1;
60 }
virtual const sipixelobjects::PixelROC * findItem(const sipixelobjects::CablingPathToDetUnit &) const =0
virtual std::vector< sipixelobjects::CablingPathToDetUnit > pathToDetUnit(uint32_t rawDetId) const =0
identify pixel inside single ROC
Definition: LocalPixel.h:7
global coordinates (row and column in DetUnit, as in PixelDigi)
Definition: GlobalPixel.h:6
LocalPixel toLocal(const GlobalPixel &glo) const
Definition: PixelROC.h:45
uint32_t rawId() const
return the DetUnit to which this ROC belongs to.
Definition: PixelROC.h:34
std::vector< LinkConnSpec >::const_iterator IT
const SiPixelFedCabling * theMap
int SiPixelFrameConverter::toDetector ( const sipixelobjects::ElectronicIndex cabling,
sipixelobjects::DetectorIndex detector 
) const
inline

Definition at line 27 of file SiPixelFrameConverter.h.

References sipixelobjects::DetectorIndex::col, sipixelobjects::ElectronicIndex::dcol, sipixelobjects::ElectronicIndex::link, sipixelobjects::ElectronicIndex::pxid, sipixelobjects::DetectorIndex::rawId, sipixelobjects::ElectronicIndex::roc, PixelMapPlotter::roc, sipixelobjects::DetectorIndex::row, and toRoc().

Referenced by ErrorChecker::errorDetId(), and ErrorCheckerPhase0::errorDetId().

27  {
28  using namespace sipixelobjects;
29  auto roc = toRoc(cabling.link, cabling.roc);
30  if (!roc)
31  return 2;
32  LocalPixel::DcolPxid local = {cabling.dcol, cabling.pxid};
33  if (!local.valid())
34  return 3;
35 
36  GlobalPixel global = roc->toGlobal(LocalPixel(local));
37  detector.rawId = roc->rawId();
38  detector.row = global.row;
39  detector.col = global.col;
40 
41  return 0;
42  }
identify pixel inside single ROC
Definition: LocalPixel.h:7
global coordinates (row and column in DetUnit, as in PixelDigi)
Definition: GlobalPixel.h:6
double collumn and pixel ID in double collumn representation
Definition: LocalPixel.h:19
sipixelobjects::PixelROC const * toRoc(int link, int roc) const
PixelROC const * SiPixelFrameConverter::toRoc ( int  link,
int  roc 
) const

Definition at line 24 of file SiPixelFrameConverter.cc.

References SiPixelFedCabling::findItem(), SiPixelFedCablingTree::findItemInFed(), fed_dqm_sourceclient-live_cfg::path, PixelMapPlotter::roc, theFed, theFedId, theMap, theTree, and UNLIKELY.

Referenced by SiPixelCoordinates::channel(), PixelDataFormatter::interpretRawData(), SiPixelTopoFinder::onlineRocColRow(), SiPixelCoordinates::roc(), and toDetector().

24  {
26  static_cast<unsigned int>(theFedId), static_cast<unsigned int>(link), static_cast<unsigned int>(roc)};
27  const PixelROC* rocp = (theFed) ? theTree->findItemInFed(path, theFed) : theMap->findItem(path);
28  if UNLIKELY (!rocp) {
29  stringstream stm;
30  stm << "Map shows no fed=" << theFedId << ", link=" << link << ", roc=" << roc;
31  edm::LogWarning("SiPixelFrameConverter") << stm.str();
32  }
33  return rocp;
34 }
virtual const sipixelobjects::PixelROC * findItem(const sipixelobjects::CablingPathToDetUnit &) const =0
SiPixelFedCablingTree const * theTree
const SiPixelFedCabling * theMap
const sipixelobjects::PixelROC * findItemInFed(const sipixelobjects::CablingPathToDetUnit &path, const PixelFEDCabling *aFed) const
#define UNLIKELY(x)
Definition: Likely.h:21
Log< level::Warning, false > LogWarning
const PixelFEDCabling * theFed

Member Data Documentation

const PixelFEDCabling* SiPixelFrameConverter::theFed
private

Definition at line 50 of file SiPixelFrameConverter.h.

Referenced by toRoc().

int SiPixelFrameConverter::theFedId
private

Definition at line 47 of file SiPixelFrameConverter.h.

Referenced by hasDetUnit(), and toRoc().

const SiPixelFedCabling* SiPixelFrameConverter::theMap
private

Definition at line 48 of file SiPixelFrameConverter.h.

Referenced by hasDetUnit(), toCabling(), and toRoc().

SiPixelFedCablingTree const* SiPixelFrameConverter::theTree
private

Definition at line 49 of file SiPixelFrameConverter.h.

Referenced by toRoc().