CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes
L1TCaloLayer1 Class Reference

#include <L1Trigger/L1TCaloLayer1/plugins/L1TCaloLayer1.cc>

Inheritance diagram for L1TCaloLayer1:
edm::stream::EDProducer<>

Public Member Functions

 L1TCaloLayer1 (const edm::ParameterSet &)
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
 EDProducer (const EDProducer &)=delete
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 
const EDProduceroperator= (const EDProducer &)=delete
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 

Private Member Functions

void beginRun (edm::Run const &, edm::EventSetup const &) override
 
void produce (edm::Event &, const edm::EventSetup &) override
 

Private Attributes

std::vector< std::array
< std::array< std::array
< uint32_t, nEtBins >
, nCalSideBins >, nCalEtaBins > > 
ecalLUT
 
edm::EDGetTokenT
< EcalTrigPrimDigiCollection
ecalTPSource
 
std::vector< unsigned int > ePhiMap
 
int fwVersion
 
std::vector< std::array
< std::array< std::array
< uint32_t, nEtBins >
, nCalSideBins >, nCalEtaBins > > 
hcalLUT
 
edm::EDGetTokenT
< HcalTrigPrimDigiCollection
hcalTPSource
 
std::vector< std::array
< std::array< uint32_t,
nEtBins >, nHfEtaBins > > 
hfLUT
 
std::vector< unsigned int > hfPhiMap
 
std::vector< unsigned int > hPhiMap
 
std::unique_ptr< UCTLayer1 > layer1
 
const L1TCaloLayer1FetchLUTsTokens lutsTokens
 
edm::EDPutTokenT
< L1CaloRegionCollection
regionPutToken
 
edm::EDPutTokenT
< CaloTowerBxCollection
towerPutToken
 
std::vector< UCTTower * > twrList
 
bool unpackEcalMask
 
bool unpackHcalMask
 
bool useCalib
 
bool useECALLUT
 
bool useHCALLUT
 
bool useHFLUT
 
bool useLSB
 
bool verbose
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
using CacheTypes = CacheContexts< T...>
 
using GlobalCache = typename CacheTypes::GlobalCache
 
using HasAbility = AbilityChecker< T...>
 
using InputProcessBlockCache = typename CacheTypes::InputProcessBlockCache
 
using LuminosityBlockCache = typename CacheTypes::LuminosityBlockCache
 
using LuminosityBlockContext = LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCache >
 
using LuminosityBlockSummaryCache = typename CacheTypes::LuminosityBlockSummaryCache
 
using RunCache = typename CacheTypes::RunCache
 
using RunContext = RunContextT< RunCache, GlobalCache >
 
using RunSummaryCache = typename CacheTypes::RunSummaryCache
 

Detailed Description

Description: [one line class summary]

Implementation: [Notes on implementation]

Definition at line 58 of file L1TCaloLayer1.cc.

Constructor & Destructor Documentation

L1TCaloLayer1::L1TCaloLayer1 ( const edm::ParameterSet iConfig)
explicit

Definition at line 115 of file L1TCaloLayer1.cc.

References a, b, ePhiMap, fwVersion, edm::ParameterSet::getParameter(), hfPhiMap, hPhiMap, layer1, lutsTokens, regionPutToken, HLT_FULL_cff::towers, twrList, unpackEcalMask, unpackHcalMask, useCalib, useECALLUT, useHCALLUT, useHFLUT, useLSB, and verbose.

