CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes
HLTJetCollectionsForLeptonPlusJets< jetType > Class Template Reference

#include <HLTJetCollectionsForLeptonPlusJets.h>

Inheritance diagram for HLTJetCollectionsForLeptonPlusJets< jetType >:
edm::stream::EDProducer<>

Public Member Functions

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

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 

Private Member Functions

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

Private Attributes

edm::InputTag hltLeptonTag
 
edm::EDGetTokenT< std::vector< jetType > > m_theJetToken
 
edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefsm_theLeptonToken
 
double minDeltaR_
 
edm::InputTag sourceJetTag
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
typedef CacheContexts< T... > CacheTypes
 
typedef CacheTypes::GlobalCache GlobalCache
 
typedef AbilityChecker< T... > HasAbility
 
typedef CacheTypes::LuminosityBlockCache LuminosityBlockCache
 
typedef LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCacheLuminosityBlockContext
 
typedef CacheTypes::LuminosityBlockSummaryCache LuminosityBlockSummaryCache
 
typedef CacheTypes::RunCache RunCache
 
typedef RunContextT< RunCache, GlobalCacheRunContext
 
typedef CacheTypes::RunSummaryCache RunSummaryCache
 

Detailed Description

template<typename jetType>
class HLTJetCollectionsForLeptonPlusJets< jetType >

This class is an EDProducer implementing an HLT trigger for lepton and jet objects, cutting on variables relating to the jet 4-momentum representation. The producer checks for overlaps between leptons and jets and if a combination of one lepton + jets cleaned against this leptons satisfy the cuts. These jets are then added to a cleaned jet collection which is put into the event.

Author
Lukasz Kreczko

Definition at line 40 of file HLTJetCollectionsForLeptonPlusJets.h.

Constructor & Destructor Documentation

◆ HLTJetCollectionsForLeptonPlusJets()

template<typename jetType >
HLTJetCollectionsForLeptonPlusJets< jetType >::HLTJetCollectionsForLeptonPlusJets ( const edm::ParameterSet iConfig)
explicit

Definition at line 19 of file HLTJetCollectionsForLeptonPlusJets.cc.

20  : hltLeptonTag(iConfig.getParameter<edm::InputTag>("HltLeptonTag")),
21  sourceJetTag(iConfig.getParameter<edm::InputTag>("SourceJetTag")),
22  minDeltaR_(iConfig.getParameter<double>("minDeltaR")) {
23  using namespace edm;
24  using namespace std;
25  typedef vector<RefVector<vector<jetType>, jetType, refhelper::FindUsingAdvance<vector<jetType>, jetType>>>
26  JetCollectionVector;
27  m_theLeptonToken = consumes<trigger::TriggerFilterObjectWithRefs>(hltLeptonTag);
28  m_theJetToken = consumes<std::vector<jetType>>(sourceJetTag);
29  produces<JetCollectionVector>();
30 }

References HLTJetCollectionsForLeptonPlusJets< jetType >::hltLeptonTag, HLT_2018_cff::jetType, HLTJetCollectionsForLeptonPlusJets< jetType >::m_theJetToken, HLTJetCollectionsForLeptonPlusJets< jetType >::m_theLeptonToken, and HLTJetCollectionsForLeptonPlusJets< jetType >::sourceJetTag.

◆ ~HLTJetCollectionsForLeptonPlusJets()

template<typename jetType >
HLTJetCollectionsForLeptonPlusJets< jetType >::~HLTJetCollectionsForLeptonPlusJets ( )
override

Definition at line 33 of file HLTJetCollectionsForLeptonPlusJets.cc.

33  {
34  // do anything here that needs to be done at desctruction time
35  // (e.g. close files, deallocate resources etc.)
36 }

Member Function Documentation

◆ fillDescriptions()

template<typename jetType >
void HLTJetCollectionsForLeptonPlusJets< jetType >::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 39 of file HLTJetCollectionsForLeptonPlusJets.cc.

39  {
41  desc.add<edm::InputTag>("HltLeptonTag", edm::InputTag("triggerFilterObjectWithRefs"));
42  desc.add<edm::InputTag>("SourceJetTag", edm::InputTag("caloJetCollection"));
43  desc.add<double>("minDeltaR", 0.5);
45 }

References edm::ConfigurationDescriptions::add(), edm::ParameterSetDescription::add(), defaultModuleLabel(), and HLT_2018_cff::InputTag.

