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
MuonFromPVSelector Class Reference
Inheritance diagram for MuonFromPVSelector:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

void endJob ()
 
 MuonFromPVSelector (const edm::ParameterSet &iConfig)
 
void produce (edm::Event &iEvent, const edm::EventSetup &iSetup)
 
virtual ~MuonFromPVSelector ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
 EDConsumerBase ()
 
ProductHolderIndex indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

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
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Definition at line 25 of file MuonFromPVSelector.cc.

Constructor & Destructor Documentation

MuonFromPVSelector::MuonFromPVSelector ( const edm::ParameterSet iConfig)

Definition at line 51 of file MuonFromPVSelector.cc.

52  : srcPart_(iConfig.getParameter<edm::InputTag>("srcMuon"))
53  , srcPV_ (iConfig.getParameter<edm::InputTag>("srcVertex"))
54  , max_dxy_(iConfig.getParameter<double>("max_dxy"))
55  , max_dz_ (iConfig.getParameter<double>("max_dz"))
56 {
57  produces<std::vector<reco::Muon> >();
58 }
T getParameter(std::string const &) const
MuonFromPVSelector::~MuonFromPVSelector ( )
virtual

Definition at line 62 of file MuonFromPVSelector.cc.

62 {}

Member Function Documentation

void MuonFromPVSelector::endJob ( void  )
virtual

Reimplemented from edm::EDProducer.

Definition at line 102 of file MuonFromPVSelector.cc.

103 {
104 }
void MuonFromPVSelector::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
virtual

Implements edm::EDProducer.

Definition at line 69 of file MuonFromPVSelector.cc.

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

70 {
71  std::auto_ptr<std::vector<reco::Muon> > goodMuons(new std::vector<reco::Muon >);
72 
74  iEvent.getByLabel(srcPV_,VertexHandle);
75 
77  iEvent.getByLabel(srcPart_,MuonHandle);
78 
79  if( (VertexHandle->size() == 0) || (MuonHandle->size() == 0) )
80  {
81  iEvent.put(goodMuons);
82  return ;
83  }
84 
85 
86  reco::Vertex PV = VertexHandle->front();
87  //typename std::vector<reco::Muon>::const_iterator MuonIt ;
88  std::vector<reco::Muon>::const_iterator MuonIt ;
89 
90  for (MuonIt = MuonHandle->begin(); MuonIt != MuonHandle->end(); ++MuonIt) {
91  if ( MuonIt->innerTrack().isNonnull() &&
92  fabs(MuonIt->innerTrack()->dxy(PV.position())) < max_dxy_ &&
93  fabs(MuonIt->innerTrack()->dz(PV.position())) < max_dz_ ){
94  goodMuons -> push_back(*MuonIt) ;
95  }
96  }
97 
98  iEvent.put(goodMuons);
99 
100 }
const Point & position() const
position
Definition: Vertex.h:93
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:94
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:361

Member Data Documentation

double MuonFromPVSelector::max_dxy_
private

Definition at line 40 of file MuonFromPVSelector.cc.

Referenced by produce().

double MuonFromPVSelector::max_dz_
private

Definition at line 41 of file MuonFromPVSelector.cc.

Referenced by produce().

edm::InputTag MuonFromPVSelector::srcPart_
private

Definition at line 38 of file MuonFromPVSelector.cc.

Referenced by produce().

edm::InputTag MuonFromPVSelector::srcPV_
private

Definition at line 39 of file MuonFromPVSelector.cc.

Referenced by produce().