CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
HGCalTriggerGeometryHexImp2 Class Reference
Inheritance diagram for HGCalTriggerGeometryHexImp2:
HGCalTriggerGeometryBase

Public Member Functions

bool disconnectedModule (const unsigned) const final
 
geom_set getCellsFromModule (const unsigned) const final
 
geom_set getCellsFromTriggerCell (const unsigned) const final
 
unsigned getModuleFromCell (const unsigned) const final
 
unsigned getModuleFromTriggerCell (const unsigned) const final
 
GlobalPoint getModulePosition (const unsigned) const final
 
geom_set getNeighborsFromTriggerCell (const unsigned) const final
 
geom_ordered_set getOrderedCellsFromModule (const unsigned) const final
 
geom_ordered_set getOrderedTriggerCellsFromModule (const unsigned) const final
 
unsigned getTriggerCellFromCell (const unsigned) const final
 
GlobalPoint getTriggerCellPosition (const unsigned) const final
 
geom_set getTriggerCellsFromModule (const unsigned) const final
 
 HGCalTriggerGeometryHexImp2 (const edm::ParameterSet &conf)
 
void initialize (const edm::ESHandle< CaloGeometry > &) final
 
void reset () final
 
unsigned triggerLayer (const unsigned) const final
 
bool validTriggerCell (const unsigned) const final
 
- Public Member Functions inherited from HGCalTriggerGeometryBase
const HcalGeometrybhGeometry () const
 
const HcalTopologybhTopology () const
 
const edm::ESHandle< CaloGeometry > & caloGeometry () const
 
const HGCalGeometryeeGeometry () const
 
const HGCalTopologyeeTopology () const
 
const HGCalGeometryfhGeometry () const
 
const HGCalTopologyfhTopology () const
 
 HGCalTriggerGeometryBase (const edm::ParameterSet &conf)
 
const std::string & name () const
 
virtual ~HGCalTriggerGeometryBase ()
 

Private Member Functions

int detIdWaferType (unsigned subdet, short wafer) const
 
void fillInvalidTriggerCells ()
 
void fillMaps ()
 
void fillNeighborMaps ()
 
unsigned packTriggerCell (unsigned, const std::vector< int > &) const
 
bool validCellId (unsigned subdet, unsigned cell_id) const
 
bool validTriggerCellFromCells (const unsigned) const
 

Private Attributes

std::map< std::pair< short, short >, short > cells_to_trigger_cells_
 
std::unordered_set< unsigned > invalid_triggercells_
 
edm::FileInPath l1tCellNeighborsMapping_
 
edm::FileInPath l1tCellsMapping_
 
edm::FileInPath l1tModulesMapping_
 
edm::FileInPath l1tWaferNeighborsMapping_
 
std::unordered_multimap< short, short > module_to_wafers_ee_
 
std::unordered_multimap< short, short > module_to_wafers_fh_
 
std::unordered_map< short, short > number_cells_in_wafers_
 
std::unordered_map< short, short > number_trigger_cells_in_wafers_
 
std::unordered_map< int, std::set< std::pair< short, short > > > trigger_cell_neighbors_
 
std::multimap< std::pair< short, short >, short > trigger_cells_to_cells_
 
std::unordered_map< short, std::vector< short > > wafer_neighbors_ee_
 
std::unordered_map< short, std::vector< short > > wafer_neighbors_fh_
 
std::unordered_map< short, short > wafer_to_module_ee_
 
std::unordered_map< short, short > wafer_to_module_fh_
 

Additional Inherited Members

- Public Types inherited from HGCalTriggerGeometryBase
typedef std::unordered_map< unsigned, unsigned > geom_map
 
typedef std::set< unsigned > geom_ordered_set
 
typedef std::unordered_set< unsigned > geom_set
 
- Protected Member Functions inherited from HGCalTriggerGeometryBase
void setCaloGeometry (const edm::ESHandle< CaloGeometry > &geom)
 

Detailed Description

Definition at line 13 of file HGCalTriggerGeometryHexImp2.cc.

Constructor & Destructor Documentation

HGCalTriggerGeometryHexImp2::HGCalTriggerGeometryHexImp2 ( const edm::ParameterSet conf)

Definition at line 87 of file HGCalTriggerGeometryHexImp2.cc.

References reset().

87  :
89  l1tCellsMapping_(conf.getParameter<edm::FileInPath>("L1TCellsMapping")),
90  l1tCellNeighborsMapping_(conf.getParameter<edm::FileInPath>("L1TCellNeighborsMapping")),
91  l1tWaferNeighborsMapping_(conf.getParameter<edm::FileInPath>("L1TWaferNeighborsMapping")),
92  l1tModulesMapping_(conf.getParameter<edm::FileInPath>("L1TModulesMapping"))
93 {
94 }
HGCalTriggerGeometryBase(const edm::ParameterSet &conf)
T getParameter(std::string const &) const

Member Function Documentation

int HGCalTriggerGeometryHexImp2::detIdWaferType ( unsigned  subdet,
short  wafer 
) const
private

Definition at line 742 of file HGCalTriggerGeometryHexImp2.cc.

References HGCalTopology::dddConstants(), HGCalTriggerGeometryBase::eeTopology(), HGCalTriggerGeometryBase::fhTopology(), HGCEE, HGCHEF, validTriggerCell(), and HGCalDDDConstants::waferTypeT().

Referenced by fillInvalidTriggerCells(), fillMaps(), getCellsFromModule(), getNeighborsFromTriggerCell(), getOrderedCellsFromModule(), getOrderedTriggerCellsFromModule(), getTriggerCellsFromModule(), and packTriggerCell().

743 {
744  int wafer_type = 0;
745  switch(subdet)
746  {
747  // HGCalDDDConstants::waferTypeT() returns 2=coarse, 1=fine
748  // HGCalDetId::waferType() returns -1=coarse, 1=fine
749  // Convert to HGCalDetId waferType
751  wafer_type = (eeTopology().dddConstants().waferTypeT(wafer)==2?-1:1);
752  break;
754  wafer_type = (fhTopology().dddConstants().waferTypeT(wafer)==2?-1:1);
755  break;
756  default:
757  break;
758  };
759  return wafer_type;
760 }
const HGCalTopology & eeTopology() const
const HGCalDDDConstants & dddConstants() const
int waferTypeT(int wafer) const
const HGCalTopology & fhTopology() const
bool HGCalTriggerGeometryHexImp2::disconnectedModule ( const unsigned  module_id) const
finalvirtual

Implements HGCalTriggerGeometryBase.

Definition at line 772 of file HGCalTriggerGeometryHexImp2.cc.

References triggerLayer().

Referenced by validTriggerCell().

773 {
774  return false;
775 }
void HGCalTriggerGeometryHexImp2::fillInvalidTriggerCells ( )
private

Definition at line 687 of file HGCalTriggerGeometryHexImp2.cc.

References HGCalTopology::dddConstants(), detIdWaferType(), HGCalTriggerGeometryBase::eeTopology(), HGCalTriggerGeometryBase::fhTopology(), HGCEE, HGCHEF, invalid_triggercells_, HGCalDDDConstants::layers(), number_trigger_cells_in_wafers_, packTriggerCell(), DetId::rawId(), validTriggerCellFromCells(), wafer_to_module_ee_, and wafer_to_module_fh_.

Referenced by fillNeighborMaps(), and initialize().

