CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Classes | Functions
CSCCFEBStatusDigi.h File Reference
#include <vector>
#include <iosfwd>
#include <stdint.h>

Go to the source code of this file.

Classes

class  CSCCFEBStatusDigi
 

Functions

std::ostream & operator<< (std::ostream &o, const CSCCFEBStatusDigi &digi)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  o,
const CSCCFEBStatusDigi digi 
)

Definition at line 138 of file CSCCFEBStatusDigi.cc.

References CSCCFEBStatusDigi::getCFEBNmb(), CSCCFEBStatusDigi::getCRC(), CSCCFEBStatusDigi::getL1A_PHASE(), CSCCFEBStatusDigi::getLCT_PHASE(), CSCCFEBStatusDigi::getSCA_BLK(), CSCCFEBStatusDigi::getSCA_FULL(), CSCCFEBStatusDigi::getSCAFullCond(), CSCCFEBStatusDigi::getTRIG_TIME(), CSCCFEBStatusDigi::getTS_FLAG(), i, and python.connectstrParser::o.

138  {
139  o << " " << digi.getCFEBNmb()<<"\n";
140  for (size_t i = 0; i<4; ++i ){
141  o <<" " <<(digi.getSCAFullCond())[i]; }
142  o <<"\n";
143  for (size_t i = 0; i<digi.getCRC().size(); ++i ){
144  o <<" " <<(digi.getCRC())[i]; }
145  o<<"\n";
146  for (size_t i = 0; i<digi.getTS_FLAG().size(); ++i ){
147  o <<" " <<(digi.getTS_FLAG())[i]; }
148  o<<"\n";
149  for (size_t i = 0; i<digi.getSCA_FULL().size(); ++i ){
150  o <<" " <<(digi.getSCA_FULL())[i]; }
151  o<<"\n";
152  for (size_t i = 0; i<digi.getLCT_PHASE().size(); ++i ){
153  o <<" " <<(digi.getLCT_PHASE())[i]; }
154  o<<"\n";
155  for (size_t i = 0; i<digi.getL1A_PHASE().size(); ++i ){
156  o <<" " <<(digi.getL1A_PHASE())[i]; }
157  o<<"\n";
158  for (size_t i = 0; i<digi.getSCA_BLK().size(); ++i ){
159  o <<" " <<(digi.getSCA_BLK())[i]; }
160  o<<"\n";
161  for (size_t i = 0; i<digi.getTRIG_TIME().size(); ++i ){
162  o <<" " <<(digi.getTRIG_TIME())[i]; }
163  o<<"\n";
164 
165  return o;
166 }
int i
Definition: DBlmapReader.cc:9
std::vector< int > getTS_FLAG() const
Get TS_FLAG bit from SCA Controller data per each time slice.
std::vector< int > getSCA_BLK() const
Get SCA_BLK 4 bit word from SCA Controller data per each time slice.
std::vector< int > getL1A_PHASE() const
Get L1A_PHASE bit from SCA Controller data per each time slice.
std::vector< int > getLCT_PHASE() const
Get LCT_PHASE bit from SCA Controller data per each time slice.
int getCFEBNmb() const
Get the CFEB number.
std::vector< uint16_t > getSCAFullCond() const
Get SCA Full Condition.
std::vector< int > getSCA_FULL() const
Get SCA_FULL bit from SCA Controller data per each time slice.
std::vector< uint16_t > getCRC() const
Get CRC per each time sample.
std::vector< int > getTRIG_TIME() const
Get TRIG_TIME 8 bit word from SCA Controller data per each time slice.