CMS 3D CMS Logo

All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
AlCaElectronTracksReducer.cc
Go to the documentation of this file.
4 
6  generalTracksToken_ = consumes<reco::TrackCollection>(iConfig.getParameter<edm::InputTag>("generalTracksLabel"));
8  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 
20 
21 // ------------ method called to produce the data ------------
23  using namespace edm;
24  using namespace std;
25  using namespace reco;
26 
27  // Get GSFElectrons
29  iEvent.getByToken(electronToken_, pElectrons);
30 
32 
33  Handle<TrackCollection> generalTracksHandle;
34  iEvent.getByToken(generalTracksToken_, generalTracksHandle);
35 
36  Handle<TrackExtraCollection> generalTracksExtraHandle;
37  iEvent.getByToken(generalTracksExtraToken_, generalTracksExtraHandle);
38 
39  //Create empty output collections
40  auto redGeneralTracksCollection = std::make_unique<TrackCollection>();
41  auto redGeneralTracksExtraCollection = std::make_unique<TrackExtraCollection>();
42 
43  reco::GsfElectronCollection::const_iterator eleIt;
44 
45  for (eleIt = electronCollection->begin(); eleIt != electronCollection->end(); eleIt++) {
46  // barrel
47  TrackRef track = (eleIt->closestCtfTrackRef());
48  if (track.isNull()) {
49  // edm::LogError("track") << "Track Ref not found " << eleIt->energy() << "\t" << eleIt->eta();
50  continue;
51  }
52  redGeneralTracksCollection->push_back(*track);
53  if (generalTracksExtraHandle.isValid())
54  redGeneralTracksExtraCollection->push_back(*(track->extra()));
55  }
56 
57  //Put selected information in the event
58  iEvent.put(std::move(redGeneralTracksCollection), alcaTrackCollection_);
59  iEvent.put(std::move(redGeneralTracksExtraCollection), alcaTrackExtraCollection_);
60 }
61 
T getParameter(std::string const &) const
edm::EDGetTokenT< reco::TrackCollection > generalTracksToken_
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:131
AlCaElectronTracksReducer(const edm::ParameterSet &)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:525
void produce(edm::Event &, const edm::EventSetup &) override
std::vector< GsfElectron > GsfElectronCollection
collection of GsfElectron objects
int iEvent
Definition: GenABIO.cc:224
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
edm::EDGetTokenT< reco::GsfElectronCollection > electronToken_
bool isValid() const
Definition: HandleBase.h:70
bool isNull() const
Checks for null.
Definition: Ref.h:235
T const * product() const
Definition: Handle.h:69
fixed size matrix
HLT enums.
edm::EDGetTokenT< reco::TrackExtraCollection > generalTracksExtraToken_
def move(src, dest)
Definition: eostools.py:511