CMS 3D CMS Logo

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 
19 // ------------ method called to produce the data ------------
21  using namespace edm;
22  using namespace std;
23  using namespace reco;
24 
25  // Get GSFElectrons
27  iEvent.getByToken(electronToken_, pElectrons);
28 
30 
31  Handle<TrackCollection> generalTracksHandle;
32  iEvent.getByToken(generalTracksToken_, generalTracksHandle);
33 
34  Handle<TrackExtraCollection> generalTracksExtraHandle;
35  iEvent.getByToken(generalTracksExtraToken_, generalTracksExtraHandle);
36 
37  //Create empty output collections
38  auto redGeneralTracksCollection = std::make_unique<TrackCollection>();
39  auto redGeneralTracksExtraCollection = std::make_unique<TrackExtraCollection>();
40 
41  reco::GsfElectronCollection::const_iterator eleIt;
42 
43  for (eleIt = electronCollection->begin(); eleIt != electronCollection->end(); eleIt++) {
44  // barrel
45  TrackRef track = (eleIt->closestCtfTrackRef());
46  if (track.isNull()) {
47  // edm::LogError("track") << "Track Ref not found " << eleIt->energy() << "\t" << eleIt->eta();
48  continue;
49  }
50  redGeneralTracksCollection->push_back(*track);
51  if (generalTracksExtraHandle.isValid())
52  redGeneralTracksExtraCollection->push_back(*(track->extra()));
53  }
54 
55  //Put selected information in the event
56  iEvent.put(std::move(redGeneralTracksCollection), alcaTrackCollection_);
57  iEvent.put(std::move(redGeneralTracksExtraCollection), alcaTrackExtraCollection_);
58 }
59 
edm::EDGetTokenT< reco::TrackCollection > generalTracksToken_
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
AlCaElectronTracksReducer(const edm::ParameterSet &)
T const * product() const
Definition: Handle.h:70
std::vector< GsfElectron > GsfElectronCollection
collection of GsfElectron objects
void produce(edm::StreamID, edm::Event &, const edm::EventSetup &) const override
int iEvent
Definition: GenABIO.cc:224
edm::EDGetTokenT< reco::GsfElectronCollection > electronToken_
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
bool isValid() const
Definition: HandleBase.h:70
fixed size matrix
HLT enums.
edm::EDGetTokenT< reco::TrackExtraCollection > generalTracksExtraToken_
def move(src, dest)
Definition: eostools.py:511