CMS 3D CMS Logo

L1TMuonGlobalParamsESProducer.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: L1Trigger/L1TMuonGlobalParamsESProducer
4 // Class: L1TMuonGlobalParamsESProducer
5 //
13 //
14 // Original Author: Thomas Reis
15 // Created: Mon, 21 Sep 2015 13:28:49 GMT
16 //
17 //
18 
19 // system include files
20 #include <memory>
21 #include <strstream>
22 
23 // user include files
28 
36 
37 //
38 // class declaration
39 //
40 
42 public:
45 
46  using ReturnType = std::unique_ptr<L1TMuonGlobalParams>;
47 
49 
50 private:
52 };
53 
54 //
55 // constants, enums and typedefs
56 //
57 
58 //
59 // static data member definitions
60 //
61 
62 //
63 // constructors and destructor
64 //
66  //the following line is needed to tell the framework what
67  // data is being produced
68  setWhatProduced(this);
69 
70  L1TMuonGlobalParamsHelper m_params_helper;
71 
72  // get configuration from DB
73  if (iConfig.getParameter<bool>("configFromXml")) {
74  l1t::TriggerSystem trgSys;
75  edm::FileInPath hwXmlFile(iConfig.getParameter<std::string>("hwXmlFile"));
76  edm::FileInPath topCfgXmlFile(iConfig.getParameter<std::string>("topCfgXmlFile"));
77  // These xml files are for testing the configuration from the online DB
78  trgSys.configureSystemFromFiles(hwXmlFile.fullPath().c_str(),
79  topCfgXmlFile.fullPath().c_str(),
80  iConfig.getParameter<std::string>("xmlCfgKey").c_str());
81 
82  m_params_helper.loadFromOnline(trgSys, iConfig.getParameter<std::string>("uGmtProcessorId"));
83  } else {
84  // Firmware version
85  unsigned fwVersion = iConfig.getParameter<unsigned>("fwVersion");
86  m_params_helper.setFwVersion(fwVersion);
87 
88  // LUTs
89  m_params_helper.setFwdPosSingleMatchQualLUTMaxDR(iConfig.getParameter<double>("FwdPosSingleMatchQualLUTMaxDR"),
90  iConfig.getParameter<double>("FwdPosSingleMatchQualLUTfEta"),
91  iConfig.getParameter<double>("FwdPosSingleMatchQualLUTfPhi"));
92  m_params_helper.setFwdNegSingleMatchQualLUTMaxDR(iConfig.getParameter<double>("FwdNegSingleMatchQualLUTMaxDR"),
93  iConfig.getParameter<double>("FwdNegSingleMatchQualLUTfEta"),
94  iConfig.getParameter<double>("FwdNegSingleMatchQualLUTfPhi"));
95  m_params_helper.setOvlPosSingleMatchQualLUTMaxDR(iConfig.getParameter<double>("OvlPosSingleMatchQualLUTMaxDR"),
96  iConfig.getParameter<double>("OvlPosSingleMatchQualLUTfEta"),
97  iConfig.getParameter<double>("OvlPosSingleMatchQualLUTfEtaCoarse"),
98  iConfig.getParameter<double>("OvlPosSingleMatchQualLUTfPhi"));
99  m_params_helper.setOvlNegSingleMatchQualLUTMaxDR(iConfig.getParameter<double>("OvlNegSingleMatchQualLUTMaxDR"),
100  iConfig.getParameter<double>("OvlNegSingleMatchQualLUTfEta"),
101  iConfig.getParameter<double>("OvlNegSingleMatchQualLUTfEtaCoarse"),
102  iConfig.getParameter<double>("OvlNegSingleMatchQualLUTfPhi"));
103  m_params_helper.setBOPosMatchQualLUTMaxDR(iConfig.getParameter<double>("BOPosMatchQualLUTMaxDR"),
104  iConfig.getParameter<double>("BOPosMatchQualLUTfEta"),
105  iConfig.getParameter<double>("BOPosMatchQualLUTfEtaCoarse"),
106  iConfig.getParameter<double>("BOPosMatchQualLUTfPhi"));
107  m_params_helper.setBONegMatchQualLUTMaxDR(iConfig.getParameter<double>("BONegMatchQualLUTMaxDR"),
108  iConfig.getParameter<double>("BONegMatchQualLUTfEta"),
109  iConfig.getParameter<double>("BONegMatchQualLUTfEtaCoarse"),
110  iConfig.getParameter<double>("BONegMatchQualLUTfPhi"));
111  m_params_helper.setFOPosMatchQualLUTMaxDR(iConfig.getParameter<double>("FOPosMatchQualLUTMaxDR"),
112  iConfig.getParameter<double>("FOPosMatchQualLUTfEta"),
113  iConfig.getParameter<double>("FOPosMatchQualLUTfEtaCoarse"),
114  iConfig.getParameter<double>("FOPosMatchQualLUTfPhi"));
115  m_params_helper.setFONegMatchQualLUTMaxDR(iConfig.getParameter<double>("FONegMatchQualLUTMaxDR"),
116  iConfig.getParameter<double>("FONegMatchQualLUTfEta"),
117  iConfig.getParameter<double>("FONegMatchQualLUTfEtaCoarse"),
118  iConfig.getParameter<double>("FONegMatchQualLUTfPhi"));
119 
120  unsigned sortRankLUTPtFactor = iConfig.getParameter<unsigned>("SortRankLUTPtFactor");
121  unsigned sortRankLUTQualFactor = iConfig.getParameter<unsigned>("SortRankLUTQualFactor");
122  m_params_helper.setSortRankLUTFactors(sortRankLUTPtFactor, sortRankLUTQualFactor);
123 
125  iConfig.getParameter<std::string>("AbsIsoCheckMemLUTPath"), fwVersion);
127  iConfig.getParameter<std::string>("RelIsoCheckMemLUTPath"), fwVersion);
129  iConfig.getParameter<std::string>("IdxSelMemPhiLUTPath"), l1t::MicroGMTConfiguration::PHI, fwVersion);
131  iConfig.getParameter<std::string>("IdxSelMemEtaLUTPath"), l1t::MicroGMTConfiguration::ETA, fwVersion);
132  auto fwdPosSingleMatchQualLUT = l1t::MicroGMTMatchQualLUTFactory::create(
133  iConfig.getParameter<std::string>("FwdPosSingleMatchQualLUTPath"),
134  iConfig.getParameter<double>("FwdPosSingleMatchQualLUTMaxDR"),
135  iConfig.getParameter<double>("FwdPosSingleMatchQualLUTfEta"),
136  iConfig.getParameter<double>("FwdPosSingleMatchQualLUTfEta"), // set the coarse eta factor = fine eta factor
137  iConfig.getParameter<double>("FwdPosSingleMatchQualLUTfPhi"),
139  fwVersion);
140  auto fwdNegSingleMatchQualLUT = l1t::MicroGMTMatchQualLUTFactory::create(
141  iConfig.getParameter<std::string>("FwdNegSingleMatchQualLUTPath"),
142  iConfig.getParameter<double>("FwdNegSingleMatchQualLUTMaxDR"),
143  iConfig.getParameter<double>("FwdNegSingleMatchQualLUTfEta"),
144  iConfig.getParameter<double>("FwdNegSingleMatchQualLUTfEta"), // set the coarse eta factor = fine eta factor
145  iConfig.getParameter<double>("FwdNegSingleMatchQualLUTfPhi"),
147  fwVersion);
148  auto ovlPosSingleMatchQualLUT =
149  l1t::MicroGMTMatchQualLUTFactory::create(iConfig.getParameter<std::string>("OvlPosSingleMatchQualLUTPath"),
150  iConfig.getParameter<double>("OvlPosSingleMatchQualLUTMaxDR"),
151  iConfig.getParameter<double>("OvlPosSingleMatchQualLUTfEta"),
152  iConfig.getParameter<double>("OvlPosSingleMatchQualLUTfEtaCoarse"),
153  iConfig.getParameter<double>("OvlPosSingleMatchQualLUTfPhi"),
155  fwVersion);
156  auto ovlNegSingleMatchQualLUT =
157  l1t::MicroGMTMatchQualLUTFactory::create(iConfig.getParameter<std::string>("OvlNegSingleMatchQualLUTPath"),
158  iConfig.getParameter<double>("OvlNegSingleMatchQualLUTMaxDR"),
159  iConfig.getParameter<double>("OvlNegSingleMatchQualLUTfEta"),
160  iConfig.getParameter<double>("OvlNegSingleMatchQualLUTfEtaCoarse"),
161  iConfig.getParameter<double>("OvlNegSingleMatchQualLUTfPhi"),
163  fwVersion);
164  auto bOPosMatchQualLUT =
165  l1t::MicroGMTMatchQualLUTFactory::create(iConfig.getParameter<std::string>("BOPosMatchQualLUTPath"),
166  iConfig.getParameter<double>("BOPosMatchQualLUTMaxDR"),
167  iConfig.getParameter<double>("BOPosMatchQualLUTfEta"),
168  iConfig.getParameter<double>("BOPosMatchQualLUTfEtaCoarse"),
169  iConfig.getParameter<double>("BOPosMatchQualLUTfPhi"),
171  fwVersion);
172  auto bONegMatchQualLUT =
173  l1t::MicroGMTMatchQualLUTFactory::create(iConfig.getParameter<std::string>("BONegMatchQualLUTPath"),
174  iConfig.getParameter<double>("BONegMatchQualLUTMaxDR"),
175  iConfig.getParameter<double>("BONegMatchQualLUTfEta"),
176  iConfig.getParameter<double>("BONegMatchQualLUTfEtaCoarse"),
177  iConfig.getParameter<double>("BONegMatchQualLUTfPhi"),
179  fwVersion);
180  auto fOPosMatchQualLUT =
181  l1t::MicroGMTMatchQualLUTFactory::create(iConfig.getParameter<std::string>("FOPosMatchQualLUTPath"),
182  iConfig.getParameter<double>("FOPosMatchQualLUTMaxDR"),
183  iConfig.getParameter<double>("FOPosMatchQualLUTfEta"),
184  iConfig.getParameter<double>("FOPosMatchQualLUTfEtaCoarse"),
185  iConfig.getParameter<double>("FOPosMatchQualLUTfPhi"),
187  fwVersion);
188  auto fONegMatchQualLUT =
189  l1t::MicroGMTMatchQualLUTFactory::create(iConfig.getParameter<std::string>("FONegMatchQualLUTPath"),
190  iConfig.getParameter<double>("FONegMatchQualLUTMaxDR"),
191  iConfig.getParameter<double>("FONegMatchQualLUTfEta"),
192  iConfig.getParameter<double>("FONegMatchQualLUTfEtaCoarse"),
193  iConfig.getParameter<double>("FONegMatchQualLUTfPhi"),
195  fwVersion);
196  auto bPhiExtrapolationLUT = l1t::MicroGMTExtrapolationLUTFactory::create(
197  iConfig.getParameter<std::string>("BPhiExtrapolationLUTPath"), l1t::MicroGMTConfiguration::PHI_OUT, fwVersion);
198  auto oPhiExtrapolationLUT = l1t::MicroGMTExtrapolationLUTFactory::create(
199  iConfig.getParameter<std::string>("OPhiExtrapolationLUTPath"), l1t::MicroGMTConfiguration::PHI_OUT, fwVersion);
200  auto fPhiExtrapolationLUT = l1t::MicroGMTExtrapolationLUTFactory::create(
201  iConfig.getParameter<std::string>("FPhiExtrapolationLUTPath"), l1t::MicroGMTConfiguration::PHI_OUT, fwVersion);
202  auto bEtaExtrapolationLUT = l1t::MicroGMTExtrapolationLUTFactory::create(
203  iConfig.getParameter<std::string>("BEtaExtrapolationLUTPath"), l1t::MicroGMTConfiguration::ETA_OUT, fwVersion);
204  auto oEtaExtrapolationLUT = l1t::MicroGMTExtrapolationLUTFactory::create(
205  iConfig.getParameter<std::string>("OEtaExtrapolationLUTPath"), l1t::MicroGMTConfiguration::ETA_OUT, fwVersion);
206  auto fEtaExtrapolationLUT = l1t::MicroGMTExtrapolationLUTFactory::create(
207  iConfig.getParameter<std::string>("FEtaExtrapolationLUTPath"), l1t::MicroGMTConfiguration::ETA_OUT, fwVersion);
208  auto rankPtQualityLUT =
210  fwVersion,
211  sortRankLUTPtFactor,
212  sortRankLUTQualFactor); // LUTs defined from config file
213  m_params_helper.setAbsIsoCheckMemLUT(*absIsoCheckMemLUT);
214  m_params_helper.setRelIsoCheckMemLUT(*relIsoCheckMemLUT);
215  m_params_helper.setIdxSelMemPhiLUT(*idxSelMemPhiLUT);
216  m_params_helper.setIdxSelMemEtaLUT(*idxSelMemEtaLUT);
217  m_params_helper.setFwdPosSingleMatchQualLUT(*fwdPosSingleMatchQualLUT);
218  m_params_helper.setFwdNegSingleMatchQualLUT(*fwdNegSingleMatchQualLUT);
219  m_params_helper.setOvlPosSingleMatchQualLUT(*ovlPosSingleMatchQualLUT);
220  m_params_helper.setOvlNegSingleMatchQualLUT(*ovlNegSingleMatchQualLUT);
221  m_params_helper.setBOPosMatchQualLUT(*bOPosMatchQualLUT);
222  m_params_helper.setBONegMatchQualLUT(*bONegMatchQualLUT);
223  m_params_helper.setFOPosMatchQualLUT(*fOPosMatchQualLUT);
224  m_params_helper.setFONegMatchQualLUT(*fONegMatchQualLUT);
225  m_params_helper.setBPhiExtrapolationLUT(*bPhiExtrapolationLUT);
226  m_params_helper.setOPhiExtrapolationLUT(*oPhiExtrapolationLUT);
227  m_params_helper.setFPhiExtrapolationLUT(*fPhiExtrapolationLUT);
228  m_params_helper.setBEtaExtrapolationLUT(*bEtaExtrapolationLUT);
229  m_params_helper.setOEtaExtrapolationLUT(*oEtaExtrapolationLUT);
230  m_params_helper.setFEtaExtrapolationLUT(*fEtaExtrapolationLUT);
231  m_params_helper.setSortRankLUT(*rankPtQualityLUT);
232 
233  // LUT paths
234  m_params_helper.setAbsIsoCheckMemLUTPath(iConfig.getParameter<std::string>("AbsIsoCheckMemLUTPath"));
235  m_params_helper.setRelIsoCheckMemLUTPath(iConfig.getParameter<std::string>("RelIsoCheckMemLUTPath"));
236  m_params_helper.setIdxSelMemPhiLUTPath(iConfig.getParameter<std::string>("IdxSelMemPhiLUTPath"));
237  m_params_helper.setIdxSelMemEtaLUTPath(iConfig.getParameter<std::string>("IdxSelMemEtaLUTPath"));
238  m_params_helper.setFwdPosSingleMatchQualLUTPath(iConfig.getParameter<std::string>("FwdPosSingleMatchQualLUTPath"));
239  m_params_helper.setFwdNegSingleMatchQualLUTPath(iConfig.getParameter<std::string>("FwdNegSingleMatchQualLUTPath"));
240  m_params_helper.setOvlPosSingleMatchQualLUTPath(iConfig.getParameter<std::string>("OvlPosSingleMatchQualLUTPath"));
241  m_params_helper.setOvlNegSingleMatchQualLUTPath(iConfig.getParameter<std::string>("OvlNegSingleMatchQualLUTPath"));
242  m_params_helper.setBOPosMatchQualLUTPath(iConfig.getParameter<std::string>("BOPosMatchQualLUTPath"));
243  m_params_helper.setBONegMatchQualLUTPath(iConfig.getParameter<std::string>("BONegMatchQualLUTPath"));
244  m_params_helper.setFOPosMatchQualLUTPath(iConfig.getParameter<std::string>("FOPosMatchQualLUTPath"));
245  m_params_helper.setFONegMatchQualLUTPath(iConfig.getParameter<std::string>("FONegMatchQualLUTPath"));
246  m_params_helper.setBPhiExtrapolationLUTPath(iConfig.getParameter<std::string>("BPhiExtrapolationLUTPath"));
247  m_params_helper.setOPhiExtrapolationLUTPath(iConfig.getParameter<std::string>("OPhiExtrapolationLUTPath"));
248  m_params_helper.setFPhiExtrapolationLUTPath(iConfig.getParameter<std::string>("FPhiExtrapolationLUTPath"));
249  m_params_helper.setBEtaExtrapolationLUTPath(iConfig.getParameter<std::string>("BEtaExtrapolationLUTPath"));
250  m_params_helper.setOEtaExtrapolationLUTPath(iConfig.getParameter<std::string>("OEtaExtrapolationLUTPath"));
251  m_params_helper.setFEtaExtrapolationLUTPath(iConfig.getParameter<std::string>("FEtaExtrapolationLUTPath"));
252  m_params_helper.setSortRankLUTPath(iConfig.getParameter<std::string>("SortRankLUTPath"));
253 
254  // uGMT disabled inputs
255  bool disableCaloInputs = iConfig.getParameter<bool>("caloInputsDisable");
256  std::vector<unsigned> bmtfInputsToDisable = iConfig.getParameter<std::vector<unsigned> >("bmtfInputsToDisable");
257  std::vector<unsigned> omtfInputsToDisable = iConfig.getParameter<std::vector<unsigned> >("omtfInputsToDisable");
258  std::vector<unsigned> emtfInputsToDisable = iConfig.getParameter<std::vector<unsigned> >("emtfInputsToDisable");
259 
260  if (disableCaloInputs) {
261  m_params_helper.setCaloInputsToDisable(std::bitset<28>(0xFFFFFFF));
262  } else {
263  m_params_helper.setCaloInputsToDisable(std::bitset<28>());
264  }
265 
266  std::bitset<12> bmtfDisables;
267  for (size_t i = 0; i < bmtfInputsToDisable.size(); ++i) {
268  bmtfDisables.set(i, bmtfInputsToDisable[i] > 0);
269  }
270  m_params_helper.setBmtfInputsToDisable(bmtfDisables);
271 
272  std::bitset<6> omtfpDisables;
273  std::bitset<6> omtfnDisables;
274  for (size_t i = 0; i < omtfInputsToDisable.size(); ++i) {
275  if (i < 6) {
276  omtfpDisables.set(i, omtfInputsToDisable[i] > 0);
277  } else {
278  omtfnDisables.set(i - 6, omtfInputsToDisable[i] > 0);
279  }
280  }
281  m_params_helper.setOmtfpInputsToDisable(omtfpDisables);
282  m_params_helper.setOmtfnInputsToDisable(omtfnDisables);
283 
284  std::bitset<6> emtfpDisables;
285  std::bitset<6> emtfnDisables;
286  for (size_t i = 0; i < emtfInputsToDisable.size(); ++i) {
287  if (i < 6) {
288  emtfpDisables.set(i, emtfInputsToDisable[i] > 0);
289  } else {
290  emtfnDisables.set(i - 6, emtfInputsToDisable[i] > 0);
291  }
292  }
293  m_params_helper.setEmtfpInputsToDisable(emtfpDisables);
294  m_params_helper.setEmtfnInputsToDisable(emtfnDisables);
295 
296  // masked inputs
297  bool caloInputsMasked = iConfig.getParameter<bool>("caloInputsMasked");
298  std::vector<unsigned> maskedBmtfInputs = iConfig.getParameter<std::vector<unsigned> >("maskedBmtfInputs");
299  std::vector<unsigned> maskedOmtfInputs = iConfig.getParameter<std::vector<unsigned> >("maskedOmtfInputs");
300  std::vector<unsigned> maskedEmtfInputs = iConfig.getParameter<std::vector<unsigned> >("maskedEmtfInputs");
301 
302  if (caloInputsMasked) {
303  m_params_helper.setMaskedCaloInputs(std::bitset<28>(0xFFFFFFF));
304  } else {
305  m_params_helper.setMaskedCaloInputs(std::bitset<28>());
306  }
307 
308  std::bitset<12> bmtfMasked;
309  for (size_t i = 0; i < maskedBmtfInputs.size(); ++i) {
310  bmtfMasked.set(i, maskedBmtfInputs[i] > 0);
311  }
312  m_params_helper.setMaskedBmtfInputs(bmtfMasked);
313 
314  std::bitset<6> omtfpMasked;
315  std::bitset<6> omtfnMasked;
316  for (size_t i = 0; i < maskedOmtfInputs.size(); ++i) {
317  if (i < 6) {
318  omtfpMasked.set(i, maskedOmtfInputs[i] > 0);
319  } else {
320  omtfnMasked.set(i - 6, maskedOmtfInputs[i] > 0);
321  }
322  }
323  m_params_helper.setMaskedOmtfpInputs(omtfpMasked);
324  m_params_helper.setMaskedOmtfnInputs(omtfnMasked);
325 
326  std::bitset<6> emtfpMasked;
327  std::bitset<6> emtfnMasked;
328  for (size_t i = 0; i < maskedEmtfInputs.size(); ++i) {
329  if (i < 6) {
330  emtfpMasked.set(i, maskedEmtfInputs[i] > 0);
331  } else {
332  emtfnMasked.set(i - 6, maskedEmtfInputs[i] > 0);
333  }
334  }
335  m_params_helper.setMaskedEmtfpInputs(emtfpMasked);
336  m_params_helper.setMaskedEmtfnInputs(emtfnMasked);
337  }
338 
339  // temp hack to avoid ALCA/DB signoff:
341 }
342 
344 
345 //
346 // member functions
347 //
348 
349 // ------------ method called to produce the data ------------
351  return std::make_unique<L1TMuonGlobalParams>(m_params);
352 }
353 
354 //define this as a plug-in
void setBONegMatchQualLUTPath(const std::string &path)
const L1TMuonGlobalParams & cast_to_L1TMuonGlobalParams(const L1TMuonGlobalParams_PUBLIC &x)
L1TMuonGlobalParamsESProducer(const edm::ParameterSet &)
T getParameter(std::string const &) const
void setFOPosMatchQualLUTMaxDR(double maxDR, double fEta, double fEtaCoarse, double fPhi)
auto setWhatProduced(T *iThis, const es::Label &iLabel={})
Definition: ESProducer.h:138
void setMaskedCaloInputs(const std::bitset< 28 > &masked)
void setIdxSelMemEtaLUT(const l1t::LUT &lut)
void setOPhiExtrapolationLUT(const l1t::LUT &lut)
void setBEtaExtrapolationLUT(const l1t::LUT &lut)
void setFwdPosSingleMatchQualLUT(const l1t::LUT &lut)
void setBmtfInputsToDisable(const std::bitset< 12 > &disables)
void setOPhiExtrapolationLUTPath(const std::string &path)
void setFEtaExtrapolationLUT(const l1t::LUT &lut)
void setFwdNegSingleMatchQualLUTPath(const std::string &path)
void setFPhiExtrapolationLUT(const l1t::LUT &lut)
void setFOPosMatchQualLUTPath(const std::string &path)
void setIdxSelMemEtaLUTPath(const std::string &path)
void setOmtfpInputsToDisable(const std::bitset< 6 > &disables)
void setOEtaExtrapolationLUT(const l1t::LUT &lut)
void setBPhiExtrapolationLUTPath(const std::string &path)
void setSortRankLUTFactors(unsigned ptFactor, unsigned qualFactor)
static ReturnType create(const std::string &filename, const int fwVersion)
std::unique_ptr< L1TMuonGlobalParams > ReturnType
void setIdxSelMemPhiLUT(const l1t::LUT &lut)
static ReturnType create(const std::string &filename, const int type, const int fwVersion)
void setBPhiExtrapolationLUT(const l1t::LUT &lut)
static ReturnType create(const std::string &filename, const int fwVersion, const unsigned ptFactor, const unsigned qualFactor)
void setFOPosMatchQualLUT(const l1t::LUT &lut)
void setBONegMatchQualLUT(const l1t::LUT &lut)
void setFwdPosSingleMatchQualLUTMaxDR(double maxDR, double fEta, double fPhi)
static ReturnType create(const std::string &filename, const int fwVersion)
void setRelIsoCheckMemLUTPath(const std::string &path)
void setMaskedOmtfpInputs(const std::bitset< 6 > &masked)
void setFONegMatchQualLUT(const l1t::LUT &lut)
void setFwdPosSingleMatchQualLUTPath(const std::string &path)
void setBOPosMatchQualLUTPath(const std::string &path)
void loadFromOnline(l1t::TriggerSystem &trgSys, const std::string &processorId="")
void setRelIsoCheckMemLUT(const l1t::LUT &lut)
void setEmtfnInputsToDisable(const std::bitset< 6 > &disables)
void setOvlPosSingleMatchQualLUTMaxDR(double maxDR, double fEta, double fEtaCoarse, double fPhi)
void setFEtaExtrapolationLUTPath(const std::string &path)
void setAbsIsoCheckMemLUT(const l1t::LUT &lut)
void setOvlPosSingleMatchQualLUT(const l1t::LUT &lut)
void setFwVersion(unsigned fwVersion)
void setIdxSelMemPhiLUTPath(const std::string &path)
void setBOPosMatchQualLUT(const l1t::LUT &lut)
void setMaskedOmtfnInputs(const std::bitset< 6 > &masked)
void configureSystemFromFiles(const char *hwCfgFile, const char *topCfgFile, const char *key)
Definition: TriggerSystem.cc:8
void setCaloInputsToDisable(const std::bitset< 28 > &disables)
#define DEFINE_FWK_EVENTSETUP_MODULE(type)
Definition: ModuleFactory.h:60
void setBOPosMatchQualLUTMaxDR(double maxDR, double fEta, double fEtaCoarse, double fPhi)
void setMaskedBmtfInputs(const std::bitset< 12 > &masked)
void setFONegMatchQualLUTMaxDR(double maxDR, double fEta, double fEtaCoarse, double fPhi)
void setBEtaExtrapolationLUTPath(const std::string &path)
void setOvlPosSingleMatchQualLUTPath(const std::string &path)
void setFwdNegSingleMatchQualLUT(const l1t::LUT &lut)
void setOvlNegSingleMatchQualLUTPath(const std::string &path)
void setSortRankLUT(const l1t::LUT &lut)
void setBONegMatchQualLUTMaxDR(double maxDR, double fEta, double fEtaCoarse, double fPhi)
static ReturnType create(const std::string &filename, const double maxDR, const double fEta, const double fEtaCoarse, const double fPhi, cancel_t cancelType, const int fwVersion)
void setOvlNegSingleMatchQualLUTMaxDR(double maxDR, double fEta, double fEtaCoarse, double fPhi)
void setMaskedEmtfpInputs(const std::bitset< 6 > &masked)
void setAbsIsoCheckMemLUTPath(const std::string &path)
std::string fullPath() const
Definition: FileInPath.cc:163
ReturnType produce(const L1TMuonGlobalParamsRcd &)
void setMaskedEmtfnInputs(const std::bitset< 6 > &masked)
void setEmtfpInputsToDisable(const std::bitset< 6 > &disables)
void setOmtfnInputsToDisable(const std::bitset< 6 > &disables)
void setFPhiExtrapolationLUTPath(const std::string &path)
void setSortRankLUTPath(const std::string &path)
void setOEtaExtrapolationLUTPath(const std::string &path)
void setFwdNegSingleMatchQualLUTMaxDR(double maxDR, double fEta, double fPhi)
void setFONegMatchQualLUTPath(const std::string &path)
void setOvlNegSingleMatchQualLUT(const l1t::LUT &lut)
static ReturnType create(const std::string &filename, const int type, const int fwVersion)