1 #ifndef HLTJetsCleanedFromLeadingLeptons_h 2 #define HLTJetsCleanedFromLeadingLeptons_h 27 template <
typename JetType>
34 typedef std::vector<edm::RefVector<JetCollection, JetType, edm::refhelper::FindUsingAdvance<JetCollection, JetType>>>
112 template <
typename JetType>
116 template <
typename JetType>
121 template <
typename JetType>
126 template <
typename JetType>
131 template <
typename JetType>
136 template <
typename JetType>
139 numLeptons(iConfig.getParameter<unsigned>(
"numLeptons")) {
143 produces<JetCollectionVector>();
146 template <
typename JetType>
151 ->setComment(
"A collection of leptons that pass an HLT filter");
153 desc.
add<
double>(
"minDeltaR", 0.3)->
setComment(
"Minimal allowed angular separation between a jet and a lepton");
154 desc.
add<
unsigned>(
"numLeptons", 1)->setComment(
"Number of leading leptons against which the jets are cleaned");
159 template <
typename JetType>
166 std::vector<EtaPhiE> leptonMomenta;
172 for (
auto const &muRef : muons)
173 leptonMomenta.emplace_back(muRef->eta(), muRef->phi(), muRef->energy());
181 for (
auto const &eRef : electrons)
183 auto const &
sc = eRef->superCluster();
190 for (
auto const &eRef : photons)
192 auto const &
sc = eRef->superCluster();
199 for (
auto const &eRef : clusters)
201 auto const &
sc = eRef->superCluster();
206 std::sort(leptonMomenta.rbegin(), leptonMomenta.rend());
215 unsigned const numLeptonsToLoop = std::min<unsigned>(leptonMomenta.size(),
numLeptons);
217 for (
unsigned iJet = 0; iJet < jets.size(); ++iJet) {
220 for (
unsigned iLepton = 0; iLepton < numLeptonsToLoop; ++iLepton)
233 product->emplace_back(cleanedJetRefs);
237 #endif // HLTJetsCleanedFromLeadingLeptons_h HLTJetsCleanedFromLeadingLeptons(edm::ParameterSet const &iConfig)
Constructor.
T getParameter(std::string const &) const
void setComment(std::string const &value)
edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefs > leptonToken
Token to identify a collection of leptons that pass an HLT filter.
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
void getObjects(Vids &ids, VRphoton &refs) const
various physics-level getters:
unsigned numLeptons
Number of leading leptons against which the jets are cleaned.
float phi() const
Momentum azimuthal angle. Note this is taken from the first SimTrack only.
bool operator<(EtaPhiE const &rhs) const
A comparison operator to sort a collection of objects of this type.
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
Describes configuration of the plugin.
bool getByToken(EDGetToken token, Handle< PROD > &result) const
double phi() const
Returns azimuthal angle.
edm::RefVector< JetCollection > JetRefVector
std::string defaultModuleLabel()
std::vector< JetType > JetCollection
An auxiliary class to store momentum parametrised in eta, phi, and energy.
std::vector< edm::RefVector< JetCollection, JetType, edm::refhelper::FindUsingAdvance< JetCollection, JetType > > > JetCollectionVector
double minDeltaR2
A square of the minimal allowed angular separation between a lepton and a jet.
float energy() const
Energy. Note this is taken from the first SimTrack only.
EtaPhiE(double eta, double phi, double e)
Constructor.
ParameterDescriptionBase * add(U const &iLabel, T const &value)
Produces a collection of jets cleaned against leading leptons.
constexpr auto deltaR2(const T1 &t1, const T2 &t2) -> decltype(t1.eta())
void add(std::string const &label, ParameterSetDescription const &psetDescription)
std::vector< reco::RecoChargedCandidateRef > VRmuon
void produce(edm::Event &iEvent, edm::EventSetup const &iSetup) override
Produces jets cleaned against leptons.
double eta() const
Returns pseudorapidity.
double e() const
Returns energy.
void push_back(value_type const &ref)
Add a Ref<C, T> to the RefVector.
std::vector< reco::ElectronRef > VRelectron
edm::EDGetTokenT< std::vector< JetType > > jetToken
Token to access a collection of jets.
std::vector< reco::RecoEcalCandidateRef > VRphoton
edm::Ref< JetCollection > JetRef
Power< A, B >::type pow(const A &a, const B &b)
double etaValue
Pseudorapidity and azimuthal angle.
float eta() const
Momentum pseudorapidity. Note this is taken from the simtrack before the calorimeter.