CMS 3D CMS Logo

PFTauToJetProducer.cc
Go to the documentation of this file.
4 #include "Math/GenVector/VectorUtil.h"
5 //
6 // class decleration
7 //
8 
10  tauSrc_ = consumes<reco::PFTauCollection>(iConfig.getParameter<edm::InputTag>("Source"));
11  produces<reco::CaloJetCollection>();
12 }
13 
15 
17  using namespace reco;
18  using namespace edm;
19  using namespace std;
21 
22  CaloJetCollection* jetCollectionTmp = new CaloJetCollection;
24  iEvent.getByToken(tauSrc_, tauJets);
25  PFTauCollection::const_iterator i = tauJets->begin();
26  for (; i != tauJets->end(); i++) {
27  CaloJet jet(i->p4(), i->vertex(), specific);
28  jet.setPdgId(15);
29  jetCollectionTmp->push_back(jet);
30  }
31 
32  unique_ptr<reco::CaloJetCollection> selectedTaus(jetCollectionTmp);
34 }
35 
T getParameter(std::string const &) const
Definition: ParameterSet.h:307
Jets made from CaloTowers.
Definition: CaloJet.h:27
PFTauToJetProducer(const edm::ParameterSet &)
void produce(edm::StreamID, edm::Event &, const edm::EventSetup &) const override
~PFTauToJetProducer() override
selectedTaus
====================================== Taus
int iEvent
Definition: GenABIO.cc:224
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
fixed size matrix
HLT enums.
edm::EDGetTokenT< reco::PFTauCollection > tauSrc_
def move(src, dest)
Definition: eostools.py:511
std::vector< CaloJet > CaloJetCollection
collection of CaloJet objects