CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
TrackerPSimHitSelector.cc
Go to the documentation of this file.
1 
2 
5 
7 
10 
12 
14 
16  edm::Event const &event,
17  edm::EventSetup const &setup) const {
18  // Look for psimhit collection associated o the tracker
19  PSimHitCollectionMap::const_iterator pSimHitCollections = pSimHitCollectionMap_.find("tracker");
20 
21  // Check that there are psimhit collections defined for the tracker
22  if (pSimHitCollections == pSimHitCollectionMap_.end())
23  return;
24 
25  // Grab all the PSimHit from the different sencitive volumes
27  std::vector<const CrossingFrame<PSimHit> *> cfPSimHitProductPointers;
28 
29  // Collect the product pointers to the different psimhit collection
30  for (std::size_t i = 0; i < pSimHitCollections->second.size(); ++i) {
31  event.getByLabel(mixLabel_, pSimHitCollections->second[i], cfPSimHits);
32  cfPSimHitProductPointers.push_back(cfPSimHits.product());
33  }
34 
35  // Create a mix collection from the different psimhit collections
36  std::unique_ptr<MixCollection<PSimHit>> pSimHits(new MixCollection<PSimHit>(cfPSimHitProductPointers));
37 
38  // Setup the cabling mapping
39  std::map<uint32_t, std::vector<int>> theDetIdList;
41  setup.get<SiStripDetCablingRcd>().get(detCabling);
42  detCabling->addConnected(theDetIdList);
43 
44  // Select only psimhits from alive modules
45  std::vector<std::pair<const PSimHit *, int>> psimhits(SimHitSelectorFromDB().getSimHit(pSimHits, theDetIdList));
46 
47  // Add the selected psimhit to the main list
48  for (std::size_t i = 0; i < psimhits.size(); ++i)
49  selection.push_back(*(const_cast<PSimHit *>(psimhits[i].first)));
50 }
selection
main part
Definition: corrVsCorr.py:100
std::string mixLabel_
std::vector< PSimHit > PSimHitCollection
T const * product() const
Definition: Handle.h:70
void select(PSimHitCollection &, edm::Event const &, edm::EventSetup const &) const override
Pre-process event information.
PSimHitCollectionMap pSimHitCollectionMap_
T get() const
Definition: EventSetup.h:88