CMS 3D CMS Logo

MuonPSimHitSelector.cc
Go to the documentation of this file.
1 
4 
6 
9 
11 
12 // #include "SimTracker/Common/interface/SimHitSelectorFromDB.h"
13 
14 
16 {
17  // Look for psimhit collection associated to the muon system
18  PSimHitCollectionMap::const_iterator pSimHitCollections = pSimHitCollectionMap_.find("muon");
19 
20  // Check that there are psimhit collections defined for the tracker
21  if (pSimHitCollections == pSimHitCollectionMap_.end()) return;
22 
23  // Grab all the PSimHit from the different sencitive volumes
25  std::vector<const CrossingFrame<PSimHit> *> cfPSimHitProductPointers;
26 
27  // Collect the product pointers to the different psimhit collection
28  for (std::size_t i = 0; i < pSimHitCollections->second.size(); ++i)
29  {
30  event.getByLabel("mix", pSimHitCollections->second[i], cfPSimHits);
31  cfPSimHitProductPointers.push_back(cfPSimHits.product());
32  }
33 
34  // Create a mix collection from the different psimhit collections
35  std::unique_ptr<MixCollection<PSimHit> > pSimHits(new MixCollection<PSimHit>(cfPSimHitProductPointers));
36 
37  // Get CSC Bad Chambers (ME4/2)
38  edm::ESHandle<CSCBadChambers> cscBadChambers;
39  setup.get<CSCBadChambersRcd>().get(cscBadChambers);
40 
41  // Select only psimhits from alive modules
42  for (MixCollection<PSimHit>::MixItr pSimHit = pSimHits->begin(); pSimHit != pSimHits->end(); ++pSimHit)
43  {
44  DetId dId = DetId( pSimHit->detUnitId() );
45 
46  if (dId.det() == DetId::Muon && dId.subdetId() == MuonSubdetId::CSC)
47  {
48  if ( !cscBadChambers->isInBadChamber(CSCDetId(dId)) )
49  selection.push_back(*pSimHit);
50  }
51  else
52  selection.push_back(*pSimHit);
53  }
54 }
selection
main part
Definition: corrVsCorr.py:98
def setup(process, global_tag, zero_tesla=False)
Definition: GeneralSetup.py:1
bool isInBadChamber(IndexType ichamber) const
Is the chamber with index &#39;ichamber&#39; flagged as bad?
static const int CSC
Definition: MuonSubdetId.h:13
int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:37
std::vector< PSimHit > PSimHitCollection
Definition: DetId.h:18
T const * product() const
Definition: Handle.h:81
void select(PSimHitCollection &, edm::Event const &, edm::EventSetup const &) const override
Pre-process event information.
const T & get() const
Definition: EventSetup.h:55
PSimHitCollectionMap pSimHitCollectionMap_
Detector det() const
get the detector field from this detid
Definition: DetId.h:35
Definition: event.py:1