CMS 3D CMS Logo

SiPixelFrameConverter.cc
Go to the documentation of this file.
3 
6 
8 
9 #include <sstream>
10 
11 using namespace std;
12 using namespace sipixelobjects;
13 
15  : theFedId(fedId),
16  theMap(map),
17  theTree(dynamic_cast<SiPixelFedCablingTree const*>(map)),
18  theFed(theTree ? theTree->fed(fedId) : nullptr) {}
19 
20 bool SiPixelFrameConverter::hasDetUnit(uint32_t rawId) const {
21  return theMap->pathToDetUnitHasDetUnit(rawId, static_cast<unsigned int>(theFedId));
22 }
23 
26  static_cast<unsigned int>(theFedId), static_cast<unsigned int>(link), static_cast<unsigned int>(roc)};
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 }
35 
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 }
const sipixelobjects::PixelROC * findItemInFed(const sipixelobjects::CablingPathToDetUnit &path, const PixelFEDCabling *aFed) const
virtual const sipixelobjects::PixelROC * findItem(const sipixelobjects::CablingPathToDetUnit &) const =0
virtual std::vector< sipixelobjects::CablingPathToDetUnit > pathToDetUnit(uint32_t rawDetId) const =0
int toCabling(sipixelobjects::ElectronicIndex &cabling, const sipixelobjects::DetectorIndex &detector) const
SiPixelFrameConverter(const SiPixelFedCabling *map, int fedId)
identify pixel inside single ROC
Definition: LocalPixel.h:7
global coordinates (row and column in DetUnit, as in PixelDigi)
Definition: GlobalPixel.h:6
SiPixelFedCablingTree const * theTree
sipixelobjects::PixelROC const * toRoc(int link, int roc) const
std::vector< LinkConnSpec >::const_iterator IT
bool hasDetUnit(uint32_t radId) const
const SiPixelFedCabling * theMap
virtual bool pathToDetUnitHasDetUnit(uint32_t rawDetId, unsigned int fedId) const =0
#define UNLIKELY(x)
Definition: Likely.h:21
Log< level::Warning, false > LogWarning
const PixelFEDCabling * theFed