116  : ecalTPSource(consumes<EcalTrigPrimDigiCollection>(iConfig.getParameter<edm::InputTag>("ecalToken"))),
117  hcalTPSource(consumes<HcalTrigPrimDigiCollection>(iConfig.getParameter<edm::InputTag>("hcalToken"))),
118  towerPutToken{produces<CaloTowerBxCollection>()},
119  regionPutToken{produces<L1CaloRegionCollection>()},
120  lutsTokens{esConsumes<edm::Transition::BeginRun>(),
121  esConsumes<edm::Transition::BeginRun>(),
122  esConsumes<edm::Transition::BeginRun>()},
123  ePhiMap(72 * 2, 0),
124  hPhiMap(72 * 2, 0),
125  hfPhiMap(72 * 2, 0),
126  useLSB(iConfig.getParameter<bool>("useLSB")),
127  useCalib(iConfig.getParameter<bool>("useCalib")),
128  useECALLUT(iConfig.getParameter<bool>("useECALLUT")),
129  useHCALLUT(iConfig.getParameter<bool>("useHCALLUT")),
130  useHFLUT(iConfig.getParameter<bool>("useHFLUT")),
131  verbose(iConfig.getParameter<bool>("verbose")),
132  unpackHcalMask(iConfig.getParameter<bool>("unpackHcalMask")),
133  unpackEcalMask(iConfig.getParameter<bool>("unpackEcalMask")),
134  fwVersion(iConfig.getParameter<int>("firmwareVersion")) {
135  // See UCTLayer1.hh for firmware version definitions
136  layer1 = std::make_unique<UCTLayer1>(fwVersion);
137 
138  vector<UCTCrate*> crates = layer1->getCrates();
139  for (uint32_t crt = 0; crt < crates.size(); crt++) {
140  vector<UCTCard*> cards = crates[crt]->getCards();
141  for (uint32_t crd = 0; crd < cards.size(); crd++) {
142  vector<UCTRegion*> regions = cards[crd]->getRegions();
143  for (uint32_t rgn = 0; rgn < regions.size(); rgn++) {
144  vector<UCTTower*> towers = regions[rgn]->getTowers();
145  for (uint32_t twr = 0; twr < towers.size(); twr++) {
146  twrList.push_back(towers[twr]);
147  }
148  }
149  }
150  }
151 
152  // This sort corresponds to the sort condition on
153  // the output CaloTowerBxCollection
154  std::sort(twrList.begin(), twrList.end(), [](UCTTower* a, UCTTower* b) {
155  return CaloTools::caloTowerHash(a->caloEta(), a->caloPhi()) < CaloTools::caloTowerHash(b->caloEta(), b->caloPhi());
156  });
157 }
std::vector< unsigned int > hfPhiMap
edm::EDGetTokenT< HcalTrigPrimDigiCollection > hcalTPSource
std::unique_ptr< UCTLayer1 > layer1
edm::EDPutTokenT< L1CaloRegionCollection > regionPutToken
std::vector< UCTTower * > twrList
edm::EDGetTokenT< EcalTrigPrimDigiCollection > ecalTPSource
const L1TCaloLayer1FetchLUTsTokens lutsTokens
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
double b
Definition: hdecay.h:118
edm::EDPutTokenT< CaloTowerBxCollection > towerPutToken
std::vector< unsigned int > hPhiMap
double a
Definition: hdecay.h:119
std::vector< unsigned int > ePhiMap

Member Function Documentation

void L1TCaloLayer1::beginRun ( edm::Run const &  iRun,
edm::EventSetup const &  iSetup 
)
overrideprivate

Definition at line 288 of file L1TCaloLayer1.cc.

References ecalLUT, ePhiMap, fwVersion, hcalLUT, hfLUT, hfPhiMap, hPhiMap, L1TCaloLayer1FetchLUTs(), LOG_ERROR, lutsTokens, twrList, useCalib, useECALLUT, useHCALLUT, useHFLUT, and useLSB.

