17 hltElectronTag(iConfig.getParameter< edm::InputTag > (
"HltElectronTag")),
18 sourceJetTag(iConfig.getParameter< edm::InputTag > (
"SourceJetTag")),
19 minJetPt_(iConfig.getParameter<double> (
"MinJetPt")),
20 maxAbsJetEta_(iConfig.getParameter<double> (
"MaxAbsJetEta")),
21 minNJets_(iConfig.getParameter<unsigned int> (
"MinNJets")),
22 minDeltaR_(iConfig.getParameter< double > (
"minDeltaR")),
24 minSoftJetPt_(iConfig.getParameter< double > (
"MinSoftJetPt")),
25 minDeltaEta_(iConfig.getParameter< double > (
"MinDeltaEta"))
27 typedef std::vector<T> TCollection;
30 produces<TCollection>();
47 desc.
add<
double> (
"MinJetPt", 30.);
48 desc.
add<
double> (
"MaxAbsJetEta", 2.6);
49 desc.
add<
unsigned int> (
"MinNJets", 1);
50 desc.
add<
double> (
"minDeltaR", 0.5);
52 desc.
add<
double> (
"MinSoftJetPt", 25.);
53 desc.
add<
double> (
"MinDeltaEta", -1.);
70 typedef vector<T> TCollection;
76 iEvent.
getByToken(m_theElectronToken,PrevFilterOutput);
80 std::vector<edm::Ref<reco::RecoEcalCandidateCollection> > clusCands;
83 std::vector<edm::Ref<reco::ElectronCollection> > eleCands;
90 std::vector<TVector3> ElePs;
92 if(!clusCands.empty()){
93 for(
size_t candNr=0;candNr<clusCands.size();candNr++){
94 TVector3 positionVector(
95 clusCands[candNr]->superCluster()->
position().
x(),
96 clusCands[candNr]->superCluster()->
position().
y(),
97 clusCands[candNr]->superCluster()->
position().
z());
98 ElePs.push_back(positionVector);
100 }
else if(!eleCands.empty()){
101 for(
size_t candNr=0;candNr<eleCands.size();candNr++){
102 TVector3 positionVector(
103 eleCands[candNr]->superCluster()->
position().
x(),
104 eleCands[candNr]->superCluster()->
position().
y(),
105 eleCands[candNr]->superCluster()->
position().
z());
106 ElePs.push_back(positionVector);
109 else if(!photonCands.empty()){
110 for(
size_t candNr=0;candNr<photonCands.size();candNr++){
111 TVector3 positionVector(
112 photonCands[candNr]->superCluster()->
position().
x(),
113 photonCands[candNr]->superCluster()->
position().
y(),
114 photonCands[candNr]->superCluster()->
position().
z());
115 ElePs.push_back(positionVector);
120 iEvent.
getByToken(m_theJetToken, theJetCollectionHandle);
122 const TCollection & theJetCollection = *theJetCollectionHandle;
124 std::auto_ptr< TCollection > theFilteredJetCollection(
new TCollection);
126 std::auto_ptr < TCollectionVector > allSelections(
new TCollectionVector());
128 bool foundSolution(
false);
130 for (
unsigned int i = 0;
i < ElePs.size();
i++) {
132 bool VBFJetPair =
false;
133 std::vector<int> store_jet;
134 TRefVector refVector;
136 for (
unsigned int j = 0;
j < theJetCollection.size();
j++) {
137 TVector3 JetP(theJetCollection[
j].px(), theJetCollection[
j].py(),
138 theJetCollection[
j].pz());
139 double DR = ElePs[
i].DeltaR(JetP);
141 if (JetP.Pt() > minJetPt_ &&
std::abs(JetP.Eta()) < maxAbsJetEta_ && DR > minDeltaR_) {
142 store_jet.push_back(
j);
144 if ( minDeltaEta_ > 0 ) {
145 for (
unsigned int k =
j+1;
k < theJetCollection.size();
k++ ) {
146 TVector3 SoftJetP(theJetCollection[
k].px(), theJetCollection[
k].py(),
147 theJetCollection[
k].pz());
148 double softDR = ElePs[
i].DeltaR(SoftJetP);
150 if (SoftJetP.Pt() > minSoftJetPt_ &&
std::abs(SoftJetP.Eta()) < maxAbsJetEta_ && softDR > minDeltaR_)
151 if (
std::abs(SoftJetP.Eta() - JetP.Eta()) > minDeltaEta_ ) {
152 store_jet.push_back(
k);
162 std::sort( store_jet.begin(), store_jet.end() );
163 store_jet.erase( unique( store_jet.begin(), store_jet.end() ), store_jet.end() );
166 for (
unsigned int ijet = 0; ijet < store_jet.size(); ijet++ )
169 refVector.push_back(TRef(theJetCollectionHandle, store_jet.at(ijet)));
172 theFilteredJetCollection->push_back(theJetCollection[store_jet.at(ijet)]);
175 allSelections->push_back(refVector);
177 if (theFilteredJetCollection->size() >= minNJets_ && minDeltaEta_ < 0)
178 foundSolution =
true;
179 else if (VBFJetPair && minDeltaEta_ > 0)
180 foundSolution =
true;
181 else if (!foundSolution)
182 theFilteredJetCollection->clear();
187 iEvent.
put(theFilteredJetCollection);
edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefs > m_theElectronToken
bool getByToken(EDGetToken token, Handle< PROD > &result) const
~HLTJetCollForElePlusJets()
edm::EDGetTokenT< std::vector< T > > m_theJetToken
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Abs< T >::type abs(const T &t)
ParameterDescriptionBase * add(U const &iLabel, T const &value)
HLTJetCollForElePlusJets(const edm::ParameterSet &)
void add(std::string const &label, ParameterSetDescription const &psetDescription)
static int position[264][3]
virtual void produce(edm::Event &, const edm::EventSetup &)
edm::InputTag hltElectronTag
edm::InputTag sourceJetTag
std::vector< reco::RecoEcalCandidateRef > VRphoton