CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros 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 17 of file SiPixelFrameConverter.h.

Member Typedef Documentation

Definition at line 20 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), theMap(map),
16  theTree(dynamic_cast<SiPixelFedCablingTree const *>(map)),
17  theFed(theTree ? theTree->fed(fedId) : nullptr)
18 {}
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 mergeAndRegister::paths, SiPixelFedCabling::pathToDetUnit(), theFedId, and theMap.

21 {
22  std::vector<CablingPathToDetUnit> paths = theMap->pathToDetUnit(rawId);
23  typedef std::vector<CablingPathToDetUnit>::const_iterator IT;
24  for (IT it=paths.begin(); it!=paths.end();++it) {
25  if(it->fed==static_cast<unsigned int>(theFedId)) return true;
26  }
27  return false;
28 }
virtual std::vector< sipixelobjects::CablingPathToDetUnit > pathToDetUnit(uint32_t rawDetId) const =0
std::vector< LinkConnSpec >::const_iterator IT
const SiPixelFedCabling * theMap
int SiPixelFrameConverter::toCabling ( sipixelobjects::ElectronicIndex cabling,
const sipixelobjects::DetectorIndex detector 
) const

Definition at line 48 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 SiPixelSCurveCalibrationAnalysis::makeThresholdSummary().

50 {
51  std::vector<CablingPathToDetUnit> path = theMap->pathToDetUnit(detector.rawId);
52  typedef std::vector<CablingPathToDetUnit>::const_iterator IT;
53  for (IT it = path.begin(); it != path.end(); ++it) {
54  const PixelROC * roc = theMap->findItem(*it);
55  if (!roc) return 2;
56  if (! roc->rawId() == detector.rawId) return 3;
57 
58  GlobalPixel global = {detector.row, detector.col};
59  //LogTrace("")<<"GLOBAL PIXEL: row=" << global.row <<" col="<< global.col;
60 
61  LocalPixel local = roc->toLocal(global);
62  // LogTrace("")<<"LOCAL PIXEL: dcol ="
63  //<< local.dcol()<<" pxid="<< local.pxid()<<" inside: " <<local.valid();
64 
65  if(!local.valid()) continue;
66  ElectronicIndex cabIdx = {static_cast<int>(it->link),
67  static_cast<int>(it->roc), local.dcol(), local.pxid()};
68  cabling = cabIdx;
69  return 0;
70  }
71  return 1;
72 }
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:47
uint32_t rawId() const
return the DetUnit to which this ROC belongs to.
Definition: PixelROC.h:36
std::vector< LinkConnSpec >::const_iterator IT
const SiPixelFedCabling * theMap
int SiPixelFrameConverter::toDetector ( const sipixelobjects::ElectronicIndex cabling,
sipixelobjects::DetectorIndex detector 
) const
inline

Definition at line 31 of file SiPixelFrameConverter.h.

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

Referenced by ErrorChecker::errorDetId(), and PixelDataFormatter::word2digi().

32  {
33  using namespace sipixelobjects;
34  auto roc = toRoc(cabling.link, cabling.roc);
35  if (!roc) return 2;
36  LocalPixel::DcolPxid local = { cabling.dcol, cabling.pxid };
37  if (!local.valid()) return 3;
38 
39  GlobalPixel global = roc->toGlobal( LocalPixel(local) );
40  detector.rawId = roc->rawId();
41  detector.row = global.row;
42  detector.col = global.col;
43 
44  return 0;
45 
46  }
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:22
sipixelobjects::PixelROC const * toRoc(int link, int roc) const
PixelROC const * SiPixelFrameConverter::toRoc ( int  link,
int  roc 
) const

Definition at line 31 of file SiPixelFrameConverter.cc.

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

Referenced by PixelDataFormatter::interpretRawData(), and toDetector().

31  {
32  CablingPathToDetUnit path = {static_cast<unsigned int>(theFedId),
33  static_cast<unsigned int>(link),
34  static_cast<unsigned int>(roc)};
35  const PixelROC * rocp = (theFed) ? theTree->findItemInFed(path, theFed) : theMap->findItem(path);
36  if unlikely(!rocp){
37  stringstream stm;
38  stm << "Map shows no fed="<<theFedId
39  <<", link="<< link
40  <<", roc="<< roc;
41  edm::LogWarning("SiPixelFrameConverter") << stm.str();
42  }
43  return rocp;
44 }
virtual const sipixelobjects::PixelROC * findItem(const sipixelobjects::CablingPathToDetUnit &) const =0
#define unlikely(x)
SiPixelFedCablingTree const * theTree
const SiPixelFedCabling * theMap
const sipixelobjects::PixelROC * findItemInFed(const sipixelobjects::CablingPathToDetUnit &path, const PixelFEDCabling *aFed) const
const PixelFEDCabling * theFed

Member Data Documentation

const PixelFEDCabling* SiPixelFrameConverter::theFed
private

Definition at line 56 of file SiPixelFrameConverter.h.

Referenced by toRoc().

int SiPixelFrameConverter::theFedId
private

Definition at line 53 of file SiPixelFrameConverter.h.

Referenced by hasDetUnit(), and toRoc().

const SiPixelFedCabling* SiPixelFrameConverter::theMap
private

Definition at line 54 of file SiPixelFrameConverter.h.

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

SiPixelFedCablingTree const* SiPixelFrameConverter::theTree
private

Definition at line 55 of file SiPixelFrameConverter.h.

Referenced by toRoc().