◆ produce()

template<typename jetType >
void HLTJetCollectionsForLeptonPlusJets< jetType >::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 54 of file HLTJetCollectionsForLeptonPlusJets.cc.

54  {
55  using namespace edm;
56  using namespace std;
57 
58  typedef vector<RefVector<vector<jetType>, jetType, refhelper::FindUsingAdvance<vector<jetType>, jetType>>>
59  JetCollectionVector;
60  typedef vector<jetType> JetCollection;
63 
65  iEvent.getByToken(m_theLeptonToken, PrevFilterOutput);
66 
67  //its easier on the if statement flow if I try everything at once, shouldnt add to timing
68  // Electrons can be stored as objects of types TriggerCluster, TriggerElectron, or TriggerPhoton
69  vector<Ref<reco::RecoEcalCandidateCollection>> clusCands;
70  PrevFilterOutput->getObjects(trigger::TriggerCluster, clusCands);
71 
72  vector<Ref<reco::ElectronCollection>> eleCands;
73  PrevFilterOutput->getObjects(trigger::TriggerElectron, eleCands);
74 
75  trigger::VRphoton photonCands;
76  PrevFilterOutput->getObjects(trigger::TriggerPhoton, photonCands);
77 
78  vector<reco::RecoChargedCandidateRef> muonCands;
79  PrevFilterOutput->getObjects(trigger::TriggerMuon, muonCands);
80 
81  Handle<JetCollection> theJetCollectionHandle;
82  iEvent.getByToken(m_theJetToken, theJetCollectionHandle);
83 
84  const JetCollection& theJetCollection = *theJetCollectionHandle;
85 
86  unique_ptr<JetCollectionVector> allSelections(new JetCollectionVector());
87 
88  if (!clusCands.empty()) { // try trigger clusters
89  for (auto& clusCand : clusCands) {
90  JetRefVector refVector;
91  for (unsigned int j = 0; j < theJetCollection.size(); j++) {
92  if (deltaR(clusCand->superCluster()->position(), theJetCollection[j]) > minDeltaR_)
93  refVector.push_back(JetRef(theJetCollectionHandle, j));
94  }
95  allSelections->push_back(refVector);
96  }
97  }
98 
99  if (!eleCands.empty()) { // try electrons
100  for (auto& eleCand : eleCands) {
101  JetRefVector refVector;
102  for (unsigned int j = 0; j < theJetCollection.size(); j++) {
103  if (deltaR(eleCand->superCluster()->position(), theJetCollection[j]) > minDeltaR_)
104  refVector.push_back(JetRef(theJetCollectionHandle, j));
105  }
106  allSelections->push_back(refVector);
107  }
108  }
109 
110  if (!photonCands.empty()) { // try photons
111  for (auto& photonCand : photonCands) {
112  JetRefVector refVector;
113  for (unsigned int j = 0; j < theJetCollection.size(); j++) {
114  if (deltaR(photonCand->superCluster()->position(), theJetCollection[j]) > minDeltaR_)
115  refVector.push_back(JetRef(theJetCollectionHandle, j));
116  }
117  allSelections->push_back(refVector);
118  }
119  }
120 
121  if (!muonCands.empty()) { // muons
122  for (auto& muonCand : muonCands) {
123  JetRefVector refVector;
124  for (unsigned int j = 0; j < theJetCollection.size(); j++) {
125  if (deltaR(muonCand->p4(), theJetCollection[j]) > minDeltaR_)
126  refVector.push_back(JetRef(theJetCollectionHandle, j));
127  }
128  allSelections->push_back(refVector);
129  }
130  }
131 
132  iEvent.put(std::move(allSelections));
133 
134  return;
135 }

References PbPb_ZMuSkimMuonDPG_cff::deltaR, trigger::TriggerRefsCollections::getObjects(), iEvent, dqmiolumiharvest::j, HLT_2018_cff::jetType, HLTJetCollectionsForLeptonPlusJets< jetType >::m_theJetToken, HLTJetCollectionsForLeptonPlusJets< jetType >::m_theLeptonToken, HLTJetCollectionsForLeptonPlusJets< jetType >::minDeltaR_, eostools::move(), trigger::TriggerCluster, trigger::TriggerElectron, trigger::TriggerMuon, and trigger::TriggerPhoton.

Member Data Documentation

◆ hltLeptonTag

