CMS 3D CMS Logo

L1TMicroGMTInputProducerFromGen.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: L1TMicroGMTInputProducerFromGen
4 // Class: L1TMicroGMTInputProducerFromGen
5 //
13 //
14 // Original Author: Joschka Philip Lingemann,40 3-B01,+41227671598,
15 // Created: Thu Oct 3 10:12:30 CEST 2013
16 // $Id$
17 //
18 //
19 
20 // system include files
21 #include <memory>
22 #include <fstream>
23 
24 // user include files
27 
30 
34 
39 
41 
42 #include "TMath.h"
43 #include "TRandom3.h"
44 
45 //
46 // class declaration
47 //
48 using namespace l1t;
49 
51 public:
54 
55  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
56 
57 private:
58  void produce(edm::Event&, const edm::EventSetup&) override;
59 
60  void beginRun(const edm::Run&, edm::EventSetup const&) override;
61  void endRun(const edm::Run&, edm::EventSetup const&) override;
62  void beginLuminosityBlock(const edm::LuminosityBlock&, edm::EventSetup const&) override;
63  void endLuminosityBlock(const edm::LuminosityBlock&, edm::EventSetup const&) override;
64 
65  static bool compareMuons(const RegionalMuonCand&, const RegionalMuonCand&);
66 
67  // ----------member data ---------------------------
69  int m_currEvt;
70  const static int m_maxMuons = 108;
71  TRandom3 m_rnd;
72 };
73 
74 //
75 // constants, enums and typedefs
76 //
77 
78 //
79 // static data member definitions
80 //
81 
82 //
83 // constructors and destructor
84 //
86  : m_currEvt(0), m_rnd(0) {
87  //register your inputs:
88  genParticlesToken = consumes<reco::GenParticleCollection>(std::string("genParticles"));
89  //register your products
90  produces<RegionalMuonCandBxCollection>("BarrelTFMuons");
91  produces<RegionalMuonCandBxCollection>("OverlapTFMuons");
92  produces<RegionalMuonCandBxCollection>("ForwardTFMuons");
93  produces<MuonCaloSumBxCollection>("TriggerTowerSums");
94 }
95 
97  // do anything here that needs to be done at desctruction time
98  // (e.g. close files, deallocate resources etc.)
99 }
100 
101 //
102 // member functions
103 //
104 
106  return mu1.processor() < mu2.processor();
107 }
108 
109 // ------------ method called to produce the data ------------
111  using namespace edm;
112 
113  std::unique_ptr<RegionalMuonCandBxCollection> barrelMuons(new RegionalMuonCandBxCollection());
114  std::unique_ptr<RegionalMuonCandBxCollection> overlapMuons(new RegionalMuonCandBxCollection());
115  std::unique_ptr<RegionalMuonCandBxCollection> endcapMuons(new RegionalMuonCandBxCollection());
116  std::unique_ptr<MuonCaloSumBxCollection> towerSums(new MuonCaloSumBxCollection());
117 
118  std::vector<RegionalMuonCand> bmMuons;
119  std::vector<RegionalMuonCand> omMuons;
120  std::vector<RegionalMuonCand> emMuons;
121 
122  std::vector<int> muIndices;
124  // Make sure that you can get genParticles
125  if (iEvent.getByToken(genParticlesToken, genParticles)) {
126  int cntr = 0;
127  for (auto it = genParticles->cbegin(); it != genParticles->cend(); ++it) {
128  const reco::Candidate& mcParticle = *it;
129  if (abs(mcParticle.pdgId()) == 13 && mcParticle.status() == 1)
130  muIndices.push_back(cntr);
131  cntr++;
132  }
133  } else {
134  LogTrace("GlobalMuon") << " GenParticleCollection not found." << std::endl;
135  }
136 
138  MuonCaloSum tSum;
139  // alternative scale (using full phi bit-width): 163.4521265553765f;
140  const float phiToInt = 91.67324722093171f;
141  // alternative scale: 100.0f;
142  const float etaToInt = 90.9090909090f;
143  const int maxPt = (1 << 9) - 1;
144  int muCntr = 0;
145 
146  double twoPi = TMath::Pi() * 2.;
147 
148  for (auto it = muIndices.begin(); it != muIndices.end(); ++it) {
149  // don't really care which muons are taken...
150  // guess there ain't 108 generated anyways
151  if (muCntr == m_maxMuons)
152  break;
153  int gen_idx = *it;
154  const reco::Candidate& mcMuon = genParticles->at(gen_idx);
155  double eta = mcMuon.eta();
156  if (fabs(eta) > 2.45)
157  continue; // out of acceptance
158  int hwPt = int(mcMuon.pt() * 2);
159  hwPt = (hwPt < maxPt ? hwPt : maxPt);
160  int hwEta = int(eta * etaToInt);
161  double phi = mcMuon.phi();
162  if (phi < 0)
163  phi += twoPi; // add 2*pi
164  int hwPhi = (int(phi * phiToInt)) % 576;
165  int hwQual = 8;
166  int hwCharge = (mcMuon.charge() > 0) ? 0 : 1;
167  int hwChargeValid = 1;
168 
169  mu.setHwPt(hwPt);
170 
171  tftype tf(tftype::bmtf);
172  int globalWedgePhi = (hwPhi + 24) % 576; // this sets CMS phi = 0 to -15 deg
173  int localPhi = globalWedgePhi % 48;
174  int processor = globalWedgePhi / 48 + 1;
175  int globalSectorPhi = (hwPhi - 24); // this sets CMS phi = 0 to +15 deg
176  if (globalSectorPhi < 0) {
177  globalSectorPhi += 576;
178  }
179 
180  if (fabs(eta) > 0.8) {
181  if (fabs(eta) < 1.2) {
182  tf = (eta > 0 ? tftype::omtf_pos : tftype::omtf_neg);
183  processor = globalSectorPhi / 96 + 1;
184  localPhi = globalSectorPhi % 96;
185  } else {
186  tf = (eta > 0 ? tftype::emtf_pos : tftype::emtf_neg);
187  processor = globalSectorPhi / 96 + 1;
188  localPhi = globalSectorPhi % 96;
189  }
190  }
191  mu.setHwPhi(localPhi);
192  mu.setTFIdentifiers(processor, tf);
193 
194  mu.setHwEta(hwEta);
195  mu.setHwSign(hwCharge);
196  mu.setHwSignValid(hwChargeValid);
197  mu.setHwQual(hwQual);
198 
199  if (fabs(eta) < 0.8 && bmMuons.size() < 36) {
200  bmMuons.push_back(mu);
201  muCntr++;
202  } else if (fabs(eta) < 1.2 && omMuons.size() < 36) {
203  omMuons.push_back(mu);
204  muCntr++;
205  } else if (emMuons.size() < 36) {
206  emMuons.push_back(mu);
207  muCntr++;
208  }
209  }
210 
211  std::sort(bmMuons.begin(), bmMuons.end(), L1TMicroGMTInputProducerFromGen::compareMuons);
212  std::sort(omMuons.begin(), omMuons.end(), L1TMicroGMTInputProducerFromGen::compareMuons);
213  std::sort(emMuons.begin(), emMuons.end(), L1TMicroGMTInputProducerFromGen::compareMuons);
214 
215  for (const auto& mu : bmMuons) {
216  barrelMuons->push_back(0, mu);
217  }
218 
219  for (const auto& mu : omMuons) {
220  overlapMuons->push_back(0, mu);
221  }
222 
223  for (const auto& mu : emMuons) {
224  endcapMuons->push_back(0, mu);
225  }
226 
227  for (int i = 0; i < 1008; ++i) {
228  // from where could I take the tower energies?
229  int energy = int(m_rnd.Gaus(12, 6));
230  if (energy < 0)
231  energy = 0;
232  if (energy > 31)
233  energy = 31;
234  MuonCaloSum sum(energy, i / 28, i % 28, i);
235  towerSums->push_back(0, sum);
236  }
237 
238  iEvent.put(std::move(barrelMuons), "BarrelTFMuons");
239  iEvent.put(std::move(overlapMuons), "OverlapTFMuons");
240  iEvent.put(std::move(endcapMuons), "ForwardTFMuons");
241  iEvent.put(std::move(towerSums), "TriggerTowerSums");
242  m_currEvt++;
243 }
244 
245 // ------------ method called when starting to processes a run ------------
247 
248 // ------------ method called when ending the processing of a run ------------
250 
251 // ------------ method called when starting to processes a luminosity block ------------
253 
254 // ------------ method called when ending the processing of a luminosity block ------------
256 
257 // ------------ method fills 'descriptions' with the allowed parameters for the module ------------
259  //The following says we do not know what parameters are allowed so do no validation
260  // Please change this to state exactly what you do use, even if it is no parameters
262  desc.setUnknown();
263  descriptions.addDefault(desc);
264 }
265 
266 //define this as a plug-in
void endRun(const edm::Run &, edm::EventSetup const &) override
const double Pi
BXVector< RegionalMuonCand > RegionalMuonCandBxCollection
virtual double pt() const =0
transverse momentum
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
BXVector< MuonCaloSum > MuonCaloSumBxCollection
Definition: MuonCaloSumFwd.h:7
virtual int status() const =0
status word
const int processor() const
Get processor ID on which the candidate was found (0..5 for OMTF/EMTF; 0..11 for BMTF) ...
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
delete x;
Definition: CaloConfig.h:22
#define LogTrace(id)
int iEvent
Definition: GenABIO.cc:224
void addDefault(ParameterSetDescription const &psetDescription)
void endLuminosityBlock(const edm::LuminosityBlock &, edm::EventSetup const &) override
L1TMicroGMTInputProducerFromGen(const edm::ParameterSet &)
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
edm::EDGetTokenT< reco::GenParticleCollection > genParticlesToken
virtual int charge() const =0
electric charge
static bool compareMuons(const RegionalMuonCand &, const RegionalMuonCand &)
void beginLuminosityBlock(const edm::LuminosityBlock &, edm::EventSetup const &) override
virtual int pdgId() const =0
PDG identifier.
void beginRun(const edm::Run &, edm::EventSetup const &) override
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
HLT enums.
constexpr double twoPi()
Definition: Pi.h:32
def move(src, dest)
Definition: eostools.py:511
Definition: Run.h:45
virtual double phi() const =0
momentum azimuthal angle
virtual double eta() const =0
momentum pseudorapidity
void produce(edm::Event &, const edm::EventSetup &) override