diff --git a/TileCalorimeter/TileSvc/TileByteStream/TileByteStream/TileROD_Decoder.h b/TileCalorimeter/TileSvc/TileByteStream/TileByteStream/TileROD_Decoder.h index ece71e4a723e679171d52e8dcce94f8fd4c2f97b..206a8702483e83bf5a09debe0818495fcad14ad2 100755 --- a/TileCalorimeter/TileSvc/TileByteStream/TileByteStream/TileROD_Decoder.h +++ b/TileCalorimeter/TileSvc/TileByteStream/TileByteStream/TileROD_Decoder.h @@ -328,8 +328,12 @@ class TileROD_Decoder: public AthAlgTool { bool unpack_frag5L2(uint32_t version, const uint32_t* p, TileL2Container & v) const; /** unpack_frag16 decodes tile subfragment type 0x16 or 0x20. This subfragment contains - informations coming from the Laser box */ - void unpack_frag16(uint32_t version, const uint32_t* p, TileLaserObject & v); + informations coming from the Laser box [calibration run] */ + void unpack_frag16(uint32_t version, const uint32_t* p, TileLaserObject & v); // LASERI + + /** unpack_frag17 decodes tile subfragment type 0x17 or 0x20. This subfragment contains + informations coming from the Laser box [calibration run] */ + void unpack_frag17(uint32_t version, const uint32_t* p, TileLaserObject & v); // LASERII /** unpack_brod decodes all ancillary tile subfragments coming from beam ROD at the testbeam or LASTROD in normal ATLAS configuration */ @@ -450,6 +454,18 @@ class TileROD_Decoder: public AthAlgTool { std::vector<int> m_list_of_masked_drawers; void initHid2re(); + const uint32_t * get_data(const ROBData * rob) { + + const uint32_t * p; + if (rob->rod_status_position()==0 && + rob->rod_nstatus() + rob->rod_header_size_word() + rob->rod_trailer_size_word() >= rob->rod_fragment_size_word()) { + rob->rod_status(p); + } else { + rob->rod_data(p); + } + return p; + } + uint32_t data_size(const ROBData * rob) { uint32_t size = rob->rod_ndata(); uint32_t max_allowed_size = rob->rod_fragment_size_word(); @@ -567,6 +583,12 @@ void TileROD_Decoder::make_copy(const ROBData * rob, pDigiVec & pDigits, pRwChVe v.setDetEvType(rob->rod_detev_type()); v.setRODBCID(rob->rod_bc_id()); + for (unsigned int i = 0; i < 6; ++i) { + for (size_t j=m_rawchannelMetaData[i]->size(); j<2; ++j) { + m_rawchannelMetaData[i]->push_back(0); + } + } + v.setFragGlobalCRC((*(m_rawchannelMetaData[0]))[0]); v.setFragDSPBCID((*(m_rawchannelMetaData[0]))[1]); v.setFragBCID((*(m_rawchannelMetaData[1]))[0]); @@ -671,18 +693,19 @@ void TileROD_Decoder::fillCollection(const ROBData * rob, COLLECTION & v) { uint32_t wc = 0; uint32_t size = data_size(rob); - const uint32_t * p; - rob->rod_data(p); + const uint32_t * p = get_data(rob); // bool skipWords = ( ! isBeamROD && version == 0x1 ); // std::cout << " *(p) = 0x" << std::hex << (*(p)) << std::dec << std::endl; - bool V3format = (*(p) == 0xff1234ff); // additional frag marker since Sep 2005 - V3format |= (*(p) == 0x00123400); // additional frag marker since Sep 2005 (can appear in buggy ROD frags) - if (V3format) { - ++p; // skip frag marker - m_sizeOverhead = 3; - } else { - m_sizeOverhead = 2; + if (size) { + bool V3format = (*(p) == 0xff1234ff); // additional frag marker since Sep 2005 + V3format |= (*(p) == 0x00123400); // additional frag marker since Sep 2005 (can appear in buggy ROD frags) + if (V3format) { + ++p; // skip frag marker + m_sizeOverhead = 3; + } else { + m_sizeOverhead = 2; + } } //std::cout << std::hex << " frag_id " << frag_id << " mask " << mask diff --git a/TileCalorimeter/TileSvc/TileByteStream/src/TileCellCont.cxx b/TileCalorimeter/TileSvc/TileByteStream/src/TileCellCont.cxx index 5d702950be9b75ad23182b1d1b18451d2d0864b2..8f515ab48fa3ee7e6fdffaa2b90f35eb6af89200 100755 --- a/TileCalorimeter/TileSvc/TileByteStream/src/TileCellCont.cxx +++ b/TileCalorimeter/TileSvc/TileByteStream/src/TileCellCont.cxx @@ -122,7 +122,7 @@ TileCellCont::initialize() { m_mbts_rods.push_back(src.getRodID(frag)); m_mbts_IDs.push_back(((section-1)*64+drawer)); CaloDetDescrElement * caloDDE = (mbtsMgr) ? mbtsMgr->get_element(cell_id) : NULL; - TileCell* myMBTSCell = new TileCell(caloDDE,cell_id,0.0,0.0); + TileCell* myMBTSCell = new TileCell(caloDDE,cell_id,0.0,0.0,0,0,CaloGain::TILEONELOW); m_MBTS->push_back(myMBTSCell); m_mapMBTS[frag]=mbts_count; mbts_count++; @@ -152,7 +152,7 @@ TileCellCont::initialize() { cell_hash = tmp[i].second; ++index; CaloDetDescrElement * caloDDE = tileMgr->get_cell_element((IdentifierHash)cell_hash); - TileCell * pCell = new TileCell(caloDDE,0.0,0.0); + TileCell * pCell = new TileCell(caloDDE,0.0,0.0,0,0,CaloGain::TILELOWLOW); newColl->push_back(pCell); } Rw2Cell[tmp[i].first]=index; diff --git a/TileCalorimeter/TileSvc/TileByteStream/src/TileHid2RESrcID.cxx b/TileCalorimeter/TileSvc/TileByteStream/src/TileHid2RESrcID.cxx index 8abbbbf47dcb5814a96cbf9881834abb86957ce9..67adefa7c88ee0fcb5b96dd380531482e78c1807 100755 --- a/TileCalorimeter/TileSvc/TileByteStream/src/TileHid2RESrcID.cxx +++ b/TileCalorimeter/TileSvc/TileByteStream/src/TileHid2RESrcID.cxx @@ -145,7 +145,12 @@ void TileHid2RESrcID::setROD2ROBmap (const eformat::FullEventFragment<const uint if ( size > 0 ) { const uint32_t * data; - robf.rod_data(data); + if (robf.rod_status_position()==0 && + robf.rod_nstatus() + robf.rod_header_size_word() + robf.rod_trailer_size_word() >= robf.rod_fragment_size_word()) { + robf.rod_status(data); + } else { + robf.rod_data(data); + } switch ( subdet_id ) { case TILE_BEAM_ID: // TILE BEAM ROD diff --git a/TileCalorimeter/TileSvc/TileByteStream/src/TileLaserObjByteStreamCnv.cxx b/TileCalorimeter/TileSvc/TileByteStream/src/TileLaserObjByteStreamCnv.cxx index c22bac085778a294b73e074141fb45d5aa8e710c..0fff0d56c788df1fc62f803367d07ca0231bef53 100644 --- a/TileCalorimeter/TileSvc/TileByteStream/src/TileLaserObjByteStreamCnv.cxx +++ b/TileCalorimeter/TileSvc/TileByteStream/src/TileLaserObjByteStreamCnv.cxx @@ -9,6 +9,7 @@ #include "TileByteStream/TileLaserObjByteStreamCnv.h" #include "TileByteStream/TileLaserObjByteStreamTool.h" #include "TileByteStream/TileROD_Decoder.h" +#include "TileByteStream/TileHid2RESrcID.h" #include "ByteStreamCnvSvc/ByteStreamCnvSvc.h" #include "ByteStreamCnvSvcBase/ByteStreamCnvSvcBase.h" @@ -23,6 +24,7 @@ #include "GaudiKernel/IRegistry.h" #include "GaudiKernel/IToolSvc.h" +#include "TileIdentifier/TileTBFrag.h" #include "TileEvent/TileLaserObject.h" #include "StoreGate/StoreGate.h" @@ -106,8 +108,10 @@ TileLaserObjByteStreamCnv::initialize() } m_ROBID.clear(); - // m_ROBID.push_back( 0x500000 ); - m_ROBID.push_back( 0x520010 ); + // m_ROBID.push_back( 0x500000 ); + // m_ROBID.push_back( 0x520010 ); + const TileHid2RESrcID * hid2re = m_decoder->getHid2re(); + m_ROBID.push_back( hid2re->getRobFromFragID(LASER_OBJ_FRAG) ); return service("StoreGateSvc",m_storeGate) ; } diff --git a/TileCalorimeter/TileSvc/TileByteStream/src/TileROD_Decoder.cxx b/TileCalorimeter/TileSvc/TileByteStream/src/TileROD_Decoder.cxx index 5e7e586d33166144db5f7ca9ae52c896a52649c1..76b766c869af02c04b6e57aca4bdee00d966b3b9 100755 --- a/TileCalorimeter/TileSvc/TileByteStream/src/TileROD_Decoder.cxx +++ b/TileCalorimeter/TileSvc/TileByteStream/src/TileROD_Decoder.cxx @@ -9,7 +9,7 @@ #undef private #undef protected -// Implementation of TileROD_Decoder class +// Implementation of TileROD_Decoder class // Gaudi includes #include "GaudiKernel/ListItem.h" @@ -36,30 +36,30 @@ static const InterfaceID IID_ITileROD_Decoder("TileROD_Decoder", 1, 0); -/** constructor +/** constructor */ TileROD_Decoder::TileROD_Decoder(const std::string& type, const std::string& name, - const IInterface* parent) - : AthAlgTool(type, name, parent) - , m_tileToolTiming("TileCondToolTiming") - , m_tileCondToolOfcCool("TileCondToolOfcCool") - , m_tileToolEmscale("TileCondToolEmscale") - , m_hid2re(0) + const IInterface* parent) +: AthAlgTool(type, name, parent) +, m_tileToolTiming("TileCondToolTiming") +, m_tileCondToolOfcCool("TileCondToolOfcCool") +, m_tileToolEmscale("TileCondToolEmscale") +, m_hid2re(0) { declareInterface<TileROD_Decoder>(this); - + declareProperty("useFrag0", m_useFrag0 = true); declareProperty("useFrag1", m_useFrag1 = true); declareProperty("useFrag4", m_useFrag4 = true); declareProperty("useFrag5Raw", m_useFrag5Raw = false); declareProperty("useFrag5Reco", m_useFrag5Reco = false); declareProperty("ignoreFrag4HLT", m_ignoreFrag4HLT = false); - + declareProperty("TileCondToolTiming", m_tileToolTiming); declareProperty("TileCondToolOfcCool", m_tileCondToolOfcCool, "TileCondToolOfcCool"); declareProperty("TileCondToolEmscale", m_tileToolEmscale); - + declareProperty("TileCellEthresholdMeV", m_TileCellEthreshold = -100000.); declareProperty("TileDefaultChannelBuilder", m_TileDefaultChannelBuilder = "TileRawChannelBuilderFlatFilter/TileROD_RCBuilder"); declareProperty("TileDefaultL2Builder", m_TileDefaultL2Builder = "TileL2Builder/TileROD_L2Builder"); @@ -68,12 +68,12 @@ TileROD_Decoder::TileROD_Decoder(const std::string& type, const std::string& nam declareProperty("suppressDummyFragments", m_suppressDummyFragments = false); declareProperty("maskBadDigits", m_maskBadDigits = false); // put -1 in digits vector for channels with bad BCID or CRC in unpack_frag0 declareProperty("MaxErrorPrint", m_maxErrorPrint = 100); - + m_correctAmplitude = false; updateAmpThreshold(15.); m_timeMinThresh = -25; m_timeMaxThresh = 25; - + for (unsigned int i = 0; i < 6; ++i) { m_digitsMetaData.push_back(new std::vector<uint32_t>); m_digitsMetaData[i]->reserve(16); @@ -83,8 +83,8 @@ TileROD_Decoder::TileROD_Decoder(const std::string& type, const std::string& nam (*(m_rawchannelMetaData[i]))[1] = 0; } m_sizeOverhead = 2; // 2 extra words in every frag by default (frag id + frag size) - // but for all data after 2005 it is set to 3 later in the code - + // but for all data after 2005 it is set to 3 later in the code + m_rChType = TileFragHash::Digitizer; m_rChUnit = TileRawChannelUnit::ADCcounts; m_bsflags = 0; @@ -92,7 +92,7 @@ TileROD_Decoder::TileROD_Decoder(const std::string& type, const std::string& nam m_MBTS = NULL; m_cell2Double.reserve(23); // Maximum number of cells in a drawer m_ErrorCounter = 0; - + m_OFWeights.resize(4 * TileCalibUtils::MAX_DRAWERIDX, NULL); } @@ -102,7 +102,7 @@ void TileROD_Decoder::updateAmpThreshold(float ampMinThresh) { m_ampMinThresh_MeV = m_ampMinThresh * 12.5 / 1023. / 1.05 * 1000.; } -/** destructor +/** destructor */ TileROD_Decoder::~TileROD_Decoder() { for (unsigned int i = 0; i < 6; ++i) { @@ -110,7 +110,7 @@ TileROD_Decoder::~TileROD_Decoder() { delete m_rawchannelMetaData[i]; } if (m_hid2re) delete m_hid2re; - + for (unsigned int id = 0; id < 4 * TileCalibUtils::MAX_DRAWERIDX; ++id) if (m_OFWeights[id]) delete m_OFWeights[id]; } @@ -130,38 +130,38 @@ int TileROD_Decoder::getErrorCounter() { } StatusCode TileROD_Decoder::initialize() { - + m_rc2bytes5.setVerbose(m_verbose); m_rc2bytes4.setVerbose(m_verbose); m_rc2bytes2.setVerbose(m_verbose); m_rc2bytes.setVerbose(m_verbose); m_d2Bytes.setVerbose(m_verbose); - + ServiceHandle<IToolSvc> toolSvc("ToolSvc", this->name()); CHECK( toolSvc.retrieve() ); - + // retrieve TileHWID helper from det store CHECK( detStore()->retrieve(m_tileHWID, "TileHWID") ); - + if (m_useFrag5Raw || m_useFrag5Reco) { //=== get TileCondToolOfcCool CHECK( m_tileCondToolOfcCool.retrieve() ); - + //=== get TileToolTiming CHECK( m_tileToolTiming.retrieve() ); } - + //=== get TileCondToolEmscale CHECK( m_tileToolEmscale.retrieve() ); - -// Get Tool to TileChannelBuilder, to be used to convert automatically digits->channels. + + // Get Tool to TileChannelBuilder, to be used to convert automatically digits->channels. ATH_MSG_DEBUG( "creating algtool " << m_TileDefaultChannelBuilder ); ListItem algRC(m_TileDefaultChannelBuilder); CHECK( toolSvc->retrieveTool(algRC.type(), algRC.name(), m_RCBuilder, this) ); - + ATH_MSG_DEBUG( "algtool " << m_TileDefaultChannelBuilder << " created " ); CHECK( m_RCBuilder->setProperty(BooleanProperty("calibrateEnergy", m_calibrateEnergy)) ); - + m_pRwChVec.reserve(48); // Accumulate 48 TileRawChannels for storing temp data for (int i = 0; i < 48; ++i) { @@ -175,7 +175,7 @@ StatusCode TileROD_Decoder::initialize() { m_Rw2Pmt[1].reserve(48); m_Rw2Pmt[2].reserve(48 * 64); m_Rw2Pmt[3].reserve(48 * 64); - + if (m_TileDefaultL2Builder.size() > 0) { ATH_MSG_DEBUG( "creating algtool " << m_TileDefaultL2Builder ); ListItem algL2(m_TileDefaultL2Builder); @@ -184,13 +184,13 @@ StatusCode TileROD_Decoder::initialize() { } else { m_L2Builder = 0; } - + // Resets error flag m_error = 0x0; - + // Initialize this->m_hashFunc.initialize(m_tileHWID); - + return StatusCode::SUCCESS; } @@ -211,12 +211,12 @@ StatusCode TileROD_Decoder::finalize() { // check if bit is set bool TileROD_Decoder::checkBit(const uint32_t* p, int chan) const { -// chan = (0,47) + // chan = (0,47) int a = chan / 32; int r = chan % 32; -// a = (0,1), r = ( 0, 31 ) + // a = (0,1), r = ( 0, 31 ) return *(p + a) & (1 << r); - + } /** @@ -227,22 +227,22 @@ bool TileROD_Decoder::checkBit(const uint32_t* p, int chan) const { void TileROD_Decoder::unpack_frag0(uint32_t version, const uint32_t* p, pDigiVec & pDigits) const { int gain = 0; int n; - + // pointer to current data word const uint32_t *data; // current chip # int chip; // channel # int channel; - + // first word is full frag size, first two words are not data int size = *(p) - m_sizeOverhead; // second word is frag ID (0x100-0x4ff) and frag type int frag = *(p + 1) & 0xFFFF; - - // Position of first data word, ignore 2 frag header words + + // Position of first data word, ignore 2 frag header words data = p + 2; - + // check that fragment is not dummy if (m_suppressDummyFragments) { for (n = 0; n < size; ++n) { @@ -250,7 +250,7 @@ void TileROD_Decoder::unpack_frag0(uint32_t version, const uint32_t* p, pDigiVec } if (n == size) return; // nothing reasonable found } - + // if (msgLvl(MSG::VERBOSE)) // msg(MSG::VERBOSE) << "version=" << version << " size: " << (*p) << " " << size; if (m_sizeOverhead == 2 && (version == 0x2 || version == 0x1)) { /* can not guess number of samples from size */ @@ -262,8 +262,8 @@ void TileROD_Decoder::unpack_frag0(uint32_t version, const uint32_t* p, pDigiVec // if (msgLvl(MSG::VERBOSE)) // msg(MSG::VERBOSE) << size << endmsg; - - // number of chips in the data, only 16 is expected + + // number of chips in the data, only 16 is expected int chipCount = 16; // one chip contains 3 channels int channelCount = chipCount * 3; @@ -277,29 +277,29 @@ void TileROD_Decoder::unpack_frag0(uint32_t version, const uint32_t* p, pDigiVec // number of data words per chip, excluding header and CRC int dataWordsPerChip = 0; // real number of channels and chips - // int channelCountReal,chipCountReal; - + // int channelCountReal,chipCountReal; + // Digitizer mode doesn't change between events static int digiMode = -1; - + if (digiMode < 0) { // try to find digi mode until good mode is found digiMode = m_d2Bytes.getDigiMode(data, chipCount, blockSize); } - + if (digiMode > 0 || (digiMode < 0 && blockSize == 17)) { // calibration mode // 2X number of chips // chipCount <<= 1; // channelCount = chipCount*3; - + // lengt with header and without CRC wordsPerChip = (blockSize - 1) / 2; // lengt without header and CRC dataWordsPerChip = wordsPerChip - 1; - + //channelCountReal = channelCount/2; //chipCountReal = chipCount/2; - + gainOffset = wordsPerChip; } else { // assume normal mode @@ -307,15 +307,15 @@ void TileROD_Decoder::unpack_frag0(uint32_t version, const uint32_t* p, pDigiVec wordsPerChip = blockSize - 1; // one header word dataWordsPerChip = wordsPerChip - 1; - + // channelCountReal = channelCount; // chipCountReal = chipCount; } - + if (msgLvl(MSG::VERBOSE)) { msg(MSG::VERBOSE) << "Unpacking TileDigits, ID=0x" << MSG::hex << frag - << ", size=" << MSG::dec << size << endmsg; - + << ", size=" << MSG::dec << size << endmsg; + msg(MSG::VERBOSE) << " chips=" << chipCount << endmsg; msg(MSG::VERBOSE) << " channels=" << channelCount << endmsg; msg(MSG::VERBOSE) << " block size=" << blockSize << endmsg; @@ -324,20 +324,20 @@ void TileROD_Decoder::unpack_frag0(uint32_t version, const uint32_t* p, pDigiVec msg(MSG::VERBOSE) << " gain offs=" << gainOffset << endmsg; msg(MSG::VERBOSE) << " mode=" << digiMode << endmsg; } - + if (size == 0) { ATH_MSG_VERBOSE( "Size is 0, no digits extracted" ); return; } - + TileDigits *td; HWIdentifier drawerID = m_tileHWID->drawer_id(frag); HWIdentifier adcID; std::vector<std::vector<float>*> *digiVec; - + // take BCID from chip header with good parity uint32_t bcid = m_d2Bytes.getBCID(data, chipCount, blockSize); - + if (gainOffset > 0) { // calibration mode pDigits.reserve(96); @@ -345,49 +345,49 @@ void TileROD_Decoder::unpack_frag0(uint32_t version, const uint32_t* p, pDigiVec std::vector<uint32_t> *chipCRCLow = m_digitsMetaData[3]; std::vector<uint32_t> *chipHeaderHigh = m_digitsMetaData[4]; std::vector<uint32_t> *chipCRCHigh = m_digitsMetaData[5]; - + // loop through all chips for (chip = 0; chip < chipCount; ++chip) { ATH_MSG_VERBOSE( "Unpacking calib data for chip " << chip ); - + // Extract low gain digits for fragment digiVec = m_d2Bytes.getDigits(data + 1, dataWordsPerChip); - + for (n = 0; n < 3; ++n) { // calc channel # channel = chip * 3 + n; // create ID adcID = m_tileHWID->adc_id(drawerID, channel, TileHWID::LOWGAIN); - + td = new TileDigits(adcID, *(*digiVec)[n]); pDigits.push_back(td); - + delete ((*digiVec)[n]); } delete digiVec; - + // Extract high gain digits for fragment digiVec = m_d2Bytes.getDigits(data + 1 + gainOffset, dataWordsPerChip); - + for (n = 0; n < 3; ++n) { // calc channel # channel = chip * 3 + n; // create ID adcID = m_tileHWID->adc_id(drawerID, channel, TileHWID::HIGHGAIN); - + td = new TileDigits(adcID, *(*digiVec)[n]); pDigits.push_back(td); - + delete ((*digiVec)[n]); } delete digiVec; - + // store metadata chipHeaderLow->push_back(*data); chipCRCLow->push_back(*(data + gainOffset - 1)); chipHeaderHigh->push_back(*(data + gainOffset)); chipCRCHigh->push_back(*(data + blockSize - 1)); - + // next block data += blockSize; } @@ -396,15 +396,15 @@ void TileROD_Decoder::unpack_frag0(uint32_t version, const uint32_t* p, pDigiVec pDigits.reserve(pDigits.size() + 48); std::vector<uint32_t> *chipHeader = m_digitsMetaData[2]; std::vector<uint32_t> *chipCRC = m_digitsMetaData[3]; - + // loop through all chips for (chip = 0; chip < chipCount; ++chip) { // Extract digits for fragment digiVec = m_d2Bytes.getDigits(data + 1, dataWordsPerChip); - + ATH_MSG_VERBOSE( "Header $" << MSG::hex << (*data) << " CRC $" << *(data + blockSize - 1) ); - + for (n = 0; n < 3; ++n) { // calc channel # channel = chip * 3 + n; @@ -413,59 +413,57 @@ void TileROD_Decoder::unpack_frag0(uint32_t version, const uint32_t* p, pDigiVec // create ID adcID = m_tileHWID->adc_id(drawerID, channel, gain); td = new TileDigits(adcID, *(*digiVec)[n]); - + ATH_MSG_VERBOSE( "Frag: $" << MSG::hex << frag << MSG::dec - << " G:" << gain - << " C:" << channel - << " BCID: " << MSG::hex << m_d2Bytes.getBCID(data, chipCount, blockSize) << MSG::dec - << " Data={" << (int) (*(*digiVec)[n])[0] - << "," << (int) (*(*digiVec)[n])[1] - << "," << (int) (*(*digiVec)[n])[2] - << "," << (int) (*(*digiVec)[n])[3] - << "," << (int) (*(*digiVec)[n])[4] - << "," << (int) (*(*digiVec)[n])[5] - << "," << (int) (*(*digiVec)[n])[6] - << "," << (int) (*(*digiVec)[n])[7] - << "," << (int) (*(*digiVec)[n])[8] << "}" ); - - + << " G:" << gain + << " C:" << channel + << " BCID: " << MSG::hex << m_d2Bytes.getBCID(data, chipCount, blockSize) << MSG::dec + << " Data={" << (int) (*(*digiVec)[n])[0] + << "," << (int) (*(*digiVec)[n])[1] + << "," << (int) (*(*digiVec)[n])[2] + << "," << (int) (*(*digiVec)[n])[3] + << "," << (int) (*(*digiVec)[n])[4] + << "," << (int) (*(*digiVec)[n])[5] + << "," << (int) (*(*digiVec)[n])[6] << "}" ); + + pDigits.push_back(td); - + delete ((*digiVec)[n]); } delete digiVec; - + // store some metadata, first word in chip is header, last is CRC chipHeader->push_back(*data); chipCRC->push_back(*(data + blockSize - 1)); - + // go to next block data += blockSize; } } - + int extra = size - (data - p) + 2; - + // check size of fragment - we expect 2 extra words (DMU mask and CRC) or more! if (extra < 2) { ATH_MSG_WARNING( "Too short fragment ! Expected at least " << MSG::dec << (data - p) << " data words, while size from header is " << size << " data words (plus " << m_sizeOverhead << " words overhead)" ); } - + if (msgLvl(MSG::VERBOSE)) { msg(MSG::VERBOSE) << "Trailer 0x" << MSG::hex - << data[0] << " 0x" << data[1]; + << data[0] << " 0x" << data[1]; for (int i = 2; i < extra; ++i) { msg(MSG::VERBOSE) << " 0x" << data[i]; } msg(MSG::VERBOSE) << MSG::dec << endmsg; - + // check frag trailer if (extra > 0) { if ((data[0] & 0xffff) != (data[0] >> 16)) { msg(MSG::VERBOSE) << MSG::hex << "Trailer numbers do not match: " - << data[0] << MSG::dec << endmsg; + << data[0] << MSG::dec << endmsg; } else { if ((data[0] & 0xffff) == 0xffff) msg(MSG::VERBOSE) << "Found barrel trailer" << endmsg; @@ -473,21 +471,21 @@ void TileROD_Decoder::unpack_frag0(uint32_t version, const uint32_t* p, pDigiVec msg(MSG::VERBOSE) << "Found extended barrel trailer" << endmsg; else msg(MSG::VERBOSE) << MSG::hex << "Unexpected trailer number: " - << (data[0] & 0xffff) << MSG::dec << endmsg; + << (data[0] & 0xffff) << MSG::dec << endmsg; } } - + // check CRC trailer if (extra > 1) { if ((data[1] & 0xffff) != (data[1] >> 16)) { msg(MSG::VERBOSE) << "Trailer CRC numbers do not match" << endmsg; } else { msg(MSG::VERBOSE) << MSG::hex << "Found CRC 0x" << (data[1] & 0xffff) - << MSG::dec << endmsg; + << MSG::dec << endmsg; } } } - + // store metadata for this collection // size, fragID, BCID, DMU Mask, CRC and other extra words m_digitsMetaData[0]->push_back(size); @@ -499,34 +497,34 @@ void TileROD_Decoder::unpack_frag0(uint32_t version, const uint32_t* p, pDigiVec if (m_sizeOverhead == 2 && (version == 0x2 || version == 0x1)) { // keep also first skipped word m_digitsMetaData[1]->push_back(p[2]); } - + if (dataWordsPerChip > 14) { // can not be true !!! digiMode = -1; // check again digiMode in next fragment } } void TileROD_Decoder::unpack_frag1(uint32_t /* version */, const uint32_t* p, - pDigiVec & pDigits) const { + pDigiVec & pDigits) const { // first word is full frag size, first two words are not data int size = *(p) - m_sizeOverhead; // second word is frag ID (0x100-0x4ff) and frag1 type (old and new version). int frag = *(p + 1) & 0xFFFF; int frag1version = (*(p + 1) >> 31) & 0x1; int nbchanformat1 = ((*(p + 1)) >> 24) & 0x3F; - + // store metadata for this collection // size, fragID, BCID m_digitsMetaData[0]->push_back(size); m_digitsMetaData[0]->push_back(frag); m_digitsMetaData[0]->push_back(0); - + if (frag1version == 0) { //Old version p += 2; // 2 words so far - + int nsamp = (*(p) >> 8) & 0x0F; // find number of samples in first data word int words_per_chan = nsamp + 1; // one extra 16bit word with channel number int nchan = 2 * size / words_per_chan; - + if (2 * size != nchan * words_per_chan || nchan <= 0 || nchan > 48) { ATH_MSG_ERROR( "Digi frag type=1 fragId=0x" << MSG::hex << frag << MSG::dec << " Nsamp=" << nsamp @@ -534,24 +532,24 @@ void TileROD_Decoder::unpack_frag1(uint32_t /* version */, const uint32_t* p, << " Wrong Size=" << size ); return; } - + HWIdentifier drawerID = m_tileHWID->drawer_id(frag); std::vector<float> digiVec(nsamp); pDigits.reserve(nchan); - + const uint16_t* p16 = (const uint16_t *) p; - + for (int ch = 0; ch < nchan; ++ch) { - + int channel = (*p16) & 0xFF; int nsamp1 = (*(p16) >> 8) & 0x0F; int gain = (*p16) >> 15; ++p16; - + for (int samp = 0; samp < nsamp; ++samp) { digiVec[samp] = *p16++; } - + if (channel < 48 && nsamp1 == nsamp) { HWIdentifier adcID = m_tileHWID->adc_id(drawerID, channel, gain); TileDigits * td = new TileDigits(adcID, digiVec); @@ -562,12 +560,12 @@ void TileROD_Decoder::unpack_frag1(uint32_t /* version */, const uint32_t* p, << " channel=" << channel << " nsamp=" << nsamp1 << "/" << nsamp ); } - + if (msgLvl(MSG::VERBOSE)) { msg(MSG::VERBOSE) << MSG::hex << "Frag: $" << frag << MSG::dec - << " G:" << gain - << " C:" << channel - << " Data={"; + << " G:" << gain + << " C:" << channel + << " Data={"; for (int samp = 0; samp < nsamp; ++samp) { msg(MSG::VERBOSE) << " " << (int) digiVec[samp]; } @@ -579,16 +577,16 @@ void TileROD_Decoder::unpack_frag1(uint32_t /* version */, const uint32_t* p, } } } //End of old version - + else if (frag1version == 1) { //New version p += 2; // 2 words so far - + int nsamp = 7; // New frag1 only for 7 samples int SizeOfFrag1 = size * 2; // Number of 16 bit words int nbchanformat2 = (SizeOfFrag1 - (3 * nbchanformat1)) / 5; - + int nchan = nbchanformat1 + nbchanformat2; - + if ((nchan) > 48 || ((nbchanformat1 * 3) + (nbchanformat2 * 5) > SizeOfFrag1)) { ATH_MSG_ERROR( "Digi frag type=1 fragId=0x" << MSG::hex << frag << MSG::dec << " frag1Version=" << frag1version @@ -598,12 +596,12 @@ void TileROD_Decoder::unpack_frag1(uint32_t /* version */, const uint32_t* p, << " Wrong Size=" << size); return; } - + HWIdentifier drawerID = m_tileHWID->drawer_id(frag); std::vector<float> digiVec(nsamp); pDigits.reserve(nchan); pDigiVec sDigits(48); - + int ptr16index = 1; int channel = 0; uint16_t word1 = 0; @@ -611,31 +609,31 @@ void TileROD_Decoder::unpack_frag1(uint32_t /* version */, const uint32_t* p, uint16_t word3 = 0; uint16_t word4 = 0; uint16_t word5 = 0; - + for (int chf1 = 0; chf1 < nbchanformat1; ++chf1) { if (ptr16index == 1) channel = ((*p >> 26) & 0x3F); else channel = ((*p >> 10) & 0x3F); - + int gain = 1; - + if (ptr16index == 1) { word1 = (uint16_t) ((*p >> 16) & 0xFFFF); word2 = (uint16_t) (*p & 0xFFFF); word3 = (uint16_t) ((*(p + 1) >> 16) & 0xFFFF); ptr16index = 0; } - + else if (ptr16index == 0) { word1 = (uint16_t) (*p & 0xFFFF); word2 = (uint16_t) ((*(p + 1) >> 16) & 0xFFFF); word3 = (uint16_t) (*(p + 1) & 0xFFFF); ptr16index = 1; } - + uint16_t Smin = (word1 & 0x3FF); - + digiVec[0] = ((word3 >> 4) & 0xF) + Smin; digiVec[1] = ((word3 >> 0) & 0xF) + Smin; digiVec[2] = ((word3 >> 8) & 0xF) + Smin; @@ -643,33 +641,33 @@ void TileROD_Decoder::unpack_frag1(uint32_t /* version */, const uint32_t* p, digiVec[4] = ((word2 >> 4) & 0xF) + Smin; digiVec[5] = ((word2 >> 0) & 0xF) + Smin; digiVec[6] = ((word2 >> 8) & 0xF) + Smin; - + HWIdentifier adcID = m_tileHWID->adc_id(drawerID, channel, gain); TileDigits * td = new TileDigits(adcID, digiVec); sDigits.at(channel) = td; p += 1 + ptr16index; - + if (msgLvl(MSG::VERBOSE)) { msg(MSG::VERBOSE) << MSG::hex << "Frag: $" << frag << MSG::dec - << " G:" << gain - << " C:" << channel - << " Data={"; + << " G:" << gain + << " C:" << channel + << " Data={"; for (int samp = 0; samp < 7; ++samp) { msg(MSG::VERBOSE) << " " << (int) digiVec[samp]; } msg(MSG::VERBOSE) << "} " << MSG::hex - << " WORD1: " << word1 - << " WORD2: " << word2 - << " WORD3: " << word3 << MSG::dec << endmsg; + << " WORD1: " << word1 + << " WORD2: " << word2 + << " WORD3: " << word3 << MSG::dec << endmsg; } } - + for (int chf2 = 0; chf2 < nbchanformat2; ++chf2) { if (ptr16index == 1) channel = ((*p) & 0x3F); else channel = ((*(p + 1) >> 16) & 0x3F); - + if (ptr16index == 1) { word1 = (uint16_t) ((*p >> 16) & 0xFFFF); word2 = (uint16_t) ((*p) & 0xFFFF); @@ -685,9 +683,9 @@ void TileROD_Decoder::unpack_frag1(uint32_t /* version */, const uint32_t* p, word5 = (uint16_t) (*(p + 2) & 0xFFFF); ptr16index = 1; } - + int gain = ((word2 >> 6) & 0x1); - + digiVec[0] = ((word1 << 9) & 0x200) + ((word2 >> 7) & 0x1FF); digiVec[1] = (word1 >> 1) & 0x3FF; digiVec[2] = (word4 << 5 & 0x3E0) + ((word1 >> 11) & 0x1F); @@ -695,131 +693,130 @@ void TileROD_Decoder::unpack_frag1(uint32_t /* version */, const uint32_t* p, digiVec[4] = ((word3 << 1) & 0x3FE) + ((word4 >> 15) & 0x1); digiVec[5] = ((word5 << 7) & 0x380) + ((word3 >> 9) & 0x7F); digiVec[6] = (word5 >> 3) & 0x3FF; - + HWIdentifier adcID = m_tileHWID->adc_id(drawerID, channel, gain); TileDigits * td = new TileDigits(adcID, digiVec); sDigits.at(channel) = td; p += (2 + ptr16index); - + if (msgLvl(MSG::VERBOSE)) { msg(MSG::VERBOSE) << MSG::hex << "Frag: $" << frag << MSG::dec - << " G:" << gain - << " C:" << channel - << " Data={"; + << " G:" << gain + << " C:" << channel + << " Data={"; for (int samp = 0; samp < nsamp; ++samp) { msg(MSG::VERBOSE) << " " << (int) digiVec[samp]; } msg(MSG::VERBOSE) << "} " << MSG::hex - << " WORD1: " << word1 - << " WORD2: " << word2 - << " WORD3: " << word3 - << " WORD4: " << word4 - << " WORD5: " << word5 << MSG::dec << endmsg; + << " WORD1: " << word1 + << " WORD2: " << word2 + << " WORD3: " << word3 + << " WORD4: " << word4 + << " WORD5: " << word5 << MSG::dec << endmsg; } - + } for (uint i = 0; i < sDigits.size(); i++) { TileDigits * td = sDigits.at(i); if (td) pDigits.push_back(td); } } //End of new version - + } void TileROD_Decoder::unpack_frag2(uint32_t /* version */, const uint32_t* p, - pRwChVec & pChannel) const { + pRwChVec & pChannel) const { // first word is frag size int count = *(p); // second word is frag ID and frag type int frag = *(p + 1) & 0xFFFF; - -// ATH_MSG_VERBOSE( "Unpacking TileRawChannels, ID=" << frag << " size=" << count ); - -// ATH_MSG_VERBOSE( "first 2 words " << MSG::hex -// << " 0x" << *p -// << " 0x" << *(p+1) -// << MSG::dec ); - + + // ATH_MSG_VERBOSE( "Unpacking TileRawChannels, ID=" << frag << " size=" << count ); + + // ATH_MSG_VERBOSE( "first 2 words " << MSG::hex + // << " 0x" << *p + // << " 0x" << *(p+1) + // << MSG::dec ); + p += 2; // 2 words so far int wc = m_sizeOverhead; // can be 2 or 3 words - + HWIdentifier drawerID = m_tileHWID->drawer_id(frag); TileRawChannel* rc; - + for (int ch = 0; ch < 48; ++ch) { unsigned int w = (*p); - + int gain = m_rc2bytes2.gain(w); HWIdentifier adcID = m_tileHWID->adc_id(drawerID, ch, gain); - + if (w != 0) { // skip invalid channels rc = new TileRawChannel(adcID, m_rc2bytes2.amplitude(w), m_rc2bytes2.time(w), - m_rc2bytes2.quality(w)); + m_rc2bytes2.quality(w)); } else { rc = new TileRawChannel(adcID, 0.0, -100.0, 31); } - + pChannel.push_back(rc); - -// ATH_MSG_VERBOSE(" frag 0x" << MSG::hex << frag -// << MSG::dec << " ch " << ch -// << " " << MSG::hex << w << MSG::dec -// << " " << gain -// << " " << m_rc2bytes2.amplitude(w) -// << " " << m_rc2bytes2.time(w) -// << " " << m_rc2bytes2.quality(w) ); - + + // ATH_MSG_VERBOSE(" frag 0x" << MSG::hex << frag + // << MSG::dec << " ch " << ch + // << " " << MSG::hex << w << MSG::dec + // << " " << gain + // << " " << m_rc2bytes2.amplitude(w) + // << " " << m_rc2bytes2.time(w) + // << " " << m_rc2bytes2.quality(w) ); + ++wc; ++p; } - + if (wc != count) { - // check word count + // check word count ATH_MSG_ERROR( "unpack_frag2 => Incorrect word count: " << wc << " != " << count ); assert(0); - // return; + // return; } - + return; } void TileROD_Decoder::unpack_frag3(uint32_t /* version */, const uint32_t* p, - pRwChVec & pChannel) const { + pRwChVec & pChannel) const { // first word is frag size int count = *(p); // second word is frag ID and frag type int frag = *(p + 1) & 0xFFFF; - -// ATH_MSG_VERBOSE( "first 4 words " << MSG::hex -// << " 0x" << *p -// << " 0x" << *(p+1) -// << " 0x" << *(p+2) -// << " 0x" << *(p+3) << MSG::dec ); - - // followed by 2 map words + + // ATH_MSG_VERBOSE( "first 4 words " << MSG::hex + // << " 0x" << *p + // << " 0x" << *(p+1) + // << " 0x" << *(p+2) + // << " 0x" << *(p+3) << MSG::dec ); + + // followed by 2 map words const uint32_t* pMap = p + 2; - - const short& sh = *p; - const short* p16 = &sh; - + + const short* p16 = (const short *)p; + p16 = p16 + 8; // 8 16bit words so far short wc16 = 4 + m_sizeOverhead * 2; // can be 8 or 10 (if overhead is 3 words) - + HWIdentifier drawerID = m_tileHWID->drawer_id(frag); TileRawChannel* rc; - + for (int ch = 0; ch < 48; ++ch) { if (checkBit(pMap, ch)) { int gain = m_rc2bytes.gain(*p16); HWIdentifier adcID = m_tileHWID->adc_id(drawerID, ch, gain); - + rc = new TileRawChannel(adcID , m_rc2bytes.amplitude(*p16) , m_rc2bytes.time(*(p16 + 1)) , m_rc2bytes.quality(*(p16 + 2))); pChannel.push_back(rc); - + ATH_MSG_VERBOSE( " frag 0x" << MSG::hex << frag << MSG::dec << " ch " << ch << " " << MSG::hex << "0x" << *p16 << *(p16+1) << *(p16+2) << MSG::dec @@ -827,52 +824,52 @@ void TileROD_Decoder::unpack_frag3(uint32_t /* version */, const uint32_t* p, << " " << m_rc2bytes.amplitude(*p16) << " " << m_rc2bytes.time(*(p16+1)) << " " << m_rc2bytes.quality(*(p16+2)) ); - + wc16 = wc16 + 3; p16 = p16 + 3; } // channel present } // all bits, done with this frag - + if (wc16 % 2 == 1) { - ++wc16; // align + ++wc16; // align ++p16; } if (wc16 != 2 * count) { - // check word count + // check word count ATH_MSG_ERROR( "unpack_frag3 => Incorrect word count: " << wc16 << " != 2*" << count ); assert(0); - // return; + // return; } - + return; } void TileROD_Decoder::unpack_frag4(uint32_t /* version */, const uint32_t* p, - pRwChVec & pChannel) const { + pRwChVec & pChannel) const { // first word is frag size int count = *(p); // second word is frag ID and frag type int frag = *(p + 1) & 0xFFFF; - -// ATH_MSG_VERBOSE( "Unpacking TileRawChannels, ID=" << frag << " size=" << count <<s); - -// ATH_MSG_VERBOSE( "first 2 words " << MSG::hex -// << " 0x" << *p -// << " 0x" << *(p+1) << MSG::dec ); - + + // ATH_MSG_VERBOSE( "Unpacking TileRawChannels, ID=" << frag << " size=" << count <<s); + + // ATH_MSG_VERBOSE( "first 2 words " << MSG::hex + // << " 0x" << *p + // << " 0x" << *(p+1) << MSG::dec ); + p += 2; // 2 words so far int wc = m_sizeOverhead; // can be 2 or 3 words - + HWIdentifier drawerID = m_tileHWID->drawer_id(frag); TileRawChannel* rc; - + for (int ch = 0; ch < 48; ++ch) { unsigned int w = (*p); - + int gain = m_rc2bytes4.gain(w); HWIdentifier adcID = m_tileHWID->adc_id(drawerID, ch, gain); - + if (w != 0) { // skip invalid channels rc = new TileRawChannel(adcID , m_rc2bytes4.amplitude(w) @@ -881,112 +878,112 @@ void TileROD_Decoder::unpack_frag4(uint32_t /* version */, const uint32_t* p, } else { rc = new TileRawChannel(adcID, 0.0, -100., 31); } - + pChannel.push_back(rc); - -// ATH_MSG_VERBOSE( MSG::hex << " frag 0x" << frag << MSG::dec -// << " ch " << ch -// << " 0x" << MSG::hex << w << MSG::dec -// << " " << gain -// << " " << m_rc2bytes4.amplitude(w) -// << " " << m_rc2bytes4.time(w) -// << " " << m_rc2bytes4.quality(w) ); - + + // ATH_MSG_VERBOSE( MSG::hex << " frag 0x" << frag << MSG::dec + // << " ch " << ch + // << " 0x" << MSG::hex << w << MSG::dec + // << " " << gain + // << " " << m_rc2bytes4.amplitude(w) + // << " " << m_rc2bytes4.time(w) + // << " " << m_rc2bytes4.quality(w) ); + ++wc; ++p; } - + if (wc > count) { - // check word count + // check word count ATH_MSG_ERROR( "unpack_frag4 => Incorrect word count: " << wc << " != " << count ); assert(0); - // return; -// } else if (wc < count) { -// ATH_MSG_VERBOSE("unpack_frag4 => extra " << count-wc << " words in frag" ); + // return; + // } else if (wc < count) { + // ATH_MSG_VERBOSE("unpack_frag4 => extra " << count-wc << " words in frag" ); } - + return; } void TileROD_Decoder::unpack_frag5(uint32_t /* version */, const uint32_t* p, pDigiVec & pDigits, - pRwChVec & pChannel) { + pRwChVec & pChannel) { // first word is frag size int count = *(p); // second word is frag ID and frag type int frag = *(p + 1) & 0xFFFF; int size_L2 = (*(p + 1) >> (32 - 2 - 3)) & 0x7; - + // store metadata for this collection // size, fragID, BCID m_digitsMetaData[0]->push_back(count); m_digitsMetaData[0]->push_back(frag); m_digitsMetaData[0]->push_back(0); - + TileRawChannel2Bytes5::TileChanData ChanData[48]; uint32_t* ptrFrag = (uint32_t*) (p - 1); // begin of fragment uint32_t* ptrOFW = getOFW(frag, m_rc2bytes5.getUnit()); // get OF Weights m_rc2bytes5.unpack(ptrOFW, ptrFrag, ChanData); - + int wc = m_sizeOverhead; // can be 2 or 3 words int bc = (size_L2 * 32 + 48) / 8; // size_L2 + BadBits - + HWIdentifier drawerID = m_tileHWID->drawer_id(frag); - + std::vector<float> digiVec(7); if (m_useFrag5Raw) pDigits.reserve(pDigits.size() + 48); if (m_useFrag5Reco) pChannel.reserve(pChannel.size() + 48); - + for (int ch = 0; ch < 48; ++ch) { int size = m_rc2bytes5.get_size_code(ChanData[ch].code); int gain = ChanData[ch].gain; HWIdentifier adcID = m_tileHWID->adc_id(drawerID, ch, gain); - + if (m_useFrag5Raw) { for (int i = 0; i < 7; ++i) digiVec[i] = ChanData[ch].s[i]; TileDigits* td = new TileDigits(adcID, digiVec); pDigits.push_back(td); } - + if (m_useFrag5Reco) { int format = m_rc2bytes5.get_format(ChanData[ch].code); int quality = m_rc2bytes5.get_quality(ChanData[ch].bad, format); float ene = ChanData[ch].ene; float time = ChanData[ch].time; - + TileRawChannel* rc = new TileRawChannel(adcID, ene, time, quality); pChannel.push_back(rc); } bc += size; } - + wc += (bc + 3) / 4; if (wc > count) { - // check word count + // check word count ATH_MSG_ERROR( " unpack_frag5 => Incorrect word count: " << wc << " != " << count ); assert(0); - // return; + // return; } else if (wc < count) { - ATH_MSG_WARNING( "unpack_frag5 => extra " << count - wc - << " words in frag" ); - ATH_MSG_WARNING( " count = " << count - << " wc = " << wc - << " bc = " << bc - << " words in frag" ); + ATH_MSG_WARNING( "unpack_frag5 => extra " << count - wc + << " words in frag" ); + ATH_MSG_WARNING( " count = " << count + << " wc = " << wc + << " bc = " << bc + << " words in frag" ); } return; } void TileROD_Decoder::unpack_fragA(uint32_t /* version */, const uint32_t* p, - pRwChVec & /* pChannel */) const { + pRwChVec & /* pChannel */) const { // second word is frag ID and frag type int size = *(p); - + p += 2; // 2 words so far - + unsigned int w; - + // Global CRC w = (*p); m_rawchannelMetaData[0]->push_back(w & 0xFFFF); @@ -995,26 +992,26 @@ void TileROD_Decoder::unpack_fragA(uint32_t /* version */, const uint32_t* p, else m_rawchannelMetaData[0]->push_back(0xDEAD); //0xDEAD if it is not filled ++p; - + for (int i = 0; i < (size - 4); ++i) { w = (*p); m_rawchannelMetaData[i + 1]->push_back(w & 0xFFFF); m_rawchannelMetaData[i + 1]->push_back(w >> 16); ++p; } - + return; } void TileROD_Decoder::unpack_fragAHLT(uint32_t /* version */, const uint32_t* p, uint16_t rob_bcid, - uint16_t& mask) const { + uint16_t& mask) const { // first word is full frag size, including header int size = *(p); if (size < 9) return; - + // second word is frag ID (0x100-0x4ff) and frag type uint16_t frag = (*(++p)) & 0xfff; - + uint16_t* w = (uint16_t*) (++p); // Jump to first DQ word /* order of 16bit DQ words in DQ fragment --------------------- @@ -1041,13 +1038,13 @@ void TileROD_Decoder::unpack_fragAHLT(uint32_t /* version */, const uint32_t* p, mask = 0xffff; return; } // BCIDs do not match - wrong event - + mask = *w++; // bcid checks, one bit per DMU if (mask & 0x0002) { mask = 0xffff; return; } // second DMU is bad - everything is bad - + if (mask & 0x00F0) { // at least one error in second motherboard, where we don't expect errors in ext.barrel uint16_t BCIDerr = mask; int n_badMB = 0; @@ -1067,15 +1064,15 @@ void TileROD_Decoder::unpack_fragAHLT(uint32_t /* version */, const uint32_t* p, return; } } - + mask |= *w++; // memory - + w += 2; // Ignore 2 guys - strobe uint16_t fe_mask = *w++; // head format fe_mask |= *w++; // head parity fe_mask |= *w++; // sample format fe_mask |= *w++; // sample parity - + if (fe_mask) { // something is wrong in data format - FE mask can not be used mask |= fe_mask; w++; @@ -1087,26 +1084,26 @@ void TileROD_Decoder::unpack_fragAHLT(uint32_t /* version */, const uint32_t* p, } mask |= ~fe_mask; // fe chip mask (inverted logic!) } - + mask |= ~(*w); // rod chip mask (inverted logic!) - + return; } void TileROD_Decoder::unpack_frag10(uint32_t /* version */, const uint32_t* p, - TileL2Container & pL2) const { + TileL2Container & pL2) const { // MTag-MET fragment 0x10 (staging mode) - + // second word is frag ID and frag type int size = *(p); int frag = *(p + 1) & 0xFFFF; - + int nDrawer[2]; nDrawer[0] = frag & 0x3F; nDrawer[1] = (frag & 0xFC0) >> 6; - + p += 2; // 2 words so far - + uint32_t w; uint32_t Mu_energy0; uint32_t Mu_energy1; @@ -1114,7 +1111,7 @@ void TileROD_Decoder::unpack_frag10(uint32_t /* version */, const uint32_t* p, uint32_t Mu_pattern; uint32_t Mu_drawer; uint32_t Mu_quality; - + std::vector<std::vector<float>*> sumE; std::vector<std::vector<unsigned int>*> word; std::vector<std::vector<float>*> eta; @@ -1122,7 +1119,7 @@ void TileROD_Decoder::unpack_frag10(uint32_t /* version */, const uint32_t* p, std::vector<std::vector<float>*> energy1; std::vector<std::vector<float>*> energy2; std::vector<std::vector<unsigned int>*> quality; - + for (unsigned int i = 0; i < 2; ++i) { sumE.push_back(new std::vector<float>); word.push_back(new std::vector<unsigned int>); @@ -1132,65 +1129,65 @@ void TileROD_Decoder::unpack_frag10(uint32_t /* version */, const uint32_t* p, energy2.push_back(new std::vector<float>); quality.push_back(new std::vector<unsigned int>); } - + float eta_LB[9] = { - ((0.00 + 2 * 0.05) / 3), // D0, BC1, A1 - ((0.20 + 2 * 0.15) / 3), // D1, BC2, A2 - ((0.20 + 2 * 0.25) / 3), // D1, BC3, A3 - ((0.40 + 2 * 0.35) / 3), // D2, BC4, A4 - ((0.40 + 2 * 0.45) / 3), // D2, BC5, A5 - ((0.40 + 2 * 0.55) / 3), // D2, BC6, A6 - ((0.60 + 2 * 0.55) / 3), // D3, BC6, A6 - ((0.60 + 2 * 0.65) / 3), // D3, BC7, A7 - ((0.60 + 2 * 0.75) / 3) // D3, BC8, A8 - }; - + ((0.00 + 2 * 0.05) / 3), // D0, BC1, A1 + ((0.20 + 2 * 0.15) / 3), // D1, BC2, A2 + ((0.20 + 2 * 0.25) / 3), // D1, BC3, A3 + ((0.40 + 2 * 0.35) / 3), // D2, BC4, A4 + ((0.40 + 2 * 0.45) / 3), // D2, BC5, A5 + ((0.40 + 2 * 0.55) / 3), // D2, BC6, A6 + ((0.60 + 2 * 0.55) / 3), // D3, BC6, A6 + ((0.60 + 2 * 0.65) / 3), // D3, BC7, A7 + ((0.60 + 2 * 0.75) / 3) // D3, BC8, A8 + }; + float eta_EB[17] = { - ((1.00 + 1.05 + 1.15) / 3), // D5, B11, A12 - ((1.00 + 1.15 + 1.15) / 3), // D5, B12, A12 - ((1.00 + 1.15 + 1.25) / 3), // D5, B12, A13 - ((1.00 + 1.25 + 1.15) / 3), // D5, B13, A12 - ((1.00 + 1.25 + 1.25) / 3), // D5, B13, A13 - ((1.00 + 1.25 + 1.35) / 3), // D5, B13, A14 - ((1.20 + 1.05 + 1.15) / 3), // D6, B11, A12 - ((1.20 + 1.15 + 1.15) / 3), // D6, B12, A12 - ((1.20 + 1.15 + 1.25) / 3), // D6, B12, A13 - ((1.20 + 1.25 + 1.15) / 3), // D6, B13, A12 - ((1.20 + 1.25 + 1.25) / 3), // D6, B13, A13 - ((1.20 + 1.25 + 1.35) / 3), // D6, B13, A14 - ((1.20 + 1.35 + 1.25) / 3), // D6, B14, A13 - ((1.20 + 1.35 + 1.35) / 3), // D6, B14, A14 - ((1.20 + 1.35 + 1.45) / 3), // D6, B14, A15 - ((1.20 + 1.45 + 1.35) / 3), // D6, B15, A14 - ((1.20 + 1.45 + 1.45) / 3) // D6, B15, A15 - }; - + ((1.00 + 1.05 + 1.15) / 3), // D5, B11, A12 + ((1.00 + 1.15 + 1.15) / 3), // D5, B12, A12 + ((1.00 + 1.15 + 1.25) / 3), // D5, B12, A13 + ((1.00 + 1.25 + 1.15) / 3), // D5, B13, A12 + ((1.00 + 1.25 + 1.25) / 3), // D5, B13, A13 + ((1.00 + 1.25 + 1.35) / 3), // D5, B13, A14 + ((1.20 + 1.05 + 1.15) / 3), // D6, B11, A12 + ((1.20 + 1.15 + 1.15) / 3), // D6, B12, A12 + ((1.20 + 1.15 + 1.25) / 3), // D6, B12, A13 + ((1.20 + 1.25 + 1.15) / 3), // D6, B13, A12 + ((1.20 + 1.25 + 1.25) / 3), // D6, B13, A13 + ((1.20 + 1.25 + 1.35) / 3), // D6, B13, A14 + ((1.20 + 1.35 + 1.25) / 3), // D6, B14, A13 + ((1.20 + 1.35 + 1.35) / 3), // D6, B14, A14 + ((1.20 + 1.35 + 1.45) / 3), // D6, B14, A15 + ((1.20 + 1.45 + 1.35) / 3), // D6, B15, A14 + ((1.20 + 1.45 + 1.45) / 3) // D6, B15, A15 + }; + // Transverse energy - 2 words sumE[0]->push_back((float) ((int32_t) (*p++) - 9000)); sumE[1]->push_back((float) ((int32_t) (*p++) - 9000)); - + // Muon tagging - + int NMuons = (int) (size - 5) / 2; - + for (int mu = 0; mu < NMuons; ++mu) { - + w = (*p); - + Mu_energy2 = w & 0x1FFFFFF; // 25 bits Mu_pattern = (w >> 25) & 0x1F; // 5 bits Mu_drawer = (w >> 30) & 1; // 1 bit Mu_quality = w >> 31; // 1 bit - + word[Mu_drawer]->push_back(w); - + w = *(p + 1); - + Mu_energy0 = w & 0xFFFF; // 16 bits Mu_energy1 = w >> 16; // 16 bits - + word[Mu_drawer]->push_back(w); - + // Muon eta coordinate switch (frag >> 12) { case 1: @@ -1209,30 +1206,30 @@ void TileROD_Decoder::unpack_frag10(uint32_t /* version */, const uint32_t* p, ATH_MSG_WARNING("Unknown fragment: " << (frag >> 8)); break; } - + // Energy deposited in TileCal by the muon (MeV) energy0[Mu_drawer]->push_back(Mu_energy0 / 2.); energy1[Mu_drawer]->push_back(Mu_energy1 / 2.); energy2[Mu_drawer]->push_back(Mu_energy2 / 2.); - + // Muon quality factor quality[Mu_drawer]->push_back(Mu_quality); - + p += 2; } - + for (unsigned int i = 0; i < 2; ++i) { - + // frag ID int fragId = (((frag & 0xF000) >> 4) | nDrawer[i]); - + // store sumEt (*pL2[m_hashFunc(fragId)]).setEt(*sumE[i]); - + // store Muon data (*pL2[m_hashFunc(fragId)]).setMu((*(eta[i])), (*(energy0[i])), (*(energy1[i])), (*(energy2[i])), - (*(quality[i])), (*(word[i]))); - + (*(quality[i])), (*(word[i]))); + delete sumE[i]; delete word[i]; delete eta[i]; @@ -1241,20 +1238,20 @@ void TileROD_Decoder::unpack_frag10(uint32_t /* version */, const uint32_t* p, delete energy2[i]; delete quality[i]; } - + return; } void TileROD_Decoder::unpack_frag11(uint32_t /* version */, const uint32_t* p, - TileL2Container & pL2) const { + TileL2Container & pL2) const { // MTag-MET fragment 0x11 (full mode) - + // second word is frag ID and frag type int size = *(p); int frag = *(p + 1) & 0xFFFF; - + p += 2; // 2 words so far - + uint32_t w; uint32_t Mu_energy0; uint32_t Mu_energy1; @@ -1262,72 +1259,72 @@ void TileROD_Decoder::unpack_frag11(uint32_t /* version */, const uint32_t* p, uint32_t Mu_pattern; //uint32_t Mu_drawer; uint32_t Mu_quality; - + std::vector<unsigned int> word; std::vector<float> eta; std::vector<float> energy0; std::vector<float> energy1; std::vector<float> energy2; std::vector<unsigned int> quality; - + float eta_LB[9] = { - ((0.00 + 2 * 0.05) / 3), // D0, BC1, A1 - ((0.20 + 2 * 0.15) / 3), // D1, BC2, A2 - ((0.20 + 2 * 0.25) / 3), // D1, BC3, A3 - ((0.40 + 2 * 0.35) / 3), // D2, BC4, A4 - ((0.40 + 2 * 0.45) / 3), // D2, BC5, A5 - ((0.40 + 2 * 0.55) / 3), // D2, BC6, A6 - ((0.60 + 2 * 0.55) / 3), // D3, BC6, A6 - ((0.60 + 2 * 0.65) / 3), // D3, BC7, A7 - ((0.60 + 2 * 0.75) / 3) // D3, BC8, A8 - }; - + ((0.00 + 2 * 0.05) / 3), // D0, BC1, A1 + ((0.20 + 2 * 0.15) / 3), // D1, BC2, A2 + ((0.20 + 2 * 0.25) / 3), // D1, BC3, A3 + ((0.40 + 2 * 0.35) / 3), // D2, BC4, A4 + ((0.40 + 2 * 0.45) / 3), // D2, BC5, A5 + ((0.40 + 2 * 0.55) / 3), // D2, BC6, A6 + ((0.60 + 2 * 0.55) / 3), // D3, BC6, A6 + ((0.60 + 2 * 0.65) / 3), // D3, BC7, A7 + ((0.60 + 2 * 0.75) / 3) // D3, BC8, A8 + }; + float eta_EB[17] = { - ((1.00 + 1.05 + 1.15) / 3), // D5, B11, A12 - ((1.00 + 1.15 + 1.15) / 3), // D5, B12, A12 - ((1.00 + 1.15 + 1.25) / 3), // D5, B12, A13 - ((1.00 + 1.25 + 1.15) / 3), // D5, B13, A12 - ((1.00 + 1.25 + 1.25) / 3), // D5, B13, A13 - ((1.00 + 1.25 + 1.35) / 3), // D5, B13, A14 - ((1.20 + 1.05 + 1.15) / 3), // D6, B11, A12 - ((1.20 + 1.15 + 1.15) / 3), // D6, B12, A12 - ((1.20 + 1.15 + 1.25) / 3), // D6, B12, A13 - ((1.20 + 1.25 + 1.15) / 3), // D6, B13, A12 - ((1.20 + 1.25 + 1.25) / 3), // D6, B13, A13 - ((1.20 + 1.25 + 1.35) / 3), // D6, B13, A14 - ((1.20 + 1.35 + 1.25) / 3), // D6, B14, A13 - ((1.20 + 1.35 + 1.35) / 3), // D6, B14, A14 - ((1.20 + 1.35 + 1.45) / 3), // D6, B14, A15 - ((1.20 + 1.45 + 1.35) / 3), // D6, B15, A14 - ((1.20 + 1.45 + 1.45) / 3) // D6, B15, A15 - }; - + ((1.00 + 1.05 + 1.15) / 3), // D5, B11, A12 + ((1.00 + 1.15 + 1.15) / 3), // D5, B12, A12 + ((1.00 + 1.15 + 1.25) / 3), // D5, B12, A13 + ((1.00 + 1.25 + 1.15) / 3), // D5, B13, A12 + ((1.00 + 1.25 + 1.25) / 3), // D5, B13, A13 + ((1.00 + 1.25 + 1.35) / 3), // D5, B13, A14 + ((1.20 + 1.05 + 1.15) / 3), // D6, B11, A12 + ((1.20 + 1.15 + 1.15) / 3), // D6, B12, A12 + ((1.20 + 1.15 + 1.25) / 3), // D6, B12, A13 + ((1.20 + 1.25 + 1.15) / 3), // D6, B13, A12 + ((1.20 + 1.25 + 1.25) / 3), // D6, B13, A13 + ((1.20 + 1.25 + 1.35) / 3), // D6, B13, A14 + ((1.20 + 1.35 + 1.25) / 3), // D6, B14, A13 + ((1.20 + 1.35 + 1.35) / 3), // D6, B14, A14 + ((1.20 + 1.35 + 1.45) / 3), // D6, B14, A15 + ((1.20 + 1.45 + 1.35) / 3), // D6, B15, A14 + ((1.20 + 1.45 + 1.45) / 3) // D6, B15, A15 + }; + // Transverse energy std::vector<float> sumE(1, (float) ((int32_t) (*p++) - 9000)); (*pL2[m_hashFunc(frag)]).setEt(sumE); - + // Muon tagging - + int NMuons = (int) (size - 4) / 2; - + for (int mu = 0; mu < NMuons; ++mu) { - + w = (*p); - + Mu_energy2 = w & 0x1FFFFFF; // 25 bits Mu_pattern = (w >> 25) & 0x1F; // 5 bits //Mu_drawer = (w >> 30) & 1; // 1 bit Mu_quality = w >> 31; // 1 bit - + word.push_back(w); - + w = *(p + 1); - + Mu_energy0 = w & 0xFFFF; // 16 bits Mu_energy1 = w >> 16; // 16 bits - + word.push_back(w); - + // Muon eta coordinate switch (frag >> 8) { case 1: @@ -1346,37 +1343,37 @@ void TileROD_Decoder::unpack_frag11(uint32_t /* version */, const uint32_t* p, ATH_MSG_WARNING("Unknown fragment: " << (frag >> 8)); break; } - + // Energy deposited in TileCal by the muon (MeV) energy0.push_back(Mu_energy0 / 2.); energy1.push_back(Mu_energy1 / 2.); energy2.push_back(Mu_energy2 / 2.); - + // Muon quality factor quality.push_back(Mu_quality); - + p += 2; } - + (*pL2[m_hashFunc(frag)]).setMu(eta, energy0, energy1, energy2, quality, word); - + return; } void TileROD_Decoder::unpack_frag12(uint32_t /* version */, const uint32_t* p, - TileL2Container & pL2) const { + TileL2Container & pL2) const { // MTag fragment 0x12 (staging mode) - + // second word is frag ID and frag type int size = *(p); int frag = *(p + 1) & 0xFFFF; - + int nDrawer[2]; nDrawer[0] = frag & 0x3F; nDrawer[1] = (frag & 0xFC0) >> 6; - + p += 2; // 2 words so far - + uint32_t w; uint32_t Mu_energy0; uint32_t Mu_energy1; @@ -1384,14 +1381,14 @@ void TileROD_Decoder::unpack_frag12(uint32_t /* version */, const uint32_t* p, uint32_t Mu_pattern; uint32_t Mu_drawer; uint32_t Mu_quality; - + std::vector<std::vector<unsigned int>*> word; std::vector<std::vector<float>*> eta; std::vector<std::vector<float>*> energy0; std::vector<std::vector<float>*> energy1; std::vector<std::vector<float>*> energy2; std::vector<std::vector<unsigned int>*> quality; - + for (unsigned int i = 0; i < 2; ++i) { word.push_back(new std::vector<unsigned int>); eta.push_back(new std::vector<float>); @@ -1400,59 +1397,59 @@ void TileROD_Decoder::unpack_frag12(uint32_t /* version */, const uint32_t* p, energy2.push_back(new std::vector<float>); quality.push_back(new std::vector<unsigned int>); } - + float eta_LB[9] = { - ((0.00 + 2 * 0.05) / 3), // D0, BC1, A1 - ((0.20 + 2 * 0.15) / 3), // D1, BC2, A2 - ((0.20 + 2 * 0.25) / 3), // D1, BC3, A3 - ((0.40 + 2 * 0.35) / 3), // D2, BC4, A4 - ((0.40 + 2 * 0.45) / 3), // D2, BC5, A5 - ((0.40 + 2 * 0.55) / 3), // D2, BC6, A6 - ((0.60 + 2 * 0.55) / 3), // D3, BC6, A6 - ((0.60 + 2 * 0.65) / 3), // D3, BC7, A7 - ((0.60 + 2 * 0.75) / 3) // D3, BC8, A8 - }; - + ((0.00 + 2 * 0.05) / 3), // D0, BC1, A1 + ((0.20 + 2 * 0.15) / 3), // D1, BC2, A2 + ((0.20 + 2 * 0.25) / 3), // D1, BC3, A3 + ((0.40 + 2 * 0.35) / 3), // D2, BC4, A4 + ((0.40 + 2 * 0.45) / 3), // D2, BC5, A5 + ((0.40 + 2 * 0.55) / 3), // D2, BC6, A6 + ((0.60 + 2 * 0.55) / 3), // D3, BC6, A6 + ((0.60 + 2 * 0.65) / 3), // D3, BC7, A7 + ((0.60 + 2 * 0.75) / 3) // D3, BC8, A8 + }; + float eta_EB[17] = { - ((1.00 + 1.05 + 1.15) / 3), // D5, B11, A12 - ((1.00 + 1.15 + 1.15) / 3), // D5, B12, A12 - ((1.00 + 1.15 + 1.25) / 3), // D5, B12, A13 - ((1.00 + 1.25 + 1.15) / 3), // D5, B13, A12 - ((1.00 + 1.25 + 1.25) / 3), // D5, B13, A13 - ((1.00 + 1.25 + 1.35) / 3), // D5, B13, A14 - ((1.20 + 1.05 + 1.15) / 3), // D6, B11, A12 - ((1.20 + 1.15 + 1.15) / 3), // D6, B12, A12 - ((1.20 + 1.15 + 1.25) / 3), // D6, B12, A13 - ((1.20 + 1.25 + 1.15) / 3), // D6, B13, A12 - ((1.20 + 1.25 + 1.25) / 3), // D6, B13, A13 - ((1.20 + 1.25 + 1.35) / 3), // D6, B13, A14 - ((1.20 + 1.35 + 1.25) / 3), // D6, B14, A13 - ((1.20 + 1.35 + 1.35) / 3), // D6, B14, A14 - ((1.20 + 1.35 + 1.45) / 3), // D6, B14, A15 - ((1.20 + 1.45 + 1.35) / 3), // D6, B15, A14 - ((1.20 + 1.45 + 1.45) / 3) // D6, B15, A15 - }; - + ((1.00 + 1.05 + 1.15) / 3), // D5, B11, A12 + ((1.00 + 1.15 + 1.15) / 3), // D5, B12, A12 + ((1.00 + 1.15 + 1.25) / 3), // D5, B12, A13 + ((1.00 + 1.25 + 1.15) / 3), // D5, B13, A12 + ((1.00 + 1.25 + 1.25) / 3), // D5, B13, A13 + ((1.00 + 1.25 + 1.35) / 3), // D5, B13, A14 + ((1.20 + 1.05 + 1.15) / 3), // D6, B11, A12 + ((1.20 + 1.15 + 1.15) / 3), // D6, B12, A12 + ((1.20 + 1.15 + 1.25) / 3), // D6, B12, A13 + ((1.20 + 1.25 + 1.15) / 3), // D6, B13, A12 + ((1.20 + 1.25 + 1.25) / 3), // D6, B13, A13 + ((1.20 + 1.25 + 1.35) / 3), // D6, B13, A14 + ((1.20 + 1.35 + 1.25) / 3), // D6, B14, A13 + ((1.20 + 1.35 + 1.35) / 3), // D6, B14, A14 + ((1.20 + 1.35 + 1.45) / 3), // D6, B14, A15 + ((1.20 + 1.45 + 1.35) / 3), // D6, B15, A14 + ((1.20 + 1.45 + 1.45) / 3) // D6, B15, A15 + }; + int NMuons = (int) (size - 3) / 2; - + for (int mu = 0; mu < NMuons; ++mu) { - + w = (*p); - + Mu_energy2 = w & 0x1FFFFFF; // 25 bits Mu_pattern = (w >> 25) & 0x1F; // 5 bits Mu_drawer = (w >> 30) & 1; // 1 bit Mu_quality = w >> 31; // 1 bit - + word[Mu_drawer]->push_back(w); - + w = *(p + 1); - + Mu_energy0 = w & 0xFFFF; // 16 bits Mu_energy1 = w >> 16; // 16 bits - + word[Mu_drawer]->push_back(w); - + // Muon eta coordinate switch (frag >> 12) { case 1: @@ -1471,26 +1468,26 @@ void TileROD_Decoder::unpack_frag12(uint32_t /* version */, const uint32_t* p, ATH_MSG_WARNING("Unknown fragment: " << (frag >> 8)); break; } - + // Energy deposited in TileCal by the muon (MeV) energy0[Mu_drawer]->push_back(Mu_energy0 / 2.); energy1[Mu_drawer]->push_back(Mu_energy1 / 2.); energy2[Mu_drawer]->push_back(Mu_energy2 / 2.); - + // Muon quality factor quality[Mu_drawer]->push_back(Mu_quality); - + p += 2; } - + for (unsigned int i = 0; i < 2; ++i) { - + // frag ID int fragId = (((frag & 0xF000) >> 4) | nDrawer[i]); - + (*pL2[m_hashFunc(fragId)]).setMu((*(eta[i])), (*(energy0[i])), (*(energy1[i])), (*(energy2[i])), - (*(quality[i])), (*(word[i]))); - + (*(quality[i])), (*(word[i]))); + delete word[i]; delete eta[i]; delete energy0[i]; @@ -1498,20 +1495,20 @@ void TileROD_Decoder::unpack_frag12(uint32_t /* version */, const uint32_t* p, delete energy2[i]; delete quality[i]; } - + return; } void TileROD_Decoder::unpack_frag13(uint32_t /* version */, const uint32_t* p, - TileL2Container & pL2) const { + TileL2Container & pL2) const { // MTag fragment 0x13 (full mode) - + // second word is frag ID and frag type int size = *(p); int frag = *(p + 1) & 0xFFFF; - + p += 2; // 2 words so far - + uint32_t w; uint32_t Mu_energy0; uint32_t Mu_energy1; @@ -1519,66 +1516,66 @@ void TileROD_Decoder::unpack_frag13(uint32_t /* version */, const uint32_t* p, uint32_t Mu_pattern; //uint32_t Mu_drawer; uint32_t Mu_quality; - + std::vector<unsigned int> word; std::vector<float> eta; std::vector<float> energy0; std::vector<float> energy1; std::vector<float> energy2; std::vector<unsigned int> quality; - + float eta_LB[9] = { - ((0.00 + 2 * 0.05) / 3), // D0, BC1, A1 - ((0.20 + 2 * 0.15) / 3), // D1, BC2, A2 - ((0.20 + 2 * 0.25) / 3), // D1, BC3, A3 - ((0.40 + 2 * 0.35) / 3), // D2, BC4, A4 - ((0.40 + 2 * 0.45) / 3), // D2, BC5, A5 - ((0.40 + 2 * 0.55) / 3), // D2, BC6, A6 - ((0.60 + 2 * 0.55) / 3), // D3, BC6, A6 - ((0.60 + 2 * 0.65) / 3), // D3, BC7, A7 - ((0.60 + 2 * 0.75) / 3) // D3, BC8, A8 - }; - + ((0.00 + 2 * 0.05) / 3), // D0, BC1, A1 + ((0.20 + 2 * 0.15) / 3), // D1, BC2, A2 + ((0.20 + 2 * 0.25) / 3), // D1, BC3, A3 + ((0.40 + 2 * 0.35) / 3), // D2, BC4, A4 + ((0.40 + 2 * 0.45) / 3), // D2, BC5, A5 + ((0.40 + 2 * 0.55) / 3), // D2, BC6, A6 + ((0.60 + 2 * 0.55) / 3), // D3, BC6, A6 + ((0.60 + 2 * 0.65) / 3), // D3, BC7, A7 + ((0.60 + 2 * 0.75) / 3) // D3, BC8, A8 + }; + float eta_EB[17] = { - ((1.00 + 1.05 + 1.15) / 3), // D5, B11, A12 - ((1.00 + 1.15 + 1.15) / 3), // D5, B12, A12 - ((1.00 + 1.15 + 1.25) / 3), // D5, B12, A13 - ((1.00 + 1.25 + 1.15) / 3), // D5, B13, A12 - ((1.00 + 1.25 + 1.25) / 3), // D5, B13, A13 - ((1.00 + 1.25 + 1.35) / 3), // D5, B13, A14 - ((1.20 + 1.05 + 1.15) / 3), // D6, B11, A12 - ((1.20 + 1.15 + 1.15) / 3), // D6, B12, A12 - ((1.20 + 1.15 + 1.25) / 3), // D6, B12, A13 - ((1.20 + 1.25 + 1.15) / 3), // D6, B13, A12 - ((1.20 + 1.25 + 1.25) / 3), // D6, B13, A13 - ((1.20 + 1.25 + 1.35) / 3), // D6, B13, A14 - ((1.20 + 1.35 + 1.25) / 3), // D6, B14, A13 - ((1.20 + 1.35 + 1.35) / 3), // D6, B14, A14 - ((1.20 + 1.35 + 1.45) / 3), // D6, B14, A15 - ((1.20 + 1.45 + 1.35) / 3), // D6, B15, A14 - ((1.20 + 1.45 + 1.45) / 3) // D6, B15, A15 - }; - + ((1.00 + 1.05 + 1.15) / 3), // D5, B11, A12 + ((1.00 + 1.15 + 1.15) / 3), // D5, B12, A12 + ((1.00 + 1.15 + 1.25) / 3), // D5, B12, A13 + ((1.00 + 1.25 + 1.15) / 3), // D5, B13, A12 + ((1.00 + 1.25 + 1.25) / 3), // D5, B13, A13 + ((1.00 + 1.25 + 1.35) / 3), // D5, B13, A14 + ((1.20 + 1.05 + 1.15) / 3), // D6, B11, A12 + ((1.20 + 1.15 + 1.15) / 3), // D6, B12, A12 + ((1.20 + 1.15 + 1.25) / 3), // D6, B12, A13 + ((1.20 + 1.25 + 1.15) / 3), // D6, B13, A12 + ((1.20 + 1.25 + 1.25) / 3), // D6, B13, A13 + ((1.20 + 1.25 + 1.35) / 3), // D6, B13, A14 + ((1.20 + 1.35 + 1.25) / 3), // D6, B14, A13 + ((1.20 + 1.35 + 1.35) / 3), // D6, B14, A14 + ((1.20 + 1.35 + 1.45) / 3), // D6, B14, A15 + ((1.20 + 1.45 + 1.35) / 3), // D6, B15, A14 + ((1.20 + 1.45 + 1.45) / 3) // D6, B15, A15 + }; + int NMuons = (int) (size - 3) / 2; - + for (int mu = 0; mu < NMuons; ++mu) { - + w = (*p); - + Mu_energy2 = w & 0x1FFFFFF; // 25 bits Mu_pattern = (w >> 25) & 0x1F; // 5 bits //Mu_drawer = (w >> 30) & 1; // 1 bit Mu_quality = w >> 31; // 1 bit - + word.push_back(w); - + w = *(p + 1); - + Mu_energy0 = w & 0xFFFF; // 16 bits Mu_energy1 = w >> 16; // 16 bits - + word.push_back(w); - + // Muon eta coordinate switch (frag >> 8) { case 1: @@ -1597,541 +1594,541 @@ void TileROD_Decoder::unpack_frag13(uint32_t /* version */, const uint32_t* p, ATH_MSG_WARNING("Unknown fragment: " << (frag >> 8)); break; } - + // Energy deposited in TileCal by the muon (MeV) energy0.push_back(Mu_energy0 / 2.); energy1.push_back(Mu_energy1 / 2.); energy2.push_back(Mu_energy2 / 2.); - + // Muon quality factor quality.push_back(Mu_quality); - + p += 2; } - + (*pL2[m_hashFunc(frag)]).setMu(eta, energy0, energy1, energy2, quality, word); - + return; } void TileROD_Decoder::unpack_frag14(uint32_t /* version */, const uint32_t* p, - TileL2Container & pL2) const { + TileL2Container & pL2) const { // Met fragment 0x14 (staging mode) - obsolete, now sumEt is part of frag4/frag5 - + // second word is frag ID and frag type int frag = *(p + 1) & 0xFFFF; - + int nDrawer[2]; nDrawer[0] = frag & 0x3F; nDrawer[1] = (frag & 0xFC0) >> 6; - + p += 2; // 2 words so far - + std::vector<float> sumE(1); - + for (unsigned int i = 0; i < 2; ++i) { - + int fragId = (((frag & 0xF000) >> 4) | nDrawer[i]); - + sumE[0] = (float) ((int32_t) (*p) - 9000); (*pL2[m_hashFunc(fragId)]).setEt(sumE); - + ++p; } - + return; } void TileROD_Decoder::unpack_frag15(uint32_t /* version */, const uint32_t* p, - TileL2Container & pL2) const { - // Met fragment 0x15 (full mode) - obsolete, now sumEt is part of frag4/frag5 - + TileL2Container & pL2) const { + // Met fragment 0x15 (full mode) - obsolete, now sumEt is part of frag4/frag5 + // second word is frag ID and frag type int frag = *(p + 1) & 0xFFFF; - + p += 2; // 2 words so far - + std::vector<float> sumE(1); - + sumE[0] = (float) ((int32_t) (*p) - 9000); (*pL2[m_hashFunc(frag)]).setEt(sumE); - + return; } void TileROD_Decoder::unpack_frag16(uint32_t version, const uint32_t* p, - TileLaserObject & laserObject) { - + TileLaserObject & laserObject) { + //frag ID - + //int frag = *(p+1) & 0xFFFF; //int type = *(p+1) >>16; - + // pointer to current data word const uint32_t *pData; - + //position of first data word, skip the first two words of the header fragment - + pData = p + 2; - + int counter = 0; - + counter = *pData; - + ++pData; - + int reqAmp = 0; int filt = 0; //int rawfilt=0; //int status=0; bool errorFlag = false; - + if ((*pData & 0xFF000000) == 0x20000000) { - + if (version == 1) { - + reqAmp = *pData & 0xFFFF; - + } else { - + reqAmp = *pData & 0xFFFF; - + // rawfilt = (*pData >>16) & 0xF; - + if (version == 2) { filt = (((*pData >> 16) & 7) ^ 7) + 2; } else { filt = 9 - (((*pData >> 17) & 1) * 4 + ((*pData >> 18) & 1) * 2 + ((*pData >> 19) & 1)); } - + if (((*pData >> 16) & 1) == 1) filt = 0; // Filter wheel moving - + if (filt > 8) filt -= 8; } - //status = (*pData >>20) & 0xF; - + //status = (*pData >>20) & 0xF; + } else { errorFlag = true; if (m_ErrorCounter <= m_maxErrorPrint) ATH_MSG_ERROR( "In decoding word 20" ); } - + ++pData; - + //int delay=0; int measAmp = 0; - + if ((*pData & 0xFF000000) == 0x21000000) { - + measAmp = *pData & 0xFFF; //delay = (*pData >>12) & 0xFFF; - + } else { errorFlag = true; if (m_ErrorCounter <= m_maxErrorPrint) ATH_MSG_ERROR( "In decoding word 21" ); } - + ++pData; - + //int status1=0; int tdc1 = 0; int tdc2 = 0; - + if ((*pData & 0xFF000000) == 0x22000000) { - + if (version == 1) { - + tdc1 = (*pData >> 16) & 0xF; tdc2 = (*pData >> 20) & 0xF; } else { - + tdc1 = *pData & 0xFFFF; - + } - + } else { errorFlag = true; if (m_ErrorCounter <= m_maxErrorPrint) ATH_MSG_ERROR( "In decoding word 22" ); - + } - + ++pData; - + //int status2=0; //int tdc2=0; - + if ((*pData & 0xFF000000) == 0x23000000) { - + if (version == 1) { - + tdc2 = (*pData >> 12) & 0xFFF; tdc1 = *pData & 0xFFF; - + } else { - + tdc2 = *pData & 0xFFFF; - + //status2 = (*pData >>16) & 0xFF; } - + } else { errorFlag = true; if (m_ErrorCounter <= m_maxErrorPrint) ATH_MSG_ERROR( "In decoding word 23" ); } - + ++pData; - + int chan0 = 0; int chan1 = 0; - + if ((*pData & 0xFF000000) == 0x44000000) { - + chan0 = 4095 - (*pData & 0xFFF); chan1 = 4095 - ((*pData >> 12) & 0xFFF); - + } else { errorFlag = true; if (m_ErrorCounter <= m_maxErrorPrint) ATH_MSG_ERROR( "In decoding word 24" ); } - + ++pData; - + int chan2 = 0; int chan3 = 0; - + if ((*pData & 0xFF000000) == 0x45000000) { - + chan2 = 4095 - (*pData & 0xFFF); chan3 = 4095 - ((*pData >> 12) & 0xFFF); - + } else { errorFlag = true; if (m_ErrorCounter <= m_maxErrorPrint) ATH_MSG_ERROR( "In decoding word 25" ); } - + ++pData; - + int chan4 = 0; int chan5 = 0; - + if ((*pData & 0xFF000000) == 0x46000000) { - + chan4 = 4095 - (*pData & 0xFFF); chan5 = 4095 - ((*pData >> 12) & 0xFFF); - + } else { errorFlag = true; if (m_ErrorCounter <= m_maxErrorPrint) ATH_MSG_ERROR( "In decoding word 26" ); } - + ++pData; - + //int chan6=0; //int chan7=0; - + if ((*pData & 0xFF000000) == 0x47000000) { - + //chan6 = 4095 - (*pData & 0xFFF); //chan7 = 4095 - ((*pData >>12) & 0xFFF); - + } else { errorFlag = true; if (m_ErrorCounter <= m_maxErrorPrint) ATH_MSG_ERROR( "In decoding word 27" ); } - + ++pData; - + int meanPed_diode1 = 0; int rmsPed_diode1 = 0; - + double MeanPed_diode1 = 0; double RmsPed_diode1 = 0; - + rmsPed_diode1 = *pData & 0xFFFF; meanPed_diode1 = (*pData >> 16) & 0xFFFF; - + MeanPed_diode1 = static_cast<double>(meanPed_diode1) / 10; - + RmsPed_diode1 = static_cast<double>(rmsPed_diode1) / 100; - + ++pData; - + int meanPed_diode2 = 0; int rmsPed_diode2 = 0; - + double MeanPed_diode2 = 0; double RmsPed_diode2 = 0; - + rmsPed_diode2 = *pData & 0xFFFF; meanPed_diode2 = (*pData >> 16) & 0xFFFF; - + MeanPed_diode2 = static_cast<double>(meanPed_diode2) / 10; - + RmsPed_diode2 = static_cast<double>(rmsPed_diode2) / 100; - + ++pData; - + int meanPed_diode3 = 0; int rmsPed_diode3 = 0; - + double MeanPed_diode3 = 0; double RmsPed_diode3 = 0; - + rmsPed_diode3 = *pData & 0xFFFF; meanPed_diode3 = (*pData >> 16) & 0xFFFF; - + MeanPed_diode3 = static_cast<double>(meanPed_diode3) / 10; - + RmsPed_diode3 = static_cast<double>(rmsPed_diode3) / 100; - + ++pData; - + int meanPed_diode4 = 0; int rmsPed_diode4 = 0; - + double MeanPed_diode4 = 0; double RmsPed_diode4 = 0; - + rmsPed_diode4 = *pData & 0xFFFF; meanPed_diode4 = (*pData >> 16) & 0xFFFF; - + MeanPed_diode4 = static_cast<double>(meanPed_diode4) / 10; - + RmsPed_diode4 = static_cast<double>(rmsPed_diode4) / 100; - + ++pData; - + int meanPed_pmt1 = 0; int rmsPed_pmt1 = 0; - + double MeanPed_pmt1 = 0; double RmsPed_pmt1 = 0; - + rmsPed_pmt1 = *pData & 0xFFFF; meanPed_pmt1 = (*pData >> 16) & 0xFFFF; - + MeanPed_pmt1 = static_cast<double>(meanPed_pmt1) / 10; - + RmsPed_pmt1 = static_cast<double>(rmsPed_pmt1) / 100; - + ++pData; - + int meanPed_pmt2 = 0; int rmsPed_pmt2 = 0; - + double MeanPed_pmt2 = 0; double RmsPed_pmt2 = 0; - + rmsPed_pmt2 = *pData & 0xFFFF; meanPed_pmt2 = (*pData >> 16) & 0xFFFF; - + MeanPed_pmt2 = static_cast<double>(meanPed_pmt2) / 10; - + RmsPed_pmt2 = static_cast<double>(rmsPed_pmt2) / 100; - + ++pData; - + time_t lastPedMeas = *pData; //struct tm *time = localtime(&lastPedMeas); //printf("Date is %d/%02d/%02d\n", time->tm_year+1900, time->tm_mon+1, time->tm_mday); //printf("Time is %02d:%02d\n", time->tm_hour, time->tm_min); - + ++pData; - + int meanAlpha_diode1 = 0; int rmsAlpha_diode1 = 0; - + double MeanAlpha_diode1 = 0; double RmsAlpha_diode1 = 0; - + rmsAlpha_diode1 = *pData & 0xFFFF; meanAlpha_diode1 = (*pData >> 16) & 0xFFFF; - + MeanAlpha_diode1 = static_cast<double>(meanAlpha_diode1) / 10; - + RmsAlpha_diode1 = static_cast<double>(rmsAlpha_diode1) / 100; - + ++pData; - + int meanAlpha_diode2 = 0; int rmsAlpha_diode2 = 0; - + double MeanAlpha_diode2 = 0; double RmsAlpha_diode2 = 0; - + rmsAlpha_diode2 = *pData & 0xFFFF; meanAlpha_diode2 = (*pData >> 16) & 0xFFFF; - + MeanAlpha_diode2 = static_cast<float>(meanAlpha_diode2) / 10; - + RmsAlpha_diode2 = static_cast<float>(rmsAlpha_diode2) / 100; - + ++pData; - -// ATH_MSG_VERBOSE( "Diode 2 value is " << MeanAlpha_diode2 ); - + + // ATH_MSG_VERBOSE( "Diode 2 value is " << MeanAlpha_diode2 ); + int meanAlpha_diode3 = 0; int rmsAlpha_diode3 = 0; - + double MeanAlpha_diode3 = 0; double RmsAlpha_diode3 = 0; - + rmsAlpha_diode3 = *pData & 0xFFFF; meanAlpha_diode3 = (*pData >> 16) & 0xFFFF; - + MeanAlpha_diode3 = static_cast<double>(meanAlpha_diode3) / 10; - + RmsAlpha_diode3 = static_cast<double>(rmsAlpha_diode3) / 100; - + ++pData; - + int meanAlpha_diode4 = 0; int rmsAlpha_diode4 = 0; - + double MeanAlpha_diode4 = 0; double RmsAlpha_diode4 = 0; - + rmsAlpha_diode4 = *pData & 0xFFFF; meanAlpha_diode4 = (*pData >> 16) & 0xFFFF; - + MeanAlpha_diode4 = static_cast<double>(meanAlpha_diode4) / 10; - + RmsAlpha_diode4 = static_cast<double>(rmsAlpha_diode4) / 100; - + ++pData; - + time_t lastAlphaMeas = *pData; //tm *Time = localtime(&lastAlphaMeas); //printf("Date is %d/%02d/%02d\n", Time->tm_year+1900, Time->tm_mon+1, Time->tm_mday); //printf("Time is %02d:%02d\n", Time->tm_hour, Time->tm_min); - + ++pData; - + if (version > 1) { - + //int pedAlpha_diode1=0; //int pedRMSAlpha_diode1=0; - + //double PedAlpha_diode1=0; //double PedRMSAlpha_diode1=0; - + //pedRMSAlpha_diode1 = *pData & 0xFFFF ; - //pedAlpha_diode1 = (*pData >> 16) & 0xFFFF; - + //pedAlpha_diode1 = (*pData >> 16) & 0xFFFF; + //PedAlpha_diode1 = static_cast<double>(pedAlpha_diode1)/10; - + //PedRMSAlpha_diode1 = static_cast<double>(pedRMSAlpha_diode1)/100; - + ++pData; - + //int pedAlpha_diode2=0; //int pedRMSAlpha_diode2=0; - + //double PedAlpha_diode2=0; //double PedRMSAlpha_diode2=0; - + //pedRMSAlpha_diode2 = *pData & 0xFFFF ; - //pedAlpha_diode2 = (*pData >> 16) & 0xFFFF; - + //pedAlpha_diode2 = (*pData >> 16) & 0xFFFF; + //PedAlpha_diode2 = static_cast<double>(pedAlpha_diode2)/10; - + //PedRMSAlpha_diode2 = static_cast<double>(pedRMSAlpha_diode2)/100; - + ++pData; - + //int pedAlpha_diode3=0; //int pedRMSAlpha_diode3=0; - + //double PedAlpha_diode3=0; //double PedRMSAlpha_diode3=0; - + //pedRMSAlpha_diode3 = *pData & 0xFFFF ; - //pedAlpha_diode3 = (*pData >> 16) & 0xFFFF; - + //pedAlpha_diode3 = (*pData >> 16) & 0xFFFF; + //PedAlpha_diode3 = static_cast<double>(pedAlpha_diode3)/10; - + //PedRMSAlpha_diode3 = static_cast<double>(pedRMSAlpha_diode3)/100; - + ++pData; - + //int pedAlpha_diode4=0; //int pedRMSAlpha_diode4=0; - + //double PedAlpha_diode4=0; //double PedRMSAlpha_diode4=0; - + //pedRMSAlpha_diode4 = *pData & 0xFFFF ; - //pedAlpha_diode4 = (*pData >> 16) & 0xFFFF; - + //pedAlpha_diode4 = (*pData >> 16) & 0xFFFF; + //PedAlpha_diode4 = static_cast<double>(pedAlpha_diode4)/10; - + //PedRMSAlpha_diode4 = static_cast<double>(pedRMSAlpha_diode4)/100; - + ++pData; - + //time_t lastAlphaPedMeas = *pData; - + ++pData; } - + int diodeTemp = 0; int seconds1 = 0; - + double DiodeTemp = 0; - + diodeTemp = *pData & 0xFFF; seconds1 = (*pData >> 12) & 0xFFFFF; - + DiodeTemp = static_cast<double>(diodeTemp) / 10; - + ++pData; - + int boxTemp = 0; int seconds2 = 0; - + double BoxTemp = 0; - + boxTemp = *pData & 0xFFF; seconds2 = (*pData >> 12) & 0xFFFFF; - + BoxTemp = static_cast<double>(boxTemp) / 10; - + ++pData; - + int hum = 0; int seconds3 = 0; - + double Hum = 0; - + hum = *pData & 0xFFF; seconds3 = (*pData >> 12) & 0xFFFFF; - + Hum = static_cast<double>(hum) / 10; - + ++pData; - + int gasFlow = 0; int seconds4 = 0; - + double GasFlow = 0; - + gasFlow = *pData & 0xFFF; seconds4 = (*pData >> 12) & 0xFFFFF; - + GasFlow = static_cast<double>(gasFlow) / 10; - + ++pData; - + int PLCstatus = 0; //int seconds5 =0; - + PLCstatus = *pData & 0xFFF; //seconds5 = (*pData >> 12) & 0xFFFFF; int alphaPos = PLCstatus & 0x7; @@ -2140,62 +2137,273 @@ void TileROD_Decoder::unpack_frag16(uint32_t version, const uint32_t* p, int shutter = (PLCstatus >> 0x6) & 0x3; int interLock = (PLCstatus >> 0x8) & 0x1; int alarm = (PLCstatus >> 0x9) & 0x7; - - laserObject.setPmt(0, chan4, tdc1, MeanPed_pmt1, RmsPed_pmt1); - - laserObject.setPmt(1, chan5, tdc2, MeanPed_pmt2, RmsPed_pmt2); - - laserObject.setDiode(0, chan0, MeanPed_diode1, RmsPed_diode1, MeanAlpha_diode1, RmsAlpha_diode1, 0, 0); - - laserObject.setDiode(1, chan1, MeanPed_diode2, RmsPed_diode2, MeanAlpha_diode2, RmsAlpha_diode2, 0, 0); - - laserObject.setDiode(2, chan2, MeanPed_diode3, RmsPed_diode3, MeanAlpha_diode3, RmsAlpha_diode3, 0, 0); - - laserObject.setDiode(3, chan3, MeanPed_diode4, RmsPed_diode4, MeanAlpha_diode4, RmsAlpha_diode4, 0, 0); - + + laserObject.setPmt(0, chan4, tdc1, MeanPed_pmt1, RmsPed_pmt1, 0); + + laserObject.setPmt(1, chan5, tdc2, MeanPed_pmt2, RmsPed_pmt2, 0); + + laserObject.setDiode(0, chan0, MeanPed_diode1, RmsPed_diode1, MeanAlpha_diode1, RmsAlpha_diode1, 0, 0, 0); + + laserObject.setDiode(1, chan1, MeanPed_diode2, RmsPed_diode2, MeanAlpha_diode2, RmsAlpha_diode2, 0, 0, 0); + + laserObject.setDiode(2, chan2, MeanPed_diode3, RmsPed_diode3, MeanAlpha_diode3, RmsAlpha_diode3, 0, 0, 0); + + laserObject.setDiode(3, chan3, MeanPed_diode4, RmsPed_diode4, MeanAlpha_diode4, RmsAlpha_diode4, 0, 0, 0); + laserObject.setControl(DiodeTemp, seconds1, BoxTemp, seconds2, GasFlow, seconds4, Hum, seconds3, lastPedMeas, lastAlphaMeas); - - laserObject.setLaser(counter, reqAmp, measAmp, filt, 0); - + + laserObject.setLaser(counter, reqAmp, measAmp, filt, 0, 1); + laserObject.setPLC(alphaPos, LVdiodes, HVpmts, shutter, interLock, alarm); - + if (errorFlag) m_ErrorCounter++; -} +} // unpack_frag16 + +void TileROD_Decoder::unpack_frag17(uint32_t /* version */, const uint32_t* p, + TileLaserObject & laserObject) { + + // first word is full frag size, first two words are not data + int size = *(p); + // second word is frag ID and frag type + //int frag = *(p + 1) & 0xFFFF; + //position of first data word, skip the first two words of the header fragment + //const uint32_t *pData = p+2; + + bool debug = msgLvl(MSG::DEBUG); + + if (true) { + int maxn=size+2-m_sizeOverhead; + for(int n=0; n<maxn; ++n){ + ATH_MSG_DEBUG("WORD " << n << " (" << n+11 << ") : (DEC) " << p[n] << " (HEX) 0x" << std::hex << p[n] << std::dec ); + } + } + + // p[2] 00 00 00 tt Daq Type + // p[3] nn nn nn nn Laser Count + // p[4] rr rr mm mm rrrr = Requested Intensity mmmm = measured intensity + // p[5] 00 0f dd dd f = filter dddd = Delay Slama + // [[6] 00 00 ll ll Linearity DAC Value + laserObject.setLaser(p[3], (p[4]>>16), (p[4] & 0xFFFF), (p[5]>>16) & 0x000F, (p[5] & 0xFFFF), 2); + laserObject.setControl(-99,-99,-99,-99,-99,-99,-99,-99,-99,-99); + laserObject.setPLC(-99,-99,-99,-99,-99,-99); + laserObject.setDaqType(int(p[2])); + + ATH_MSG_DEBUG("SETTING DAQ TYPE IN DECODER = " << std::hex << "0x" << int(p[2]) << " " << std::dec << int(p[2])); + + int countr = p[3]; + int idiode = (p[4]>>16); + int filter = (p[5]>>16) & 0x000F; + int timing = (p[5] & 0xFFFF); + int daqtyp = p[2]; + + if(laserObject.isLASERII()) ATH_MSG_DEBUG("LASERII VERSION IS " << laserObject.getVersion()); + else ATH_MSG_DEBUG("LASERI VERSION IS " << laserObject.getVersion()); + + ATH_MSG_DEBUG("laserObject.setLaser: " << std::dec << "COUNTER=" << countr << " | " + << "I_DIODE=" << idiode << " | " + << "FILTERN=" << filter << " | " + << "TIMINGD=" << timing << " | " + << "DAQTYPE=" << daqtyp ); + + int las[32]; + double ped[32]; + double std[32]; + + // ATTENTION: note that HG has even index (0,2,4,...) in las[], ped[], std[] arrays + static const int HG=0; + static const int LG=1; + + const uint32_t *word = p+7; // move to 7th word + int adc=0; + // decode 32 ADC half-words (16 low & high channels) + while (adc<31) { + // ll ll hh hh ADC Channel 1 & 0 (Low & High Gain) + las[adc++] = 8500 - ((*word) & 0xFFFF); + las[adc++] = 8500 - ((*word) >> 16); + ++word; + } + // TDC word immediately after ADC words + // aa aa bb bb aaaa = TDC N°1 bbbb = TDC N°0 + int TDC0 = (*word) & 0xFFFF; + int TDC1 = (*word) >> 16; + + if (size>130) { + + uint32_t sum[32]; + uint64_t ssq[32]; + + // p[128] Nb event + double nevt = double(p[128]); + if(p[128]==0 || (p[128]==3072 && p[32]<21504000) ) { + nevt=1024.; // HAS TO BE REMOVED!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + ATH_MSG_DEBUG("Nevents= " << p[128] << " => assuming 1024"); + } + + if (nevt>0) { + + word = p+32; // jump to 32th word + + // decode sums for 16 channels (6 words per channel) + for(int channel=0;channel<16;++channel) { + + // Sum Xi channel 0 + // Sum Xi channel 1 + // Sum Xi2 LSB channel 0 + // Sum Xi2 MSB channel 0 + // Sum Xi2 LSB channel 1 + // Sum Xi2 MSB channel 1 + + sum[channel*2+HG] = *(word++); + sum[channel*2+LG] = *(word++); + + uint32_t lsb0 = *(word++); + uint32_t msb0 = *(word++); + uint32_t lsb1 = *(word++); + uint32_t msb1 = *(word++); + uint64_t MSB0 = (uint64_t) msb0 << 32; + uint64_t MSB1 = (uint64_t) msb1 << 32; + uint64_t SSQ0 = MSB0 | lsb0; + uint64_t SSQ1 = MSB1 | lsb1; + + ssq[channel*2+HG] = SSQ0; + ssq[channel*2+LG] = SSQ1; + + // COMPUTE MEAN AND STANDARD DEVIATION + ped[channel*2+HG] = double(sum[channel*2+HG])/nevt; + ped[channel*2+LG] = double(sum[channel*2+LG])/nevt; + + std[channel*2+HG] = double(ssq[channel*2+HG])/nevt - ped[channel*2+HG]*ped[channel*2+HG]; + std[channel*2+LG] = double(ssq[channel*2+LG])/nevt - ped[channel*2+LG]*ped[channel*2+LG]; + if (std[channel*2+HG]>0.0) std[channel*2+HG] = sqrt(std[channel*2+HG]); + if (std[channel*2+LG]>0.0) std[channel*2+LG] = sqrt(std[channel*2+LG]); + + laserObject.setCalib(channel,int(p[31]), double(sum[channel*2+LG]), double(ssq[channel*2+LG]), nevt, LG); + laserObject.setCalib(channel,int(p[31]), double(sum[channel*2+HG]), double(ssq[channel*2+HG]), nevt, HG); + + // DEBUGGING OUTPUT + if(debug){ + ATH_MSG_DEBUG("PED CHAN=" << channel << " GAIN=LG" << " TYPE=" << laserObject.getType(channel,LG,0) << " MEAN=" << laserObject.getMean(channel,LG,0) << " SIGMA=" << laserObject.getSigma(channel,LG,0) << " N=" << laserObject.getN(channel,LG,0) << " isSet?=" << laserObject.isSet(channel,LG,0) ); + ATH_MSG_DEBUG("PED CHAN=" << channel << " GAIN=HG" << " TYPE=" << laserObject.getType(channel,HG,0) << " MEAN=" << laserObject.getMean(channel,HG,0) << " SIGMA=" << laserObject.getSigma(channel,HG,0) << " N=" << laserObject.getN(channel,HG,0) << " isSet?=" << laserObject.isSet(channel,HG,0) ); + + ATH_MSG_DEBUG("PED CHAN=" << channel << " GAIN=LG" << " TYPE=" << laserObject.getType(channel,LG,1) << " MEAN=" << laserObject.getMean(channel,LG,1) << " SIGMA=" << laserObject.getSigma(channel,LG,1) << " N=" << laserObject.getN(channel,LG,1) << " isSet?=" << laserObject.isSet(channel,LG,1) ); + ATH_MSG_DEBUG("PED CHAN=" << channel << " GAIN=HG" << " TYPE=" << laserObject.getType(channel,HG,1) << " MEAN=" << laserObject.getMean(channel,HG,1) << " SIGMA=" << laserObject.getSigma(channel,HG,1) << " N=" << laserObject.getN(channel,HG,1) << " isSet?=" << laserObject.isSet(channel,HG,1) ); + + ATH_MSG_DEBUG("LED CHAN=" << channel << " GAIN=LG" << " TYPE=" << laserObject.getType(channel,LG,2) << " MEAN=" << laserObject.getMean(channel,LG,2) << " SIGMA=" << laserObject.getSigma(channel,LG,2) << " N=" << laserObject.getN(channel,LG,2) << " isSet?=" << laserObject.isSet(channel,LG,2) ); + ATH_MSG_DEBUG("LED CHAN=" << channel << " GAIN=HG" << " TYPE=" << laserObject.getType(channel,HG,2) << " MEAN=" << laserObject.getMean(channel,HG,2) << " SIGMA=" << laserObject.getSigma(channel,HG,2) << " N=" << laserObject.getN(channel,HG,2) << " isSet?=" << laserObject.isSet(channel,HG,2) ); + + ATH_MSG_DEBUG("ALP CHAN=" << channel << " GAIN=LG" << " TYPE=" << laserObject.getType(channel,LG,3) << " MEAN=" << laserObject.getMean(channel,LG,3) << " SIGMA=" << laserObject.getSigma(channel,LG,3) << " N=" << laserObject.getN(channel,LG,3) << " isSet?=" << laserObject.isSet(channel,LG,3) ); + ATH_MSG_DEBUG("ALP CHAN=" << channel << " GAIN=HG" << " TYPE=" << laserObject.getType(channel,HG,3) << " MEAN=" << laserObject.getMean(channel,HG,3) << " SIGMA=" << laserObject.getSigma(channel,HG,3) << " N=" << laserObject.getN(channel,HG,3) << " isSet?=" << laserObject.isSet(channel,HG,3) ); + + ATH_MSG_DEBUG(std::hex << msb0 << " + " << lsb0 << " => " << SSQ0 << + std::dec << " >>> D" << channel << "(HG)" + << " SUMX/N=" + << sum[channel*2+0] + << " / " << nevt + << " = " + << ped[channel*2+0] + << " SUMX2/N=" + << ssq[channel*2+0] + << " / " << nevt + << " => STD=" + << std[channel*2+0]); + ATH_MSG_DEBUG(std::hex << msb1 << " + " << lsb1 << " => " << SSQ1 << + std::dec << " >>> D" << channel << "(LG)" + << " SUMX/N=" + << sum[channel*2+1] + << " / " << nevt + << " = " + << ped[channel*2+1] + << " SUMX2/N=" + << ssq[channel*2+1] + << " / " << nevt + << " => STD=" + << std[channel*2+1]); + } // IF + + ped[channel*2+0] = 8500. - ped[channel*2+0]; + ped[channel*2+1] = 8500. - ped[channel*2+1]; + } + + } else { // nevt == 0 + ATH_MSG_DEBUG("WARNING NEVT=0"); + memset(ped,0,sizeof(ped)); + memset(std,0,sizeof(std)); + } + + if (debug) { + for(int channel=0;channel<16;++channel){ + ATH_MSG_DEBUG("HG CHANNEL " << channel << ": sig=" << las[HG+channel*2] << " ped=" << ped[HG+channel*2] << "+/-" << std[HG+channel*2]); + ATH_MSG_DEBUG("LG CHANNEL " << channel << ": sig=" << las[LG+channel*2] << " ped=" << ped[LG+channel*2] << "+/-" << std[LG+channel*2]); + } + } + + } else { // short fragment + ATH_MSG_DEBUG("SHORT FRAGMENT, size=" << p[0] << " type=0x" << std::hex << p[1] << std::dec); + memset(ped,0,sizeof(ped)); + memset(std,0,sizeof(std)); + } + + // ATTENTION: note that HG has even index (0,2,4,...) in las[], ped[], std[] arrays + + // STORE PMT INFORMATION + //PMT1 + laserObject.setPmt(0,las[HG+10*2],TDC0,-99,-99,TileID::HIGHGAIN); + laserObject.setPmt(0,las[LG+10*2],TDC0,-99,-99,TileID::LOWGAIN); + //PMT2 + laserObject.setPmt(1,las[HG+14*2],TDC1,-99,-99,TileID::HIGHGAIN); + laserObject.setPmt(1,las[LG+14*2],TDC1,-99,-99,TileID::LOWGAIN); + + // STORE DIODE INFORMATION + for(int diode=0;diode<10;++diode){ + laserObject.setDiode(diode,las[HG+diode*2],-99,-99,-99,-99,0.,0.,TileID::HIGHGAIN); + laserObject.setDiode(diode,las[LG+diode*2],-99,-99,-99,-99,0.,0.,TileID::LOWGAIN); + } // FOR + laserObject.setDiode(10,las[HG+22],-99,-99,-99,-99,0.,0.,TileID::HIGHGAIN); // EXTERNAL CIS 0 HG + laserObject.setDiode(10,las[LG+22],-99,-99,-99,-99,0.,0.,TileID::LOWGAIN); // EXTERNAL CIS 0 LG + laserObject.setDiode(11,las[HG+24],-99,-99,-99,-99,0.,0.,TileID::HIGHGAIN); // INTERNAL CIS HG + laserObject.setDiode(11,las[LG+24],-99,-99,-99,-99,0.,0.,TileID::LOWGAIN); // INTERNAL CIS LG + laserObject.setDiode(12,las[HG+26],-99,-99,-99,-99,0.,0.,TileID::HIGHGAIN); // PHOTODIODE PHOCAL HG + laserObject.setDiode(12,las[LG+26],-99,-99,-99,-99,0.,0.,TileID::LOWGAIN); // PHOTODIODE PHOCAL LG + laserObject.setDiode(13,las[HG+30],-99,-99,-99,-99,0.,0.,TileID::HIGHGAIN); // EXTERNAL CIS HG + laserObject.setDiode(13,las[LG+30],-99,-99,-99,-99,0.,0.,TileID::LOWGAIN); // EXTERNAL CIS LG + +} // unpack_frag17 + void TileROD_Decoder::unpack_brod(uint32_t /* version */, const uint32_t* p, - pBeamVec & pBeam) const { + pBeamVec & pBeam) const { // first word is frag size int count = *(p); // second word is frag ID and frag type int frag = *(p + 1) & 0xFFFF; - + p += 2; // 2 words so far int datasize = count - m_sizeOverhead; // can be 2 or 3 words less - + if (msgLvl(MSG::VERBOSE)) { msg(MSG::VERBOSE) << "Unpacking Beam Elements, ID=0x" << MSG::hex << frag - << ", size=" << MSG::dec << datasize; + << ", size=" << MSG::dec << datasize; for (int ch = 0; ch < datasize; ++ch) { if (0 == ch % 8) msg(MSG::VERBOSE) << endmsg; msg(MSG::VERBOSE) << p[ch] << " "; } msg(MSG::VERBOSE) << endmsg; } - + if (datasize <= 0) return; - + frag &= 0xff; // reset upper byte, because it's different in 2003 and 2004 HWIdentifier drawerID = m_tileHWID->drawer_id(frag); TileBeamElem* rc; - + switch (frag) { - - /* ************************************************************************************* */ - /* LeCroy 1176 16bit 1ns TDC FRAG in Tile Beam crate or in Common Beam crate */ + + /* ************************************************************************************* */ + /* LeCroy 1176 16bit 1ns TDC FRAG in Tile Beam crate or in Common Beam crate */ case BEAM_TDC_FRAG: case COMMON_TDC1_FRAG: case COMMON_TDC2_FRAG: { - + uint32_t prev = 0xFF; std::vector<uint32_t> adc; for (int c = 0; c < datasize; ++c) { @@ -2223,11 +2431,11 @@ void TileROD_Decoder::unpack_brod(uint32_t /* version */, const uint32_t* p, } } break; - + /* ************************************************************************************* */ /* CAEN V775 12 bit TDC (1count=35psec) in common beam crate */ case COMMON_TOF_FRAG: { - + uint32_t prev = 0xFF; std::vector<uint32_t> adc; for (int c = 0; c < datasize; ++c) { @@ -2253,21 +2461,21 @@ void TileROD_Decoder::unpack_brod(uint32_t /* version */, const uint32_t* p, } } break; - + /* ************************************************************************************* */ /* ADDERS FRAG */ case ADD_FADC_FRAG: { - + uint32_t val, channel[16][16]; int nmodule = 4, nchan, nsamp, ch; - + nchan = nmodule * 4; nsamp = datasize / nmodule; - + ATH_MSG_VERBOSE( " Adders: nmod=" << nmodule << ", nchan=" << nchan << ", nsamp=" << nsamp ); - + if (nmodule * nsamp == datasize) { /* Unpack DATA */ for (int m = 0; m < nmodule; ++m) { @@ -2298,13 +2506,17 @@ void TileROD_Decoder::unpack_brod(uint32_t /* version */, const uint32_t* p, } } break; - + #ifndef LASER_OBJ_FRAG #define LASER_OBJ_FRAG 0x016 #endif - - case LASER_OBJ_FRAG: { - +#ifndef LASER2_OBJ_FRAG +#define LASER2_OBJ_FRAG 0x017 +#endif + + case LASER_OBJ_FRAG: + case LASER2_OBJ_FRAG: { + std::vector<uint32_t> digits; for (int ch = 0; ch < datasize; ++ch) { digits.push_back((*p)); @@ -2315,11 +2527,11 @@ void TileROD_Decoder::unpack_brod(uint32_t /* version */, const uint32_t* p, pBeam.push_back(rc); } break; - + /* ************************************************************************************* */ /* OTHER FRAGS: ONE WORD = ONE CHANNEL */ default: { - + int chmax = (datasize > 16) ? 15 : datasize; for (int ch = 0; ch < chmax; ++ch) { HWIdentifier adcID = m_tileHWID->adc_id(drawerID, ch, 0); @@ -2338,90 +2550,91 @@ void TileROD_Decoder::unpack_brod(uint32_t /* version */, const uint32_t* p, pBeam.push_back(rc); } } - break; + break; } - + return; } StatusCode TileROD_Decoder::convert(const RawEvent* re, TileL2Container* L2Cnt) { - + ATH_MSG_DEBUG( "Reading L2 data from ByteStream" ); - + if (!re) { ATH_MSG_FATAL( "RawEvent passed to 'convert'-function is a null pointer!" ); return StatusCode::FAILURE; } - + //bool eValid = re->check_tree(); //if (! eValid) return StatusCode::FAILURE; - - // const VDETF& vdetf = re->compounds(); //Get subdetector fragements from the raw event. + + // const VDETF& vdetf = re->compounds(); //Get subdetector fragements from the raw event. uint32_t total_sub = re->nchildren(); - + if (msgLvl(MSG::VERBOSE)) { msg(MSG::VERBOSE) << "Full Event: " << endmsg; msg(MSG::VERBOSE) << MSG::hex << "Full source ID: " << re->source_id() - << MSG::dec << endmsg; + << MSG::dec << endmsg; msg(MSG::VERBOSE) << "Fragment size in words: " << re->fragment_size_word() << endmsg; msg(MSG::VERBOSE)<< "# of rob frags: " << total_sub << endmsg; } - + for (uint32_t i_rob = 0; i_rob < total_sub; ++i_rob) { const uint32_t* p_rob; re->child(p_rob, i_rob); const eformat::ROBFragment<const uint32_t*> robFrag(p_rob); - + eformat::helper::SourceIdentifier id = eformat::helper::SourceIdentifier(robFrag.source_id()); unsigned int subDetId = id.subdetector_id(); - + if (subDetId >= 0x50 && subDetId < 0x60) { //Select Tile-Subdetectors fillCollectionL2(&robFrag, *L2Cnt); } } - + // Debug - + if (msgLvl(MSG::VERBOSE)) { msg(MSG::VERBOSE) << "convertL2: " << L2Cnt->size() - << " TileL2 objects created" << endmsg; + << " TileL2 objects created" << endmsg; TileL2Container::const_iterator ind = L2Cnt->begin(); TileL2Container::const_iterator last = L2Cnt->end(); - + int num = 0; for (; ind != last; ++ind) { msg(MSG::VERBOSE) << "Ind " << num++ << " " << (std::string) (*(*ind)) << endmsg; } } - + return StatusCode::SUCCESS; } void TileROD_Decoder::fillCollectionL2(const ROBData * rob, TileL2Container & v) { uint32_t version = rob->rod_version() & 0xFF; - + uint32_t wc = 0; uint32_t size = data_size(rob); - const uint32_t * p; - rob->rod_data(p); + const uint32_t * p = get_data(rob); int fragmin = 0xFFF, fragmax = -1; - + int counter = 0; - - bool V3format = (*(p) == 0xff1234ff); // additional frag marker since Sep 2005 - if (V3format) ++p; // skip frag marker - + + if (size) { + bool V3format = (*(p) == 0xff1234ff); // additional frag marker since Sep 2005 + if (V3format) ++p; // skip frag marker + } + while (wc < size) { // iterator over all words in a ROD - + // first word is frag size uint32_t count = *(p); // second word is frag ID and frag type int frag = *(p + 1) & 0xFFFF; if (frag < fragmin) fragmin = frag; if (frag > fragmax) fragmax = frag; - + int type = (*(p + 1) >> 16) & 0xFF; - + if (count < m_sizeOverhead || count > size - wc) { int cnt = 0; for (; wc < size; ++wc, ++cnt, ++p) { @@ -2434,7 +2647,7 @@ void TileROD_Decoder::fillCollectionL2(const ROBData * rob, TileL2Container & v) } if ((m_ErrorCounter++) < m_maxErrorPrint) { msg(MSG::ERROR) << "Frag " << MSG::hex << "0x" << frag - << MSG::dec << " has unexpected size: " << count; + << MSG::dec << " has unexpected size: " << count; if (wc < size) { msg(MSG::ERROR) << " skipping " << cnt << " words to the next frag" << endmsg; } else { @@ -2443,25 +2656,25 @@ void TileROD_Decoder::fillCollectionL2(const ROBData * rob, TileL2Container & v) } continue; } - + if (type == 4) { // frag4 which contains sum Et at the end - + if (unpack_frag4L2(version, p, v)) { counter++; } - + } else if (type == 5 && m_useFrag5Reco) { // new fragment which contains sum Et - + if (unpack_frag5L2(version, p, v)) { counter++; } - + } else if ((type >> 4) == 1) { // all frags 0x10-0x15 are MET or MTag frags - + counter++; - + switch (type) { - + case 0x10: unpack_frag10(version, p, v); break; @@ -2480,7 +2693,7 @@ void TileROD_Decoder::fillCollectionL2(const ROBData * rob, TileL2Container & v) case 0x15: unpack_frag15(version, p, v); break; - + default: int frag = *(p + 1) & 0xFFFF; ATH_MSG_ERROR( "Unknown frag type=" << type << " for frag=" << frag ); @@ -2488,11 +2701,11 @@ void TileROD_Decoder::fillCollectionL2(const ROBData * rob, TileL2Container & v) break; } } - + p += count; wc += count; } - + if (wc != size) { // check word count if ((m_ErrorCounter++) < m_maxErrorPrint) { @@ -2501,21 +2714,20 @@ void TileROD_Decoder::fillCollectionL2(const ROBData * rob, TileL2Container & v) assert(0); // return; } - + if (m_rChUnit < TileRawChannelUnit::OnlineOffset && counter == 0 && m_L2Builder) { if (m_L2Builder->process(fragmin, fragmax, &v).isFailure()) { ATH_MSG_ERROR( "Failure in " << m_L2Builder ); return; } } - + return; } void TileROD_Decoder::fillCollectionL2ROS(const ROBData * rob, TileL2Container & v) { uint32_t size = data_size(rob); - const uint32_t * p; - rob->rod_data(p); + const uint32_t * p = get_data(rob); const uint32_t m_ROB_to_decode = ((*p) & 0xFFFF); // Multiply by two const uint32_t m_virtualROBJump = ((*p) >> 16) >> 2; // Divide by four (four drawer-1ROB) if (size < m_ROB_to_decode * m_virtualROBJump + 1) { @@ -2525,14 +2737,14 @@ void TileROD_Decoder::fillCollectionL2ROS(const ROBData * rob, TileL2Container & return; } p++; // Jump first word - + std::vector<float> sumE(3, 0.0); uint32_t idAndType; int frag, hash, unit; - + for (size_t irob = 0; irob < m_ROB_to_decode; ++irob) { for (size_t drawInRob = 0; drawInRob < m_virtualROBJump; ++drawInRob) { - + idAndType = *(p++); frag = idAndType & 0xFFF; hash = m_hashFunc(frag); @@ -2541,82 +2753,99 @@ void TileROD_Decoder::fillCollectionL2ROS(const ROBData * rob, TileL2Container & sumE[0] = Frag5_unpack_bin2sum(unit, (int)(*(p++))); sumE[1] = Frag5_unpack_bin2sum(unit, (int)(*(p++))); sumE[2] = Frag5_unpack_bin2sum(unit, (int)(*(p++))); - + (v[hash])->setEt(sumE); } else { p += 3; } } // End of drawInRob loop } // End of rob loop - + } StatusCode TileROD_Decoder::convertLaser(const RawEvent* re, TileLaserObject* laserObject) { - + ATH_MSG_DEBUG( "Reading TileLaser data from ByteStream" ); - + if (!re) { ATH_MSG_FATAL( "RawEvent passed to 'convert'-function is a null pointer!" ); return StatusCode::FAILURE; } - + //bool eValid = re->check_tree(); //if (! eValid) return StatusCode::FAILURE; - + // const VDETF& vdetf = re->compounds(); //Get subdetector fragments from the raw event. uint32_t total_sub = re->nchildren(); - + if (msgLvl(MSG::VERBOSE)) { msg(MSG::VERBOSE) << "Full Event: " << endmsg; msg(MSG::VERBOSE) << MSG::hex << "Full source ID: " << re->source_id() << MSG::dec << endmsg; msg(MSG::VERBOSE) << "Fragment size in words: " << re->fragment_size_word() << endmsg; msg(MSG::VERBOSE) << "# of rob frags: " << total_sub << endmsg; } - + for (uint32_t i_rob = 0; i_rob < total_sub; ++i_rob) { const uint32_t* p_rob; re->child(p_rob, i_rob); const eformat::ROBFragment<const uint32_t*> robFrag(p_rob); - + eformat::helper::SourceIdentifier id = eformat::helper::SourceIdentifier( - robFrag.rod_source_id()); + robFrag.rod_source_id()); unsigned int subDetId = id.subdetector_id(); - + if (subDetId >= 0x50 && subDetId < 0x60) { //Select Tile-Subdetectors fillTileLaserObj(&robFrag, *laserObject); } } - + return StatusCode::SUCCESS; } // end of convertLaser() void TileROD_Decoder::fillTileLaserObj(const ROBData * rob, TileLaserObject & v) { // v.setBCID(-999); // TileLaserObject default tag -> Laser only if BCID != -999 - + uint32_t version = rob->rod_version() & 0xFF; - -// ATH_MSG_VERBOSE(" Version = " << version ); - + uint32_t wc = 0; uint32_t size = data_size(rob); - const uint32_t * p; - rob->rod_data(p); + const uint32_t * p = get_data(rob); + + ATH_MSG_DEBUG(" Version = " << version << + " wc = " << wc << + " size = " << size << + " pointer = " << p ); + if (!size) { + ATH_MSG_DEBUG(" Nothing to unpack"); + return; + } + bool V3format = (*(p) == 0xff1234ff); // additional frag marker since Sep 2005 - if (V3format) ++p; // skip frag marker - + if (V3format) { + ++p; // skip frag marker + m_sizeOverhead = 3; + } else { + m_sizeOverhead = 2; + } + + if(V3format) ATH_MSG_DEBUG("tile flag found! size overhead = " << m_sizeOverhead); + else ATH_MSG_DEBUG("tile flag not found! size overhead = " << m_sizeOverhead); + while (wc < size) { // iterator over all words in a ROD - // first word is frag size uint32_t count = *(p); // second word is frag ID and frag type int frag = *(p + 1) & 0xFFFF; int type = *(p + 1) >> 16; - + + msg(MSG::DEBUG) << wc << " / " << size << " HEX = 0x" << std::hex << count << " DEC = " << std::dec << count << " ( FRAG , TYPE ) = " << frag << " , " << type << endmsg; + if (count < m_sizeOverhead || count > size - wc) { int cnt = 0; for (; wc < size; ++wc, ++cnt, ++p) { if ((*p) == 0xff1234ff) { + msg(MSG::DEBUG) << "DATA POINTER: HEX = " << std::hex << (*p) << " DEC = " << std::dec << (*p) << endmsg; ++cnt; ++wc; ++p; @@ -2625,7 +2854,7 @@ void TileROD_Decoder::fillTileLaserObj(const ROBData * rob, TileLaserObject & v) } if ((m_ErrorCounter++) < m_maxErrorPrint) { msg(MSG::ERROR) << "Frag: " << MSG::hex << "0x" << frag << MSG::dec - << " has unexpected size: " << count; + << " has unexpected size: " << count; if (wc < size) { msg(MSG::ERROR) << " skiping " << cnt << " words to the next frag" << endmsg; } else { @@ -2634,21 +2863,36 @@ void TileROD_Decoder::fillTileLaserObj(const ROBData * rob, TileLaserObject & v) } continue; } - - if (frag == 0x16 && type == 0x20) { - + + ATH_MSG_DEBUG( "DECODER" << " " << "FRAG=" << frag << " TYPE=" << type << " SIZE=" << size << " FOUND!" ); + + if (frag == 0x16 && type == 0x20){ + const int LASTROD_BCID = rob->rod_bc_id(); -// ATH_MSG_VERBOSE( "LASER EVENT BCID = " << LASTROD_BCID ); - v.setBCID(LASTROD_BCID); - - unpack_frag16(version, p, v); + + if (size>29){ + ATH_MSG_DEBUG("UNPACKING FRAG16"); + unpack_frag16(version, p, v); + } else if (size>24) { + ATH_MSG_DEBUG("UNPACKING NEW FRAG16"); + unpack_frag17(version, p, v); + } } - + + if (frag == 0x17 && type == 0x20){ + + const int LASTROD_BCID = rob->rod_bc_id(); + v.setBCID(LASTROD_BCID); + + ATH_MSG_DEBUG("UNPACKING FRAG17"); + unpack_frag17(version, p, v); + } // IF + p += count; wc += count; } - + if (wc != size) { // check word count if ((m_ErrorCounter++) < m_maxErrorPrint) { @@ -2663,30 +2907,31 @@ void TileROD_Decoder::fillCollectionHLT(const ROBData * rob, TileCellCollection uint32_t version = rob->rod_version() & 0xFF; // Resets error flag m_error = 0x0; - + // figure out which fragment we want to unpack TileRawChannelCollection::ID frag_id = v.identify(); - + /* if (frag_id < 0x100) { // BEAM ROD frag - nothing to do m_error|=0x10000; return; } */ - + uint32_t wc = 0; uint32_t size = data_size(rob); - const uint32_t * p; - rob->rod_data(p); + const uint32_t * p = get_data(rob); // prepare bcid with one extra bit set for comparison with bcid in DQ fragment uint16_t rob_bcid = ((rob->rod_bc_id() & 0x7FFF) | 0x8000); - - bool V3format = (*(p) == 0xff1234ff); // additional frag marker since Sep 2005 - if (V3format) { - ++p; // skip frag marker - m_sizeOverhead = 3; - } else { - m_sizeOverhead = 2; + + if (size) { + bool V3format = (*(p) == 0xff1234ff); // additional frag marker since Sep 2005 + if (V3format) { + ++p; // skip frag marker + m_sizeOverhead = 3; + } else { + m_sizeOverhead = 2; + } } uint16_t DQuality = 0x0; bool fragFound = false; @@ -2697,16 +2942,16 @@ void TileROD_Decoder::fillCollectionHLT(const ROBData * rob, TileCellCollection masked_drawer = true; break; } - + while (wc < size) { // iterator over all words in a ROD - + // first word is frag size uint32_t count = *(p); // second word is frag ID (16 bits) frag type (8 bits) and additional flags uint32_t idAndType = *(p + 1); int frag = (idAndType & 0xFFFF); int type = (idAndType & 0xFF0000) >> 16; - + if (count < m_sizeOverhead || count > size - wc) { int cnt = 0; for (; wc < size; ++wc, ++cnt, ++p) { @@ -2719,7 +2964,7 @@ void TileROD_Decoder::fillCollectionHLT(const ROBData * rob, TileCellCollection } if ((m_ErrorCounter++) < m_maxErrorPrint) { msg(MSG::ERROR) << "Frag: " << MSG::hex << "0x" << frag << MSG::dec - << " has unexpected size: " << count; + << " has unexpected size: " << count; if (wc < size) { msg(MSG::ERROR) << " skipping " << cnt << " words to the next frag" << endmsg; } else { @@ -2729,10 +2974,10 @@ void TileROD_Decoder::fillCollectionHLT(const ROBData * rob, TileCellCollection m_error |= 0x10000; continue; } - + //if (frag == frag_id && ((type > 1 && type < 6) || type==0xa)) { // proper fragment found - unpack it if (frag == frag_id) { // proper fragment found - unpack it - + switch (type) { case 2: fragFound = true; @@ -2751,44 +2996,44 @@ void TileROD_Decoder::fillCollectionHLT(const ROBData * rob, TileCellCollection fragFound = true; int unit = (idAndType & 0xC0000000) >> 30; m_rc2bytes4.setUnit(unit); - + int DataType = (idAndType & 0x30000000) >> 28; - + if (DataType < 3) { // real data - + int nIter = (idAndType & 0x3000000) >> 24; m_correctAmplitude = (!nIter); // automatic detection of nIter m_rChUnit = (TileRawChannelUnit::UNIT) (unit + TileRawChannelUnit::OnlineOffset); // Online units in real data - + } else { // simulated data - + DQfragMissing = false; m_correctAmplitude = false; m_rChUnit = (TileRawChannelUnit::UNIT) (unit); // Offline units in simulated data } - + unpack_frag4HLT(version, p, m_pRwChVec); } break; - + case 5: if (!fragFound) { fragFound = true; int unit = (idAndType & 0xC0000000) >> 30; m_rc2bytes5.setUnit(unit); - + m_correctAmplitude = true; // fragment 5 will appear only if there is no iterations, so correction required m_rChUnit = (TileRawChannelUnit::UNIT) (unit + TileRawChannelUnit::OnlineOffset); - + unpack_frag5HLT(version, p, m_pRwChVec); } break; - + case 0xa: DQfragMissing = false; unpack_fragAHLT(version, p, rob_bcid, DQuality); break; - + default: // Just ignore it break; @@ -2797,27 +3042,27 @@ void TileROD_Decoder::fillCollectionHLT(const ROBData * rob, TileCellCollection p += count; wc += count; } - + if (DQfragMissing && !masked_drawer) m_error |= 0x40000; - + if (fragFound) { if (masked_drawer) DQuality = 0x0; make_copyHLT(m_pRwChVec, v, DQuality); } else if (!masked_drawer) m_error |= 0x20000; - + return; } void TileROD_Decoder::make_copyHLT(pFRwChVec & pChannel, TileCellCollection & v, - const uint16_t DQuality) { + const uint16_t DQuality) { typedef pFRwChVec::iterator ITERATOR; // int gain = 0; float ener, time, qual = 0; TileCell* pCell; m_cell2Double.clear(); - + if (DQuality == 0xffff) m_error |= 0x80000; - + TileRawChannelCollection::ID frag_id = (v.identify() & 0x0FFF); int ros = (frag_id >> 8); int drawer = (frag_id & 0x3F); @@ -2825,11 +3070,11 @@ void TileROD_Decoder::make_copyHLT(pFRwChVec & pChannel, TileCellCollection & v, unsigned int channelIdx; unsigned int adcIdx; bool recalibrate = (m_rChUnit != TileRawChannelUnit::OnlineMegaElectronVolts && m_rChUnit != TileRawChannelUnit::MegaElectronVolts); - + int sec = ros - 1; // 0-3 for barrel +/- and EB +/- - + if (pChannel.size() > 0) { // convert raw channels to cells - + // Zero all cell energies for (unsigned int cell = 0; cell < v.size(); ++cell) { ((TileCell*) v[cell])->setEnergy_nonvirt(0.0F, 0.0F, 0, CaloGain::INVALIDGAIN); @@ -2838,10 +3083,10 @@ void TileROD_Decoder::make_copyHLT(pFRwChVec & pChannel, TileCellCollection & v, ((TileCell*) v[cell])->setQuality_nonvirt(static_cast<unsigned char>(255), 0, 1); } int idxraw = drawer * 48; - + ITERATOR rawItr = pChannel.begin(); ITERATOR end = pChannel.end(); - + if (sec < 2) { // special treatment of first PMT in pos/neg barrel which belongs to D0 cell idxraw = 0; channelIdx = (*rawItr)->channel(); @@ -2849,7 +3094,7 @@ void TileROD_Decoder::make_copyHLT(pFRwChVec & pChannel, TileCellCollection & v, if (DQuality) { if (DQuality >> (channelIdx / 3) & 0x1) no_dmu_mask = false; } - + adcIdx = (*rawItr)->adc(); qual = (*rawItr)->quality(); bool do_mask = false; @@ -2860,21 +3105,21 @@ void TileROD_Decoder::make_copyHLT(pFRwChVec & pChannel, TileCellCollection & v, // but this means that we can end up with different units (online or offline) if (recalibrate && ener!=0.0F) { ener = m_tileToolEmscale->channelCalib(drawerIdx, channelIdx, adcIdx, ener, m_rChUnit, - TileRawChannelUnit::MegaElectronVolts); + TileRawChannelUnit::MegaElectronVolts); } // parabolic correction for good but slightly out-of-time signals if (m_correctAmplitude && ener > m_ampMinThresh_MeV && time > m_timeMinThresh && time < m_timeMaxThresh) ener *= TileRawChannelBuilder::correctAmp(time); - + } else { // ignore energy from bad channel ener = 0.0F; time = 0.0F; do_mask = true; } - + if (sec > 0) { // sec=1 - negative m_D0channeg[drawer].set(channelIdx, adcIdx, ener, time, qual); m_D0Existneg[drawer] = true; @@ -2887,9 +3132,9 @@ void TileROD_Decoder::make_copyHLT(pFRwChVec & pChannel, TileCellCollection & v, ++rawItr; // done with first channel in barrel, go to second ++idxraw; } - - int MBTS_chan=((m_MBTS != NULL)?-1:43); - + + int MBTS_chan=((ros>2)?-1:43); + for (; rawItr != end; ++rawItr) { TileFastRawChannel* rawPtr = *rawItr; const int rw2cell = m_Rw2Cell[sec][idxraw]; @@ -2905,30 +3150,30 @@ void TileROD_Decoder::make_copyHLT(pFRwChVec & pChannel, TileCellCollection & v, qual = rawPtr->quality(); time = 0.0F; if (no_dmu_mask && (qual < QUALITY_THRESHOLD)) { - // gain = adcIdx; + // gain = adcIdx; ener = rawPtr->amplitude(); time = rawPtr->time(); // FIXME:: To speed up HLT processing we keep OnlineMegaElectronVolts // but this means that we can end up with different units (online or offline) if (recalibrate && ener!=0.0F) { ener = m_tileToolEmscale->channelCalib(drawerIdx, channelIdx, adcIdx, ener, m_rChUnit, - TileRawChannelUnit::MegaElectronVolts); + TileRawChannelUnit::MegaElectronVolts); } // parabolic correction for good but slightly out-of-time signals if (m_correctAmplitude && ener > m_ampMinThresh_MeV && time > m_timeMinThresh && time < m_timeMaxThresh) ener *= TileRawChannelBuilder::correctAmp(time); - + if (pCell->time() != -100.0F) pCell->setTime(time, m_Rw2Pmt[sec][idxraw]); else pCell->setTime_nonvirt(time); - + pCell->setQuality_nonvirt(std::min(255, abs((int) qual)), 0, m_Rw2Pmt[sec][idxraw]); pCell->addEnergy(ener, m_Rw2Pmt[sec][idxraw], adcIdx); - + if (pCell->caloDDE()->onl2() == TileHWID::NOT_VALID_HASH) pCell->setQuality_nonvirt(0, 0, 1); - + } else if (pCell->caloDDE()->onl2() != TileHWID::NOT_VALID_HASH) { pCell->addEnergy(0.0F, m_Rw2Pmt[sec][idxraw], 0U); pCell->setQuality_nonvirt((unsigned char) 255, 0, m_Rw2Pmt[sec][idxraw]); @@ -2937,12 +3182,17 @@ void TileROD_Decoder::make_copyHLT(pFRwChVec & pChannel, TileCellCollection & v, // (pCell)->setEnergy_nonvirt(0.0F, 0.0F, 0, CaloGain::INVALIDGAIN); pCell->setTime_nonvirt(0.0F); pCell->setQuality_nonvirt(static_cast<unsigned char>(qual), 0, 1); - } + } } else if (MBTS_chan<0) MBTS_chan=rawPtr->channel();// end of if ++idxraw; //if ( DQuality ) idxraw1++; } // End of for TileRawChannel - + + if (MBTS_chan==4) { // assign zero energy and high gain to second PMT in special C10 + pCell = v[m_Rw2Cell[sec][5]]; // find cell with channel 5 connected + pCell->addEnergy(0., 1-m_Rw2Pmt[sec][5], 1); + } + if (m_MBTS != NULL) { unsigned int idx = m_mapMBTS[frag_id]; if (idx < (*m_MBTS).size()) { // MBTS present (always last channel) @@ -2975,105 +3225,100 @@ void TileROD_Decoder::make_copyHLT(pFRwChVec & pChannel, TileCellCollection & v, pCell->setTime_nonvirt(time); pCell->setQuality_nonvirt(std::min(255, abs((int) qual)), 0, 0); } // End of if idx - - if (MBTS_chan==4) { // assign zero energy and high gain to second PMT in special C10 - pCell = v[m_Rw2Cell[sec][5]]; // find cell with channel 5 connected - pCell->addEnergy(0., 1-m_Rw2Pmt[sec][5], 1); - } + } // End of if m_MBTS - + } // end of if vec<TileRawChannel>::size > 0) - + for (std::vector<TileCell*>::const_iterator d_it = m_cell2Double.begin(); - d_it != m_cell2Double.end(); ++d_it) { - -// int gain = 0; -// if ((*d_it)->gain1() == 1 || (*d_it)->gain2() == 1) gain = 1; + d_it != m_cell2Double.end(); ++d_it) { + + // int gain = 0; + // if ((*d_it)->gain1() == 1 || (*d_it)->gain2() == 1) gain = 1; int gain = (*d_it)->gain1() | (*d_it)->gain2(); int qual = (*d_it)->qual1() & (*d_it)->qual2(); - + (*d_it)->setEnergy_nonvirt((*d_it)->e(), (*d_it)->e(), gain, gain); (*d_it)->setQuality_nonvirt(static_cast<unsigned char>(qual), 0, 0); (*d_it)->setQuality_nonvirt(static_cast<unsigned char>(qual), 0, 1); if ((*d_it)->time() == -100.0F) (*d_it)->setTime_nonvirt(0.0F); } - + } void TileROD_Decoder::unpack_frag2HLT(uint32_t /* version */, const uint32_t* p, - pFRwChVec & pChannel) const { + pFRwChVec & pChannel) const { // first word is frag size int count = *(p); - + p += 2; // 2 words so far int wc = m_sizeOverhead; // can be 2 or 3 words - + for (unsigned int ch = 0; ch < 48U; ++ch) { unsigned int w = (*p); - + if (w != 0) { // skip invalid channels - + pChannel[ch]->set(ch , m_rc2bytes2.gain(w) , m_rc2bytes2.amplitude(w) , m_rc2bytes2.time(w) , m_rc2bytes2.quality(w)); - + } else { pChannel[ch]->set(ch, 1U, 0.0F, 0.0F, 0.0F); } ++wc; ++p; } - + if (wc != count) { // check word count ATH_MSG_ERROR("Incorrect word count: " << wc << " != " << count ); assert(0); // return; } - + return; } void TileROD_Decoder::unpack_frag3HLT(uint32_t /* version */, const uint32_t* p, - pFRwChVec & pChannel) const { + pFRwChVec & pChannel) const { // first word is frag size int count = *(p); // second word is frag ID and frag type - -// ATH_MSG_VERBOSE( "first 4 words " << MSG::hex -// << " 0x" << *p -// << " 0x" << *(p+1) -// << " 0x" << *(p+2) -// << " 0x" << *(p+3) << MSG::dec ); - - // followed by 2 map words + + // ATH_MSG_VERBOSE( "first 4 words " << MSG::hex + // << " 0x" << *p + // << " 0x" << *(p+1) + // << " 0x" << *(p+2) + // << " 0x" << *(p+3) << MSG::dec ); + + // followed by 2 map words const uint32_t* pMap = p + 2; - - const short& sh = *p; - const short* p16 = &sh; - + + const short* p16 = (const short *)p; + p16 = p16 + 8; // 8 16bit words so far short wc16 = 4 + m_sizeOverhead * 2; // can be 8 or 10 (if overhead is 3 words) - + for (unsigned int ch = 0U; ch < 48U; ++ch) { if (checkBit(pMap, ch)) { - + pChannel[ch]->set(ch , m_rc2bytes.gain(*p16) , m_rc2bytes.amplitude(*p16) , m_rc2bytes.time(*(p16 + 1)) , m_rc2bytes.quality(*(p16 + 2))); - -// ATH_MSG_VERBOSE(" frag 0x" << MSG::hex << frag << MSG::dec -// << " ch " << ch -// << " " << MSG::hex << "0x" << *p16 << *(p16+1) << *(p16+2) << MSG::dec -// << " " << gain -// << " " << m_rc2bytes.amplitude(*p16) -// << " " << m_rc2bytes.time(*(p16+1)) -// << " " << m_rc2bytes.quality(*(p16+2)) ); - + + // ATH_MSG_VERBOSE(" frag 0x" << MSG::hex << frag << MSG::dec + // << " ch " << ch + // << " " << MSG::hex << "0x" << *p16 << *(p16+1) << *(p16+2) << MSG::dec + // << " " << gain + // << " " << m_rc2bytes.amplitude(*p16) + // << " " << m_rc2bytes.time(*(p16+1)) + // << " " << m_rc2bytes.quality(*(p16+2)) ); + wc16 = wc16 + 3; p16 = p16 + 3; } // channel present @@ -3081,28 +3326,28 @@ void TileROD_Decoder::unpack_frag3HLT(uint32_t /* version */, const uint32_t* p, pChannel[ch]->set(ch, 1U, 0.0F, 0.0F, 0.0F); } } // all bits, done with this frag - + if (wc16 % 2 == 1) { - ++wc16; // align + ++wc16; // align ++p16; } if (wc16 != 2 * count) { - // check word count + // check word count ATH_MSG_ERROR( "unpack_frag3HLT => Incorrect wordcount: " << wc16 << " != 2*" << count ); assert(0); - // return; + // return; } - + return; } void TileROD_Decoder::unpack_frag4HLT(uint32_t /* version */, const uint32_t* p, - pFRwChVec & pChannel) const { + pFRwChVec & pChannel) const { // first word is frag size int count = *(p); // second word is frag ID and frag type - + p += 2; // 2 words so far int wc = m_sizeOverhead; // can be 2 or 3 words for (unsigned int ch = 0U; ch < 48U; ++ch) { @@ -3113,14 +3358,14 @@ void TileROD_Decoder::unpack_frag4HLT(uint32_t /* version */, const uint32_t* p, , m_rc2bytes4.amplitude(w) , m_rc2bytes4.time(w) , m_rc2bytes4.quality(w)); - + } else { pChannel[ch]->set(ch, 1U, 0.0F, 0.0F, 0.0F); } ++wc; ++p; } - + if (wc > count) { // check word count ATH_MSG_ERROR( "unpack_frag4HLT => Incorrect word count: " @@ -3128,51 +3373,51 @@ void TileROD_Decoder::unpack_frag4HLT(uint32_t /* version */, const uint32_t* p, assert(0); // return; } - + return; } void TileROD_Decoder::unpack_frag5HLT(uint32_t /* version */, const uint32_t* p, - pFRwChVec & pChannel) const { + pFRwChVec & pChannel) const { // first word is frag size int count = *(p); // second word is frag ID and frag type -// int frag = *(p + 1) & 0xFFFF; + // int frag = *(p + 1) & 0xFFFF; int size_L2 = (*(p + 1) >> (32 - 2 - 3)) & 0x7; - + p += 2; // 2 words so far int wc = m_sizeOverhead; // can be 2 or 3 words uint16_t* ptr_bad = (uint16_t*) (p + 48 + size_L2); // Reco + Size_L2 uint16_t bad_bits[3] = { ptr_bad[1], ptr_bad[0], ptr_bad[3] }; - + uint32_t code; int fmt, bad, gain(0), ene_bin(0), time_bin(0), quality; unsigned int w, unit = m_rc2bytes5.getUnit(); float ene(0.0), time(0.0); - + unsigned int ch = 0U; for (unsigned int i = 0U; i < 3U; ++i) { uint16_t bad16 = ~bad_bits[i]; // note inversion here for (unsigned int j = 0U; j < 16U; ++j) { w = (*p); - + code = w >> 24; fmt = m_rc2bytes5.FormatLookup[code]; Frag5_unpack_reco_bin(w, code, gain, ene_bin, time_bin); Frag5_unpack_bin2reco(unit, gain, ene_bin, ene, time_bin, time); //m_rc2bytes5.unpack_reco(w, fmt, gain, ene, time); - + bad = (bad16 & 0x1); bad16 >>= 1; quality = m_rc2bytes5.get_quality(bad, fmt); pChannel[ch]->set(ch, gain, ene, time, quality); - + ++ch; ++wc; ++p; } } - + if (wc > count) { // check word count ATH_MSG_ERROR( "unpack_frag5HLT => Incorrect word count: " @@ -3180,72 +3425,72 @@ void TileROD_Decoder::unpack_frag5HLT(uint32_t /* version */, const uint32_t* p, assert(0); // return; } - + return; } bool TileROD_Decoder::unpack_frag4L2(uint32_t /* version */, const uint32_t* p, - TileL2Container & pL2) const { + TileL2Container & pL2) const { // first word is frag size int size = *(p); // second word is frag ID and frag type uint32_t idAndType = *(p + 1); int frag = idAndType & 0xFFFF; int unit = (idAndType >> (32 - 2)) & 0x3; - + #ifdef DO_NOT_USE_MUON_TAG - + p += 50; // offset 50: 2 words in header and 48 channels after - + #else - + // this part should be very similar to unpack_frag4HLT - it reads amplitude from DSP - // and then uses vector of 48 amplitudes to calculate Muon tags + // and then uses vector of 48 amplitudes to calculate Muon tags // but since nobody is using Tile Muon tags in L2 trigger - // this part is not implemented - + // this part is not implemented + p+=50;// offset 50: 2 words in header and 48 channels after - + #endif - + int size_L2 = size - m_sizeOverhead - 48; if (size_L2 > 0) { - + std::vector<float> sumE; while (size_L2--) { sumE.push_back(Frag5_unpack_bin2sum(unit, (int)(*(p++)))); } (*pL2[m_hashFunc(frag)]).setEt(sumE); - + return true; - + } else { - + return false; // indicate that there is no sumEt info in the fragment } } bool TileROD_Decoder::unpack_frag5L2(uint32_t /* version */, const uint32_t* p, - TileL2Container & pL2) const { + TileL2Container & pL2) const { // second word is frag ID and frag type uint32_t idAndType = *(p + 1); int frag = idAndType & 0xFFFF; int unit = (idAndType >> (32 - 2)) & 0x3; int size_L2 = (idAndType >> (32 - 2 - 3)) & 0x7; - + #ifdef DO_NOT_USE_MUON_TAG - + p += 50; // offset 50: 2 words in header and 48 channels after - + #else - + // this part is very similar to unpack_frag5HLT - it reads amplitude from DSP - // and then uses vector of 48 amplitudes to calculate Muon tags - // all this is written only for tests and will not be used actually, + // and then uses vector of 48 amplitudes to calculate Muon tags + // all this is written only for tests and will not be used actually, // since nobody is using Tile Muon tags in L2 trigger - + p+=2;// 2 words so far - + int drawer = (frag & 0x3F); int ros = (frag >> 8); int drawerIdx = TileCalibUtils::getDrawerIdx(ros,drawer); @@ -3254,46 +3499,46 @@ bool TileROD_Decoder::unpack_frag5L2(uint32_t /* version */, const uint32_t* p, float E_MeV[48]; int Gain[48]; bool bad[48]; - + uint16_t* ptr_bad = (uint16_t*)(p + 48 + size_L2);// Reco + Size_L2 uint16_t bad_bits[3] = {ptr_bad[1], ptr_bad[0], ptr_bad[3]}; - + uint32_t code; int fmt, gain(0), ene_bin(0), time_bin(0); unsigned int w; float ene(0.0), time(0.0); - + int ch = 0; for (int i = 0; i < 3; ++i) { uint16_t bad16 = ~bad_bits[i]; // note inversion here for (int j = 0; j < 16; ++j) { w = (*p); - + code = w >> 24; fmt = m_rc2bytes5.FormatLookup[code]; Frag5_unpack_reco_bin(w, code, gain, ene_bin, time_bin); Frag5_unpack_bin2reco(unit, gain, ene_bin, ene, time_bin, time); //m_rc2bytes5.unpack_reco(w, fmt, gain, ene, time); - + bad[ch] = (bad16 & 0x1); bad16 >>= 1; Gain[ch] = gain; if (recalibrate) - E_MeV[ch] = m_tileToolEmscale->channelCalib(drawerIdx, ch, gain, ene, onlUnit, TileRawChannelUnit::MegaElectronVolts); + E_MeV[ch] = m_tileToolEmscale->channelCalib(drawerIdx, ch, gain, ene, onlUnit, TileRawChannelUnit::MegaElectronVolts); else - E_MeV[ch] = ene; - + E_MeV[ch] = ene; + ++ch; ++p; } } - + std::vector<double> EtaMuons; std::vector<double> EMuons0; std::vector<double> EMuons1; std::vector<double> EMuons2; std::vector<unsigned int> qf; std::vector<unsigned int> word; - + switch (ros) { case TileHWID::BARREL_POS: m_L2Builder->MTagLB(ros,drawer,E_MeV,Gain,bad,EtaMuons,EMuons0,EMuons1,EMuons2,qf,word); break; case TileHWID::BARREL_NEG: m_L2Builder->MTagLB(ros,drawer,E_MeV,Gain,bad,EtaMuons,EMuons0,EMuons1,EMuons2,qf,word); break; @@ -3301,23 +3546,23 @@ bool TileROD_Decoder::unpack_frag5L2(uint32_t /* version */, const uint32_t* p, case TileHWID::EXTBAR_NEG: m_L2Builder->MTagEB(ros,drawer,E_MeV,Gain,bad,EtaMuons,EMuons0,EMuons1,EMuons2,qf,word); break; default: ATH_MSG_ERROR( "unpack_frag5L2: incorrect ros value: " << ros ); } - + (*pL2[m_hashFunc(frag)]).setMu(EtaMuons, EMuons0, EMuons1, EMuons2, qf, word); - + #endif - + if (size_L2 > 0) { - + std::vector<float> sumE; while (size_L2--) { sumE.push_back(Frag5_unpack_bin2sum(unit, (int)(*(p++)))); } (*pL2[m_hashFunc(frag)]).setEt(sumE); - + return true; - + } else { - + return false; // indicate that there is no sumEt info in the fragment } } @@ -3332,7 +3577,7 @@ void TileROD_Decoder::initD0cellsHLT() { } void TileROD_Decoder::mergeD0cellsHLT(TileCellCollection & v) { - + TileRawChannelCollection::ID frag_id = (v.identify() & 0x0FFF); int ros = (frag_id >> 8); if (ros == 1) { @@ -3369,7 +3614,7 @@ void TileROD_Decoder::mergeD0cellsHLT(TileCellCollection & v) { } void TileROD_Decoder::loadMBTS_Ptr(TileCellCollection* col, - std::map<unsigned int, unsigned int>& mapMBTS, int MBTS_channel) { + std::map<unsigned int, unsigned int>& mapMBTS, int MBTS_channel) { m_MBTS = col; m_mapMBTS = mapMBTS; m_MBTS_channel = MBTS_channel; @@ -3378,24 +3623,24 @@ void TileROD_Decoder::loadMBTS_Ptr(TileCellCollection* col, void TileROD_Decoder::initHid2re() { if (m_hid2re) return; - + m_hid2re = new TileHid2RESrcID(); m_hid2re->setTileHWID(m_tileHWID); - + // Check whether we want to overwrite default ROB IDs - + IProperty* propertyServer(0); if (serviceLocator()->service("ByteStreamCnvSvc", propertyServer).isSuccess()) { - + std::vector<std::string> vecProp; StringArrayProperty vecProperty("ROD2ROBmap", vecProp); - + if (propertyServer->getProperty(&vecProperty).isSuccess()) { - + if (vecProperty.value().size() % 2 == 1) { ATH_MSG_DEBUG( "Length of ROD2ROBmap is and odd value, " - << " means that we'll scan event for all fragments to create proper map" ); - + << " means that we'll scan event for all fragments to create proper map" ); + IROBDataProviderSvc* robSvc; if (service("ROBDataProviderSvc", robSvc).isSuccess()) { const eformat::FullEventFragment<const uint32_t*> * event = robSvc->getEvent(); @@ -3421,31 +3666,31 @@ uint32_t* TileROD_Decoder::getOFW(int fragId, int unit) { << " => assume unit=" << (unit & 3) ); unit &= 3; } - + uint32_t drawerIdx = TileCalibUtils::getDrawerIdxFromFragId(fragId); size_t id = (drawerIdx << 2 | unit); std::vector<uint32_t>* ofw = m_OFWeights[id]; - + if (ofw == NULL) { ATH_MSG_DEBUG("getOFC fragId: 0x" << MSG::hex << fragId << MSG::dec << " Unit: " << unit); TileRawChannelUnit::UNIT chan_unit = (TileRawChannelUnit::UNIT) (unit - + TileRawChannelUnit::OnlineOffset); - + + TileRawChannelUnit::OnlineOffset); + ofw = m_OFWeights[id] = new std::vector<uint32_t>; - + bool of2 = true; const TileOfcWeightsStruct* weights; std::vector<double> a(7), b(7), c(7), g(7), dg(7); - + for (int ch = 0; ch < 48; ++ch) { for (int gain = 0; gain < 2; ++gain) { float phase = -m_tileToolTiming->getSignalPhase(drawerIdx, ch, gain); weights = m_tileCondToolOfcCool->getOfcWeights(drawerIdx, ch, gain, phase, of2); - + double calib = m_tileToolEmscale->channelCalibOnl(drawerIdx, ch, gain, 1.0, chan_unit); - + if (unit != 0 && gain) calib *= 64.0; - + for (int i = 0; i < 7; ++i) { a[i] = weights->w_a[i]; b[i] = weights->w_b[i]; @@ -3454,7 +3699,7 @@ uint32_t* TileROD_Decoder::getOFW(int fragId, int unit) { dg[i] = weights->dg[i]; } Format6(a, b, c, g, dg - , ch // channel + , ch // channel , 0 // phase = 0 poskol'ku ne ponyal kak okruglyat' , calib // calibration , *ofw @@ -3463,6 +3708,6 @@ uint32_t* TileROD_Decoder::getOFW(int fragId, int unit) { } // gain } // ch } // if ofw == NULL - + return &((*ofw)[0]); }