688 {
689  unsigned n_layers_ee = eeTopology().dddConstants().layers(true);
690  for(unsigned layer=1; layer<=n_layers_ee; layer++)
691  {
692  for(const auto& wafer_module : wafer_to_module_ee_)
693  {
694  unsigned wafer = wafer_module.first;
695  int wafer_type = detIdWaferType(ForwardSubdetector::HGCEE, wafer);
696  // loop on the trigger cells in each wafer
697  for(int trigger_cell=0; trigger_cell<number_trigger_cells_in_wafers_.at(wafer_type); trigger_cell++)
698  {
699  HGCalDetId trigger_cell_id_neg(ForwardSubdetector::HGCEE, -1, layer, wafer_type, wafer, trigger_cell);
700  HGCalDetId trigger_cell_id_pos(ForwardSubdetector::HGCEE, 1, layer, wafer_type, wafer, trigger_cell);
701  if(!validTriggerCellFromCells(trigger_cell_id_neg)) invalid_triggercells_.emplace(trigger_cell_id_neg.rawId());
702  if(!validTriggerCellFromCells(trigger_cell_id_pos)) invalid_triggercells_.emplace(trigger_cell_id_pos.rawId());
703  }
704  }
705  }
706  unsigned n_layers_fh = fhTopology().dddConstants().layers(true);
707  for(unsigned layer=1; layer<=n_layers_fh; layer++)
708  {
709  for(const auto& wafer_module : wafer_to_module_fh_)
710  {
711  unsigned wafer = wafer_module.first;
712  int wafer_type = detIdWaferType(ForwardSubdetector::HGCHEF, wafer);
713  // loop on the trigger cells in each wafer
714  for(int trigger_cell=0; trigger_cell<number_trigger_cells_in_wafers_.at(wafer_type); trigger_cell++)
715  {
716  HGCalDetId trigger_cell_id_neg(ForwardSubdetector::HGCHEF, -1, layer, wafer_type, wafer, trigger_cell);
717  HGCalDetId trigger_cell_id_pos(ForwardSubdetector::HGCHEF, 1, layer, wafer_type, wafer, trigger_cell);
718  if(!validTriggerCellFromCells(trigger_cell_id_neg)) invalid_triggercells_.emplace(trigger_cell_id_neg.rawId());
719  if(!validTriggerCellFromCells(trigger_cell_id_pos)) invalid_triggercells_.emplace(trigger_cell_id_pos.rawId());
720  }
721  }
722  }
723 }
std::unordered_map< short, short > number_trigger_cells_in_wafers_
const HGCalTopology & eeTopology() const
std::unordered_set< unsigned > invalid_triggercells_
unsigned int layers(bool reco) const
std::unordered_map< short, short > wafer_to_module_ee_
const HGCalDDDConstants & dddConstants() const
std::unordered_map< short, short > wafer_to_module_fh_
int detIdWaferType(unsigned subdet, short wafer) const
bool validTriggerCellFromCells(const unsigned) const
const HGCalTopology & fhTopology() const
void HGCalTriggerGeometryHexImp2::fillMaps ( )
private

Definition at line 500 of file HGCalTriggerGeometryHexImp2.cc.

References cells_to_trigger_cells_, detIdWaferType(), HGCalTriggerGeometryBase::eeTopology(), Exception, HGCalTriggerGeometryBase::fhTopology(), fillNeighborMaps(), edm::FileInPath::fullPath(), HGCEE, HGCHEF, l1tCellsMapping_, l1tModulesMapping_, module_to_wafers_ee_, module_to_wafers_fh_, number_cells_in_wafers_, number_trigger_cells_in_wafers_, trigger_cells_to_cells_, wafer_to_module_ee_, and wafer_to_module_fh_.

Referenced by getModulePosition(), and initialize().

501 {
502  //
503  // read module mapping file
504  std::ifstream l1tModulesMappingStream(l1tModulesMapping_.fullPath());
505  if(!l1tModulesMappingStream.is_open())
506  {
507  throw cms::Exception("MissingDataFile")
508  << "Cannot open HGCalTriggerGeometry L1TModulesMapping file\n";
509  }
510  short subdet = 0;
511  short wafer = 0;
512  short module = 0;
513  for(; l1tModulesMappingStream>>subdet>>wafer>>module; )
514  {
515  int wafer_type = detIdWaferType(subdet, wafer);
516  switch(subdet)
517  {
519  {
520  // fill module <-> wafers mappings
521  wafer_to_module_ee_.emplace(wafer,module);
522  module_to_wafers_ee_.emplace(module, wafer);
523  // fill number of cells for a given wafer type
524  number_cells_in_wafers_.emplace(wafer_type, eeTopology().dddConstants().numberCellsHexagon(wafer));
525  break;
526  }
528  {
529  // fill module <-> wafers mappings
530  wafer_to_module_fh_.emplace(wafer,module);
531  module_to_wafers_fh_.emplace(module, wafer);
532  // fill number of cells for a given wafer type
533  number_cells_in_wafers_.emplace(wafer_type, fhTopology().dddConstants().numberCellsHexagon(wafer));
534  break;
535  }
536  default:
537  edm::LogWarning("HGCalTriggerGeometry") << "Unsupported subdetector number ("<<subdet<<") in L1TModulesMapping file\n";
538  break;
539  }
540  }
541  if(!l1tModulesMappingStream.eof()) edm::LogWarning("HGCalTriggerGeometry") << "Error reading L1TModulesMapping '"<<wafer<<" "<<module<<"' \n";
542  l1tModulesMappingStream.close();
543  // read trigger cell mapping file
544  std::ifstream l1tCellsMappingStream(l1tCellsMapping_.fullPath());
545  if(!l1tCellsMappingStream.is_open())
546  {
547  throw cms::Exception("MissingDataFile")
548  << "Cannot open HGCalTriggerGeometry L1TCellsMapping file\n";
549  }
550  short waferType = 0;
551  short cell = 0;
552  short triggerCell = 0;
553  for(; l1tCellsMappingStream>>waferType>>cell>>triggerCell; )
554  {
555  // fill cell <-> trigger cell mappings
556  cells_to_trigger_cells_.emplace(std::make_pair((waferType?1:-1),cell), triggerCell);
557  trigger_cells_to_cells_.emplace(std::make_pair((waferType?1:-1),triggerCell), cell);
558  // fill number of cells for a given wafer type
559  auto itr_insert = number_trigger_cells_in_wafers_.emplace((waferType?1:-1), 0);
560  if(triggerCell+1 > itr_insert.first->second) itr_insert.first->second = triggerCell+1;
561  }
562  if(!l1tCellsMappingStream.eof()) edm::LogWarning("HGCalTriggerGeometry") << "Error reading L1TCellsMapping'"<<waferType<<" "<<cell<<" "<<triggerCell<<"' \n";
563  l1tCellsMappingStream.close();
564 }
std::unordered_map< short, short > number_cells_in_wafers_
std::unordered_map< short, short > number_trigger_cells_in_wafers_
const HGCalTopology & eeTopology() const
std::unordered_multimap< short, short > module_to_wafers_fh_
std::unordered_multimap< short, short > module_to_wafers_ee_
std::unordered_map< short, short > wafer_to_module_ee_
std::unordered_map< short, short > wafer_to_module_fh_
std::string fullPath() const
Definition: FileInPath.cc:197
int detIdWaferType(unsigned subdet, short wafer) const
std::map< std::pair< short, short >, short > cells_to_trigger_cells_
std::multimap< std::pair< short, short >, short > trigger_cells_to_cells_
Definition: vlib.h:208
const HGCalTopology & fhTopology() const
void HGCalTriggerGeometryHexImp2::fillNeighborMaps ( )
private

