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

Public Member Functions

void endJob ()
 
void produce (edm::Event &iEvent, const edm::EventSetup &iSetup)
 
 TrackFromPVSelector (const edm::ParameterSet &iConfig)
 
virtual ~TrackFromPVSelector ()
 
- 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 25 of file TrackFromPVSelector.cc.

Constructor & Destructor Documentation

TrackFromPVSelector::TrackFromPVSelector ( const edm::ParameterSet iConfig)

Definition at line 51 of file TrackFromPVSelector.cc.

52  : srcPart_(iConfig.getParameter<edm::InputTag>("srcTrack"))
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::Track> >();
58 }
T getParameter(std::string const &) const
TrackFromPVSelector::~TrackFromPVSelector ( )
virtual

Definition at line 62 of file TrackFromPVSelector.cc.

62 {}

Member Function Documentation

void TrackFromPVSelector::endJob ( void  )
virtual

Reimplemented from edm::EDProducer.

Definition at line 100 of file TrackFromPVSelector.cc.

101 {
102 }
void TrackFromPVSelector::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
virtual

Implements edm::EDProducer.

Definition at line 69 of file TrackFromPVSelector.cc.

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

70 {
71  std::auto_ptr<std::vector<reco::Track> > goodTracks(new std::vector<reco::Track >);
72 
74  iEvent.getByLabel(srcPV_,VertexHandle);
75 
77  iEvent.getByLabel(srcPart_,TrackHandle);
78 
79  if( (VertexHandle->size() == 0) || (TrackHandle->size() == 0) )
80  {
81  iEvent.put(goodTracks);
82  return ;
83  }
84 
85  reco::Vertex PV = VertexHandle->front();
86  //typename std::vector<reco::Track>::const_iterator TrackIt ;
87  std::vector<reco::Track>::const_iterator TrackIt ;
88 
89  for (TrackIt = TrackHandle->begin(); TrackIt != TrackHandle->end(); ++TrackIt) {
90  if ( fabs(TrackIt->dxy(PV.position())) < max_dxy_ &&
91  fabs(TrackIt->dz(PV.position())) < max_dz_ ){
92  goodTracks -> push_back(*TrackIt) ;
93  }
94  }
95 
96  iEvent.put(goodTracks);
97 
98 }
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 TrackFromPVSelector::max_dxy_
private

Definition at line 40 of file TrackFromPVSelector.cc.

Referenced by produce().

double TrackFromPVSelector::max_dz_
private

Definition at line 41 of file TrackFromPVSelector.cc.

Referenced by produce().

edm::InputTag TrackFromPVSelector::srcPart_
private

Definition at line 38 of file TrackFromPVSelector.cc.

Referenced by produce().

edm::InputTag TrackFromPVSelector::srcPV_
private

Definition at line 39 of file TrackFromPVSelector.cc.

Referenced by produce().