CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
EcalFenixTcpFgvbEE Class Reference

calculation of Fgvb for Fenix Tcp, format endcap calculates fgvb for the endcap More...

#include <EcalFenixTcpFgvbEE.h>

Public Member Functions

void process (std::vector< std::vector< int >> &bypasslin_out, int nStr, int bitMask, std::vector< int > &output)
 
void setParameters (uint32_t towid, const EcalTPGFineGrainTowerEE *ecaltpgFineGrainTowerEE)
 

Private Attributes

uint32_t fgee_lut_
 

Detailed Description

calculation of Fgvb for Fenix Tcp, format endcap calculates fgvb for the endcap

input : 5x 11th bit of Bypasslin ouput output: 1 bit

the five bit_strips + 3 bits (nb of strips) (are used to make a LUT_tower

address (max size :2**8=256) the output is 1 value.

Definition at line 24 of file EcalFenixTcpFgvbEE.h.

Member Function Documentation

◆ process()

void EcalFenixTcpFgvbEE::process ( std::vector< std::vector< int >> &  bypasslin_out,
int  nStr,
int  bitMask,
std::vector< int > &  output 
)

Definition at line 7 of file EcalFenixTcpFgvbEE.cc.

References fgee_lut_, mps_fire::i, and ALPAKA_ACCELERATOR_NAMESPACE::pixelClustering::pixelStatus::mask.

Referenced by EcalFenixTcp::process_part2_endcap().

10  {
11  for (unsigned int i = 0; i < output.size(); i++) {
12  output[i] = 0;
13  }
14 
15  //Return if fgee_lut_ is 0
16  if (fgee_lut_ == 0) {
17  return;
18  }
19 
20  int indexLut = 0;
21  for (unsigned int i = 0; i < output.size(); i++) {
22  indexLut = 0;
23  for (int istrip = 0; istrip < nStr; istrip++) {
24  int res = (bypasslin_out[istrip])[i];
25  res = (res >> bitMask) & 1; // res is FGVB at this stage
26  indexLut = indexLut | (res << istrip);
27  }
28  int mask = 1 << indexLut;
29  output[i] = fgee_lut_ & mask;
30  if (output[i] > 0)
31  output[i] = 1;
32  }
33  return;
34 }
Definition: Electron.h:6
Definition: output.py:1

◆ setParameters()

void EcalFenixTcpFgvbEE::setParameters ( uint32_t  towid,
const EcalTPGFineGrainTowerEE ecaltpgFineGrainTowerEE 
)

Definition at line 38 of file EcalFenixTcpFgvbEE.cc.

References fgee_lut_, EcalTPGFineGrainTowerEE::getMap(), and ALPAKA_ACCELERATOR_NAMESPACE::vertexFinder::it.

Referenced by EcalFenixTcp::process_part2_endcap().

38  {
39  const EcalTPGFineGrainTowerEEMap &fgee_map = ecaltpgFineGrainTowerEE->getMap();
40 
41  EcalTPGFineGrainTowerEEMapIterator it = fgee_map.find(towid);
42  if (it != fgee_map.end())
43  fgee_lut_ = (*it).second;
44  else
45  edm::LogWarning("EcalTPG") << " could not find EcalTPGFineGrainTowerEEMap for " << towid;
46 }
std::map< uint32_t, uint32_t >::const_iterator EcalTPGFineGrainTowerEEMapIterator
const std::map< uint32_t, uint32_t > & getMap() const
std::map< uint32_t, uint32_t > EcalTPGFineGrainTowerEEMap

Member Data Documentation

◆ fgee_lut_

uint32_t EcalFenixTcpFgvbEE::fgee_lut_
private

Definition at line 26 of file EcalFenixTcpFgvbEE.h.

Referenced by process(), and setParameters().