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 | Protected Types | Protected Member Functions | Protected Attributes
DCCTBTowerBlock Class Reference

#include <DCCTowerBlock.h>

Inheritance diagram for DCCTBTowerBlock:
DCCTBBlockPrototype

Public Member Functions

 DCCTBTowerBlock (DCCTBEventBlock *dccBlock, DCCTBDataParser *parser, const uint32_t *buffer, uint32_t numbBytes, uint32_t wordsToEnd, uint32_t wordEventOffset, uint32_t expectedTowerID)
 
void parseXtalData ()
 
int towerID ()
 
std::vector< DCCTBXtalBlock * > & xtalBlocks ()
 
std::vector< DCCTBXtalBlock * > xtalBlocksById (uint32_t stripId, uint32_t xtalId)
 
 ~DCCTBTowerBlock () override
 
- Public Member Functions inherited from DCCTBBlockPrototype
bool blockError ()
 
virtual std::pair< bool,
std::string > 
checkDataField (std::string name, uint32_t data)
 
virtual std::pair< bool,
std::string > 
compare (DCCTBBlockPrototype *block)
 
 DCCTBBlockPrototype (DCCTBDataParser *parser, std::string name, const uint32_t *buffer, uint32_t numbBytes, uint32_t wordsToEndOfEvent, uint32_t wordEventOffset=0)
 
virtual void displayData (std::ostream &os=std::cout)
 
std::map< std::string, uint32_t > & errorCounters ()
 
std::string & errorString ()
 
virtual uint32_t getDataField (std::string name)
 
virtual uint32_t getDataWord (uint32_t wordPosition, uint32_t bitPosition, uint32_t mask)
 
DCCTBDataParsergetParser ()
 
virtual void increment (uint32_t numb, std::string msg="")
 
std::string name ()
 
virtual void parseData ()
 
virtual void seeIfIsPossibleToIncrement (uint32_t numb, std::string msg="")
 
virtual void setDataField (std::string name, uint32_t data)
 
uint32_t size ()
 
uint32_t wOffset ()
 
virtual ~DCCTBBlockPrototype ()
 

Protected Types

enum  towerFields { BXMASK = 0xFFF, L1MASK = 0xFFF }
 

Protected Member Functions

void dataCheck ()
 
- Protected Member Functions inherited from DCCTBBlockPrototype
std::string formatString (std::string myString, uint32_t minPositions)
 

Protected Attributes

DCCTBEventBlockdccBlock_
 
uint32_t expectedTowerID_
 
std::vector< DCCTBXtalBlock * > xtalBlocks_
 
- Protected Attributes inherited from DCCTBBlockPrototype
const uint32_t * beginOfBuffer_
 
bool blockError_
 
uint32_t blockSize_
 
std::string blockString_
 
std::map< std::string, uint32_t > dataFields_
 
const uint32_t * dataP_
 
std::map< std::string, uint32_t > errors_
 
std::string errorString_
 
std::set< DCCTBDataField
*, DCCTBDataFieldComparator > * 
mapperFields_
 
std::string name_
 
DCCTBDataParserparser_
 
std::string processingString_
 
uint32_t wordCounter_
 
uint32_t wordEventOffset_
 
uint32_t wordsToEndOfEvent_
 

Detailed Description

Definition at line 19 of file DCCTowerBlock.h.

Member Enumeration Documentation

Enumerator
BXMASK 
L1MASK 

Definition at line 41 of file DCCTowerBlock.h.

Constructor & Destructor Documentation

DCCTBTowerBlock::DCCTBTowerBlock ( DCCTBEventBlock dccBlock,
DCCTBDataParser parser,
const uint32_t *  buffer,
uint32_t  numbBytes,
uint32_t  wordsToEnd,
uint32_t  wordEventOffset,
uint32_t  expectedTowerID 
)

Definition at line 9 of file DCCTowerBlock.cc.

References DCCTBBlockPrototype::errors_, DCCTBDataParser::mapper(), DCCTBBlockPrototype::mapperFields_, DCCTBBlockPrototype::parseData(), DCCTBBlockPrototype::parser_, and DCCTBDataMapper::towerFields().

