CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
CastorJetIDProducer Class Reference

#include <RecoJets/JetProducers/plugins/CastorJetIDProducer.cc>

Inheritance diagram for CastorJetIDProducer:
edm::stream::EDProducer<>

Public Member Functions

 CastorJetIDProducer (const edm::ParameterSet &)
 
 ~CastorJetIDProducer () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
 EDProducer (const EDProducer &)=delete
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 
const EDProduceroperator= (const EDProducer &)=delete
 

Private Member Functions

void produce (edm::Event &, const edm::EventSetup &) override
 

Private Attributes

reco::helper::CastorJetIDHelper helper_
 
edm::EDGetTokenT< edm::View< reco::BasicJet > > input_jet_token_
 
edm::InputTag src_
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
using CacheTypes = CacheContexts< T... >
 
using GlobalCache = typename CacheTypes::GlobalCache
 
using HasAbility = AbilityChecker< T... >
 
using InputProcessBlockCache = typename CacheTypes::InputProcessBlockCache
 
using LuminosityBlockCache = typename CacheTypes::LuminosityBlockCache
 
using LuminosityBlockContext = LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCache >
 
using LuminosityBlockSummaryCache = typename CacheTypes::LuminosityBlockSummaryCache
 
using RunCache = typename CacheTypes::RunCache
 
using RunContext = RunContextT< RunCache, GlobalCache >
 
using RunSummaryCache = typename CacheTypes::RunSummaryCache
 

Detailed Description

Description: Produces a value map of jet—> jet Id

Definition at line 40 of file CastorJetIDProducer.h.

Constructor & Destructor Documentation

◆ CastorJetIDProducer()

CastorJetIDProducer::CastorJetIDProducer ( const edm::ParameterSet iConfig)
explicit

Definition at line 17 of file CastorJetIDProducer.cc.

References input_jet_token_, and src_.

18  : src_(iConfig.getParameter<edm::InputTag>("src")), helper_() {
19  produces<reco::CastorJetIDValueMap>();
20 
21  input_jet_token_ = consumes<edm::View<reco::BasicJet> >(src_);
22 }
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
reco::helper::CastorJetIDHelper helper_
edm::EDGetTokenT< edm::View< reco::BasicJet > > input_jet_token_

◆ ~CastorJetIDProducer()

CastorJetIDProducer::~CastorJetIDProducer ( )
override

Definition at line 24 of file CastorJetIDProducer.cc.

24 {}

Member Function Documentation

◆ produce()

void CastorJetIDProducer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 31 of file CastorJetIDProducer.cc.

References reco::helper::CastorJetIDHelper::calculate(), reco::helper::CastorJetIDHelper::depth(), reco::helper::CastorJetIDHelper::emEnergy(), reco::helper::CastorJetIDHelper::fem(), reco::helper::CastorJetIDHelper::fhot(), trigObjTnPSource_cfi::filler, reco::helper::CastorJetIDHelper::hadEnergy(), helper_, iEvent, input_jet_token_, eostools::move(), BTaggingMonitoring_cff::njets, reco::helper::CastorJetIDHelper::nTowers(), reco::helper::CastorJetIDHelper::sigmaz(), and reco::helper::CastorJetIDHelper::width().

31  {
32  // get the input jets
34  iEvent.getByToken(input_jet_token_, h_jets);
35 
36  // allocate the jet--->jetid value map
37  auto castorjetIdValueMap = std::make_unique<reco::CastorJetIDValueMap>();
38  // instantiate the filler with the map
39  reco::CastorJetIDValueMap::Filler filler(*castorjetIdValueMap);
40 
41  // allocate the vector of ids
42  size_t njets = h_jets->size();
43  std::vector<reco::CastorJetID> ids(njets);
44 
45  // loop over the jets
46  for (edm::View<reco::BasicJet>::const_iterator jetsBegin = h_jets->begin(), jetsEnd = h_jets->end(), ijet = jetsBegin;
47  ijet != jetsEnd;
48  ++ijet) {
49  // get the id from each jet
50  helper_.calculate(iEvent, *ijet);
51 
52  ids[ijet - jetsBegin].emEnergy = helper_.emEnergy();
53  ids[ijet - jetsBegin].hadEnergy = helper_.hadEnergy();
54  ids[ijet - jetsBegin].fem = helper_.fem();
55  ids[ijet - jetsBegin].depth = helper_.depth();
56  ids[ijet - jetsBegin].width = helper_.width();
57  ids[ijet - jetsBegin].fhot = helper_.fhot();
58  ids[ijet - jetsBegin].sigmaz = helper_.sigmaz();
59  ids[ijet - jetsBegin].nTowers = helper_.nTowers();
60  }
61 
62  // set up the map
63  filler.insert(h_jets, ids.begin(), ids.end());
64 
65  // fill the vals
66  filler.fill();
67 
68  // write map to the event
69  iEvent.put(std::move(castorjetIdValueMap));
70 }
int iEvent
Definition: GenABIO.cc:224
void calculate(const edm::Event &event, const reco::BasicJet &jet)
reco::helper::CastorJetIDHelper helper_
edm::EDGetTokenT< edm::View< reco::BasicJet > > input_jet_token_
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:86
def move(src, dest)
Definition: eostools.py:511

Member Data Documentation

◆ helper_

reco::helper::CastorJetIDHelper CastorJetIDProducer::helper_
private

Definition at line 50 of file CastorJetIDProducer.h.

Referenced by produce().

◆ input_jet_token_

edm::EDGetTokenT<edm::View<reco::BasicJet> > CastorJetIDProducer::input_jet_token_
private

Definition at line 52 of file CastorJetIDProducer.h.

Referenced by CastorJetIDProducer(), and produce().

◆ src_

edm::InputTag CastorJetIDProducer::src_
private

Definition at line 49 of file CastorJetIDProducer.h.

Referenced by CastorJetIDProducer().