CMS 3D CMS Logo

TrackerPSimHitSelector.cc
Go to the documentation of this file.
1 
2 
5 
7 
10 
12 
14 
15 
17 {
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()) return;
23 
24  // Grab all the PSimHit from the different sencitive volumes
26  std::vector<const CrossingFrame<PSimHit> *> cfPSimHitProductPointers;
27 
28  // Collect the product pointers to the different psimhit collection
29  for (std::size_t i = 0; i < pSimHitCollections->second.size(); ++i)
30  {
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 }
void select(PSimHitCollection &, edm::Event const &, edm::EventSetup const &) const override
Pre-process event information.
selection
main part
Definition: corrVsCorr.py:98
std::string mixLabel_
def setup(process, global_tag, zero_tesla=False)
Definition: GeneralSetup.py:1
std::vector< PSimHit > PSimHitCollection
T const * product() const
Definition: Handle.h:81
const T & get() const
Definition: EventSetup.h:55
PSimHitCollectionMap pSimHitCollectionMap_
void addConnected(std::map< uint32_t, std::vector< int > > &) const
Definition: event.py:1