CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Static Public Member Functions | Private Types | Private Member Functions | Private Attributes
ExtraFromSeeds Class Reference

#include <RecoTracker/ExtraFromSeeds/src/ExtraFromSeeds.cc>

Inheritance diagram for ExtraFromSeeds:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 ExtraFromSeeds (const edm::ParameterSet &)
 
 ~ExtraFromSeeds ()
 
- 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 ()
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 

Private Types

typedef std::vector< unsigned int > ExtremeLight
 

Private Member Functions

virtual void beginJob ()
 
virtual void endJob ()
 
virtual void produce (edm::Event &, const edm::EventSetup &) override
 

Private Attributes

edm::InputTag tracks_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- 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

Description: [one line class summary]

Implementation: [Notes on implementation]

Definition at line 45 of file ExtraFromSeeds.h.

Member Typedef Documentation

typedef std::vector<unsigned int> ExtraFromSeeds::ExtremeLight
private

Definition at line 58 of file ExtraFromSeeds.h.

Constructor & Destructor Documentation

ExtraFromSeeds::ExtraFromSeeds ( const edm::ParameterSet iConfig)
explicit

Definition at line 29 of file ExtraFromSeeds.cc.

References edm::ParameterSet::getParameter(), and tracks_.

30 {
31  tracks_=iConfig.getParameter<edm::InputTag>("tracks");
32  produces<ExtremeLight>();
33  produces<TrackingRecHitCollection>();
34 
35 }
T getParameter(std::string const &) const
edm::InputTag tracks_
ExtraFromSeeds::~ExtraFromSeeds ( )

Definition at line 38 of file ExtraFromSeeds.cc.

39 {
40 
41  // do anything here that needs to be done at desctruction time
42  // (e.g. close files, deallocate resources etc.)
43 
44 }

Member Function Documentation

void ExtraFromSeeds::beginJob ( void  )
privatevirtual

Reimplemented from edm::EDProducer.

Definition at line 89 of file ExtraFromSeeds.cc.

90 {
91 }
void ExtraFromSeeds::endJob ( void  )
privatevirtual

Reimplemented from edm::EDProducer.

Definition at line 95 of file ExtraFromSeeds.cc.

95  {
96 }
void ExtraFromSeeds::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 100 of file ExtraFromSeeds.cc.

References edm::ConfigurationDescriptions::addDefault(), and edm::ParameterSetDescription::setUnknown().

100  {
101  //The following says we do not know what parameters are allowed so do no validation
102  // Please change this to state exactly what you do use, even if it is no parameters
104  desc.setUnknown();
105  descriptions.addDefault(desc);
106 }
void addDefault(ParameterSetDescription const &psetDescription)
void ExtraFromSeeds::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivatevirtual

Implements edm::EDProducer.

Definition at line 53 of file ExtraFromSeeds.cc.

References reco::Track::extra(), edm::Event::getByLabel(), edm::Event::getRefBeforePut(), reco::TrackBase::highPurity, TrajectorySeed::nHits(), edm::Event::put(), reco::TrackBase::quality(), TrajectorySeed::recHits(), edm::OwnVector< T, P >::reserve(), reco::TrackExtra::seedRef(), testEve_cfg::tracks, and tracks_.

54 {
55 
56  // in
58  iEvent.getByLabel(tracks_,tracks);
59 
60  // out
61  std::auto_ptr<ExtremeLight> exxtralOut(new ExtremeLight());
62  exxtralOut->resize(tracks->size());
63 
64  std::auto_ptr<TrackingRecHitCollection> hitOut(new TrackingRecHitCollection());
66  hitOut->reserve(3*tracks->size());
67 
68  for (unsigned int ie=0;ie!=tracks->size();++ie){
69  const reco::Track & track = (*tracks)[ie];
70  const reco::TrackExtra & extra = *track.extra();
71  //only for high purity tracks
72  if (!track.quality(reco::TrackBase::highPurity)) continue;
73 
74  TrajectorySeed::range seedRange=extra.seedRef()->recHits();
76  (*exxtralOut)[ie]=extra.seedRef()->nHits();
77  for (seedHit=seedRange.first;seedHit!=seedRange.second;++seedHit){
78  TrackingRecHit * hit = seedHit->clone();
79  hitOut->push_back( hit );
80  }
81 
82  }
83 
84  iEvent.put(exxtralOut);
85  iEvent.put(hitOut);
86 }
edm::RefToBase< TrajectorySeed > seedRef() const
Definition: TrackExtra.h:127
const TrackExtraRef & extra() const
reference to &quot;extra&quot; object
Definition: Track.h:96
edm::InputTag tracks_
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:116
recHitContainer::const_iterator const_iterator
std::pair< const_iterator, const_iterator > range
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:390
RefProd< PROD > getRefBeforePut()
Definition: Event.h:128
edm::OwnVector< TrackingRecHit > TrackingRecHitCollection
collection of TrackingRecHits
tuple tracks
Definition: testEve_cfg.py:39
range recHits() const
bool quality(const TrackQuality) const
Track quality.
Definition: TrackBase.h:375
unsigned int nHits() const
void reserve(size_t)
Definition: OwnVector.h:267
std::vector< unsigned int > ExtremeLight

Member Data Documentation

edm::InputTag ExtraFromSeeds::tracks_
private

Definition at line 57 of file ExtraFromSeeds.h.

Referenced by ExtraFromSeeds(), and produce().