CMS 3D CMS Logo

HLTScoutingCaloProducer.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: HLTrigger/JetMET
4 // Class: HLTScoutingCaloProducer
5 //
11 //
12 // Original Author: Dustin James Anderson
13 // Created: Fri, 12 Jun 2015 15:49:20 GMT
14 //
15 //
16 
17 // system include files
18 #include <memory>
19 
20 // user include files
26 
33 
36 
38 
40  public:
43 
44  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
45 
46  private:
47  virtual void produce(edm::StreamID sid, edm::Event & iEvent, edm::EventSetup const & setup) const override final;
48 
55 
56  const double caloJetPtCut;
57  const double caloJetEtaCut;
58 
59  const bool doMet;
60  const bool doJetBTags;
61  const bool doJetIDTags;
62 };
63 
64 //
65 // constructors and destructor
66 //
68  caloJetCollection_(consumes<reco::CaloJetCollection>(iConfig.getParameter<edm::InputTag>("caloJetCollection"))),
69  caloJetBTagCollection_(consumes<reco::JetTagCollection>(iConfig.getParameter<edm::InputTag>("caloJetBTagCollection"))),
70  caloJetIDTagCollection_(consumes<reco::JetTagCollection>(iConfig.getParameter<edm::InputTag>("caloJetIDTagCollection"))),
71  vertexCollection_(consumes<reco::VertexCollection>(iConfig.getParameter<edm::InputTag>("vertexCollection"))),
72  metCollection_(consumes<reco::CaloMETCollection>(iConfig.getParameter<edm::InputTag>("metCollection"))),
73  rho_(consumes<double>(iConfig.getParameter<edm::InputTag>("rho"))),
74  caloJetPtCut(iConfig.getParameter<double>("caloJetPtCut")),
75  caloJetEtaCut(iConfig.getParameter<double>("caloJetEtaCut")),
76  doMet(iConfig.getParameter<bool>("doMet")),
77  doJetBTags(iConfig.getParameter<bool>("doJetBTags")),
78  doJetIDTags(iConfig.getParameter<bool>("doJetIDTags"))
79 {
80  //register products
81  produces<ScoutingCaloJetCollection>();
82  produces<double>("rho");
83  produces<double>("caloMetPt");
84  produces<double>("caloMetPhi");
85 }
86 
88 { }
89 
90 // ------------ method called to produce the data ------------
91  void
93 {
94  using namespace edm;
95 
96  //get calo jets
97  Handle<reco::CaloJetCollection> caloJetCollection;
98  std::unique_ptr<ScoutingCaloJetCollection> outCaloJets(new ScoutingCaloJetCollection());
99  if(iEvent.getByToken(caloJetCollection_, caloJetCollection)){
100  //get jet tags
101  Handle<reco::JetTagCollection> caloJetBTagCollection;
102  bool haveJetBTags = false;
103  if(doJetBTags && iEvent.getByToken(caloJetBTagCollection_, caloJetBTagCollection)){
104  haveJetBTags = true;
105  }
106  Handle<reco::JetTagCollection> caloJetIDTagCollection;
107  bool haveJetIDTags = false;
108  if(doJetIDTags && iEvent.getByToken(caloJetIDTagCollection_, caloJetIDTagCollection)){
109  haveJetIDTags = true;
110  }
111 
112  for(auto &jet : *caloJetCollection){
113  if(jet.pt() > caloJetPtCut && fabs(jet.eta()) < caloJetEtaCut){
114  //find the jet tag(s) corresponding to the jet
115  float bTagValue = -20;
116  float bTagMinDR2 = 0.01;
117  if(haveJetBTags){
118  for(auto &tag : *caloJetBTagCollection){
119  float dR2 = reco::deltaR2(jet, *(tag.first));
120  if(dR2 < bTagMinDR2){
121  bTagMinDR2 = dR2;
122  bTagValue = tag.second;
123  }
124  }
125  }
126  float idTagValue = -20;
127  float idTagMinDR2 = 0.01;
128  if(haveJetIDTags){
129  for(auto &tag : *caloJetIDTagCollection){
130  float dR2 = reco::deltaR2(jet, *(tag.first));
131  if(dR2 < idTagMinDR2){
132  idTagMinDR2 = dR2;
133  idTagValue = tag.second;
134  }
135  }
136  }
137  outCaloJets->emplace_back(
138  jet.pt(), jet.eta(), jet.phi(), jet.mass(),
139  jet.jetArea(), jet.maxEInEmTowers(), jet.maxEInHadTowers(),
140  jet.hadEnergyInHB(), jet.hadEnergyInHE(), jet.hadEnergyInHF(),
141  jet.emEnergyInEB(), jet.emEnergyInEE(), jet.emEnergyInHF(),
142  jet.towersArea(), idTagValue, bTagValue
143  );
144  }
145  }
146  }
147 
148  //get rho
150  std::unique_ptr<double> outRho(new double(-999));
151  if(iEvent.getByToken(rho_, rho)){
152  outRho.reset(new double(*rho));
153  }
154 
155  //get MET
157  std::unique_ptr<double> outMetPt(new double(-999));
158  std::unique_ptr<double> outMetPhi(new double(-999));
159  if(doMet && iEvent.getByToken(metCollection_, metCollection)){
160  outMetPt.reset(new double(metCollection->front().pt()));
161  outMetPhi.reset(new double(metCollection->front().phi()));
162  }
163 
164  //put output
165  iEvent.put(std::move(outCaloJets));
166  // iEvent.put(std::move(outVertices));
167  iEvent.put(std::move(outRho), "rho");
168  iEvent.put(std::move(outMetPt), "caloMetPt");
169  iEvent.put(std::move(outMetPhi), "caloMetPhi");
170 }
171 
172 // ------------ method fills 'descriptions' with the allowed parameters for the module ------------
173 void
176  desc.add<edm::InputTag>("caloJetCollection",edm::InputTag("hltAK4CaloJets"));
177  desc.add<edm::InputTag>("caloJetBTagCollection",edm::InputTag("hltCombinedSecondaryVertexBJetTagsCalo"));
178  desc.add<edm::InputTag>("caloJetIDTagCollection",edm::InputTag("hltCaloJetFromPV"));
179  desc.add<edm::InputTag>("vertexCollection", edm::InputTag("hltPixelVertices"));
180  desc.add<edm::InputTag>("metCollection", edm::InputTag("hltMet"));
181  desc.add<edm::InputTag>("rho", edm::InputTag("hltFixedGridRhoFastjetAllCalo"));
182  desc.add<double>("caloJetPtCut", 20.0);
183  desc.add<double>("caloJetEtaCut", 3.0);
184  desc.add<bool>("doMet", true);
185  desc.add<bool>("doJetBTags", false);
186  desc.add<bool>("doJetIDTags", false);
187  descriptions.add("hltScoutingCaloProducer", desc);
188 }
189 
190 //define this as a plug-in
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:122
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:457
const edm::EDGetTokenT< reco::VertexCollection > vertexCollection_
const edm::EDGetTokenT< reco::CaloMETCollection > metCollection_
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
HLTScoutingCaloProducer(const edm::ParameterSet &)
def setup(process, global_tag, zero_tesla=False)
Definition: GeneralSetup.py:1
std::vector< Vertex > VertexCollection
collection of Vertex objects
Definition: VertexFwd.h:9
JetFloatAssociation::Container JetTagCollection
Definition: JetTag.h:18
std::vector< ScoutingCaloJet > ScoutingCaloJetCollection
const edm::EDGetTokenT< reco::CaloJetCollection > caloJetCollection_
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
Collection of Calo MET.
int iEvent
Definition: GenABIO.cc:230
virtual void produce(edm::StreamID sid, edm::Event &iEvent, edm::EventSetup const &setup) const override final
ParameterDescriptionBase * add(U const &iLabel, T const &value)
const edm::EDGetTokenT< double > rho_
void add(std::string const &label, ParameterSetDescription const &psetDescription)
T1 deltaR2(T1 eta1, T2 phi1, T3 eta2, T4 phi2)
Definition: deltaR.h:36
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
fixed size matrix
HLT enums.
const edm::EDGetTokenT< reco::JetTagCollection > caloJetIDTagCollection_
def move(src, dest)
Definition: eostools.py:510
const edm::EDGetTokenT< reco::JetTagCollection > caloJetBTagCollection_
std::vector< CaloJet > CaloJetCollection
collection of CaloJet objects