288  {
290  iSetup,
291  ecalLUT,
292  hcalLUT,
293  hfLUT,
294  ePhiMap,
295  hPhiMap,
296  hfPhiMap,
297  useLSB,
298  useCalib,
299  useECALLUT,
300  useHCALLUT,
301  useHFLUT,
302  fwVersion)) {
303  LOG_ERROR << "L1TCaloLayer1::beginRun: failed to fetch LUTS - using unity" << std::endl;
304  std::array<std::array<std::array<uint32_t, nEtBins>, nCalSideBins>, nCalEtaBins> eCalLayer1EtaSideEtArray;
305  std::array<std::array<std::array<uint32_t, nEtBins>, nCalSideBins>, nCalEtaBins> hCalLayer1EtaSideEtArray;
306  std::array<std::array<uint32_t, nEtBins>, nHfEtaBins> hfLayer1EtaEtArray;
307  ecalLUT.push_back(eCalLayer1EtaSideEtArray);
308  hcalLUT.push_back(hCalLayer1EtaSideEtArray);
309  hfLUT.push_back(hfLayer1EtaEtArray);
310  }
311  for (uint32_t twr = 0; twr < twrList.size(); twr++) {
312  // Map goes minus 1 .. 72 plus 1 .. 72 -> 0 .. 143
313  int iphi = twrList[twr]->caloPhi();
314  int ieta = twrList[twr]->caloEta();
315  if (ieta < 0) {
316  iphi -= 1;
317  } else {
318  iphi += 71;
319  }
320  twrList[twr]->setECALLUT(&ecalLUT[ePhiMap[iphi]]);
321  twrList[twr]->setHCALLUT(&hcalLUT[hPhiMap[iphi]]);
322  twrList[twr]->setHFLUT(&hfLUT[hfPhiMap[iphi]]);
323  }
324 }
std::vector< std::array< std::array< uint32_t, nEtBins >, nHfEtaBins > > hfLUT
std::vector< unsigned int > hfPhiMap
std::vector< std::array< std::array< std::array< uint32_t, nEtBins >, nCalSideBins >, nCalEtaBins > > ecalLUT
std::vector< std::array< std::array< std::array< uint32_t, nEtBins >, nCalSideBins >, nCalEtaBins > > hcalLUT
std::vector< UCTTower * > twrList
bool L1TCaloLayer1FetchLUTs(const L1TCaloLayer1FetchLUTsTokens &iTokens, const edm::EventSetup &iSetup, std::vector< std::array< std::array< std::array< uint32_t, nEtBins >, nCalSideBins >, nCalEtaBins > > &eLUT, std::vector< std::array< std::array< std::array< uint32_t, nEtBins >, nCalSideBins >, nCalEtaBins > > &hLUT, std::vector< std::array< std::array< uint32_t, nEtBins >, nHfEtaBins > > &hfLUT, std::vector< unsigned int > &ePhiMap, std::vector< unsigned int > &hPhiMap, std::vector< unsigned int > &hfPhiMap, bool useLSB, bool useCalib, bool useECALLUT, bool useHCALLUT, bool useHFLUT, int fwVersion)
const L1TCaloLayer1FetchLUTsTokens lutsTokens
std::vector< unsigned int > hPhiMap
std::vector< unsigned int > ePhiMap
#define LOG_ERROR
Definition: CSCDQM_Logger.h:40
void L1TCaloLayer1::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 351 of file L1TCaloLayer1.cc.

References edm::ConfigurationDescriptions::addDefault(), submitPVResolutionJobs::desc, and edm::ParameterSetDescription::setUnknown().

351  {
352  //The following says we do not know what parameters are allowed so do no validation
353  // Please change this to state exactly what you do use, even if it is no parameters
355  desc.setUnknown();
356  descriptions.addDefault(desc);
357 }
void addDefault(ParameterSetDescription const &psetDescription)
void L1TCaloLayer1::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 164 of file L1TCaloLayer1.cc.

References funct::abs(), ecalTPSource, edm::Event::emplace(), g, edm::Event::getByToken(), hcalTPSource, layer1, LOG_ERROR, eostools::move(), HLT_FULL_cff::region, regionPutToken, l1t::L1Candidate::setHwEta(), l1t::CaloTower::setHwEtEm(), l1t::CaloTower::setHwEtHad(), l1t::CaloTower::setHwEtRatio(), l1t::L1Candidate::setHwPhi(), l1t::L1Candidate::setHwPt(), l1t::L1Candidate::setHwQual(), submitPVValidationJobs::t, towerPutToken, twrList, unpackEcalMask, and unpackHcalMask.

