#include "eformat/FullEventFragment.h"
#include "ByteStreamCnvSvcBase/ROBDataProviderSvc.h"
#include "AthenaKernel/errorcheck.h"
#include "TileIdentifier/TileTBFrag.h"
#include "TileConditions/TileCablingService.h"
#include "TileIdentifier/TileRawChannelUnit.h"
#include "TileTBRec/TileTBDump.h"
#include "TileByteStream/TileOFC.h"
#include "TileConditions/TileCondToolOfcCool.h"
#include "TileConditions/TileCondToolTiming.h"
#include "TileConditions/TileCondToolEmscale.h"
#include "boost/io/ios_state.hpp"
#include "boost/date_time/local_time/local_time.hpp"
#include "boost/date_time/posix_time/posix_time.hpp"
#include <iostream>
#include <sstream>
#include <iomanip>
#include <bitset>
#include <string>
#include <ctime>
#include <arpa/inet.h>
Go to the source code of this file.
|
std::string | cern_local_time (time_t unix_time) |
|
std::ostream & | setup0x4 (std::ostream &stream) |
|
std::ostream & | setupMod (std::ostream &stream) |
|
std::ostream & | setup0 (std::ostream &stream) |
|
std::ostream & | setupDec (std::ostream &stream) |
|
std::ostream & | setupPr1 (std::ostream &stream) |
|
std::ostream & | setupPr2 (std::ostream &stream) |
|
std::ostream & | setupPr3 (std::ostream &stream) |
|
std::ostream & | setupPr4 (std::ostream &stream) |
|
void | dump_it (unsigned int nw, unsigned int *data) |
|
◆ code_amp5
#define code_amp5 TileRawChannel2Bytes5::code_amp5 |
◆ code_amp6
#define code_amp6 TileRawChannel2Bytes5::code_amp6 |
◆ code_dump
#define code_dump TileRawChannel2Bytes5::code_dump |
◆ code_full
#define code_full TileRawChannel2Bytes5::code_full |
◆ code_null
#define code_null TileRawChannel2Bytes5::code_null |
◆ code_ped4
#define code_ped4 TileRawChannel2Bytes5::code_ped4 |
◆ code_ped5
#define code_ped5 TileRawChannel2Bytes5::code_ped5 |
◆ code_rawf
#define code_rawf TileRawChannel2Bytes5::code_rawf |
◆ code_raws
#define code_raws TileRawChannel2Bytes5::code_raws |
◆ CRC_do_not_match
#define CRC_do_not_match 4 |
◆ CRC_error_0
◆ CRC_error_1
◆ CRC_ok
◆ CRC_POLY
◆ cern_local_time()
std::string cern_local_time |
( |
time_t |
unix_time | ) |
|
Definition at line 48 of file TileTBDump.cxx.
50 using namespace boost::local_time;
51 using namespace boost::posix_time;
70 static const time_zone_ptr gva_tz(
new posix_time_zone((std::string)
"CET+01CEST01:00:00,M3.5.0/02:00:00,M10.5.0/03:00:00"));
71 local_date_time gva_time(from_time_t(unix_time),gva_tz);
80 struct tm gva_tm(to_tm(gva_time));
81 strftime(
dateTime, 32,
"%Y-%b-%d %H:%M:%S %Z", &gva_tm);
◆ dump_it()
void dump_it |
( |
unsigned int |
nw, |
|
|
unsigned int * |
data |
|
) |
| |
Definition at line 2018 of file TileTBDump.cxx.
2022 std::cout <<
"size of data block: " << nw << std::endl;
2023 for (
i = 0;
i < nw;
i++,
data++) {
2024 std::cout << std::setw(4) <<
i <<
": 0x" << std::hex << std::setw(8) << *
data <<
"\t" << std::dec << std::setw(10) << *
data << std::endl;
◆ setup0()
std::ostream& setup0 |
( |
std::ostream & |
stream | ) |
|
◆ setup0x4()
std::ostream& setup0x4 |
( |
std::ostream & |
stream | ) |
|
◆ setupDec()
std::ostream& setupDec |
( |
std::ostream & |
stream | ) |
|
◆ setupMod()
std::ostream& setupMod |
( |
std::ostream & |
stream | ) |
|
◆ setupPr1()
std::ostream& setupPr1 |
( |
std::ostream & |
stream | ) |
|
◆ setupPr2()
std::ostream& setupPr2 |
( |
std::ostream & |
stream | ) |
|
◆ setupPr3()
std::ostream& setupPr3 |
( |
std::ostream & |
stream | ) |
|
◆ setupPr4()
std::ostream& setupPr4 |
( |
std::ostream & |
stream | ) |
|