Definition at line 568 of file HGCalTriggerGeometryHexImp2.cc.

References begin, edmScanValgrind::buffer, EnergyCorrector::c, csvReporter::delimiter, end, Exception, fillInvalidTriggerCells(), edm::FileInPath::fullPath(), HGCEE, HGCHEF, l1tCellNeighborsMapping_, l1tWaferNeighborsMapping_, geometryCSVtoXML::line, packTriggerCell(), findQualityFiles::size, AlCaHLTBitMon_QueryRunRegistry::string, trigger_cell_neighbors_, wafer_neighbors_ee_, and wafer_neighbors_fh_.

Referenced by fillMaps(), and initialize().

569 {
570  // Fill trigger neighbor map
571  std::ifstream l1tCellNeighborsMappingStream(l1tCellNeighborsMapping_.fullPath());
572  if(!l1tCellNeighborsMappingStream.is_open())
573  {
574  throw cms::Exception("MissingDataFile")
575  << "Cannot open HGCalTriggerGeometry L1TCellNeighborsMapping file\n";
576  }
577  for(std::array<char,512> buffer; l1tCellNeighborsMappingStream.getline(&buffer[0], 512); )
578  {
579  std::string line(&buffer[0]);
580  // Extract keys consisting of the wafer configuration
581  // and of the trigger cell id
582  // Match patterns (X,Y)
583  // where X is a set of 7 bits
584  // and Y is a number with less than 4 digits
585  std::regex key_regex("\\(\\s*[01]{7}\\s*,\\s*\\d{1,3}\\s*\\)");
586  std::vector<std::string> key_tokens {
587  std::sregex_token_iterator(line.begin(), line.end(), key_regex), {}
588  };
589  if(key_tokens.size()!=1)
590  {
591  throw cms::Exception("BadGeometry")
592  << "Syntax error in the L1TCellNeighborsMapping:\n"
593  << " Cannot find the trigger cell key in line:\n"
594  << " '"<<&buffer[0]<<"'\n";
595  }
596  std::regex digits_regex("([01]{7})|(\\d{1,3})");
597  std::vector<std::string> type_tc {
598  std::sregex_token_iterator(key_tokens[0].begin(), key_tokens[0].end(), digits_regex), {}
599  };
600  // get cell id and wafer configuration
601  int trigger_cell = std::stoi(type_tc[1]);
602  std::vector<int> wafer_types;
603  wafer_types.reserve(type_tc[0].size());
604  // Convert waferType coarse=0, fine=1 to coarse=-1, fine=1
605  for(const char c : type_tc[0]) wafer_types.emplace_back( (std::stoi(std::string(&c))?1:-1) );
606  unsigned map_key = packTriggerCell(trigger_cell, wafer_types);
607  // Extract neighbors
608  // Match patterns (X,Y)
609  // where X is a number with less than 4 digits
610  // and Y is one single digit (the neighbor wafer, between 0 and 6)
611  std::regex neighbors_regex("\\(\\s*\\d{1,3}\\s*,\\s*\\d\\s*\\)");
612  std::vector<std::string> neighbors_tokens {
613  std::sregex_token_iterator(line.begin(), line.end(), neighbors_regex), {}
614  };
615  if(neighbors_tokens.empty())
616  {
617  throw cms::Exception("BadGeometry")
618  << "Syntax error in the L1TCellNeighborsMapping:\n"
619  << " Cannot find any neighbor in line:\n"
620  << " '"<<&buffer[0]<<"'\n";
621  }
622  auto itr_insert = trigger_cell_neighbors_.emplace(map_key, std::set<std::pair<short,short>>());
623  for(const auto& neighbor : neighbors_tokens)
624  {
625  std::vector<std::string> pair_neighbor {
626  std::sregex_token_iterator(neighbor.begin(), neighbor.end(), digits_regex), {}
627  };
628  short neighbor_wafer(std::stoi(pair_neighbor[1]));
629  short neighbor_cell(std::stoi(pair_neighbor[0]));
630  itr_insert.first->second.emplace(neighbor_wafer, neighbor_cell);
631  }
632  }
633  if(!l1tCellNeighborsMappingStream.eof()) edm::LogWarning("HGCalTriggerGeometry") << "Error reading L1TCellNeighborsMapping'\n";
634  l1tCellNeighborsMappingStream.close();
635 
636  // Fill wafer neighbor map
637  std::ifstream l1tWaferNeighborsMappingStream(l1tWaferNeighborsMapping_.fullPath());
638  if(!l1tWaferNeighborsMappingStream.is_open())
639  {
640  throw cms::Exception("MissingDataFile")
641  << "Cannot open HGCalTriggerGeometry L1TWaferNeighborsMapping file\n";
642  }
643  for(std::array<char,512> buffer; l1tWaferNeighborsMappingStream.getline(&buffer[0], 512); )
644  {
645  std::string line(&buffer[0]);
646  // split line using spaces as delimiter
647  std::regex delimiter("\\s+");
648  std::vector<std::string> tokens {
649  std::sregex_token_iterator(line.begin(), line.end(), delimiter, -1), {}
650  };
651  if(tokens.size()!=8)
652  {
653  throw cms::Exception("BadGeometry")
654  << "Syntax error in the L1TWaferNeighborsMapping in line:\n"
655  << " '"<<&buffer[0]<<"'\n"
656  << " A line should be composed of 8 integers separated by spaces:\n"
657  << " subdet waferid neighbor1 neighbor2 neighbor3 neighbor4 neighbor5 neighbor6\n";
658  }
659  short subdet(std::stoi(tokens[0]));
660  short wafer(std::stoi(tokens[1]));
661 
662  std::unordered_map<short, std::vector<short>>* wafer_neighbors;
663  switch(subdet)
664  {
666  wafer_neighbors = &wafer_neighbors_ee_;
667  break;
669  wafer_neighbors = &wafer_neighbors_fh_;
670  break;
671  default:
672  throw cms::Exception("BadGeometry")
673  << "Unknown subdet " << subdet << " in L1TWaferNeighborsMapping:\n"
674  << " '"<<&buffer[0]<<"'\n";
675  };
676  auto wafer_itr = wafer_neighbors->emplace(wafer, std::vector<short>());
677  for(auto neighbor_itr=tokens.cbegin()+2; neighbor_itr!=tokens.cend(); ++neighbor_itr)
678  {
679  wafer_itr.first->second.emplace_back(std::stoi(*neighbor_itr));
680  }
681  }
682 }
size
Write out results.
unsigned packTriggerCell(unsigned, const std::vector< int > &) const
std::unordered_map< short, std::vector< short > > wafer_neighbors_fh_
std::unordered_map< short, std::vector< short > > wafer_neighbors_ee_
#define end
Definition: vmac.h:39
#define begin
Definition: vmac.h:32
std::string fullPath() const
Definition: FileInPath.cc:197
std::unordered_map< int, std::set< std::pair< short, short > > > trigger_cell_neighbors_
HGCalTriggerGeometryBase::geom_set HGCalTriggerGeometryHexImp2::getCellsFromModule ( const unsigned  module_id) const
finalvirtual

