CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MissEtUnpacker.cc
Go to the documentation of this file.
2 
4 
5 #include "CaloCollections.h"
6 
7 namespace l1t {
8  namespace stage1 {
9  class MissEtUnpacker : public Unpacker {
10  public:
11  virtual bool unpack(const Block& block, UnpackerCollections *coll) override;
12  };
13  }
14 }
15 
16 // Implementation
17 
18 namespace l1t {
19  namespace stage1 {
20  bool
22  {
23 
24  LogDebug("L1T") << "Block ID = " << block.header().getID() << " size = " << block.header().getSize();
25 
26  int nBX, firstBX, lastBX;
27  nBX = int(ceil(block.header().getSize() / 2.));
28  getBXRange(nBX, firstBX, lastBX);
29 
30  auto res_ = static_cast<CaloCollections*>(coll)->getEtSums();
31  res_->setBXRange(firstBX, lastBX);
32 
33  LogDebug("L1T") << "nBX = " << nBX << " first BX = " << firstBX << " lastBX = " << lastBX;
34 
35  // Initialise index
36  int unsigned i = 0;
37 
38  // Loop over multiple BX and then number of jets filling jet collection
39  for (int bx=firstBX; bx<=lastBX; bx++){
40 
41  res_->resize(bx,4);
42 
43  uint32_t raw_data0 = block.payload()[i++];
44  uint32_t raw_data1 = block.payload()[i++];
45 
46  /* if (raw_data0 == 0 || raw_data1==0) continue; */
47 
48  uint16_t candbit[2];
49  candbit[0] = raw_data0 & 0xFFFF;
50  candbit[1] = raw_data1 & 0xFFFF;
51 
52  int etmiss=candbit[0] & 0xFFF;
53  int overflowetmiss=(candbit[0]>>12) & 0x1;
54  int etmissphi=candbit[1] & 0x7F;
55 
57  met.setHwPt(etmiss);
58  met.setHwPhi(etmissphi);
60  int flagetmiss=met.hwQual();
61  flagetmiss|= overflowetmiss;
62  met.setHwQual(flagetmiss);
63  LogDebug("L1T") << "MET: pT " << met.hwPt()<<"is overflow "<<overflowetmiss<<std::endl;
64  res_->set(bx, 0,met);
65 
66  }
67 
68  return true;
69 
70  }
71  }
72 }
73 
#define LogDebug(id)
int i
Definition: DBlmapReader.cc:9
unsigned int getID() const
Definition: Block.h:22
void getBXRange(int nbx, int &first, int &last)
Definition: Unpacker.cc:12
virtual bool unpack(const Block &block, UnpackerCollections *coll) override
BlockHeader header() const
Definition: Block.h:56
void setHwQual(int qual)
Definition: L1Candidate.cc:64
std::vector< uint32_t > payload() const
Definition: Block.h:57
void setType(EtSumType type)
Definition: EtSum.cc:32
#define DEFINE_L1T_UNPACKER(type)
Definition: Unpacker.h:31
int hwQual() const
Definition: L1Candidate.cc:89
void setHwPhi(int phi)
Definition: L1Candidate.cc:54
JetCorrectorParametersCollection coll
Definition: classes.h:10
int hwPt() const
Definition: L1Candidate.cc:69
void setHwPt(int pt)
Definition: L1Candidate.cc:44
unsigned int getSize() const
Definition: Block.h:23