7 using namespace sipixelobjects;
9 typedef std::unordered_map<int, SiPixelFedCablingTree::PixelFEDCabling>::const_iterator
IMAP;
12 uint32_t rawDetId)
const
14 std::vector<sipixelobjects::CablingPathToDetUnit>
result;
15 for (
auto im = theFedCablings.begin(); im != theFedCablings.end(); ++im) {
17 for (
unsigned int idxLink = 1; idxLink <= aFed.
numberOfLinks(); idxLink++) {
21 for(
unsigned int idxRoc = 1; idxRoc <= numberOfRocs; idxRoc++) {
23 if (rawDetId == roc->
rawId() ) {
25 result.push_back(path);
36 theFedCablings[id] =
f;
41 auto it = theFedCablings.find(
id);
42 return ( it == theFedCablings.end() ) ? 0 : & (*it).second;
49 out << theVersion << endl;
50 for(
IMAP it=theFedCablings.begin(); it != theFedCablings.end(); it++) {
51 out << (*it).second.print(depth);
60 std::vector<const PixelFEDCabling *>
result;
61 for (
IMAP im = theFedCablings.begin(); im != theFedCablings.end(); im++) {
62 result.push_back( &(im->second) );
83 if (aLink) roc = aLink->
roc(path.
roc);
95 if (aLink) roc = aLink->
roc(path.
roc);
103 for (
auto im = theFedCablings.begin(); im != theFedCablings.end(); ++im) {
104 if (im->first != static_cast<int>( im->second.id())) {
106 std::cout <<
"PROBLEM WITH FED ID!!" << im->first <<
" vs: "<< im->second.id() << std::endl;
108 im->second.checkLinkNumbering();
const PixelROC * roc(unsigned int id) const
return ROC identified by id. ROC ids are ranged [1,numberOfROCs]
unsigned int id() const
link id
unsigned int numberOfLinks() const
number of links in FED
unsigned int idInLink() const
id of this ROC in parent Link.
void addItem(unsigned int linkId, const PixelROC &roc)
unsigned int numberOfROCs() const
number of ROCs in fed
tuple path
else: Piece not in the list, fine.
virtual std::vector< sipixelobjects::CablingPathToDetUnit > pathToDetUnit(uint32_t rawDetId) const
int checkNumbering() const
uint32_t rawId() const
return the DetUnit to which this ROC belongs to.
virtual const sipixelobjects::PixelROC * findItem(const sipixelobjects::CablingPathToDetUnit &path) const
std::unordered_map< int, SiPixelFedCablingTree::PixelFEDCabling >::const_iterator IMAP
const PixelFEDCabling * fed(unsigned int idFed) const
get fed identified by its id
const PixelFEDLink * link(unsigned int id) const
return link identified by id. Link id's are ranged [1, numberOfLinks]
void addFed(const PixelFEDCabling &f)
add cabling for one fed
const sipixelobjects::PixelROC * findItemInFed(const sipixelobjects::CablingPathToDetUnit &path, const PixelFEDCabling *aFed) const
void addItem(unsigned int fedId, unsigned int linkId, const sipixelobjects::PixelROC &roc)
std::vector< const PixelFEDCabling * > fedList() const
std::string print(int depth=0) const