Implements HGCalTriggerGeometryBase.

Definition at line 230 of file HGCalTriggerGeometryHexImp2.cc.

References detIdWaferType(), getOrderedCellsFromModule(), HGCEE, HGCHEB, HGCHEF, HGCalDetId::layer(), module_to_wafers_ee_, module_to_wafers_fh_, number_cells_in_wafers_, DetId::subdetId(), validCellId(), HGCalDetId::wafer(), HGCalDetId::waferType(), and HGCalDetId::zside().

Referenced by getCellsFromTriggerCell(), and getModulePosition().

231 {
232 
233  HGCalDetId module_det_id(module_id);
234  unsigned subdet = module_det_id.subdetId();
235  if(subdet==ForwardSubdetector::HGCHEB) return geom_set();
236  unsigned module = module_det_id.wafer();
237  std::pair<std::unordered_multimap<short, short>::const_iterator,
238  std::unordered_multimap<short, short>::const_iterator> wafer_itrs;
239  switch(subdet)
240  {
242  wafer_itrs = module_to_wafers_ee_.equal_range(module);
243  break;
245  wafer_itrs = module_to_wafers_fh_.equal_range(module);
246  break;
247  default:
248  edm::LogError("HGCalTriggerGeometry") << "Unknown module->wafers mapping for subdet "<<subdet<<"\n";
249  return geom_set();
250  };
251  geom_set cell_det_ids;
252  for(auto wafer_itr=wafer_itrs.first; wafer_itr!=wafer_itrs.second; wafer_itr++)
253  {
254  int wafer_type = detIdWaferType(subdet, wafer_itr->second);
255  if(wafer_type==0) wafer_type = module_det_id.waferType();
256  // loop on the cells in each wafer and return valid ones
257  for(int cell=0; cell<number_cells_in_wafers_.at(wafer_type); cell++)
258  {
259  HGCalDetId cell_id((ForwardSubdetector)module_det_id.subdetId(), module_det_id.zside(), module_det_id.layer(), wafer_type, wafer_itr->second, cell);
260  if(validCellId(subdet, cell_id)) cell_det_ids.emplace(cell_id.rawId());
261  }
262  }
263  return cell_det_ids;
264 }
std::unordered_map< short, short > number_cells_in_wafers_
std::unordered_multimap< short, short > module_to_wafers_fh_
ForwardSubdetector
bool validCellId(unsigned subdet, unsigned cell_id) const
std::unordered_multimap< short, short > module_to_wafers_ee_
std::unordered_set< unsigned > geom_set
int detIdWaferType(unsigned subdet, short wafer) const
Definition: vlib.h:208
HGCalTriggerGeometryBase::geom_set HGCalTriggerGeometryHexImp2::getCellsFromTriggerCell ( const unsigned  trigger_cell_id) const
finalvirtual

Implements HGCalTriggerGeometryBase.

Definition at line 211 of file HGCalTriggerGeometryHexImp2.cc.

References HGCalDetId::cell(), getCellsFromModule(), HGCHEB, HGCalDetId::layer(), DetId::subdetId(), trigger_cells_to_cells_, HGCalDetId::wafer(), HGCalDetId::waferType(), and HGCalDetId::zside().

Referenced by getModuleFromTriggerCell(), getTriggerCellPosition(), and validTriggerCellFromCells().

212 {
213  HGCalDetId trigger_cell_det_id(trigger_cell_id);
214  unsigned subdet = trigger_cell_det_id.subdetId();
215  if(subdet==ForwardSubdetector::HGCHEB) return geom_set();
216  int wafer_type = trigger_cell_det_id.waferType();
217  unsigned trigger_cell = trigger_cell_det_id.cell();
218  // FIXME: better way to do this TC->cell mapping?
219  const auto& cell_range = trigger_cells_to_cells_.equal_range(std::make_pair(wafer_type,trigger_cell));
220  geom_set cell_det_ids;
221  for(auto tc_c_itr=cell_range.first; tc_c_itr!=cell_range.second; tc_c_itr++)
222  {
223  cell_det_ids.emplace(HGCalDetId((ForwardSubdetector)trigger_cell_det_id.subdetId(), trigger_cell_det_id.zside(), trigger_cell_det_id.layer(), trigger_cell_det_id.waferType(), trigger_cell_det_id.wafer(), tc_c_itr->second).rawId());
224  }
225  return cell_det_ids;
226 }
ForwardSubdetector
std::unordered_set< unsigned > geom_set
std::multimap< std::pair< short, short >, short > trigger_cells_to_cells_
unsigned HGCalTriggerGeometryHexImp2::getModuleFromCell ( const unsigned  cell_id) const
finalvirtual

Implements HGCalTriggerGeometryBase.

Definition at line 143 of file HGCalTriggerGeometryHexImp2.cc.

References Exception, getModuleFromTriggerCell(), DetId::Hcal, HGCEE, HGCHEF, HGCalDetId::kHGCalCellMask, HGCalDetId::layer(), DetId::subdetId(), HGCalDetId::wafer(), wafer_to_module_ee_, wafer_to_module_fh_, HGCalDetId::waferType(), and HGCalDetId::zside().

Referenced by getTriggerCellFromCell().

144 {
145  if(DetId(cell_id).det() == DetId::Hcal) return 0;
146  HGCalDetId cell_det_id(cell_id);
147  unsigned wafer = cell_det_id.wafer();
148  unsigned subdet = cell_det_id.subdetId();
149  std::unordered_map<short, short>::const_iterator module_itr;
150  bool out_of_range_error = false;
151  switch(subdet)
152  {
154  module_itr = wafer_to_module_ee_.find(wafer);
155  if(module_itr==wafer_to_module_ee_.end()) out_of_range_error = true;
156  break;
158  module_itr = wafer_to_module_fh_.find(wafer);
159  if(module_itr==wafer_to_module_fh_.end()) out_of_range_error = true;
160  break;
161  default:
162  edm::LogError("HGCalTriggerGeometry") << "Unknown wafer->module mapping for subdet "<<subdet<<"\n";
163  return 0;
164  };
165  if(out_of_range_error)
166  {
167  throw cms::Exception("BadGeometry")
168  << "HGCalTriggerGeometry: Wafer " << wafer << " is not mapped to any trigger module for subdetector " << subdet
169  << ". The module mapping should be modified. See https://twiki.cern.ch/twiki/bin/viewauth/CMS/HGCALTriggerPrimitivesSimulation#Trigger_geometry for details.\n";
170  }
171  unsigned module = module_itr->second;
172  return HGCalDetId((ForwardSubdetector)cell_det_id.subdetId(), cell_det_id.zside(), cell_det_id.layer(), cell_det_id.waferType(), module, HGCalDetId::kHGCalCellMask).rawId();
173 }
ForwardSubdetector
static const int kHGCalCellMask
Definition: HGCalDetId.h:13
std::unordered_map< short, short > wafer_to_module_ee_
Definition: DetId.h:18
std::unordered_map< short, short > wafer_to_module_fh_
Definition: vlib.h:208
unsigned HGCalTriggerGeometryHexImp2::getModuleFromTriggerCell ( const unsigned  trigger_cell_id) const
finalvirtual

Implements HGCalTriggerGeometryBase.

Definition at line 177 of file HGCalTriggerGeometryHexImp2.cc.

