CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions
PixelPSimHitSelector Class Reference

PixelPSimHitSelector class. More...

#include <PixelPSimHitSelector.h>

Inheritance diagram for PixelPSimHitSelector:
PSimHitSelector

Public Member Functions

 PixelPSimHitSelector (edm::ParameterSet const &config)
 Constructor by pset. More...
 
virtual void select (PSimHitCollection &, edm::Event const &, edm::EventSetup const &) const
 Pre-process event information. More...
 
- Public Member Functions inherited from PSimHitSelector
 PSimHitSelector (edm::ParameterSet const &)
 Constructor by pset. More...
 
virtual ~PSimHitSelector ()
 Virtual destructor. More...
 

Additional Inherited Members

- Public Types inherited from PSimHitSelector
typedef std::vector< PSimHitPSimHitCollection
 
- Protected Types inherited from PSimHitSelector
typedef std::map< std::string,
std::vector< std::string > > 
PSimHitCollectionMap
 
- Protected Attributes inherited from PSimHitSelector
PSimHitCollectionMap pSimHitCollectionMap_
 

Detailed Description

PixelPSimHitSelector class.

Definition at line 7 of file PixelPSimHitSelector.h.

Constructor & Destructor Documentation

PixelPSimHitSelector::PixelPSimHitSelector ( edm::ParameterSet const &  config)
inline

Constructor by pset.

Definition at line 17 of file PixelPSimHitSelector.h.

PSimHitSelector(edm::ParameterSet const &)
Constructor by pset.

Member Function Documentation

void PixelPSimHitSelector::select ( PSimHitCollection selection,
edm::Event const &  event,
edm::EventSetup const &  setup 
) const
virtual

Pre-process event information.

Reimplemented from PSimHitSelector.

Definition at line 13 of file PixelPSimHitSelector.cc.

References MixCollection< T >::begin(), edm::EventSetup::get(), i, edm::Handle< T >::product(), and PSimHitSelector::pSimHitCollectionMap_.

Referenced by TrackingTruthProducer::produce().

14 {
15  // Look for psimhit collection associated o the tracker
16  PSimHitCollectionMap::const_iterator pSimHitCollections = pSimHitCollectionMap_.find("pixel");
17 
18  // Check that there are psimhit collections defined for the tracker
19  if (pSimHitCollections == pSimHitCollectionMap_.end()) return;
20 
21  // Grab all the PSimHit from the different sencitive volumes
23  std::vector<const CrossingFrame<PSimHit> *> cfPSimHitProductPointers;
24 
25  // Collect the product pointers to the different psimhit collection
26  for (std::size_t i = 0; i < pSimHitCollections->second.size(); ++i)
27  {
28  event.getByLabel("mix", pSimHitCollections->second[i], cfPSimHits);
29  cfPSimHitProductPointers.push_back(cfPSimHits.product());
30  }
31 
32  // Create a mix collection from the different psimhit collections
33  std::auto_ptr<MixCollection<PSimHit> > pSimHits( new MixCollection<PSimHit>(cfPSimHitProductPointers) );
34 
35  // Accessing dead pixel modules from DB:
36  edm::ESHandle<SiPixelQuality> siPixelBadModule;
37  setup.get<SiPixelQualityRcd>().get(siPixelBadModule);
38 
39  // Reading the DB information
40  std::vector<SiPixelQuality::disabledModuleType> badModules( siPixelBadModule->getBadComponentList() );
41  SiPixelQuality pixelQuality(badModules);
42 
43  // Select only psimhits from alive modules
44  for (MixCollection<PSimHit>::MixItr pSimHit = pSimHits->begin(); pSimHit != pSimHits->end(); ++pSimHit)
45  {
46  if ( !pixelQuality.IsModuleBad(pSimHit->detUnitId()) )
47  selection.push_back(*pSimHit);
48  }
49 }
int i
Definition: DBlmapReader.cc:9
selection
main part
Definition: corrVsCorr.py:98
iterator begin()
T const * product() const
Definition: Handle.h:74
PSimHitCollectionMap pSimHitCollectionMap_
void setup(std::vector< TH2F > &depth, std::string name, std::string units="")