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::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

void endJob () override
 
void produce (edm::Event &iEvent, const edm::EventSetup &iSetup) override
 
 TrackFromPVSelector (const edm::ParameterSet &iConfig)
 
virtual ~TrackFromPVSelector ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
ModuleDescription const & moduleDescription () const
 
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 ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Attributes

double max_dxy_
 
double max_dz_
 
edm::EDGetTokenT< std::vector
< reco::Track > > 
v_recoTrackToken_
 
edm::EDGetTokenT< std::vector
< reco::Vertex > > 
v_recoVertexToken_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- 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::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 TrackFromPVSelector.cc.

Constructor & Destructor Documentation

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

Definition at line 51 of file TrackFromPVSelector.cc.

52  : max_dxy_ ( iConfig.getParameter<double>( "max_dxy" ) )
53  , max_dz_ ( iConfig.getParameter<double>( "max_dz" ) )
54  , v_recoVertexToken_( consumes< std::vector<reco::Vertex> >( iConfig.getParameter<edm::InputTag>( "srcVertex" ) ) )
55  , v_recoTrackToken_ ( consumes< std::vector<reco::Track> >( iConfig.getParameter<edm::InputTag>( "srcTrack" ) ) )
56 {
57  produces<std::vector<reco::Track> >();
58 }
T getParameter(std::string const &) const
edm::EDGetTokenT< std::vector< reco::Vertex > > v_recoVertexToken_
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
edm::EDGetTokenT< std::vector< reco::Track > > v_recoTrackToken_
TrackFromPVSelector::~TrackFromPVSelector ( )
virtual

Definition at line 62 of file TrackFromPVSelector.cc.

62 {}

Member Function Documentation

void TrackFromPVSelector::endJob ( void  )
overridevirtual

Reimplemented from edm::EDProducer.

Definition at line 100 of file TrackFromPVSelector.cc.

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

Implements edm::EDProducer.

Definition at line 69 of file TrackFromPVSelector.cc.

References edm::Event::getByToken(), goodTracks_cfi::goodTracks, max_dxy_, max_dz_, reco::Vertex::position(), edm::Event::put(), reco::return(), v_recoTrackToken_, and v_recoVertexToken_.

70 {
71  std::auto_ptr<std::vector<reco::Track> > goodTracks(new std::vector<reco::Track >);
72 
74  iEvent.getByToken( v_recoVertexToken_, VertexHandle );
75 
77  iEvent.getByToken( v_recoTrackToken_, 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 }
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
edm::EDGetTokenT< std::vector< reco::Vertex > > v_recoVertexToken_
const Point & position() const
position
Definition: Vertex.h:92
edm::EDGetTokenT< std::vector< reco::Track > > v_recoTrackToken_
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:116
return(e1-e2)*(e1-e2)+dp *dp

Member Data Documentation

double TrackFromPVSelector::max_dxy_
private

Definition at line 38 of file TrackFromPVSelector.cc.

Referenced by produce().

double TrackFromPVSelector::max_dz_
private

Definition at line 39 of file TrackFromPVSelector.cc.

Referenced by produce().

edm::EDGetTokenT< std::vector<reco::Track> > TrackFromPVSelector::v_recoTrackToken_
private

Definition at line 41 of file TrackFromPVSelector.cc.

Referenced by produce().

edm::EDGetTokenT< std::vector<reco::Vertex> > TrackFromPVSelector::v_recoVertexToken_
private

Definition at line 40 of file TrackFromPVSelector.cc.

Referenced by produce().