References Exception, getCellsFromTriggerCell(), HGCEE, HGCHEB, HGCHEF, HGCalDetId::kHGCalCellMask, HGCalDetId::layer(), DetId::subdetId(), HGCalDetId::wafer(), wafer_to_module_ee_, wafer_to_module_fh_, HGCalDetId::waferType(), and HGCalDetId::zside().

Referenced by getModuleFromCell().

178 {
179  HGCalDetId trigger_cell_det_id(trigger_cell_id);
180  unsigned wafer = trigger_cell_det_id.wafer();
181  unsigned subdet = trigger_cell_det_id.subdetId();
182  if(subdet==ForwardSubdetector::HGCHEB) return 0;
183  std::unordered_map<short, short>::const_iterator module_itr;
184  bool out_of_range_error = false;
185  switch(subdet)
186  {
188  module_itr = wafer_to_module_ee_.find(wafer);
189  if(module_itr==wafer_to_module_ee_.end()) out_of_range_error = true;
190  break;
192  module_itr = wafer_to_module_fh_.find(wafer);
193  if(module_itr==wafer_to_module_fh_.end()) out_of_range_error = true;
194  break;
195  default:
196  edm::LogError("HGCalTriggerGeometry") << "Unknown wafer->module mapping for subdet "<<subdet<<"\n";
197  return 0;
198  };
199  if(out_of_range_error)
200  {
201  throw cms::Exception("BadGeometry")
202  << "HGCalTriggerGeometry: Wafer " << wafer << " is not mapped to any trigger module for subdetector " << subdet
203  << ". The module mapping should be modified. See https://twiki.cern.ch/twiki/bin/viewauth/CMS/HGCALTriggerPrimitivesSimulation#Trigger_geometry for details.\n";
204  }
205  unsigned module = module_itr->second;
206  return HGCalDetId((ForwardSubdetector)trigger_cell_det_id.subdetId(), trigger_cell_det_id.zside(), trigger_cell_det_id.layer(), trigger_cell_det_id.waferType(), module, HGCalDetId::kHGCalCellMask).rawId();
207 }
ForwardSubdetector
static const int kHGCalCellMask
Definition: HGCalDetId.h:13
std::unordered_map< short, short > wafer_to_module_ee_
std::unordered_map< short, short > wafer_to_module_fh_
Definition: vlib.h:208
GlobalPoint HGCalTriggerGeometryHexImp2::getModulePosition ( const unsigned  module_det_id) const
finalvirtual

Implements HGCalTriggerGeometryBase.

Definition at line 483 of file HGCalTriggerGeometryHexImp2.cc.

References HGCalTriggerGeometryBase::eeGeometry(), HGCalTriggerGeometryBase::fhGeometry(), fillMaps(), getCellsFromModule(), HGCalGeometry::getPosition(), HGCEE, and DetId::subdetId().

Referenced by getTriggerCellPosition().

484 {
485  // Position: barycenter of the module.
486  Basic3DVector<float> moduleVector(0.,0.,0.);
487  const auto cell_ids = getCellsFromModule(module_det_id);
488  if(cell_ids.empty()) return GlobalPoint(0,0,0);
489  for(const auto& cell : cell_ids)
490  {
491  HGCalDetId cellDetId(cell);
492  moduleVector += (cellDetId.subdetId()==ForwardSubdetector::HGCEE ? eeGeometry()->getPosition(cellDetId) : fhGeometry()->getPosition(cellDetId)).basicVector();
493  }
494  return GlobalPoint( moduleVector/cell_ids.size() );
495 }
const HGCalGeometry * eeGeometry() const
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
GlobalPoint getPosition(const DetId &id) const
const HGCalGeometry * fhGeometry() const
geom_set getCellsFromModule(const unsigned) const final
HGCalTriggerGeometryBase::geom_set HGCalTriggerGeometryHexImp2::getNeighborsFromTriggerCell ( const unsigned  trigger_cell_id) const
finalvirtual

Implements HGCalTriggerGeometryBase.

Definition at line 383 of file HGCalTriggerGeometryHexImp2.cc.

References HGCalDetId::cell(), detIdWaferType(), Exception, getTriggerCellPosition(), HGCEE, HGCHEB, HGCHEF, HGCalDetId::layer(), packTriggerCell(), DetId::subdetId(), trigger_cell_neighbors_, validTriggerCell(), w, HGCalDetId::wafer(), wafer_neighbors_ee_, wafer_neighbors_fh_, HGCalDetId::waferType(), and HGCalDetId::zside().

Referenced by getOrderedTriggerCellsFromModule().

384 {
385  HGCalDetId trigger_cell_det_id(trigger_cell_id);
386  unsigned wafer = trigger_cell_det_id.wafer();
387  int wafer_type = trigger_cell_det_id.waferType();
388  unsigned subdet = trigger_cell_det_id.subdetId();
389  unsigned trigger_cell = trigger_cell_det_id.cell();
390  if(subdet==ForwardSubdetector::HGCHEB) return geom_set();
391  // Retrieve surrounding wafers (around the wafer containing
392  // the trigger cell)
393  std::unordered_map<short, std::vector<short>>::const_iterator surrounding_wafers_itr;
394  bool out_of_range_error = false;
395  switch(subdet)
396  {
398  surrounding_wafers_itr = wafer_neighbors_ee_.find(wafer);
399  if(surrounding_wafers_itr==wafer_neighbors_ee_.end()) out_of_range_error = true;
400  break;
402  surrounding_wafers_itr = wafer_neighbors_fh_.find(wafer);
403  if(surrounding_wafers_itr==wafer_neighbors_fh_.end()) out_of_range_error = true;
404  break;
405  default:
406  edm::LogError("HGCalTriggerGeometry") << "Unknown wafer neighbours for subdet "<<subdet<<"\n";
407  return geom_set();
408  }
409  if(out_of_range_error)
410  {
411  throw cms::Exception("BadGeometry")
412  << "HGCalTriggerGeometry: Neighbors are not defined for wafer " << wafer << " in subdetector " << subdet
413  << ". The wafer neighbor mapping should be modified. \n";
414  };
415  const std::vector<short>& surrounding_wafers = surrounding_wafers_itr->second;
416  // Find the types of the surrounding wafers
417  std::vector<int> types;
418  types.reserve(surrounding_wafers.size()+1); // includes the central wafer -> +1
419  types.emplace_back(wafer_type);
420  for(const auto w : surrounding_wafers)
421  {
422  // if no neighbor, use the same type as the central one
423  // to create the wafer configuration
424  int wt = wafer_type;
425  if(w!=-1) wt = detIdWaferType(subdet, w);
426  if(wt==0) return geom_set(); // invalid wafer type
427  types.emplace_back(wt);
428  }
429  // retrieve neighbors
430  unsigned trigger_cell_key = packTriggerCell(trigger_cell, types);
431  geom_set neighbor_detids;
432  auto neighbors_itr = trigger_cell_neighbors_.find(trigger_cell_key);
433  if(neighbors_itr==trigger_cell_neighbors_.end())
434  {
435  throw cms::Exception("BadGeometry")
436  << "HGCalTriggerGeometry: Neighbors are not defined for trigger cell " << trigger_cell << " with wafer configuration "
437  << std::bitset<7>(trigger_cell_key >> 8) << ". The trigger cell neighbor mapping should be modified. \n";
438  }
439  const auto& neighbors = neighbors_itr->second;
440  // create HGCalDetId of neighbors and check their validity
441  neighbor_detids.reserve(neighbors.size());
442  for(const auto& wafer_tc : neighbors)
443  {
444  if(wafer_tc.first-1>=(int)surrounding_wafers.size())
445  {
446  throw cms::Exception("BadGeometry")
447  << "HGCalTriggerGeometry: Undefined wafer neighbor number "<<wafer_tc.first
448  << " for wafer " << wafer << " and trigger cell " << trigger_cell
449  << ". The neighbor mapping files should be modified.";
450  }
451  int neighbor_wafer = (wafer_tc.first==0 ? wafer : surrounding_wafers.at(wafer_tc.first-1));
452  if(neighbor_wafer==-1) continue; // non-existing wafer
453  int type = types.at(wafer_tc.first);
454  HGCalDetId neighbor_det_id((ForwardSubdetector)trigger_cell_det_id.subdetId(), trigger_cell_det_id.zside(), trigger_cell_det_id.layer(), type, neighbor_wafer, wafer_tc.second);
455  if(validTriggerCell(neighbor_det_id.rawId()))
456  {
457  neighbor_detids.emplace(neighbor_det_id.rawId());
458  }
459  }
460  return neighbor_detids;
461 }
type
Definition: HCALResponse.h:21
const double w
Definition: UKUtility.cc:23
unsigned packTriggerCell(unsigned, const std::vector< int > &) const
ForwardSubdetector
std::unordered_map< short, std::vector< short > > wafer_neighbors_fh_
std::unordered_map< short, std::vector< short > > wafer_neighbors_ee_
bool validTriggerCell(const unsigned) const final
std::unordered_set< unsigned > geom_set
int detIdWaferType(unsigned subdet, short wafer) const
std::unordered_map< int, std::set< std::pair< short, short > > > trigger_cell_neighbors_
HGCalTriggerGeometryBase::geom_ordered_set HGCalTriggerGeometryHexImp2::getOrderedCellsFromModule ( const unsigned  module_id) const
finalvirtual

