test
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
AlCaElectronTracksReducer Class Reference

#include <AlCaElectronTracksReducer.h>

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

Public Member Functions

 AlCaElectronTracksReducer (const edm::ParameterSet &)
 
virtual void produce (edm::Event &, const edm::EventSetup &)
 
 ~AlCaElectronTracksReducer ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 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
std::vector< ConsumesInfoconsumesInfo () const
 
 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
 
void modulesDependentUpon (std::string const &iProcessName, std::string const &iModuleLabel, bool iPrint, std::vector< char const * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Attributes

std::string alcaTrackCollection_
 
std::string alcaTrackExtraCollection_
 
edm::EDGetTokenT
< reco::GsfElectronCollection
electronToken_
 
edm::EDGetTokenT
< reco::TrackExtraCollection
generalTracksExtraToken_
 
edm::EDGetTokenT
< reco::TrackCollection
generalTracksToken_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- 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::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 38 of file AlCaElectronTracksReducer.h.

Constructor & Destructor Documentation

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

Definition at line 5 of file AlCaElectronTracksReducer.cc.

References alcaTrackCollection_, alcaTrackExtraCollection_, electronToken_, generalTracksExtraToken_, generalTracksToken_, edm::ParameterSet::getParameter(), and AlCaHLTBitMon_QueryRunRegistry::string.

6 {
7  generalTracksToken_ = consumes<reco::TrackCollection>(iConfig.getParameter< edm::InputTag > ("generalTracksLabel"));
8  generalTracksExtraToken_ = consumes<reco::TrackExtraCollection>(iConfig.getParameter< edm::InputTag > ("generalTracksExtraLabel"));
9  electronToken_ = consumes<reco::GsfElectronCollection>(iConfig.getParameter< edm::InputTag > ("electronLabel"));
10 
11  // name of the output collection
12  alcaTrackExtraCollection_ = iConfig.getParameter<std::string>("alcaTrackExtraCollection");
13 
14  //register your products
15  produces< reco::TrackCollection > (alcaTrackCollection_) ;
16  produces< reco::TrackExtraCollection > (alcaTrackExtraCollection_) ;
17 
18 }
T getParameter(std::string const &) const
edm::EDGetTokenT< reco::TrackCollection > generalTracksToken_
edm::EDGetTokenT< reco::GsfElectronCollection > electronToken_
edm::EDGetTokenT< reco::TrackExtraCollection > generalTracksExtraToken_
AlCaElectronTracksReducer::~AlCaElectronTracksReducer ( )

Definition at line 21 of file AlCaElectronTracksReducer.cc.

22 {}

Member Function Documentation

void AlCaElectronTracksReducer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
virtual

Implements edm::EDProducer.

Definition at line 26 of file AlCaElectronTracksReducer.cc.

References alcaTrackCollection_, alcaTrackExtraCollection_, electronToken_, generalTracksExtraToken_, generalTracksToken_, edm::Event::getByToken(), edm::Ref< C, T, F >::isNull(), edm::Event::put(), and dt_dqm_sourceclient_common_cff::reco.

Referenced by JSONExport.JsonExport::export(), HTMLExport.HTMLExport::export(), and HTMLExport.HTMLExportStatic::export().

28 {
29  using namespace edm;
30  using namespace std;
31  using namespace reco;
32 
33 
34  // Get GSFElectrons
36  iEvent.getByToken(electronToken_, pElectrons);
37 
38  const reco::GsfElectronCollection * electronCollection = pElectrons.product();
39 
40  Handle<TrackCollection> generalTracksHandle;
41  iEvent.getByToken(generalTracksToken_,generalTracksHandle);
42 
43  Handle<TrackExtraCollection> generalTracksExtraHandle;
44  iEvent.getByToken(generalTracksExtraToken_,generalTracksExtraHandle);
45 
46  //Create empty output collections
47  std::auto_ptr< TrackCollection > redGeneralTracksCollection (new TrackCollection) ;
48  std::auto_ptr< TrackExtraCollection > redGeneralTracksExtraCollection (new TrackExtraCollection) ;
49 
50  reco::GsfElectronCollection::const_iterator eleIt;
51 
52  for (eleIt=electronCollection->begin(); eleIt!=electronCollection->end(); eleIt++) {
53  // barrel
54 #ifndef CMSSW42X
55  TrackRef track = (eleIt-> closestTrack() ) ;
56 #else
57  TrackRef track = (eleIt-> closestCtfTrackRef());
58 #endif
59  if(track.isNull()){
60  // edm::LogError("track") << "Track Ref not found " << eleIt->energy() << "\t" << eleIt->eta();
61  continue;
62  }
63  redGeneralTracksCollection->push_back(*track);
64  if(generalTracksExtraHandle.isValid()) redGeneralTracksExtraCollection->push_back(*(track->extra()));
65  }
66 
67  //Put selected information in the event
68  iEvent.put( redGeneralTracksCollection, alcaTrackCollection_ );
69  iEvent.put( redGeneralTracksExtraCollection, alcaTrackExtraCollection_ );
70 }
edm::EDGetTokenT< reco::TrackCollection > generalTracksToken_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:462
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:14
std::vector< GsfElectron > GsfElectronCollection
collection of GsfElectron objects
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:121
edm::EDGetTokenT< reco::GsfElectronCollection > electronToken_
bool isNull() const
Checks for null.
Definition: Ref.h:249
std::vector< TrackExtra > TrackExtraCollection
collection of TrackExtra objects
Definition: TrackExtraFwd.h:11
edm::EDGetTokenT< reco::TrackExtraCollection > generalTracksExtraToken_

Member Data Documentation

std::string AlCaElectronTracksReducer::alcaTrackCollection_
private

Definition at line 54 of file AlCaElectronTracksReducer.h.

Referenced by AlCaElectronTracksReducer(), and produce().

std::string AlCaElectronTracksReducer::alcaTrackExtraCollection_
private

Definition at line 55 of file AlCaElectronTracksReducer.h.

Referenced by AlCaElectronTracksReducer(), and produce().

edm::EDGetTokenT<reco::GsfElectronCollection> AlCaElectronTracksReducer::electronToken_
private

Definition at line 49 of file AlCaElectronTracksReducer.h.

Referenced by AlCaElectronTracksReducer(), and produce().

edm::EDGetTokenT<reco::TrackExtraCollection> AlCaElectronTracksReducer::generalTracksExtraToken_
private

Definition at line 51 of file AlCaElectronTracksReducer.h.

Referenced by AlCaElectronTracksReducer(), and produce().

edm::EDGetTokenT<reco::TrackCollection> AlCaElectronTracksReducer::generalTracksToken_
private

Definition at line 50 of file AlCaElectronTracksReducer.h.

Referenced by AlCaElectronTracksReducer(), and produce().