16  : DCCTBBlockPrototype(parser, "TOWERHEADER", buffer, numbBytes, wordsToEnd, wordEventOffset),
17  dccBlock_(dccBlock),
18  expectedTowerID_(expectedTowerID) {
19  //Reset error counters ///////////
20  errors_["FE::HEADER"] = 0;
21  errors_["FE::TT/SC ID"] = 0;
22  errors_["FE::BLOCK LENGTH"] = 0;
24 
25  // Get data fields from the mapper and retrieve data /////////////////////////////////////
27  parseData();
29 }
virtual void parseData()
std::set< DCCTBDataField *, DCCTBDataFieldComparator > * mapperFields_
DCCTBDataParser * parser_
std::map< std::string, uint32_t > errors_
std::set< DCCTBDataField *, DCCTBDataFieldComparator > * towerFields()
DCCTBDataMapper * mapper()
uint32_t expectedTowerID_
Definition: DCCTowerBlock.h:45
DCCTBEventBlock * dccBlock_
Definition: DCCTowerBlock.h:44
DCCTBBlockPrototype(DCCTBDataParser *parser, std::string name, const uint32_t *buffer, uint32_t numbBytes, uint32_t wordsToEndOfEvent, uint32_t wordEventOffset=0)
DCCTBTowerBlock::~DCCTBTowerBlock ( )
override

Definition at line 108 of file DCCTowerBlock.cc.

References xtalBlocks_.

108  {
109  std::vector<DCCTBXtalBlock *>::iterator it;
110  for (it = xtalBlocks_.begin(); it != xtalBlocks_.end(); it++) {
111  delete (*it);
112  }
113  xtalBlocks_.clear();
114 }
std::vector< DCCTBXtalBlock * > xtalBlocks_
Definition: DCCTowerBlock.h:43

Member Function Documentation

void DCCTBTowerBlock::dataCheck ( )
protected

Definition at line 116 of file DCCTowerBlock.cc.

References DCCTBBlockPrototype::blockError_, DCCTBBlockPrototype::checkDataField(), dccBlock_, DCCTBBlockPrototype::errors_, DCCTBBlockPrototype::errorString_, expectedTowerID_, DCCTBBlockPrototype::getDataField(), DCCTBDataParser::getDecString(), L1MASK, DCCTBBlockPrototype::name_, DCCTBBlockPrototype::parser_, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by parseXtalData().

116  {
117  std::string checkErrors("");
118 
119  std::pair<bool, std::string> res;
120 
122  // For TB we don-t check Bx
123  //res = checkDataField("BX", BXMASK & (dccBlock_->getDataField("BX")));
124  //if(!res.first){ checkErrors += res.second; (errors_["FE::HEADER"])++; }
126 
127  // mod to account for ECAL counters starting from 0 in the front end N. Almeida
128  res = checkDataField("LV1", L1MASK & (dccBlock_->getDataField("LV1") - 1));
129  if (!res.first) {
130  checkErrors += res.second;
131  (errors_["FE::HEADER"])++;
132  }
133 
134  if (expectedTowerID_ != 0) {
135  res = checkDataField("TT/SC ID", expectedTowerID_);
136  if (!res.first) {
137  checkErrors += res.second;
138  (errors_["FE::HEADER"])++;
139  }
140  }
141 
142  if (!checkErrors.empty()) {
143  std::string myTowerId;
144 
145  errorString_ += "\n ======================================================================\n";
146  errorString_ += std::string(" ") + name_ + std::string("( ID = ") +
147  parser_->getDecString((uint32_t)(expectedTowerID_)) + std::string(" ) errors : ");
148  errorString_ += checkErrors;
149  errorString_ += "\n ======================================================================";
150  blockError_ = true;
151  }
152 }
virtual std::pair< bool, std::string > checkDataField(std::string name, uint32_t data)
virtual uint32_t getDataField(std::string name)
DCCTBDataParser * parser_
std::string getDecString(uint32_t data)
std::map< std::string, uint32_t > errors_
uint32_t expectedTowerID_
Definition: DCCTowerBlock.h:45
DCCTBEventBlock * dccBlock_
Definition: DCCTowerBlock.h:44
void DCCTBTowerBlock::parseXtalData ( )

Definition at line 31 of file DCCTowerBlock.cc.