Implements HGCalTriggerGeometryBase.

Definition at line 268 of file HGCalTriggerGeometryHexImp2.cc.

References detIdWaferType(), getTriggerCellsFromModule(), HGCEE, HGCHEB, HGCHEF, HGCalDetId::layer(), module_to_wafers_ee_, module_to_wafers_fh_, number_cells_in_wafers_, DetId::subdetId(), validCellId(), HGCalDetId::wafer(), HGCalDetId::waferType(), and HGCalDetId::zside().

Referenced by getCellsFromModule().

269 {
270  HGCalDetId module_det_id(module_id);
271  unsigned subdet = module_det_id.subdetId();
272  if(subdet==ForwardSubdetector::HGCHEB) return geom_ordered_set();
273  unsigned module = module_det_id.wafer();
274  std::pair<std::unordered_multimap<short, short>::const_iterator,
275  std::unordered_multimap<short, short>::const_iterator> wafer_itrs;
276  switch(subdet)
277  {
279  wafer_itrs = module_to_wafers_ee_.equal_range(module);
280  break;
282  wafer_itrs = module_to_wafers_fh_.equal_range(module);
283  break;
284  default:
285  edm::LogError("HGCalTriggerGeometry") << "Unknown module->wafers mapping for subdet "<<subdet<<"\n";
286  return geom_ordered_set();
287  };
288  geom_ordered_set cell_det_ids;
289  for(auto wafer_itr=wafer_itrs.first; wafer_itr!=wafer_itrs.second; wafer_itr++)
290  {
291  int wafer_type = detIdWaferType(subdet, wafer_itr->second);
292  if(wafer_type==0) wafer_type = module_det_id.waferType();
293  // loop on the cells in each wafer
294  for(int cell=0; cell<number_cells_in_wafers_.at(wafer_type); cell++)
295  {
296  HGCalDetId cell_id((ForwardSubdetector)module_det_id.subdetId(), module_det_id.zside(), module_det_id.layer(), wafer_type, wafer_itr->second, cell);
297  if(validCellId(subdet, cell_id)) cell_det_ids.emplace(cell_id.rawId());
298  }
299  }
300  return cell_det_ids;
301 }
std::unordered_map< short, short > number_cells_in_wafers_
std::unordered_multimap< short, short > module_to_wafers_fh_
ForwardSubdetector
bool validCellId(unsigned subdet, unsigned cell_id) const
std::unordered_multimap< short, short > module_to_wafers_ee_
std::set< unsigned > geom_ordered_set
int detIdWaferType(unsigned subdet, short wafer) const
Definition: vlib.h:208
HGCalTriggerGeometryBase::geom_ordered_set HGCalTriggerGeometryHexImp2::getOrderedTriggerCellsFromModule ( const unsigned  module_id) const
finalvirtual

Implements HGCalTriggerGeometryBase.

Definition at line 343 of file HGCalTriggerGeometryHexImp2.cc.

References detIdWaferType(), getNeighborsFromTriggerCell(), HGCEE, HGCHEB, HGCHEF, HGCalDetId::layer(), module_to_wafers_ee_, module_to_wafers_fh_, number_trigger_cells_in_wafers_, DetId::subdetId(), validTriggerCell(), HGCalDetId::wafer(), HGCalDetId::waferType(), and HGCalDetId::zside().

Referenced by getTriggerCellsFromModule().

344 {
345  HGCalDetId module_det_id(module_id);
346  unsigned subdet = module_det_id.subdetId();
347  if(subdet==ForwardSubdetector::HGCHEB) return geom_ordered_set();
348  unsigned module = module_det_id.wafer();
349  std::pair<std::unordered_multimap<short, short>::const_iterator,
350  std::unordered_multimap<short, short>::const_iterator> wafer_itrs;
351  switch(subdet)
352  {
354  wafer_itrs = module_to_wafers_ee_.equal_range(module);
355  break;
357  wafer_itrs = module_to_wafers_fh_.equal_range(module);
358  break;
359  default:
360  edm::LogError("HGCalTriggerGeometry") << "Unknown module->wafers mapping for subdet "<<subdet<<"\n";
361  return geom_ordered_set();
362  };
363  geom_ordered_set trigger_cell_det_ids;
364  // loop on the wafers included in the module
365  for(auto wafer_itr=wafer_itrs.first; wafer_itr!=wafer_itrs.second; wafer_itr++)
366  {
367  int wafer_type = detIdWaferType(subdet, wafer_itr->second);
368  if(wafer_type==0) wafer_type = module_det_id.waferType();
369  // loop on the trigger cells in each wafer
370  for(int trigger_cell=0; trigger_cell<number_trigger_cells_in_wafers_.at(wafer_type); trigger_cell++)
371  {
372  HGCalDetId trigger_cell_id((ForwardSubdetector)module_det_id.subdetId(), module_det_id.zside(), module_det_id.layer(), wafer_type, wafer_itr->second, trigger_cell);
373  if(validTriggerCell(trigger_cell_id)) trigger_cell_det_ids.emplace(trigger_cell_id.rawId());
374  }
375  }
376  return trigger_cell_det_ids;
377 }
std::unordered_map< short, short > number_trigger_cells_in_wafers_
std::unordered_multimap< short, short > module_to_wafers_fh_
ForwardSubdetector
std::unordered_multimap< short, short > module_to_wafers_ee_
std::set< unsigned > geom_ordered_set
bool validTriggerCell(const unsigned) const final
int detIdWaferType(unsigned subdet, short wafer) const
Definition: vlib.h:208
unsigned HGCalTriggerGeometryHexImp2::getTriggerCellFromCell ( const unsigned  cell_id) const
finalvirtual

