ATLAS Offline Software
Classes | Public Types | Public Member Functions | Protected Types | Protected Member Functions | Protected Attributes | Static Private Member Functions | List of all members
ROBDataProviderSvc Class Reference

#include <ROBDataProviderSvc.h>

Inheritance diagram for ROBDataProviderSvc:
Collaboration diagram for ROBDataProviderSvc:

Classes

struct  EventCache
 

Public Types

typedef OFFLINE_FRAGMENTS_NAMESPACE::ROBFragment ROBF
 ROB Fragment class. More...
 

Public Member Functions

 ROBDataProviderSvc (const std::string &name, ISvcLocator *svcloc)
 Constructor. More...
 
virtual StatusCode initialize () override
 initialize the service More...
 
virtual void addROBData (const EventContext &context, const std::vector< uint32_t > &robIds, const std::string_view callerName="UNKNOWN") override
 Add ROBFragments to cache for given ROB ids, ROB fragments may be retrieved with DataCollector. More...
 
virtual void setNextEvent (const EventContext &context, const std::vector< OFFLINE_FRAGMENTS_NAMESPACE::ROBFragment > &result) override
 Add a given LVL1/LVL2 ROBFragment to cache. More...
 
virtual void setNextEvent (const EventContext &context, const RawEvent *re) override
 Add all ROBFragments of a RawEvent to cache. More...
 
virtual void getROBData (const EventContext &context, const std::vector< uint32_t > &robIds, VROBFRAG &robFragments, const std::string_view callerName="UNKNOWN") override
 Retrieve ROBFragments for given ROB ids from cache. More...
 
virtual const RawEventgetEvent (const EventContext &context) override
 Retrieve the whole event. More...
 
virtual void setEventStatus (const EventContext &context, uint32_t status) override
 Store the status for the event. More...
 
virtual uint32_t getEventStatus (const EventContext &context) override
 Retrieve the status for the event. More...
 
virtual void processCachedROBs (const EventContext &context, const std::function< void(const ROBF *)> &fn) const override
 
virtual bool isEventComplete (const EventContext &) const override
 
virtual int collectCompleteEventData (const EventContext &, const std::string_view) override
 

Protected Types

typedef std::map< uint32_t, std::unique_ptr< const ROBF >, std::less< uint32_t > > ROBMAP
 vector of ROBFragment class More...
 
typedef SimpleProperty< std::vector< std::pair< int, int > > > ArrayPairIntProperty
 Remaining attributes are for configuration vector of Source ids and status words to be ignored for the ROB map. More...
 
typedef std::map< uint32_t, std::vector< uint32_t > > FilterRobMap
 map of full ROB Source ids and status words to be ignored for the ROB map More...
 
typedef std::map< eformat::SubDetector, std::vector< uint32_t > > FilterSubDetMap
 map of Sub Det Source ids and status words to be ignored for the ROB map More...
 

Protected Member Functions

bool filterRobWithStatus (const ROBF *rob)
 method to filter ROBs with given Status code More...
 

Protected Attributes

SG::SlotSpecificObj< EventCachem_eventsCache
 
ArrayPairIntProperty m_filterRobWithStatus
 
ArrayPairIntProperty m_filterSubDetWithStatus
 
FilterRobMap m_filterRobMap
 
FilterSubDetMap m_filterSubDetMap
 
BooleanProperty m_filterEmptyROB
 Filter out empty ROB fragments which are send by the ROS. More...
 
bool m_maskL2EFModuleID = false
 

Static Private Member Functions

static void robmapClear (ROBMAP &toclear)
 

Detailed Description

Definition at line 37 of file ROBDataProviderSvc.h.

Member Typedef Documentation

◆ ArrayPairIntProperty

typedef SimpleProperty< std::vector< std::pair<int, int> > > ROBDataProviderSvc::ArrayPairIntProperty
protected

Remaining attributes are for configuration vector of Source ids and status words to be ignored for the ROB map.

Definition at line 95 of file ROBDataProviderSvc.h.

◆ FilterRobMap

typedef std::map<uint32_t, std::vector<uint32_t> > ROBDataProviderSvc::FilterRobMap
protected