164  {
165  using namespace edm;
166 
168  iEvent.getByToken(ecalTPSource, ecalTPs);
170  iEvent.getByToken(hcalTPSource, hcalTPs);
171 
172  CaloTowerBxCollection towersColl;
173  L1CaloRegionCollection rgnCollection;
174 
175  uint32_t expectedTotalET = 0;
176  if (!layer1->clearEvent()) {
177  LOG_ERROR << "UCT: Failed to clear event" << std::endl;
178  return;
179  }
180 
181  for (const auto& ecalTp : *ecalTPs) {
182  if (unpackEcalMask && ((ecalTp.sample(0).raw() >> 13) & 0x1))
183  continue;
184  int caloEta = ecalTp.id().ieta();
185  int caloPhi = ecalTp.id().iphi();
186  int et = ecalTp.compressedEt();
187  bool fgVeto = ecalTp.fineGrain();
188  UCTTowerIndex t = UCTTowerIndex(caloEta, caloPhi);
189  if (!layer1->setECALData(t, fgVeto, et)) {
190  LOG_ERROR << "UCT: Failed loading an ECAL tower" << std::endl;
191  return;
192  }
193  expectedTotalET += et;
194  }
195 
196  if (hcalTPs.isValid()) {
197  for (const auto& hcalTp : *hcalTPs) {
198  if (unpackHcalMask && ((hcalTp.sample(0).raw() >> 13) & 0x1))
199  continue;
200  int caloEta = hcalTp.id().ieta();
201  uint32_t absCaloEta = std::abs(caloEta);
202  // Tower 29 is not used by Layer-1
203  if (absCaloEta == 29) {
204  continue;
205  }
206  // Prevent usage of HF TPs with Layer-1 emulator if HCAL TPs are old style
207  else if (hcalTp.id().version() == 0 && absCaloEta > 29) {
208  continue;
209  } else if (absCaloEta <= 41) {
210  int caloPhi = hcalTp.id().iphi();
211  int et = hcalTp.SOI_compressedEt();
212  bool fg = hcalTp.t0().fineGrain(0);
213  bool fg2 = hcalTp.t0().fineGrain(1);
214  if (caloPhi <= 72) {
215  UCTTowerIndex t = UCTTowerIndex(caloEta, caloPhi);
216  uint32_t featureBits = 0;
217  if (fg)
218  featureBits |= 0b01;
219  // fg2 should only be set for HF
220  if (absCaloEta > 29 && fg2)
221  featureBits |= 0b10;
222  if (!layer1->setHCALData(t, featureBits, et)) {
223  LOG_ERROR << "caloEta = " << caloEta << "; caloPhi =" << caloPhi << std::endl;
224  LOG_ERROR << "UCT: Failed loading an HCAL tower" << std::endl;
225  return;
226  }
227  expectedTotalET += et;
228  } else {
229  LOG_ERROR << "Illegal Tower: caloEta = " << caloEta << "; caloPhi =" << caloPhi << "; et = " << et
230  << std::endl;
231  }
232  } else {
233  LOG_ERROR << "Illegal Tower: caloEta = " << caloEta << std::endl;
234  }
235  }
236  }
237 
238  //Process
239  if (!layer1->process()) {
240  LOG_ERROR << "UCT: Failed to process layer 1" << std::endl;
241  }
242 
243  int theBX = 0; // Currently we only read and process the "hit" BX only
244 
245  for (uint32_t twr = 0; twr < twrList.size(); twr++) {
246  CaloTower caloTower;
247  caloTower.setHwPt(twrList[twr]->et()); // Bits 0-8 of the 16-bit word per the interface protocol document
248  caloTower.setHwEtRatio(twrList[twr]->er()); // Bits 9-11 of the 16-bit word per the interface protocol document
249  caloTower.setHwQual(twrList[twr]->miscBits()); // Bits 12-15 of the 16-bit word per the interface protocol document
250  caloTower.setHwEta(twrList[twr]->caloEta()); // caloEta = 1-28 and 30-41
251  caloTower.setHwPhi(twrList[twr]->caloPhi()); // caloPhi = 1-72
252  caloTower.setHwEtEm(twrList[twr]->getEcalET()); // This is provided as a courtesy - not available to hardware
253  caloTower.setHwEtHad(twrList[twr]->getHcalET()); // This is provided as a courtesy - not available to hardware
254  towersColl.push_back(theBX, caloTower);
255  }
256 
257  iEvent.emplace(towerPutToken, std::move(towersColl));
258 
259  UCTGeometry g;
260  vector<UCTCrate*> crates = layer1->getCrates();
261  for (uint32_t crt = 0; crt < crates.size(); crt++) {
262  vector<UCTCard*> cards = crates[crt]->getCards();
263  for (uint32_t crd = 0; crd < cards.size(); crd++) {
264  vector<UCTRegion*> regions = cards[crd]->getRegions();
265  for (uint32_t rgn = 0; rgn < regions.size(); rgn++) {
266  uint32_t rawData = regions[rgn]->rawData();
267  uint32_t regionData = rawData & 0x0000FFFF;
268  uint32_t crate = regions[rgn]->getCrate();
269  uint32_t card = regions[rgn]->getCard();
270  uint32_t region = regions[rgn]->getRegion();
271  bool negativeEta = regions[rgn]->isNegativeEta();
272  uint32_t rPhi = g.getUCTRegionPhiIndex(crate, card);
273  if (region < NRegionsInCard) { // We only store the Barrel and Endcap - HF has changed in the upgrade
274  uint32_t rEta =
275  10 -
276  region; // UCT region is 0-6 for B/E but GCT eta goes 0-21, 0-3 -HF, 4-10 -B/E, 11-17 +B/E, 18-21 +HF
277  if (!negativeEta)
278  rEta = 11 + region; // Positive eta portion is offset by 11
279  rgnCollection.push_back(L1CaloRegion((uint16_t)regionData, (unsigned)rEta, (unsigned)rPhi, (int16_t)0));
280  }
281  }
282  }
283  }
284  iEvent.emplace(regionPutToken, std::move(rgnCollection));
285 }
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
edm::EDGetTokenT< HcalTrigPrimDigiCollection > hcalTPSource
void setHwQual(int qual)
Definition: L1Candidate.h:31
void setHwEtHad(int et)
Definition: CaloTower.cc:29
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e g
Definition: Activities.doc:4
std::unique_ptr< UCTLayer1 > layer1
edm::EDPutTokenT< L1CaloRegionCollection > regionPutToken
std::vector< UCTTower * > twrList
def move
Definition: eostools.py:511
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
void setHwEtRatio(int ratio)
Definition: CaloTower.cc:31
edm::EDGetTokenT< EcalTrigPrimDigiCollection > ecalTPSource
void setHwPhi(int phi)
Definition: L1Candidate.h:30
OrphanHandle< PROD > emplace(EDPutTokenT< PROD > token, Args &&...args)
puts a new product
Definition: Event.h:433
edm::EDPutTokenT< CaloTowerBxCollection > towerPutToken
void setHwPt(int pt)
Definition: L1Candidate.h:28
A calorimeter trigger region (sum of 4x4 trigger towers)
Definition: L1CaloRegion.h:21
void setHwEta(int eta)
Definition: L1Candidate.h:29
std::vector< L1CaloRegion > L1CaloRegionCollection
void setHwEtEm(int et)
Definition: CaloTower.cc:27
#define LOG_ERROR
Definition: CSCDQM_Logger.h:40