Implements HGCalTriggerGeometryBase.

Definition at line 123 of file HGCalTriggerGeometryHexImp2.cc.

References HGCalDetId::cell(), cells_to_trigger_cells_, Exception, getModuleFromCell(), DetId::Hcal, HGCalDetId::layer(), DetId::subdetId(), HGCalDetId::wafer(), HGCalDetId::waferType(), and HGCalDetId::zside().

Referenced by initialize().

124 {
125  if(DetId(cell_id).det() == DetId::Hcal) return 0;
126  HGCalDetId cell_det_id(cell_id);
127  int wafer_type = cell_det_id.waferType();
128  unsigned cell = cell_det_id.cell();
129  // FIXME: better way to do this cell->TC mapping?
130  auto trigger_cell_itr = cells_to_trigger_cells_.find(std::make_pair(wafer_type,cell));
131  if(trigger_cell_itr==cells_to_trigger_cells_.end())
132  {
133  throw cms::Exception("BadGeometry")
134  << "HGCalTriggerGeometry: HGCal cell " << cell << " is not mapped to any trigger cell for the wafer type " << wafer_type
135  << ". The trigger cell mapping should be modified.\n";
136  }
137  unsigned trigger_cell = trigger_cell_itr->second;
138  return HGCalDetId((ForwardSubdetector)cell_det_id.subdetId(), cell_det_id.zside(), cell_det_id.layer(), cell_det_id.waferType(), cell_det_id.wafer(), trigger_cell).rawId();
139 }
ForwardSubdetector
Definition: DetId.h:18
std::map< std::pair< short, short >, short > cells_to_trigger_cells_
GlobalPoint HGCalTriggerGeometryHexImp2::getTriggerCellPosition ( const unsigned  trigger_cell_det_id) const
finalvirtual

Implements HGCalTriggerGeometryBase.

Definition at line 466 of file HGCalTriggerGeometryHexImp2.cc.

References HGCalTriggerGeometryBase::eeGeometry(), HGCalTriggerGeometryBase::fhGeometry(), getCellsFromTriggerCell(), getModulePosition(), HGCalGeometry::getPosition(), HGCEE, and DetId::subdetId().

Referenced by getNeighborsFromTriggerCell().

467 {
468  // Position: barycenter of the trigger cell.
469  Basic3DVector<float> triggerCellVector(0.,0.,0.);
470  const auto cell_ids = getCellsFromTriggerCell(trigger_cell_det_id);
471  if(cell_ids.empty()) return GlobalPoint(0,0,0);
472  for(const auto& cell : cell_ids)
473  {
474  HGCalDetId cellDetId(cell);
475  triggerCellVector += (cellDetId.subdetId()==ForwardSubdetector::HGCEE ? eeGeometry()->getPosition(cellDetId) : fhGeometry()->getPosition(cellDetId)).basicVector();
476  }
477  return GlobalPoint( triggerCellVector/cell_ids.size() );
478 
479 }
const HGCalGeometry * eeGeometry() const
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
GlobalPoint getPosition(const DetId &id) const
const HGCalGeometry * fhGeometry() const
geom_set getCellsFromTriggerCell(const unsigned) const final
HGCalTriggerGeometryBase::geom_set HGCalTriggerGeometryHexImp2::getTriggerCellsFromModule ( const unsigned  module_id) const
finalvirtual

Implements HGCalTriggerGeometryBase.

Definition at line 305 of file HGCalTriggerGeometryHexImp2.cc.

References detIdWaferType(), getOrderedTriggerCellsFromModule(), HGCEE, HGCHEB, HGCHEF, HGCalDetId::layer(), module_to_wafers_ee_, module_to_wafers_fh_, number_trigger_cells_in_wafers_, DetId::subdetId(), validTriggerCell(), HGCalDetId::wafer(), HGCalDetId::waferType(), and HGCalDetId::zside().

Referenced by getOrderedCellsFromModule().

306 {
307  HGCalDetId module_det_id(module_id);
308  unsigned subdet = module_det_id.subdetId();
309  if(subdet==ForwardSubdetector::HGCHEB) return geom_set();
310  unsigned module = module_det_id.wafer();
311  std::pair<std::unordered_multimap<short, short>::const_iterator,
312  std::unordered_multimap<short, short>::const_iterator> wafer_itrs;
313  switch(subdet)
314  {
316  wafer_itrs = module_to_wafers_ee_.equal_range(module);
317  break;
319  wafer_itrs = module_to_wafers_fh_.equal_range(module);
320  break;
321  default:
322  edm::LogError("HGCalTriggerGeometry") << "Unknown module->wafers mapping for subdet "<<subdet<<"\n";
323  return geom_set();
324  };
325  geom_set trigger_cell_det_ids;
326  // loop on the wafers included in the module
327  for(auto wafer_itr=wafer_itrs.first; wafer_itr!=wafer_itrs.second; wafer_itr++)
328  {
329  int wafer_type = detIdWaferType(subdet, wafer_itr->second);
330  if(wafer_type==0) wafer_type = module_det_id.waferType();
331  // loop on the trigger cells in each wafer
332  for(int trigger_cell=0; trigger_cell<number_trigger_cells_in_wafers_.at(wafer_type); trigger_cell++)
333  {
334  HGCalDetId trigger_cell_id((ForwardSubdetector)module_det_id.subdetId(), module_det_id.zside(), module_det_id.layer(), wafer_type, wafer_itr->second, trigger_cell);
335  if(validTriggerCell(trigger_cell_id)) trigger_cell_det_ids.emplace(trigger_cell_id.rawId());
336  }
337  }
338  return trigger_cell_det_ids;
339 }
std::unordered_map< short, short > number_trigger_cells_in_wafers_
std::unordered_multimap< short, short > module_to_wafers_fh_
ForwardSubdetector
std::unordered_multimap< short, short > module_to_wafers_ee_
bool validTriggerCell(const unsigned) const final
std::unordered_set< unsigned > geom_set
int detIdWaferType(unsigned subdet, short wafer) const
Definition: vlib.h:208
void HGCalTriggerGeometryHexImp2::initialize ( const edm::ESHandle< CaloGeometry > &  calo_geometry)
finalvirtual
unsigned HGCalTriggerGeometryHexImp2::packTriggerCell ( unsigned  trigger_cell,
const std::vector< int > &  wafer_types 
) const
private

Definition at line 727 of file HGCalTriggerGeometryHexImp2.cc.

References detIdWaferType(), mps_fire::i, and globals_cff::x1.

Referenced by fillInvalidTriggerCells(), fillNeighborMaps(), and getNeighborsFromTriggerCell().

728 {
729  unsigned packed_value = trigger_cell;
730  for(unsigned i=0; i<wafer_types.size(); i++)
731  {
732  // trigger cell id on 8 bits
733  // wafer configuration bits: 0=coarse, 1=fine
734  if(wafer_types.at(i)==1) packed_value += (0x1<<(8+i));
735  }
736  return packed_value;
737 }
void HGCalTriggerGeometryHexImp2::reset ( void  )
finalvirtual

Reimplemented from HGCalTriggerGeometryBase.

Definition at line 98 of file HGCalTriggerGeometryHexImp2.cc.

