CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HLTJetCollectionsForElePlusJets.cc
Go to the documentation of this file.
1 #include <string>
2 #include <vector>
3 
4 #include "TVector3.h"
5 
14 
15 
16 template<typename T>
18  hltElectronTag(iConfig.getParameter< edm::InputTag > ("HltElectronTag")),
19  sourceJetTag(iConfig.getParameter< edm::InputTag > ("SourceJetTag")),
20  //minJetPt_(iConfig.getParameter<double> ("MinJetPt")),
21  //maxAbsJetEta_(iConfig.getParameter<double> ("MaxAbsJetEta")),
22  //minNJets_(iConfig.getParameter<unsigned int> ("MinNJets")),
23  minDeltaR_(iConfig.getParameter< double > ("minDeltaR"))
24  //Only for VBF
25  //minSoftJetPt_(iConfig.getParameter< double > ("MinSoftJetPt")),
26  //minDeltaEta_(iConfig.getParameter< double > ("MinDeltaEta"))
27 {
28  typedef std::vector<edm::RefVector<std::vector<T>,T,edm::refhelper::FindUsingAdvance<std::vector<T>,T> > > TCollectionVector;
29  m_theElectronToken = consumes<trigger::TriggerFilterObjectWithRefs>(hltElectronTag);
30  m_theJetToken = consumes<std::vector<T>>(sourceJetTag);
31  produces<TCollectionVector> ();
32 }
33 
34 
35 template<typename T>
37 {
38  // do anything here that needs to be done at desctruction time
39  // (e.g. close files, deallocate resources etc.)
40 
41 }
42 
43 template<typename T>
46  desc.add<edm::InputTag> ("HltElectronTag", edm::InputTag("triggerFilterObjectWithRefs"));
47  desc.add<edm::InputTag> ("SourceJetTag", edm::InputTag("jetCollection"));
48  // desc.add<double> ("MinJetPt", 30.);
49  // desc.add<double> ("MaxAbsJetEta", 2.6);
50  // desc.add<unsigned int> ("MinNJets", 1);
51  desc.add<double> ("minDeltaR", 0.5);
52  //Only for VBF
53  // desc.add<double> ("MinSoftJetPt", 25.);
54  //desc.add<double> ("MinDeltaEta", -1.);
56 }
57 
58 //
59 // member functions
60 //
61 
62 
63 // ------------ method called to produce the data ------------
64 template <typename T>
65 void
67 {
68  using namespace edm;
69  using namespace std;
70 
71  typedef vector<T> TCollection;
72  typedef Ref<TCollection> TRef;
73 
74  typedef edm::RefVector<TCollection> TRefVector;
75 
76  typedef std::vector<edm::RefVector<std::vector<T>,T,edm::refhelper::FindUsingAdvance<std::vector<T>,T> > > TCollectionVector;
77 
79  iEvent.getByToken(m_theElectronToken,PrevFilterOutput);
80 
81  //its easier on the if statement flow if I try everything at once, shouldnt add to timing
82  // Electrons can be stored as objects of types TriggerCluster, TriggerElectron, or TriggerPhoton
83  std::vector<edm::Ref<reco::RecoEcalCandidateCollection> > clusCands;
84  PrevFilterOutput->getObjects(trigger::TriggerCluster,clusCands);
85 
86  std::vector<edm::Ref<reco::ElectronCollection> > eleCands;
87  PrevFilterOutput->getObjects(trigger::TriggerElectron,eleCands);
88 
89  trigger::VRphoton photonCands;
90  PrevFilterOutput->getObjects(trigger::TriggerPhoton, photonCands);
91 
92  //prepare the collection of 3-D vector for electron momenta
93  std::vector<TVector3> ElePs;
94 
95  if(!clusCands.empty()){ //try trigger cluster
96  for(size_t candNr=0;candNr<clusCands.size();candNr++){
97  TVector3 positionVector(
98  clusCands[candNr]->superCluster()->position().x(),
99  clusCands[candNr]->superCluster()->position().y(),
100  clusCands[candNr]->superCluster()->position().z());
101  ElePs.push_back(positionVector);
102  }
103  }else if(!eleCands.empty()){ // try trigger electrons
104  for(size_t candNr=0;candNr<eleCands.size();candNr++){
105  TVector3 positionVector(
106  eleCands[candNr]->superCluster()->position().x(),
107  eleCands[candNr]->superCluster()->position().y(),
108  eleCands[candNr]->superCluster()->position().z());
109  ElePs.push_back(positionVector);
110  }
111  }
112  else if(!photonCands.empty()){ // try trigger photons
113  for(size_t candNr=0;candNr<photonCands.size();candNr++){
114  TVector3 positionVector(
115  photonCands[candNr]->superCluster()->position().x(),
116  photonCands[candNr]->superCluster()->position().y(),
117  photonCands[candNr]->superCluster()->position().z());
118  ElePs.push_back(positionVector);
119  }
120  }
121 
122  edm::Handle<TCollection> theJetCollectionHandle;
123  iEvent.getByToken(m_theJetToken, theJetCollectionHandle);
124 
125  const TCollection & theJetCollection = *theJetCollectionHandle;
126 
127  //std::auto_ptr< TCollection > theFilteredJetCollection(new TCollection);
128 
129  std::auto_ptr < TCollectionVector > allSelections(new TCollectionVector());
130 
131  //bool foundSolution(false);
132 
133  for (unsigned int i = 0; i < ElePs.size(); i++) {
134 
135  // bool VBFJetPair = false;
136  //std::vector<int> store_jet;
137  TRefVector refVector;
138 
139  for (unsigned int j = 0; j < theJetCollection.size(); j++) {
140  TVector3 JetP(theJetCollection[j].px(), theJetCollection[j].py(), theJetCollection[j].pz());
141  double DR = ElePs[i].DeltaR(JetP);
142 
143  if (DR > minDeltaR_)
144  refVector.push_back(TRef(theJetCollectionHandle, j));
145  }
146  allSelections->push_back(refVector);
147  }
148 
149  //iEvent.put(theFilteredJetCollection);
150  iEvent.put(allSelections);
151 
152  return;
153 
154 }
std::string defaultModuleLabel()
edm::EDGetTokenT< std::vector< T > > m_theJetToken
int i
Definition: DBlmapReader.cc:9
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:449
float float float z
HLTJetCollectionsForElePlusJets(const edm::ParameterSet &)
int iEvent
Definition: GenABIO.cc:230
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:113
int j
Definition: DBlmapReader.cc:9
ParameterDescriptionBase * add(U const &iLabel, T const &value)
edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefs > m_theElectronToken
void add(std::string const &label, ParameterSetDescription const &psetDescription)
static int position[264][3]
Definition: ReadPGInfo.cc:509
Definition: DDAxes.h:10
long double T
std::vector< reco::RecoEcalCandidateRef > VRphoton
virtual void produce(edm::Event &, const edm::EventSetup &)