Member Data Documentation

std::vector<std::array<std::array<std::array<uint32_t, nEtBins>, nCalSideBins>, nCalEtaBins> > L1TCaloLayer1::ecalLUT
private

Definition at line 81 of file L1TCaloLayer1.cc.

Referenced by beginRun().

edm::EDGetTokenT<EcalTrigPrimDigiCollection> L1TCaloLayer1::ecalTPSource
private

Definition at line 75 of file L1TCaloLayer1.cc.

Referenced by produce().

std::vector<unsigned int> L1TCaloLayer1::ePhiMap
private

Definition at line 85 of file L1TCaloLayer1.cc.

Referenced by beginRun(), and L1TCaloLayer1().

int L1TCaloLayer1::fwVersion
private

Definition at line 99 of file L1TCaloLayer1.cc.

Referenced by beginRun(), and L1TCaloLayer1().

std::vector<std::array<std::array<std::array<uint32_t, nEtBins>, nCalSideBins>, nCalEtaBins> > L1TCaloLayer1::hcalLUT
private

Definition at line 82 of file L1TCaloLayer1.cc.

Referenced by beginRun().

edm::EDGetTokenT<HcalTrigPrimDigiCollection> L1TCaloLayer1::hcalTPSource
private

Definition at line 76 of file L1TCaloLayer1.cc.

