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 
9 
11 {
12 
13  tauSrc_ = consumes<reco::PFTauCollection>(iConfig.getParameter<edm::InputTag>("Source"));
14  produces<reco::CaloJetCollection>();
15 }
16 
18 
20 {
21 
22  using namespace reco;
23  using namespace edm;
24  using namespace std;
25  CaloJet::Specific specific;
26 
27  CaloJetCollection * jetCollectionTmp = new CaloJetCollection;
29  iEvent.getByToken( tauSrc_, tauJets );
30  PFTauCollection::const_iterator i = tauJets->begin();
31  for(;i !=tauJets->end(); i++ ) {
32  CaloJet jet(i->p4(),i->vertex(),specific);
33  jet.setPdgId(15);
34  jetCollectionTmp->push_back(jet);
35 
36  }
37 
38 
39 
40  unique_ptr<reco::CaloJetCollection> selectedTaus(jetCollectionTmp);
41  iEvent.put(std::move(selectedTaus));
42 
43 
44 }
T getParameter(std::string const &) const
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
Jets made from CaloTowers.
Definition: CaloJet.h:29
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
PFTauToJetProducer(const edm::ParameterSet &)
~PFTauToJetProducer() override
selectedTaus
====================================== Taus
int iEvent
Definition: GenABIO.cc:224
void produce(edm::Event &, const edm::EventSetup &) override
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