32 pixlTag_ (iConfig.getParameter<edm::InputTag>(
"pixlTag")),
33 min_Pt_ (iConfig.getParameter<double>(
"MinPt")),
34 min_trks_ (iConfig.getParameter<unsigned int>(
"MinTrks")),
35 min_sep_ (iConfig.getParameter<double>(
"MinSep"))
41 LogDebug(
"") <<
"Requesting tracks from same vertex eta-phi separation by " <<
min_sep_;
53 desc.
add<
double>(
"MinPt",0.);
54 desc.
add<
unsigned int>(
"MinTrks",2);
55 desc.
add<
double>(
"MinSep",1.);
56 descriptions.
add(
"hltPixlMBFilt",desc);
69 using namespace trigger;
86 vector<double> etastore;
87 vector<double> phistore;
90 RecoChargedCandidateCollection::const_iterator apixl(
tracks->begin());
91 RecoChargedCandidateCollection::const_iterator epixl(
tracks->end());
92 RecoChargedCandidateCollection::const_iterator ipixl, jpixl;
93 unsigned int nsame_vtx=0;
96 for (ipixl=apixl; ipixl!=epixl; ipixl++){
98 const double& ztrk1 = ipixl->vz();
99 const double& etatrk1 = ipixl->momentum().eta();
100 const double& phitrk1 = ipixl->momentum().phi();
105 etastore.push_back(etatrk1);
106 phistore.push_back(phitrk1);
107 itstore.push_back(itrk);
108 if (fabs(ztrk1) < 15.0) {
111 for (jpixl=apixl; jpixl!=epixl; jpixl++) {
113 if (jpixl==ipixl)
continue;
114 const double& ztrk2 = jpixl->vz();
115 const double& etatrk2 = jpixl->momentum().eta();
116 const double& phitrk2 = jpixl->momentum().phi();
117 double eta_dist=etatrk2-etatrk1;
118 double phi_dist=phitrk2-phitrk1;
119 double etaphi_dist=
sqrt(eta_dist*eta_dist + phi_dist*phi_dist);
120 if (fabs(ztrk2-ztrk1) < 1.0 && etaphi_dist >
min_sep_) {
121 if (
min_trks_ <= 2 || itstore.size() <= 1) {
122 etastore.push_back(etatrk2);
123 phistore.push_back(phitrk2);
124 itstore.push_back(jtrk);
128 LogDebug(
"") <<
"HLTPixlMBFilt: with mintrks=2 we should not be here...";
130 for (
unsigned int k=1;
k < itstore.size();
k++) {
131 eta_dist=etatrk2-etastore.at(
k);
132 phi_dist=phitrk2-phistore.at(
k);
133 etaphi_dist=
sqrt(eta_dist*eta_dist + phi_dist*phi_dist);
140 etastore.push_back(etatrk2);
141 phistore.push_back(phitrk2);
142 itstore.push_back(jtrk);
167 for (
unsigned int ipos=0; ipos < itstore.size(); ipos++) {
168 int iaddr=itstore.at(ipos);
173 LogDebug(
"") <<
"Number of pixel-track objects accepted:"
HLTPixlMBFilt(const edm::ParameterSet &)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
edm::Ref< RecoChargedCandidateCollection > RecoChargedCandidateRef
reference to an object in a collection of RecoChargedCandidate objects
bool accept(const edm::Event &event, const edm::TriggerResults &triggerTable, const std::string &triggerPath)
void addObject(int id, const reco::RecoEcalCandidateRef &ref)
setters for L3 collections: (id=physics type, and Ref<C>)
virtual bool hltFilter(edm::Event &, const edm::EventSetup &, trigger::TriggerFilterObjectWithRefs &filterproduct) const override
edm::EDGetTokenT< reco::RecoChargedCandidateCollection > pixlToken_
ParameterDescriptionBase * add(U const &iLabel, T const &value)
static void makeHLTFilterDescription(edm::ParameterSetDescription &desc)
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
void add(std::string const &label, ParameterSetDescription const &psetDescription)