Referenced by produce().

std::vector<std::array<std::array<uint32_t, nEtBins>, nHfEtaBins> > L1TCaloLayer1::hfLUT
private

Definition at line 83 of file L1TCaloLayer1.cc.

Referenced by beginRun().

std::vector<unsigned int> L1TCaloLayer1::hfPhiMap
private

Definition at line 87 of file L1TCaloLayer1.cc.

Referenced by beginRun(), and L1TCaloLayer1().

std::vector<unsigned int> L1TCaloLayer1::hPhiMap
private

Definition at line 86 of file L1TCaloLayer1.cc.

Referenced by beginRun(), and L1TCaloLayer1().

std::unique_ptr<UCTLayer1> L1TCaloLayer1::layer1
private

Definition at line 101 of file L1TCaloLayer1.cc.

Referenced by L1TCaloLayer1(), and produce().

const L1TCaloLayer1FetchLUTsTokens L1TCaloLayer1::lutsTokens
private

Definition at line 79 of file L1TCaloLayer1.cc.

Referenced by beginRun(), and L1TCaloLayer1().

edm::EDPutTokenT<L1CaloRegionCollection> L1TCaloLayer1::regionPutToken
private

Definition at line 78 of file L1TCaloLayer1.cc.

Referenced by L1TCaloLayer1(), and produce().

edm::EDPutTokenT<CaloTowerBxCollection> L1TCaloLayer1::towerPutToken
private

Definition at line 77 of file L1TCaloLayer1.cc.

Referenced by produce().

std::vector<UCTTower*> L1TCaloLayer1::twrList
private

Definition at line 89 of file L1TCaloLayer1.cc.

Referenced by beginRun(), L1TCaloLayer1(), and produce().

bool L1TCaloLayer1::unpackEcalMask
private

Definition at line 98 of file L1TCaloLayer1.cc.

Referenced by L1TCaloLayer1(), and produce().

bool L1TCaloLayer1::unpackHcalMask
private

Definition at line 97 of file L1TCaloLayer1.cc.

Referenced by L1TCaloLayer1(), and produce().

bool L1TCaloLayer1::useCalib
private

Definition at line 92 of file L1TCaloLayer1.cc.

Referenced by beginRun(), and L1TCaloLayer1().

bool L1TCaloLayer1::useECALLUT
private

Definition at line 93 of file L1TCaloLayer1.cc.

Referenced by beginRun(), and L1TCaloLayer1().

bool L1TCaloLayer1::useHCALLUT
private

Definition at line 94 of file L1TCaloLayer1.cc.

Referenced by beginRun(), and L1TCaloLayer1().

bool L1TCaloLayer1::useHFLUT
private

Definition at line 95 of file L1TCaloLayer1.cc.

Referenced by beginRun(), and L1TCaloLayer1().

bool L1TCaloLayer1::useLSB
private

Definition at line 91 of file L1TCaloLayer1.cc.

Referenced by beginRun(), and L1TCaloLayer1().

bool L1TCaloLayer1::verbose
private