map of full ROB Source ids and status words to be ignored for the ROB map

Definition at line 100 of file ROBDataProviderSvc.h.

◆ FilterSubDetMap

typedef std::map<eformat::SubDetector, std::vector<uint32_t> > ROBDataProviderSvc::FilterSubDetMap
protected

map of Sub Det Source ids and status words to be ignored for the ROB map

Definition at line 103 of file ROBDataProviderSvc.h.

◆ ROBF

ROB Fragment class.

Definition at line 41 of file ROBDataProviderSvc.h.

◆ ROBMAP

typedef std::map<uint32_t, std::unique_ptr<const ROBF>, std::less<uint32_t> > ROBDataProviderSvc::ROBMAP
protected

vector of ROBFragment class

map for all the ROB fragments

Definition at line 82 of file ROBDataProviderSvc.h.

Constructor & Destructor Documentation

◆ ROBDataProviderSvc()

ROBDataProviderSvc::ROBDataProviderSvc ( const std::string &  name,
ISvcLocator *  svcloc 
)

Constructor.

Definition at line 87 of file ROBDataProviderSvc.cxx.

88  : base_class(name, svcloc) {
89 
90  declareProperty("filterRobWithStatus", m_filterRobWithStatus);
91  declareProperty("filterSubDetWithStatus", m_filterSubDetWithStatus);
92  declareProperty("filterEmptyROB", m_filterEmptyROB = false);
93 }

Member Function Documentation

◆ addROBData()

void ROBDataProviderSvc::addROBData ( const EventContext &  context,
const std::vector< uint32_t > &  robIds,
const std::string_view  callerName = "UNKNOWN" 
)
overridevirtual

Add ROBFragments to cache for given ROB ids, ROB fragments may be retrieved with DataCollector.

  • in offline only check that given ROB ids are in the map, issue an error if not

Definition at line 148 of file ROBDataProviderSvc.cxx.

148  {
149  EventCache* cache = m_eventsCache.get( context );
150 
151  // Copy missing ROB ids to vector with pthread allocator
152  ATH_MSG_DEBUG(" ---> Number of ROB Id s requested : " << robIds.size() << ", Caller Name = " << callerName);
153  // for offline running all requested ROBs should be found in cache
154  // if not issue error
155  for (uint32_t id : robIds) {
156  // mask off the module ID for L2 and EF result for Run 1 data
157  if ( (eformat::helper::SourceIdentifier(id).module_id() != 0) &&
158  (eformat::helper::SourceIdentifier(id).subdetector_id() == eformat::TDAQ_LVL2) ) {
159  id = eformat::helper::SourceIdentifier(eformat::helper::SourceIdentifier(id).subdetector_id(),0).code();
160  // TB if it is inconsistent we should not continue like this?
161  if ( !m_maskL2EFModuleID ) {
162  ATH_MSG_ERROR("Inconsistent flag for masking L2/EF module IDs");
163  m_maskL2EFModuleID=true;
164  }
165  } else if ( (eformat::helper::SourceIdentifier(id).module_id() != 0) &&
166  (eformat::helper::SourceIdentifier(id).subdetector_id() == eformat::TDAQ_EVENT_FILTER) &&
167  ( m_maskL2EFModuleID ) ) {
168  id = eformat::helper::SourceIdentifier(eformat::helper::SourceIdentifier(id).subdetector_id(),0).code();
169  }
170  ROBMAP& robmap( cache->robmap );
171  ROBMAP::iterator map_it = robmap.find(id) ;
172  if (map_it != robmap.end()) {
173  ATH_MSG_DEBUG(" ---> Found ROB Id : 0x" << MSG::hex << (*map_it).second->source_id()
174  << MSG::dec << " in cache");
175  } else {
176  ATH_MSG_DEBUG(" ---> ROB Id : 0x" << MSG::hex << id
177  << MSG::dec << " not found in cache for running mode OFFLINE (method addROBData),");
178  ATH_MSG_DEBUG(" Lvl1 id = " << cache->currentLvl1ID);
179  }
180  }
181  return;
182 }

