16 hltElectronTag(iConfig.getParameter<
edm::InputTag > (
"HltElectronTag")),
17 sourceJetTag(iConfig.getParameter<
edm::InputTag > (
"SourceJetTag")),
18 minJetPt_(iConfig.getParameter<double> (
"MinJetPt")),
19 maxAbsJetEta_(iConfig.getParameter<double> (
"MaxAbsJetEta")),
20 minNJets_(iConfig.getParameter<unsigned
int> (
"MinNJets")),
21 minDeltaR_(iConfig.getParameter< double > (
"minDeltaR")),
23 minSoftJetPt_(iConfig.getParameter< double > (
"MinSoftJetPt")),
24 minDeltaEta_(iConfig.getParameter< double > (
"MinDeltaEta"))
26 typedef std::vector<T> TCollection;
29 produces<TCollection>();
46 desc.
add<
double> (
"MinJetPt", 30.);
47 desc.
add<
double> (
"MaxAbsJetEta", 2.6);
48 desc.
add<
unsigned int> (
"MinNJets", 1);
49 desc.
add<
double> (
"minDeltaR", 0.5);
51 desc.
add<
double> (
"MinSoftJetPt", 25.);
52 desc.
add<
double> (
"MinDeltaEta", -1.);
69 typedef vector<T> TCollection;
79 std::vector<edm::Ref<reco::RecoEcalCandidateCollection> > clusCands;
82 std::vector<edm::Ref<reco::ElectronCollection> > eleCands;
89 std::vector<TVector3> ElePs;
91 if(!clusCands.empty()){
92 for(
size_t candNr=0;candNr<clusCands.size();candNr++){
93 TVector3 positionVector(
94 clusCands[candNr]->superCluster()->
position().
x(),
95 clusCands[candNr]->superCluster()->
position().
y(),
96 clusCands[candNr]->superCluster()->
position().
z());
97 ElePs.push_back(positionVector);
99 }
else if(!eleCands.empty()){
100 for(
size_t candNr=0;candNr<eleCands.size();candNr++){
101 TVector3 positionVector(
102 eleCands[candNr]->superCluster()->
position().
x(),
103 eleCands[candNr]->superCluster()->
position().
y(),
104 eleCands[candNr]->superCluster()->
position().
z());
105 ElePs.push_back(positionVector);
108 else if(!photonCands.empty()){
109 for(
size_t candNr=0;candNr<photonCands.size();candNr++){
110 TVector3 positionVector(
111 photonCands[candNr]->superCluster()->
position().
x(),
112 photonCands[candNr]->superCluster()->
position().
y(),
113 photonCands[candNr]->superCluster()->
position().
z());
114 ElePs.push_back(positionVector);
121 const TCollection & theJetCollection = *theJetCollectionHandle;
123 std::unique_ptr< TCollection > theFilteredJetCollection(
new TCollection);
125 std::unique_ptr < TCollectionVector > allSelections(
new TCollectionVector());
127 bool foundSolution(
false);
129 for (
unsigned int i = 0;
i < ElePs.size();
i++) {
131 bool VBFJetPair =
false;
132 std::vector<int> store_jet;
133 TRefVector refVector;
135 for (
unsigned int j = 0;
j < theJetCollection.size();
j++) {
136 TVector3 JetP(theJetCollection[
j].px(), theJetCollection[
j].py(),
137 theJetCollection[
j].pz());
138 double DR = ElePs[
i].DeltaR(JetP);
141 store_jet.push_back(
j);
144 for (
unsigned int k =
j+1;
k < theJetCollection.size();
k++ ) {
145 TVector3 SoftJetP(theJetCollection[
k].px(), theJetCollection[
k].py(),
146 theJetCollection[
k].pz());
147 double softDR = ElePs[
i].DeltaR(SoftJetP);
151 store_jet.push_back(
k);
161 std::sort( store_jet.begin(), store_jet.end() );
162 store_jet.erase(
unique( store_jet.begin(), store_jet.end() ), store_jet.end() );
165 for (
unsigned int ijet = 0; ijet < store_jet.size(); ijet++ )
168 refVector.push_back(TRef(theJetCollectionHandle, store_jet.at(ijet)));
171 theFilteredJetCollection->push_back(theJetCollection[store_jet.at(ijet)]);
174 allSelections->push_back(refVector);
177 foundSolution =
true;
179 foundSolution =
true;
180 else if (!foundSolution)
181 theFilteredJetCollection->clear();
std::string defaultModuleLabel()
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefs > m_theElectronToken
void getObjects(Vids &ids, VRphoton &refs) const
various physics-level getters:
bool getByToken(EDGetToken token, Handle< PROD > &result) const
~HLTJetCollForElePlusJets()
edm::EDGetTokenT< std::vector< T > > m_theJetToken
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
def unique(seq, keepstr=True)
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