References DCCTBBlockPrototype::blockError_, DCCTBBlockPrototype::blockSize_, dataCheck(), DCCTBBlockPrototype::dataP_, dccBlock_, DCCTBDataParser::debug(), DCCTBBlockPrototype::errors_, DCCTBBlockPrototype::errorString_, DCCTBBlockPrototype::getDataField(), DCCTBDataParser::getDecString(), DCCTBBlockPrototype::increment(), DCCTBBlockPrototype::name_, DCCTBDataParser::numbXtalSamples(), DCCTBBlockPrototype::parser_, AlCaHLTBitMon_QueryRunRegistry::string, DCCTBBlockPrototype::wordCounter_, DCCTBBlockPrototype::wordEventOffset_, DCCTBBlockPrototype::wordsToEndOfEvent_, and xtalBlocks_.

Referenced by DCCTBEventBlock::DCCTBEventBlock().

31  {
32  uint32_t numbBytes = blockSize_;
33  uint32_t wordsToEnd = wordsToEndOfEvent_;
34 
35  // See if we can construct the correct number of XTAL Blocks////////////////////////////////////////////////////////////////////////////////
36  uint32_t numbDWInXtalBlock = (parser_->numbXtalSamples()) / 4 + 1;
37  uint32_t length = getDataField("BLOCK LENGTH");
38  uint32_t numbOfXtalBlocks = 0;
39 
40  if (length > 0) {
41  numbOfXtalBlocks = (length - 1) / numbDWInXtalBlock;
42  }
43  uint32_t xtalBlockSize = numbDWInXtalBlock * 8;
44  //uint32_t pIncrease = numbDWInXtalBlock*2;
45 
46  //std::cout<<"\n DEBUG::numbDWInXtal Block "<<dec<<numbDWInXtalBlock<<std::endl;
47  //std::cout<<"\n DEBUG::length "<<length<<std::endl;
48  //std::cout<<"\n DEBUG::xtalBlockSize "<<xtalBlockSize<<std::endl;
49  //std::cout<<"\n DEBUG::pIncreade "<<pIncrease<<std::endl;
50 
51  bool zs = dccBlock_->getDataField("ZS");
52  if (!zs && numbOfXtalBlocks != 25) {
53  (errors_["FE::BLOCK LENGTH"])++;
54  errorString_ += "\n ======================================================================\n";
55  errorString_ += std::string(" ") + name_ + std::string(" ZS is not active, error in the Tower Length !");
56  errorString_ +=
57  "\n Tower Length is : " + (parser_->getDecString(numbBytes / 8)) + std::string(" , while it should be : ");
58  std::string myString = parser_->getDecString((uint32_t)(25 * numbDWInXtalBlock + 1));
59  errorString_ +=
60  "\n It was only possible to build : " + parser_->getDecString(numbOfXtalBlocks) + std::string(" XTAL blocks");
61  errorString_ += "\n ======================================================================";
62  blockError_ = true;
63  };
64  if (numbOfXtalBlocks > 25) {
65  if (errors_["FE::BLOCK LENGTH"] == 0)
66  (errors_["FE::BLOCK LENGTH"])++;
67  errorString_ += "\n ======================================================================\n";
68  errorString_ += std::string(" ") + name_ + std::string(" Tower Length is larger then expected...!");
69  errorString_ += "\n Tower Length is : " + parser_->getDecString(numbBytes / 8) +
70  std::string(" , while it should be at maximum : ");
71  std::string myString = parser_->getDecString((uint32_t)(25 * numbDWInXtalBlock + 1));
72  errorString_ += "\n Action -> data after the xtal 25 is ignored... ";
73  errorString_ += "\n ======================================================================";
74  blockError_ = true;
75  }
77 
78  blockSize_ += length * 8; //??????????????????????
79 
80  // Get XTAL Data //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
81  uint32_t stripID, xtalID;
82 
83  for (uint32_t numbXtal = 1; numbXtal <= numbOfXtalBlocks && numbXtal <= 25; numbXtal++) {
84  increment(1);
85 
86  stripID = (numbXtal - 1) / 5 + 1;
87  xtalID = numbXtal - (stripID - 1) * 5;
88 
89  if (!zs) {
90  xtalBlocks_.push_back(new DCCTBXtalBlock(
91  parser_, dataP_, xtalBlockSize, wordsToEnd - wordCounter_, wordCounter_ + wordEventOffset_, xtalID, stripID));
92  } else {
93  xtalBlocks_.push_back(new DCCTBXtalBlock(
94  parser_, dataP_, xtalBlockSize, wordsToEnd - wordCounter_, wordCounter_ + wordEventOffset_, 0, 0));
95  }
96 
97  increment(xtalBlockSize / 4 - 1);
98  }
100 
101  // Check internal data ////////////
102  if (parser_->debug()) {
103  dataCheck();
104  };
106 }
virtual uint32_t getDataField(std::string name)
virtual void increment(uint32_t numb, std::string msg="")
const uint32_t * dataP_
DCCTBDataParser * parser_
std::string getDecString(uint32_t data)
std::map< std::string, uint32_t > errors_
uint32_t numbXtalSamples()
std::vector< DCCTBXtalBlock * > xtalBlocks_
Definition: DCCTowerBlock.h:43
DCCTBEventBlock * dccBlock_
Definition: DCCTowerBlock.h:44
int DCCTBTowerBlock::towerID ( )

