CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
GsfElectronFromPVSelector Class Reference
Inheritance diagram for GsfElectronFromPVSelector:
edm::EDProducer edm::ProducerBase edm::ProductRegistryHelper

Public Member Functions

void endJob ()
 
 GsfElectronFromPVSelector (const edm::ParameterSet &iConfig)
 
void produce (edm::Event &iEvent, const edm::EventSetup &iSetup)
 
virtual ~GsfElectronFromPVSelector ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
boost::function< void(const
BranchDescription &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 

Private Attributes

double max_dxy_
 
double max_dz_
 
edm::InputTag srcPart_
 
edm::InputTag srcPV_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
typedef WorkerT< EDProducerWorkerType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::EDProducer
CurrentProcessingContext const * currentContext () const
 
- Protected Member Functions inherited from edm::ProducerBase
template<class TProducer , class TMethod >
void callWhenNewProductsRegistered (TProducer *iProd, TMethod iMethod)
 

Detailed Description

Definition at line 31 of file ElectronFromPVSelector.cc.

Constructor & Destructor Documentation

GsfElectronFromPVSelector::GsfElectronFromPVSelector ( const edm::ParameterSet iConfig)

Definition at line 57 of file ElectronFromPVSelector.cc.

58  : srcPart_(iConfig.getParameter<edm::InputTag>("srcElectron"))
59  , srcPV_ (iConfig.getParameter<edm::InputTag>("srcVertex"))
60  , max_dxy_(iConfig.getParameter<double>("max_dxy"))
61  , max_dz_ (iConfig.getParameter<double>("max_dz"))
62 {
63  produces<std::vector<reco::GsfElectron> >();
64 }
T getParameter(std::string const &) const
GsfElectronFromPVSelector::~GsfElectronFromPVSelector ( )
virtual

Definition at line 68 of file ElectronFromPVSelector.cc.

68 {}

Member Function Documentation

void GsfElectronFromPVSelector::endJob ( void  )
virtual

Reimplemented from edm::EDProducer.

Definition at line 110 of file ElectronFromPVSelector.cc.

111 {
112 }
void GsfElectronFromPVSelector::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
virtual

Implements edm::EDProducer.

Definition at line 75 of file ElectronFromPVSelector.cc.

References edm::Event::getByLabel(), max_dxy_, max_dz_, reco::Vertex::position(), edm::Event::put(), hitfit::return, srcPart_, and srcPV_.

76 {
77  std::auto_ptr<std::vector<reco::GsfElectron> > goodGsfElectrons(new std::vector<reco::GsfElectron >);
78 
80  iEvent.getByLabel(srcPV_,VertexHandle);
81 
83  iEvent.getByLabel(srcPart_,GsfElectronHandle);
84 
85  if( (VertexHandle->size() == 0) || (GsfElectronHandle->size() == 0) )
86  {
87  iEvent.put(goodGsfElectrons);
88  return ;
89  }
90 
91 
92  reco::Vertex PV = VertexHandle->front();
93  std::vector<reco::GsfElectron>::const_iterator GsfElectronIt ;
94 // typename std::vector<reco::GsfElectron>::const_iterator GsfElectronIt ;
95 
96  for (GsfElectronIt = GsfElectronHandle->begin(); GsfElectronIt != GsfElectronHandle->end(); ++GsfElectronIt) {
97 
98  //int q = GsfElectronIt->gsfTrack()->charge() ;
99 
100  if ( fabs(GsfElectronIt->gsfTrack()->dxy(PV.position())) < max_dxy_ &&
101  fabs(GsfElectronIt->gsfTrack()->dz(PV.position())) < max_dz_ ) {
102  goodGsfElectrons -> push_back(*GsfElectronIt) ;
103  }
104  }
105 
106  iEvent.put(goodGsfElectrons);
107 
108 }
const Point & position() const
position
Definition: Vertex.h:93
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:85
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:356

Member Data Documentation

double GsfElectronFromPVSelector::max_dxy_
private

Definition at line 46 of file ElectronFromPVSelector.cc.

Referenced by produce().

double GsfElectronFromPVSelector::max_dz_
private

Definition at line 47 of file ElectronFromPVSelector.cc.

Referenced by produce().

edm::InputTag GsfElectronFromPVSelector::srcPart_
private

Definition at line 44 of file ElectronFromPVSelector.cc.

Referenced by produce().

edm::InputTag GsfElectronFromPVSelector::srcPV_
private

Definition at line 45 of file ElectronFromPVSelector.cc.

Referenced by produce().