CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
JetChargeProducer.cc
Go to the documentation of this file.
2 
4 src_(cfg.getParameter<edm::InputTag>("src")),
5 algo_(cfg) {
6  produces<JetChargeCollection>();
7 }
8 
11  iEvent.getByLabel(src_, hJTAs);
14 
15  if (hJTAs->keyProduct().isNull()) {
16  // need to work around this bug someway, altough it's not stricly my fault
17  std::auto_ptr<JetChargeCollection> ret(new JetChargeCollection());
18  iEvent.put(ret);
19  return;
20  }
21  std::auto_ptr<JetChargeCollection> ret(new JetChargeCollection(hJTAs->keyProduct()));
22  for (IT it = hJTAs->begin(), ed = hJTAs->end(); it != ed; ++it) {
23  const JetRef &jet = it->first;
24  const reco::TrackRefVector &tracks = it->second;
25  float val = static_cast<float>( algo_.charge(jet->p4(), tracks) );
27  }
28 
29  iEvent.put(ret);
30 }
double charge(const LorentzVector &lv, const reco::TrackCollection &vec) const
Definition: JetCharge.cc:7
transient_vector_type::const_iterator const_iterator
virtual void produce(edm::Event &, const edm::EventSetup &)
edm::Ref< JetCollection > JetRef
Definition: Jet.h:52
int iEvent
Definition: GenABIO.cc:243
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:85
edm::InputTag src_
std::vector< LinkConnSpec >::const_iterator IT
reco::JetFloatAssociation::Container JetChargeCollection
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:356
bool setValue(Container &, const reco::JetBaseRef &, float)
associate jet with value
JetChargeProducer(const edm::ParameterSet &cfg)
tuple tracks
Definition: testEve_cfg.py:39