11 #include <pxd/dataobjects/PXDDAQStatus.h>
19 for (
auto& pkt : m_pxdPacket) {
20 for (
auto it_dhc = pkt.cbegin(); it_dhc != pkt.cend(); ++it_dhc) {
21 for (
auto it_dhe = it_dhc->cbegin(); it_dhe != it_dhc->cend(); ++it_dhe) {
22 if (it_dhe->getSensorID() ==
id) {
31 std::map <VxdID , bool> PXDDAQStatus::getUsable()
const
35 std::map <VxdID , bool> usemap;
36 for (
auto& pkt : m_pxdPacket) {
37 for (
auto it_dhc = pkt.cbegin(); it_dhc != pkt.cend(); ++it_dhc) {
38 for (
auto it_dhe = it_dhc->cbegin(); it_dhe != it_dhc->cend(); ++it_dhe) {
39 usemap[it_dhe->getSensorID()] = it_dhe->isUsable();