00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082 #include <iostream>
00083 #include <stdio.h>
00084
00085
00086 #include "EventFilter/CSCTFRawToDigi/src/CSCTFTBEventHeader.h"
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097 static const char* const kIdString = "$Id: CSCTFTBEventHeader.cc,v 1.1 2007/04/26 23:39:19 kkotov Exp $";
00098 static const char* const kTagString = "$Name: V02-15-07 $";
00099
00100
00101
00102
00103
00104 CSCTFTBEventHeader::CSCTFTBEventHeader()
00105 {}
00106
00107 CSCTFTBEventHeader::CSCTFTBEventHeader(const CSCTFTBEventHeader& parent)
00108 {
00109 memcpy(reinterpret_cast<unsigned*>(this),&parent,size()*sizeof(unsigned short));
00110 }
00111
00112 CSCTFTBEventHeader::~CSCTFTBEventHeader()
00113 {}
00114
00115 unsigned int CSCTFTBEventHeader::getNumActiveFront() const
00116 {
00117 unsigned int num = 0;
00118
00119 for(int i=0;i<5;i++)
00120 {
00121 if(act_ffpga_&(1<<i)) num++;
00122 }
00123 return num;
00124 }
00125
00126 bool CSCTFTBEventHeader::check() const
00127 {
00128 return (key1_ == 0xf && key2_ == 0xf && key3_ == 0xf && key4_ == 0xf);
00129 }
00130
00131 std::ostream & operator<<(std::ostream & stream, const CSCTFTBEventHeader & header) {
00132 stream << std::dec <<"Event Header for L1A " << header.getLvl1num()<<" :\n"
00133 << " BX " << header.getBXnum() << std::endl
00134 << " " << header.numMPC() << " MPC(s)"
00135 << " with " << header.numLinks() << " links per MPC.\n"
00136 << " There are " << header.numBX() << " BX in this event." << std::endl;
00137 if(header.getZeroSupp()) stream << " Zero Suppression is active.\n";
00138 if(header.getActiveDT()) stream << " DT is active.\n";
00139 if(header.getPtLutSpy())
00140 stream << " PT LUT data present on link " << header.getPtLutSpy()<<".\n";
00141 if(header.getActiveFront())
00142 {
00143 stream << " There are "<<header.getNumActiveFront()<<" active front FPGAs." <<std::endl;
00144 }
00145 stream<<std::hex;
00146 return stream;
00147 }