References cells_to_trigger_cells_, initialize(), module_to_wafers_ee_, module_to_wafers_fh_, number_cells_in_wafers_, number_trigger_cells_in_wafers_, trigger_cells_to_cells_, wafer_to_module_ee_, and wafer_to_module_fh_.

Referenced by HGCalTriggerGeometryHexImp2().

99 {
100  wafer_to_module_ee_.clear();
101  wafer_to_module_fh_.clear();
102  module_to_wafers_ee_.clear();
103  module_to_wafers_fh_.clear();
104  cells_to_trigger_cells_.clear();
105  trigger_cells_to_cells_.clear();
107  number_cells_in_wafers_.clear();
108 }
std::unordered_map< short, short > number_cells_in_wafers_
std::unordered_map< short, short > number_trigger_cells_in_wafers_
std::unordered_multimap< short, short > module_to_wafers_fh_
std::unordered_multimap< short, short > module_to_wafers_ee_
std::unordered_map< short, short > wafer_to_module_ee_
std::unordered_map< short, short > wafer_to_module_fh_
std::map< std::pair< short, short >, short > cells_to_trigger_cells_
std::multimap< std::pair< short, short >, short > trigger_cells_to_cells_
unsigned HGCalTriggerGeometryHexImp2::triggerLayer ( const unsigned  id) const
finalvirtual

Implements HGCalTriggerGeometryBase.

Definition at line 780 of file HGCalTriggerGeometryHexImp2.cc.

References HGCalDetId::layer(), and validTriggerCellFromCells().

Referenced by disconnectedModule().

781 {
782  return HGCalDetId(id).layer();
783 }
int layer() const
get the layer #
Definition: HGCalDetId.h:48
bool HGCalTriggerGeometryHexImp2::validCellId ( unsigned  subdet,
unsigned  cell_id 
) const
private

Definition at line 807 of file HGCalTriggerGeometryHexImp2.cc.

References DEFINE_EDM_PLUGIN, HGCalTriggerGeometryBase::eeTopology(), HGCalTriggerGeometryBase::fhTopology(), HGCEE, HGCHEF, matching::is_valid(), and HGCalTopology::valid().

Referenced by getCellsFromModule(), getOrderedCellsFromModule(), and validTriggerCellFromCells().

808 {
809  bool is_valid = false;
810  switch(subdet)
811  {
813  is_valid = eeTopology().valid(cell_id);
814  break;
816  is_valid = fhTopology().valid(cell_id);
817  break;
818  default:
819  is_valid = false;
820  break;
821  }
822  return is_valid;
823 }
bool is_valid(const Digi &d)
Definition: GenericDigi.h:44
const HGCalTopology & eeTopology() const
bool valid(const DetId &id) const override
Is this a valid cell id.
const HGCalTopology & fhTopology() const
bool HGCalTriggerGeometryHexImp2::validTriggerCell ( const unsigned  trigger_cell_id) const
finalvirtual
bool HGCalTriggerGeometryHexImp2::validTriggerCellFromCells ( const unsigned  trigger_cell_id) const
private

Definition at line 787 of file HGCalTriggerGeometryHexImp2.cc.

References getCellsFromTriggerCell(), matching::is_valid(), DetId::subdetId(), and validCellId().

Referenced by fillInvalidTriggerCells(), and triggerLayer().

788 {
789  // Check the validity of a trigger cell with the
790  // validity of the cells. One valid cell in the
791  // trigger cell is enough to make the trigger cell
792  // valid.
793  HGCalDetId trigger_cell_det_id(trigger_cell_id);
794  unsigned subdet = trigger_cell_det_id.subdetId();
795  const geom_set cells = getCellsFromTriggerCell(trigger_cell_id);
796  bool is_valid = false;
797  for(const auto cell_id : cells)
798  {
799  is_valid |= validCellId(subdet, cell_id);
800  if(is_valid) break;
801  }
802  return is_valid;
803 }
bool is_valid(const Digi &d)
Definition: GenericDigi.h:44
bool validCellId(unsigned subdet, unsigned cell_id) const
geom_set getCellsFromTriggerCell(const unsigned) const final
std::unordered_set< unsigned > geom_set

Member Data Documentation

std::map<std::pair<short,short>, short> HGCalTriggerGeometryHexImp2::cells_to_trigger_cells_
private

Definition at line 54 of file HGCalTriggerGeometryHexImp2.cc.

Referenced by fillMaps(), getTriggerCellFromCell(), and reset().

std::unordered_set<unsigned> HGCalTriggerGeometryHexImp2::invalid_triggercells_
private

Definition at line 58 of file HGCalTriggerGeometryHexImp2.cc.

Referenced by fillInvalidTriggerCells(), and validTriggerCell().

edm::FileInPath HGCalTriggerGeometryHexImp2::l1tCellNeighborsMapping_
private

Definition at line 43 of file HGCalTriggerGeometryHexImp2.cc.

Referenced by fillNeighborMaps().

edm::FileInPath HGCalTriggerGeometryHexImp2::l1tCellsMapping_
private

Definition at line 42 of file HGCalTriggerGeometryHexImp2.cc.

Referenced by fillMaps().

edm::FileInPath HGCalTriggerGeometryHexImp2::l1tModulesMapping_
private

Definition at line 45 of file HGCalTriggerGeometryHexImp2.cc.

Referenced by fillMaps().

edm::FileInPath HGCalTriggerGeometryHexImp2::l1tWaferNeighborsMapping_
private

Definition at line 44 of file HGCalTriggerGeometryHexImp2.cc.

Referenced by fillNeighborMaps().

std::unordered_multimap<short, short> HGCalTriggerGeometryHexImp2::module_to_wafers_ee_
private
std::unordered_multimap<short, short> HGCalTriggerGeometryHexImp2::module_to_wafers_fh_
private
std::unordered_map<short, short> HGCalTriggerGeometryHexImp2::number_cells_in_wafers_
private
std::unordered_map<short, short> HGCalTriggerGeometryHexImp2::number_trigger_cells_in_wafers_
private
std::unordered_map<int, std::set<std::pair<short,short> > > HGCalTriggerGeometryHexImp2::trigger_cell_neighbors_
private

Definition at line 69 of file HGCalTriggerGeometryHexImp2.cc.

Referenced by fillNeighborMaps(), and getNeighborsFromTriggerCell().

std::multimap<std::pair<short,short>, short> HGCalTriggerGeometryHexImp2::trigger_cells_to_cells_
private

Definition at line 55 of file HGCalTriggerGeometryHexImp2.cc.

Referenced by fillMaps(), getCellsFromTriggerCell(), and reset().

std::unordered_map<short, std::vector<short> > HGCalTriggerGeometryHexImp2::wafer_neighbors_ee_
private

Definition at line 72 of file HGCalTriggerGeometryHexImp2.cc.

Referenced by fillNeighborMaps(), and getNeighborsFromTriggerCell().

std::unordered_map<short, std::vector<short> > HGCalTriggerGeometryHexImp2::wafer_neighbors_fh_
private

Definition at line 73 of file HGCalTriggerGeometryHexImp2.cc.

Referenced by fillNeighborMaps(), and getNeighborsFromTriggerCell().

std::unordered_map<short, short> HGCalTriggerGeometryHexImp2::wafer_to_module_ee_
private
std::unordered_map<short, short> HGCalTriggerGeometryHexImp2::wafer_to_module_fh_
private