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 
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 
edm::Handle::product
T const * product() const
Definition: Handle.h:70
AlCaElectronTracksReducer.h
edm
HLT enums.
Definition: AlignableModifier.h:19
AlCaElectronTracksReducer::alcaTrackCollection_
std::string alcaTrackCollection_
Definition: AlCaElectronTracksReducer.h:52
AlCaElectronTracksReducer
Definition: AlCaElectronTracksReducer.h:37
pdwgLeptonRecoSkim_cfi.electronCollection
electronCollection
Definition: pdwgLeptonRecoSkim_cfi.py:5
reco::GsfElectronCollection
std::vector< GsfElectron > GsfElectronCollection
collection of GsfElectron objects
Definition: GsfElectronFwd.h:14
AlCaElectronTracksReducer::alcaTrackExtraCollection_
std::string alcaTrackExtraCollection_
Definition: AlCaElectronTracksReducer.h:53
reco
fixed size matrix
Definition: AlignmentAlgorithmBase.h:45
edm::Handle< reco::GsfElectronCollection >
edm::Ref< TrackCollection >
AlCaElectronTracksReducer::generalTracksExtraToken_
edm::EDGetTokenT< reco::TrackExtraCollection > generalTracksExtraToken_
Definition: AlCaElectronTracksReducer.h:49
Track.h
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
GsfElectron.h
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
edm::ParameterSet
Definition: ParameterSet.h:36
AlCaElectronTracksReducer::AlCaElectronTracksReducer
AlCaElectronTracksReducer(const edm::ParameterSet &)
Definition: AlCaElectronTracksReducer.cc:5
iEvent
int iEvent
Definition: GenABIO.cc:224
edm::EventSetup
Definition: EventSetup.h:57
AlCaElectronTracksReducer::~AlCaElectronTracksReducer
~AlCaElectronTracksReducer() override
Definition: AlCaElectronTracksReducer.cc:19
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
AlCaElectronTracksReducer::generalTracksToken_
edm::EDGetTokenT< reco::TrackCollection > generalTracksToken_
Definition: AlCaElectronTracksReducer.h:48
eostools.move
def move(src, dest)
Definition: eostools.py:511
std
Definition: JetResolutionObject.h:76
HLT_2018_cff.track
track
Definition: HLT_2018_cff.py:10352
edm::HandleBase::isValid
bool isValid() const
Definition: HandleBase.h:70
edm::Event
Definition: Event.h:73
AlCaElectronTracksReducer::produce
void produce(edm::Event &, const edm::EventSetup &) override
Definition: AlCaElectronTracksReducer.cc:22
edm::InputTag
Definition: InputTag.h:15
AlCaElectronTracksReducer::electronToken_
edm::EDGetTokenT< reco::GsfElectronCollection > electronToken_
Definition: AlCaElectronTracksReducer.h:47