Definition at line 174 of file DCCTowerBlock.cc.

References DCCTBBlockPrototype::getDataField(), DCCTBBlockPrototype::mapperFields_, and mps_fire::result.

Referenced by EcalTBDaqFormatter::DecodeMEM(), and EcalTB07DaqFormatter::DecodeMEM().

174  {
175  int result = -1;
176 
177  for (std::set<DCCTBDataField *, DCCTBDataFieldComparator>::iterator it = mapperFields_->begin();
178  it != mapperFields_->end();
179  it++) {
180  if ((*it)->name() == "TT/SC ID")
181  result = getDataField((*it)->name());
182  }
183 
184  return result;
185 }
virtual uint32_t getDataField(std::string name)
std::set< DCCTBDataField *, DCCTBDataFieldComparator > * mapperFields_
tuple result
Definition: mps_fire.py:311
std::vector< DCCTBXtalBlock * > & DCCTBTowerBlock::xtalBlocks ( )
inline

Definition at line 48 of file DCCTowerBlock.h.

References xtalBlocks_.

Referenced by EcalTBDaqFormatter::DecodeMEM(), and EcalTB07DaqFormatter::DecodeMEM().

48 { return xtalBlocks_; }
std::vector< DCCTBXtalBlock * > xtalBlocks_
Definition: DCCTowerBlock.h:43
std::vector< DCCTBXtalBlock * > DCCTBTowerBlock::xtalBlocksById ( uint32_t  stripId,
uint32_t  xtalId 
)

Definition at line 154 of file DCCTowerBlock.cc.

References alignCSCRings::e, and xtalBlocks_.

154  {
155  std::vector<DCCTBXtalBlock *> myVector;
156  std::vector<DCCTBXtalBlock *>::iterator it;
157 
158  for (it = xtalBlocks_.begin(); it != xtalBlocks_.end(); it++) {
159  try {
160  std::pair<bool, std::string> stripIdCheck = (*it)->checkDataField("STRIP ID", stripId);
161  std::pair<bool, std::string> xtalIdCheck = (*it)->checkDataField("XTAL ID", xtalId);
162 
163  if (xtalIdCheck.first && stripIdCheck.first) {
164  myVector.push_back((*it));
165  }
166 
167  } catch (ECALTBParserBlockException &e) { /*ignore*/
168  }
169  }
170 
171  return myVector;
172 }
std::vector< DCCTBXtalBlock * > xtalBlocks_
Definition: DCCTowerBlock.h:43

Member Data Documentation

DCCTBEventBlock* DCCTBTowerBlock::dccBlock_
protected

Definition at line 44 of file DCCTowerBlock.h.

Referenced by dataCheck(), and parseXtalData().

uint32_t DCCTBTowerBlock::expectedTowerID_
protected

Definition at line 45 of file DCCTowerBlock.h.

Referenced by dataCheck().

std::vector<DCCTBXtalBlock *> DCCTBTowerBlock::xtalBlocks_
protected

Definition at line 43 of file DCCTowerBlock.h.

Referenced by parseXtalData(), xtalBlocks(), xtalBlocksById(), and ~DCCTBTowerBlock().