CMS 3D CMS Logo

JetUnpacker.cc
Go to the documentation of this file.
3 
5 
6 #include "L1TObjectCollections.h"
7 
9 #include "JetUnpacker.h"
10 
11 namespace l1t {
12 namespace stage2 {
13  bool
15  {
16 
17  using namespace l1t::stage2::layer2;
18 
19  LogDebug("L1T") << "Block ID = " << block.header().getID() << " size = " << block.header().getSize();
20 
21  int nBX = int(ceil(block.header().getSize() / (double) demux::nOutputFramePerBX )); // 6 frames per BX
22 
23  // Find the first and last BXs
24  int firstBX = -(ceil((double)nBX/2.)-1);
25  int lastBX;
26  if (nBX % 2 == 0) {
27  lastBX = ceil((double)nBX/2.);
28  } else {
29  lastBX = ceil((double)nBX/2.)-1;
30  }
31 
32  auto res_ = static_cast<L1TObjectCollections*>(coll)->getJets();
33  res_->setBXRange(firstBX, lastBX);
34 
35  LogDebug("L1T") << "nBX = " << nBX << " first BX = " << firstBX << " lastBX = " << lastBX;
36 
37  // Loop over multiple BX and then number of jets filling jet collection
38  for (int bx=firstBX; bx<=lastBX; bx++){
39  for (unsigned iJet=0; iJet < demux::nJetPerLink && iJet < block.header().getSize(); iJet++){
40 
41  int iFrame = (bx-firstBX)*demux::nOutputFramePerBX + iJet;
42  uint32_t raw_data = block.payload().at(iFrame);
43 
44  if (raw_data == 0)
45  continue;
46 
47  l1t::Jet jet = l1t::Jet();
48 
49  jet.setHwPt(raw_data & 0x7FF);
50 
51  if (jet.hwPt()==0) continue;
52 
53  int abs_eta = (raw_data >> 11) & 0x7F;
54  if ((raw_data >> 18) & 0x1) {
55  jet.setHwEta(-1 * (128-abs_eta));
56  } else {
57  jet.setHwEta(abs_eta);
58  }
59 
60  jet.setHwPhi((raw_data >> 19) & 0xFF);
61  jet.setHwQual((raw_data >> 27) & 0x7); // Assume 3 bits for now? Leaves 2 bits spare
62 
63  LogDebug("L1T") << "Jet: eta " << jet.hwEta() << " phi " << jet.hwPhi() << " pT " << jet.hwPt() << " qual " << jet.hwQual() << " bx " << bx;
64 
65  jet.setP4( l1t::CaloTools::p4Demux(&jet) );
66 
67  res_->push_back(bx, jet);
68  }
69  }
70 
71  return true;
72  }
73 }
74 }
75 
#define LogDebug(id)
unsigned int getID() const
Definition: Block.h:21
BlockHeader header() const
Definition: Block.h:59
void setHwQual(int qual)
Definition: L1Candidate.h:44
int hwPhi() const
Definition: L1Candidate.h:50
delete x;
Definition: CaloConfig.h:22
std::vector< uint32_t > payload() const
Definition: Block.h:60
Definition: Jet.h:16
int hwEta() const
Definition: L1Candidate.h:49
int hwQual() const
Definition: L1Candidate.h:51
bool unpack(const Block &block, UnpackerCollections *coll) override
Definition: JetUnpacker.cc:14
void setHwPhi(int phi)
Definition: L1Candidate.h:43
JetCorrectorParametersCollection coll
Definition: classes.h:10
int hwPt() const
Definition: L1Candidate.h:48
void setHwPt(int pt)
Definition: L1Candidate.h:41
#define DEFINE_L1T_UNPACKER(type)
unsigned int getSize() const
Definition: Block.h:22
void setHwEta(int eta)
Definition: L1Candidate.h:42
static math::PtEtaPhiMLorentzVector p4Demux(l1t::L1Candidate *)
Definition: CaloTools.cc:283
void setP4(const LorentzVector &p4) final
set 4-momentum