template<typename jetType >
edm::InputTag HLTJetCollectionsForLeptonPlusJets< jetType >::hltLeptonTag
private

◆ m_theJetToken

template<typename jetType >
edm::EDGetTokenT<std::vector<jetType> > HLTJetCollectionsForLeptonPlusJets< jetType >::m_theJetToken
private

◆ m_theLeptonToken

template<typename jetType >
edm::EDGetTokenT<trigger::TriggerFilterObjectWithRefs> HLTJetCollectionsForLeptonPlusJets< jetType >::m_theLeptonToken
private

◆ minDeltaR_

template<typename jetType >
double HLTJetCollectionsForLeptonPlusJets< jetType >::minDeltaR_
private

◆ sourceJetTag

template<typename jetType >
edm::InputTag HLTJetCollectionsForLeptonPlusJets< jetType >::sourceJetTag
private
HLTJetCollectionsForLeptonPlusJets
Definition: HLTJetCollectionsForLeptonPlusJets.h:40
HLTJetCollectionsForLeptonPlusJets::m_theJetToken
edm::EDGetTokenT< std::vector< jetType > > m_theJetToken
Definition: HLTJetCollectionsForLeptonPlusJets.h:50
edm::ParameterSetDescription::add
ParameterDescriptionBase * add(U const &iLabel, T const &value)
Definition: ParameterSetDescription.h:95
trigger::TriggerElectron
Definition: TriggerTypeDefs.h:67
trigger::VRphoton
std::vector< reco::RecoEcalCandidateRef > VRphoton
Definition: TriggerRefsCollections.h:60
HLTJetCollectionsForLeptonPlusJets::m_theLeptonToken
edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefs > m_theLeptonToken
Definition: HLTJetCollectionsForLeptonPlusJets.h:49
l1t::JetRefVector
edm::RefVector< JetBxCollection > JetRefVector
Definition: Jet.h:13
edm
HLT enums.
Definition: AlignableModifier.h:19
edm::ParameterSetDescription
Definition: ParameterSetDescription.h:52
edm::RefVector
Definition: EDProductfwd.h:27
edm::Handle< trigger::TriggerFilterObjectWithRefs >
trigger::TriggerRefsCollections::getObjects
void getObjects(Vids &ids, VRphoton &refs) const
various physics-level getters:
Definition: TriggerRefsCollections.h:452
edm::Ref
Definition: AssociativeIterator.h:58
HLTJetCollectionsForLeptonPlusJets::sourceJetTag
edm::InputTag sourceJetTag
Definition: HLTJetCollectionsForLeptonPlusJets.h:52
edm::ConfigurationDescriptions::add
void add(std::string const &label, ParameterSetDescription const &psetDescription)
Definition: ConfigurationDescriptions.cc:57
HLTJetCollectionsForLeptonPlusJets::hltLeptonTag
edm::InputTag hltLeptonTag
Definition: HLTJetCollectionsForLeptonPlusJets.h:51
pat::JetCollection
std::vector< Jet > JetCollection
Definition: Jet.h:53
trigger::TriggerMuon
Definition: TriggerTypeDefs.h:68
PbPb_ZMuSkimMuonDPG_cff.deltaR
deltaR
Definition: PbPb_ZMuSkimMuonDPG_cff.py:63
HLT_2018_cff.InputTag
InputTag
Definition: HLT_2018_cff.py:79016
defaultModuleLabel
std::string defaultModuleLabel()
Definition: defaultModuleLabel.h:16
iEvent
int iEvent
Definition: GenABIO.cc:224
trigger::TriggerCluster
Definition: TriggerTypeDefs.h:77
l1t::JetRef
edm::Ref< JetBxCollection > JetRef
Definition: Jet.h:12
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
eostools.move
def move(src, dest)
Definition: eostools.py:511
std
Definition: JetResolutionObject.h:76
HLT_2018_cff.jetType
jetType
Definition: HLT_2018_cff.py:7318
trigger::TriggerPhoton
HLT.
Definition: TriggerTypeDefs.h:66
dqmiolumiharvest.j
j
Definition: dqmiolumiharvest.py:66
edm::InputTag
Definition: InputTag.h:15
HLTJetCollectionsForLeptonPlusJets::minDeltaR_
double minDeltaR_
Definition: HLTJetCollectionsForLeptonPlusJets.h:54
edm::refhelper::FindUsingAdvance
Definition: RefTraits.h:14