◆ collectCompleteEventData()

virtual int ROBDataProviderSvc::collectCompleteEventData ( const EventContext &  ,
const std::string_view   
)
inlineoverridevirtual

Definition at line 75 of file ROBDataProviderSvc.h.

75 { return 0; }

◆ filterRobWithStatus()

bool ROBDataProviderSvc::filterRobWithStatus ( const ROBF rob)
protected

method to filter ROBs with given Status code

  • filter ROB with Sub Detector Id and Status Code

Definition at line 353 of file ROBDataProviderSvc.cxx.

353  {
354  // No filter criteria defined
355  if ((m_filterRobMap.size() == 0) && (m_filterSubDetMap.size() == 0)) {
356  return(false);
357  }
358  // There should be at least one status element if there was an error
359  // in case there are 0 status elements then there was no known error
360  // (see event format document ATL-D-ES-0019 (EDMS))
361  if (rob->nstatus() == 0) {
362  return(false);
363  }
364  // The ROB has at least one status element, access it via an iterator
365  const uint32_t* rob_it_status;
366  rob->status(rob_it_status);
367  // Build the full ROB Sourceidentifier
368  eformat::helper::SourceIdentifier tmpsrc(rob->rob_source_id());
369  // Check if there is a ROB specific filter rule defined for this ROB Id and match the status code
370  FilterRobMap::iterator map_it_rob = m_filterRobMap.find(tmpsrc.code());
371  if (map_it_rob != m_filterRobMap.end()) {
372  for (uint32_t status : map_it_rob->second) {
373  if (*rob_it_status == status) {
374  return(true);
375  }
376  }
377  }
378  // Check if there is a sub detector specific filter rule defined for this ROB Id and match the status code
379  FilterSubDetMap::iterator map_it_subdet = m_filterSubDetMap.find(tmpsrc.subdetector_id());
380  if (map_it_subdet != m_filterSubDetMap.end()) {
381  for (uint32_t status : map_it_subdet->second) {
382  if (*rob_it_status == status) {
383  return(true);
384  }
385  }
386  }
387  return(false);
388 }

◆ getEvent()

const RawEvent * ROBDataProviderSvc::getEvent ( const EventContext &  context)
overridevirtual

Retrieve the whole event.

Definition at line 325 of file ROBDataProviderSvc.cxx.

325  {
326 
327  return m_eventsCache.get( context )->event;
328 }

◆ getEventStatus()

uint32_t ROBDataProviderSvc::getEventStatus ( const EventContext &  context)
overridevirtual

Retrieve the status for the event.

Definition at line 338 of file ROBDataProviderSvc.cxx.

338  {
339  return m_eventsCache.get( context )->eventStatus;
340 }

◆ getROBData()

void ROBDataProviderSvc::getROBData ( const EventContext &  context,
const std::vector< uint32_t > &  robIds,
VROBFRAG &  robFragments,
const std::string_view  callerName = "UNKNOWN" 
)
overridevirtual

Retrieve ROBFragments for given ROB ids from cache.

return ROBData for ROBID

Definition at line 281 of file ROBDataProviderSvc.cxx.

282  {
283  EventCache* cache = m_eventsCache.get( context );
284 
285  for (uint32_t id : ids) {
286  // mask off the module ID for L2 and EF result for Run 1 data
287  if ( (eformat::helper::SourceIdentifier(id).module_id() != 0) &&
288  (eformat::helper::SourceIdentifier(id).subdetector_id() == eformat::TDAQ_LVL2) ) {
289  id = eformat::helper::SourceIdentifier(eformat::helper::SourceIdentifier(id).subdetector_id(),0).code();
290  if (!m_maskL2EFModuleID) {
291  ATH_MSG_ERROR("Inconsistent flag for masking L2/EF module IDs");
292  m_maskL2EFModuleID=true;
293  }
294  } else if ( (eformat::helper::SourceIdentifier(id).module_id() != 0) &&
295  (eformat::helper::SourceIdentifier(id).subdetector_id() == eformat::TDAQ_EVENT_FILTER) &&
296  (m_maskL2EFModuleID) ) {
297  id = eformat::helper::SourceIdentifier(eformat::helper::SourceIdentifier(id).subdetector_id(),0).code();
298  }
299  ROBMAP::iterator map_it = cache->robmap.find(id);
300  if (map_it != cache->robmap.end()) {
301  v.push_back((*map_it).second.get());
302  } else {
303  ATH_MSG_DEBUG("Failed to find ROB for id 0x" << MSG::hex << id << MSG::dec << ", Caller Name = " << callerName);
304 #ifndef NDEBUG
305  int nrob = 0;
306  ATH_MSG_VERBOSE(" --- Dump of ROB cache ids --- total size = " << cache->robmap.size());
307  for (const auto& p : cache->robmap) {
308  ++nrob;
309  ATH_MSG_VERBOSE(" # = " << nrob << " id = 0x" << MSG::hex << p.second->source_id() << MSG::dec);
310  }
311 #endif
312  }
313  }
314  return;
315 }

