70 typedef vector<T> TCollection;
79 std::vector<edm::Ref<reco::RecoEcalCandidateCollection> > clusCands;
82 std::vector<edm::Ref<reco::ElectronCollection> > eleCands;
86 std::vector<TVector3> ElePs;
88 if(!clusCands.empty()){
89 for(
size_t candNr=0;candNr<clusCands.size();candNr++){
90 TVector3 positionVector(
91 clusCands[candNr]->superCluster()->
position().
x(),
92 clusCands[candNr]->superCluster()->
position().
y(),
93 clusCands[candNr]->superCluster()->
position().
z());
94 ElePs.push_back(positionVector);
96 }
else if(!eleCands.empty()){
97 for(
size_t candNr=0;candNr<eleCands.size();candNr++){
98 TVector3 positionVector(
99 eleCands[candNr]->superCluster()->
position().
x(),
100 eleCands[candNr]->superCluster()->
position().
y(),
101 eleCands[candNr]->superCluster()->
position().
z());
102 ElePs.push_back(positionVector);
109 const TCollection & theJetCollection = *theJetCollectionHandle;
111 std::auto_ptr< TCollection > theFilteredJetCollection(
new TCollection);
113 std::auto_ptr < TCollectionVector > allSelections(
new TCollectionVector());
115 bool foundSolution(
false);
117 for (
unsigned int i = 0;
i < ElePs.size();
i++) {
119 bool VBFJetPair =
false;
120 std::vector<int> store_jet;
121 TRefVector refVector;
123 for (
unsigned int j = 0;
j < theJetCollection.size();
j++) {
124 TVector3 JetP(theJetCollection[
j].px(), theJetCollection[
j].py(),
125 theJetCollection[
j].pz());
126 double DR = ElePs[
i].DeltaR(JetP);
129 store_jet.push_back(
j);
132 for (
unsigned int k =
j+1;
k < theJetCollection.size();
k++ ) {
133 TVector3 SoftJetP(theJetCollection[
k].px(), theJetCollection[
k].py(),
134 theJetCollection[
k].pz());
135 double softDR = ElePs[
i].DeltaR(SoftJetP);
139 store_jet.push_back(
k);
149 std::sort( store_jet.begin(), store_jet.end() );
150 store_jet.erase( unique( store_jet.begin(), store_jet.end() ), store_jet.end() );
153 for (
unsigned int ijet = 0; ijet < store_jet.size(); ijet++ )
156 refVector.push_back(TRef(theJetCollectionHandle, store_jet.at(ijet)));
159 theFilteredJetCollection->push_back(theJetCollection[store_jet.at(ijet)]);
162 allSelections->push_back(refVector);
165 foundSolution =
true;
167 foundSolution =
true;
168 else if (!foundSolution)
169 theFilteredJetCollection->clear();
174 iEvent.
put(theFilteredJetCollection);
edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefs > m_theElectronToken
bool getByToken(EDGetToken token, Handle< PROD > &result) const
edm::EDGetTokenT< std::vector< T > > m_theJetToken
static int position[TOTALCHAMBERS][3]
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Abs< T >::type abs(const T &t)