◆ initialize()

StatusCode ROBDataProviderSvc::initialize ( )
overridevirtual

initialize the service

Definition at line 97 of file ROBDataProviderSvc.cxx.

97  {
98  ATH_MSG_INFO("Initializing");
100 
101  for (unsigned int i = 0; i < m_filterRobWithStatus.value().size(); i++) {
102  eformat::helper::SourceIdentifier tmpsrc(m_filterRobWithStatus.value()[i].first);
103  if (tmpsrc.human_detector() != "UNKNOWN") {
104  m_filterRobMap[tmpsrc.code()].push_back(m_filterRobWithStatus.value()[i].second);
105  }
106  }
107  for (unsigned int i = 0; i < m_filterSubDetWithStatus.value().size(); i++) {
108  eformat::helper::SourceIdentifier tmpsrc((eformat::SubDetector)m_filterSubDetWithStatus.value()[i].first, 0);
109  if (tmpsrc.human_detector() != "UNKNOWN") {
110  m_filterSubDetMap[tmpsrc.subdetector_id()].push_back(m_filterSubDetWithStatus.value()[i].second);
111  }
112  }
113  ATH_MSG_INFO(" ---> Filter out empty ROB fragments = " << m_filterEmptyROB);
114  ATH_MSG_INFO(" ---> Filter out specific ROBs by Status Code: # ROBs = " << m_filterRobMap.size());
115  for (const auto& p : m_filterRobMap) {
116  eformat::helper::SourceIdentifier tmpsrc(p.first);
117  ATH_MSG_INFO(" RobId=0x" << MSG::hex << p.first << " -> in Sub Det = " << tmpsrc.human_detector());
118  for (uint32_t status : p.second) {
119  eformat::helper::Status tmpstatus(status);
120  ATH_MSG_INFO(" Status Code=0x"
121  << MSG::hex << std::setfill( '0' ) << std::setw(8) << tmpstatus.code()
122  << " Generic Part=0x" << std::setw(4) << tmpstatus.generic()
123  << " Specific Part=0x" << std::setw(4) << tmpstatus.specific());
124  }
125  }
126 
127  ATH_MSG_INFO(" ---> Filter out Sub Detector ROBs by Status Code: # Sub Detectors = " << m_filterSubDetMap.size());
128  for (const auto& p : m_filterSubDetMap) {
129  eformat::helper::SourceIdentifier tmpsrc(p.first, 0);
130  ATH_MSG_INFO(" SubDetId=0x" << MSG::hex << p.first << " -> " << tmpsrc.human_detector());
131  for (uint32_t status : p.second) {
132  eformat::helper::Status tmpstatus(status);
133  ATH_MSG_INFO(" Status Code=0x"
134  << MSG::hex << std::setfill( '0' ) << std::setw(8) << tmpstatus.code()
135  << " Generic Part=0x" << std::setw(4) << tmpstatus.generic()
136  << " Specific Part=0x" << std::setw(4) << tmpstatus.specific());
137  }
138  }
139  return(StatusCode::SUCCESS);
140 }

◆ isEventComplete()

virtual bool ROBDataProviderSvc::isEventComplete ( const EventContext &  ) const
inlineoverridevirtual

Definition at line 74 of file ROBDataProviderSvc.h.

74 { return true; }

◆ processCachedROBs()

void ROBDataProviderSvc::processCachedROBs ( const EventContext &  context,
const std::function< void(const ROBF *)> &  fn 
) const
overridevirtual

Definition at line 342 of file ROBDataProviderSvc.cxx.

343  {
344  for ( const auto& el : m_eventsCache.get( context )->robmap ) {
345  fn( el.second.get() );
346  }
347 }

◆ robmapClear()

void ROBDataProviderSvc::robmapClear ( ROBMAP toclear)
staticprivate
  • clear ROB map

Definition at line 318 of file ROBDataProviderSvc.cxx.

318  {
319  for (auto& it : toclear) {
320  it.second.reset();
321  }
322  toclear.clear();
323 }

◆ setEventStatus()

void ROBDataProviderSvc::setEventStatus ( const EventContext &  context,
uint32_t  status 
)
overridevirtual

Store the status for the event.

Set the status for the event.

Definition at line 333 of file ROBDataProviderSvc.cxx.

333  {
334  m_eventsCache.get(context)->eventStatus = status;
335 }

◆ setNextEvent() [1/2]

void ROBDataProviderSvc::setNextEvent ( const EventContext &  context,
const RawEvent re 
)
overridevirtual

Add all ROBFragments of a RawEvent to cache.

  • add a new Raw event
  • rebuild the map

Definition at line 209 of file ROBDataProviderSvc.cxx.

209  {
210  EventCache* cache = m_eventsCache.get( context );
211 
212  cache->event=re;
213  // clear the old map
214  robmapClear( cache->robmap );
215  // set the LVL1 id
216  cache->currentLvl1ID = re->lvl1_id();
217  // set flag for masking L2/EF module ID, this is only necessary for the separate L2 and EF systems from Run 1
218  m_maskL2EFModuleID = (re->nlvl2_trigger_info() != 0);
219 
220  // get all the ROBFragments
221  const size_t MAX_ROBFRAGMENTS = 4096;
222  OFFLINE_FRAGMENTS_NAMESPACE::PointerType robF[MAX_ROBFRAGMENTS];
224  re->start(rePointer);
225  size_t robcount = re->children(robF, MAX_ROBFRAGMENTS);
226  if (robcount == MAX_ROBFRAGMENTS) {
227  ATH_MSG_ERROR("ROB buffer overflow");
228  }
229  // loop over all ROBs
230  for (size_t irob = 0; irob < robcount; irob++) {
231  // add to the map
232  //const ROBF* rob = new ROBF(robF[irob]);
233  std::unique_ptr<const ROBF> rob=std::make_unique<const ROBF>(robF[irob]);
234  uint32_t id = rob->source_id();
235  // mask off the module ID for L2 and EF result for Run 1 data
236  if ( (eformat::helper::SourceIdentifier(id).module_id() != 0) &&
237  (eformat::helper::SourceIdentifier(id).subdetector_id() == eformat::TDAQ_LVL2) ) {
238  id = eformat::helper::SourceIdentifier(eformat::helper::SourceIdentifier(id).subdetector_id(),0).code();
239  if (!m_maskL2EFModuleID) {
240  ATH_MSG_ERROR("Inconsistent flag for masking L2/EF module IDs");
241  m_maskL2EFModuleID=true;
242  }
243  } else if ( (eformat::helper::SourceIdentifier(id).module_id() != 0) &&
244  (eformat::helper::SourceIdentifier(id).subdetector_id() == eformat::TDAQ_EVENT_FILTER) &&
245  (m_maskL2EFModuleID) ) {
246  id = eformat::helper::SourceIdentifier(eformat::helper::SourceIdentifier(id).subdetector_id(),0).code();
247  }
248  if (filterRobWithStatus(rob.get())) {
249  if (rob->nstatus() > 0) {
250  const uint32_t* it_status;
251  rob->status(it_status);
252  eformat::helper::Status tmpstatus(*it_status);
253  ATH_MSG_DEBUG(" ---> ROB Id = 0x" << MSG::hex << id << std::setfill('0')
254  << " with Generic Status Code = 0x" << std::setw(4) << tmpstatus.generic()
255  << " and Specific Status Code = 0x" << std::setw(4) << tmpstatus.specific() << MSG::dec
256  << " removed for L1 Id = " << cache->currentLvl1ID);
257  }
258  rob.reset();
259  } else if ((rob->rod_ndata() == 0) && (m_filterEmptyROB)) {
260  ATH_MSG_DEBUG( " ---> Empty ROB Id = 0x" << MSG::hex << id << MSG::dec
261  << " removed for L1 Id = " << cache->currentLvl1ID);
262  rob.reset();
263  } else {
264  ROBMAP::const_iterator it = cache->robmap.find(id);
265  if (it != cache->robmap.end()) {
266  ATH_MSG_WARNING(" ROBDataProviderSvc:: Duplicate ROBID 0x" << MSG::hex << id
267  << " found. " << MSG::dec << " Overwriting the previous one ");
268  }
269  cache->robmap[id]=std::move(rob);
270 
271  }
272  }
273  ATH_MSG_DEBUG(" ---> setNextEvent offline for " << name() );
274  ATH_MSG_DEBUG(" current LVL1 id = " << cache->currentLvl1ID );
275  ATH_MSG_DEBUG(" size of ROB cache = " << cache->robmap.size() );
276  return;
277 }

◆ setNextEvent() [2/2]

void ROBDataProviderSvc::setNextEvent ( const EventContext &  context,
const std::vector< OFFLINE_FRAGMENTS_NAMESPACE::ROBFragment > &  result 
)
overridevirtual

Add a given LVL1/LVL2 ROBFragment to cache.

  • this is the online method to add the LVL1/LVL2 result
  • this version of ROBDataProviderSvc does not support it
  • this version is for offline use only

Definition at line 187 of file ROBDataProviderSvc.cxx.

187  {
188  // clear the old map
189  // TB honestly, why do any action if this is FATAL mistake
190  // robmapClear( m_eventsCache.get(context)->robmap );
191 
192  // This method should never be used by offline
193  ATH_MSG_FATAL(" +-----------------------------------------------------------------+ ");
194  ATH_MSG_FATAL(" | The method ROBDataProviderSvc::setNextEvent(const ROBF* result) | ");
195  ATH_MSG_FATAL(" | is not implemented for this version of ROBDataProviderSvc | ");
196  ATH_MSG_FATAL(" | Use the version from the HLT repository if you need it. | ");
197  ATH_MSG_FATAL(" +-----------------------------------------------------------------+ ");
198  ATH_MSG_FATAL(" ---> The " << result.size() << " ROB fragments in the call will not be used.");
199  return;
200 }

Member Data Documentation

◆ m_eventsCache

SG::SlotSpecificObj<EventCache> ROBDataProviderSvc::m_eventsCache
protected

Definition at line 91 of file ROBDataProviderSvc.h.

◆ m_filterEmptyROB

BooleanProperty ROBDataProviderSvc::m_filterEmptyROB
protected

Filter out empty ROB fragments which are send by the ROS.

Definition at line 109 of file ROBDataProviderSvc.h.

◆ m_filterRobMap

FilterRobMap ROBDataProviderSvc::m_filterRobMap
protected

Definition at line 101 of file ROBDataProviderSvc.h.

◆ m_filterRobWithStatus

ArrayPairIntProperty ROBDataProviderSvc::m_filterRobWithStatus
protected

Definition at line 96 of file ROBDataProviderSvc.h.

◆ m_filterSubDetMap

FilterSubDetMap ROBDataProviderSvc::m_filterSubDetMap
protected

Definition at line 104 of file ROBDataProviderSvc.h.

◆ m_filterSubDetWithStatus

ArrayPairIntProperty ROBDataProviderSvc::m_filterSubDetWithStatus
protected

Definition at line 97 of file ROBDataProviderSvc.h.

◆ m_maskL2EFModuleID

bool ROBDataProviderSvc::m_maskL2EFModuleID = false
protected

Definition at line 110 of file ROBDataProviderSvc.h.


The documentation for this class was generated from the following files:
xAOD::iterator
JetConstituentVector::iterator iterator
Definition: JetConstituentVector.cxx:68
ATH_MSG_FATAL
#define ATH_MSG_FATAL(x)
Definition: AthMsgStreamMacros.h:34
get_generator_info.result
result
Definition: get_generator_info.py:21
ATH_MSG_INFO
#define ATH_MSG_INFO(x)
Definition: AthMsgStreamMacros.h:31
xAOD::uint32_t
setEventNumber uint32_t
Definition: EventInfo_v1.cxx:127
skel.it
it
Definition: skel.GENtoEVGEN.py:396
ATH_MSG_VERBOSE
#define ATH_MSG_VERBOSE(x)
Definition: AthMsgStreamMacros.h:28
ROBDataProviderSvc::m_filterRobWithStatus
ArrayPairIntProperty m_filterRobWithStatus
Definition: ROBDataProviderSvc.h:96
python.setupRTTAlg.size
int size
Definition: setupRTTAlg.py:39
ROBDataProviderSvc::m_maskL2EFModuleID
bool m_maskL2EFModuleID
Definition: ROBDataProviderSvc.h:110
OFFLINE_FRAGMENTS_NAMESPACE::PointerType
const DataType * PointerType
Definition: RawEvent.h:25
SG::SlotSpecificObj
Maintain a set of objects, one per slot.
Definition: AthenaKernel/AthenaKernel/SlotSpecificObj.h:70
python.utils.AtlRunQueryDQUtils.p
p
Definition: AtlRunQueryDQUtils.py:210
python.getCurrentFolderTag.fn
fn
Definition: getCurrentFolderTag.py:65
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition: AthMsgStreamMacros.h:33
lumiFormat.i
int i
Definition: lumiFormat.py:85
ATH_MSG_DEBUG
#define ATH_MSG_DEBUG(x)
Definition: AthMsgStreamMacros.h:29
plotIsoValidation.el
el
Definition: plotIsoValidation.py:197
id
SG::auxid_t id
Definition: Control/AthContainers/Root/debug.cxx:220
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:221
python.subdetectors.mmg.ids
ids
Definition: mmg.py:8
ROBDataProviderSvc::m_filterEmptyROB
BooleanProperty m_filterEmptyROB
Filter out empty ROB fragments which are send by the ROS.
Definition: ROBDataProviderSvc.h:109
python.PyAthena.v
v
Definition: PyAthena.py:154
ROBDataProviderSvc::m_filterSubDetMap
FilterSubDetMap m_filterSubDetMap
Definition: ROBDataProviderSvc.h:104
Athena::Status
Status
Athena specific StatusCode values.
Definition: AthStatusCode.h:22
ATH_MSG_WARNING
#define ATH_MSG_WARNING(x)
Definition: AthMsgStreamMacros.h:32
SG::getNSlots
size_t getNSlots()
Return the number of event slots.
Definition: SlotSpecificObj.cxx:64
re
const boost::regex re(r_e)
ROBDataProviderSvc::robmapClear
static void robmapClear(ROBMAP &toclear)
Definition: ROBDataProviderSvc.cxx:318
merge.status
status
Definition: merge.py:17
ROBDataProviderSvc::m_filterRobMap
FilterRobMap m_filterRobMap
Definition: ROBDataProviderSvc.h:101
ROBMAP
std::map< uint32_t, ROBF * > ROBMAP
Definition: ByteStreamMergeOutputSvc.cxx:17
ROBDataProviderSvc::m_eventsCache
SG::SlotSpecificObj< EventCache > m_eventsCache
Definition: ROBDataProviderSvc.h:91
ROBDataProviderSvc::filterRobWithStatus
bool filterRobWithStatus(const ROBF *rob)
method to filter ROBs with given Status code
Definition: ROBDataProviderSvc.cxx:353
ROBDataProviderSvc::m_filterSubDetWithStatus
ArrayPairIntProperty m_filterSubDetWithStatus
Definition: ROBDataProviderSvc.h:97