 |
ATLAS Offline Software
|
the preferred mechanism to access information from the different event stores in a pileup job.
More...
#include <PileUpMergeSvc.h>
|
class | Range |
| the active crossing range for a data object (CLID/key combination) More...
|
|
struct | TimedList |
| generate the types of the timed data objects More...
|
|
|
| PileUpMergeSvc (const std::string &name, ISvcLocator *svc) |
| Standard Gaudi Constructor. More...
|
|
virtual | ~PileUpMergeSvc () |
|
virtual StatusCode | initialize () override |
| Service initialisation. More...
|
|
template<typename KEY , typename DATA > |
StatusCode | retrieveOriginal (const KEY &dataKey, const DATA *&data) |
| retrieve keyed DATA objs for the original event only More...
|
|
template<typename KEY , typename DATA > |
StatusCode | retrieveSingleSubEvtData (const KEY &dataKey, const DATA *&data, int bunchXing, SubEventIterator iEvt) |
|
template<typename KEY , typename TIMEDDATA > |
StatusCode | retrieveSubEvtsData (const KEY &dataKey, TIMEDDATA &timedData) |
| retrieve keyed DATA objs for all sub-events and attach a time to them More...
|
|
template<typename KEY , typename TIMEDDATA > |
StatusCode | retrieveSubSetEvtData (const KEY &dataKey, TIMEDDATA &timedData, int bunchXing, SubEventIterator bSubEvents, SubEventIterator eSubEvents) |
|
template<typename KEY , typename TIMEDDATA > |
StatusCode | retrieveSubEvtsData (const KEY &dataKey, TIMEDDATA &timedData, unsigned int &numberOfSimHits) |
| retrieve keyed DATA objs for all sub-events and attach a time to them More...
|
|
StatusCode | clearDataCaches () |
| clear bkg event caches from unneeded data objects (as configured using PileUpXingFolder CacheRefreshFrequency property) More...
|
|
const xAOD::EventInfo * | getPileUpEvent (StoreGateSvc *sg, const std::string &einame) const |
| get EventInfo from SG, by default using p_overStore More...
|
|
MsgStream & | msg () const |
|
MsgStream & | msg (const MSG::Level lvl) const |
|
bool | msgLvl (const MSG::Level lvl) const |
|
the preferred mechanism to access information from the different event stores in a pileup job.
access PileUpEventInfo to locate data objects (typically hit collections) to be merged attaching sub-evt time offsets
- Author
- Paolo Calafiura
Definition at line 56 of file PileUpMergeSvc.h.
◆ RangeContainer
◆ PileUpMergeSvc()
PileUpMergeSvc::PileUpMergeSvc |
( |
const std::string & |
name, |
|
|
ISvcLocator * |
svc |
|
) |
| |
◆ ~PileUpMergeSvc()
virtual PileUpMergeSvc::~PileUpMergeSvc |
( |
| ) |
|
|
inlinevirtual |
◆ clearDataCaches()
StatusCode PileUpMergeSvc::clearDataCaches |
( |
| ) |
|
clear bkg event caches from unneeded data objects (as configured using PileUpXingFolder CacheRefreshFrequency property)
Definition at line 260 of file PileUpMergeSvc.cxx.
276 proxy->setObject ((DataObject*)0);
279 <<
"clearDataCachesByFolder: object with clid "
280 <<
item.first.first <<
" and key " <<
item.first.second
281 <<
" removed from cache "
282 << pSubEvtSG->name() <<
endmsg;
287 pSubEvtSG->emptyTrash();
291 <<
"clearDataCachesByFolder: done with store " << pSubEvtSG->name()
296 sc=StatusCode::SUCCESS;
◆ decodeIntervals()
void PileUpMergeSvc::decodeIntervals |
( |
| ) |
|
|
private |
setup PileUpIntervals
Definition at line 45 of file PileUpMergeSvc.cxx.
47 ToolHandleArray<IPileUpXingFolder>::const_iterator
49 while (iXing != iEnd) {
52 msg() <<
MSG::DEBUG <<
"decodeIntervals: adding IPileUpXingFolder "
56 item(xing.begin()), endItem(xing.end());
57 while(
item != endItem) {
59 Range(xing.firstXing(), xing.lastXing(), xing.cacheRefreshFrequency());
62 <<
"decodeInterval: accepting objects of CLID " <<
item->id()
63 <<
" key " <<
item->key() <<
" in the Xing range ["
64 << xing.firstXing() <<
", " << xing.lastXing() <<
']'
65 <<
" with cache refresh frequency "
66 << xing.cacheRefreshFrequency() <<
endmsg;
◆ doRefresh()
bool PileUpMergeSvc::doRefresh |
( |
const Range & |
r, |
|
|
int |
iXing |
|
) |
| |
|
private |
Definition at line 252 of file PileUpMergeSvc.cxx.
256 return (
r.contains(iXing) &&
r.doRefresh(
double(random())*(1./RAND_MAX)));
◆ getPileUpEvent()
get EventInfo from SG, by default using p_overStore
Definition at line 111 of file PileUpMergeSvc.cxx.
117 if( xAODEventInfo ) {
118 ATH_MSG_DEBUG(
"Found xAOD::EventInfo="<<xAODEventInfo<<
" SG="<<sg<<
" : "<<*xAODEventInfo);
126 std::lock_guard<std::mutex>
lock (*m_slotMutex);
129 const EventInfo* pEvent = einame.empty()?
133 ATH_MSG_DEBUG(
"Converting (PileUp)EventInfo "<<pEvent<<
" SG="<<sg<<
" to xAOD::EventInfo");
135 std::unique_ptr< xAOD::EventInfo > pxAODEventInfo(
new xAOD::EventInfo() );
137 pxAODEventInfo->setStore( pxAODEventAuxInfo.get() );
138 pxAODEventInfo->setEvtStore( sg );
139 if( !
m_xAODCnvTool->convert( pEvent, pxAODEventInfo.get(),
true,
false ).isSuccess() ) {
149 puei->setStore( puaux.get() );
152 std::vector< xAOD::EventInfo::SubEvent > subEvents;
157 #define DECLARE_SE_TYPE( TYPE ) \
158 { PileUpTimeEventIndex::TYPE, xAOD::EventInfo::TYPE },
167 #undef DECLARE_SE_TYPE
174 auto pu_itr = pileupEvent->beginSubEvt();
175 auto pu_end = pileupEvent->endSubEvt();
176 const unsigned int countEvents =
std::distance(pu_itr,pu_end);
177 ATH_MSG_VERBOSE(
"CHECKING: There are " << countEvents <<
" subevents in this Event." );
178 for( ; pu_itr != pu_end; ++pu_itr ) {
182 if( !
m_xAODCnvTool->convert( pu_itr->pSubEvt, ei.get(),
true,
false ).isSuccess() ) {
183 ATH_MSG_ERROR(
"Failed to convert EventInfo to xAOD::EventInfo");
189 ei->setEvtStore(tmpSG);
195 puei->push_back( ei.release() );
198 auto typeItr = pileupTypeMap.find( pu_itr->type() );
200 if( typeItr == pileupTypeMap.end() ) {
203 type = typeItr->second;
205 ATH_MSG_VERBOSE(
"PileUpEventInfo: time = " << pu_itr->time() <<
", index = " << pu_itr->index());
209 EiLink(
"PileUpEventInfo", puei->size()-1, sg )));
210 ATH_MSG_VERBOSE(
"PileUpEventInfo: time = " << subEvents.back().time() <<
", index = " << subEvents.back().index());
213 if( subEvents.size() ) {
215 pxAODEventInfo->setSubEvents( subEvents );
218 if( !sg->
record( std::move( puaux ),
"PileUpEventInfoAux." ).isSuccess()
219 || !sg->
record( std::move( puei ),
"PileUpEventInfo" ).isSuccess() ) {
220 ATH_MSG_ERROR(
"Failed to record xAOD::EventInfoContainer in SG");
227 xAODEventInfo = std::launder(pxAODEventInfo.get());
229 const auto ptrVal = pxAODEventInfo.get();
230 if( ! sg->
record( std::move( pxAODEventAuxInfo ),
"EventInfoAux." ).isSuccess()
231 || ! sg->
record( std::move( pxAODEventInfo ),
"EventInfo" ).isSuccess() ) {
232 ATH_MSG_ERROR(
"Failed to record the new xAOD::EventInfo in SG");
233 xAODEventInfo =
nullptr;
235 ATH_MSG_DEBUG(
"Record the new xAOD::EventInfo "<<ptrVal<<
" in SG="<<sg);
239 if( !xAODEventInfo ) {
240 ATH_MSG_DEBUG(
"Could not find EventInfo '" << einame <<
"' in store " << sg->name());
242 return xAODEventInfo;
◆ initialize()
StatusCode PileUpMergeSvc::initialize |
( |
| ) |
|
|
overridevirtual |
Service initialisation.
Definition at line 78 of file PileUpMergeSvc.cxx.
82 m_autoRetrieveTools =
false;
83 m_checkToolDeps =
false;
89 <<
"Could not locate default store"
91 return StatusCode::FAILURE;
96 <<
"Could not locate ITriggerTime tool"
98 return StatusCode::FAILURE;
106 return StatusCode::SUCCESS;
◆ isLive() [1/2]
bool PileUpMergeSvc::isLive |
( |
CLID |
id, |
|
|
const std::string & |
dataKey, |
|
|
int |
iXing |
|
) |
| |
|
private |
◆ isLive() [2/2]
template<typename DATA , typename KEY >
bool PileUpMergeSvc::isLive |
( |
const KEY & |
key, |
|
|
int |
iXing |
|
) |
| |
|
private |
is iXing live for DATA/key?
◆ msg() [1/2]
◆ msg() [2/2]
◆ msgLvl()
◆ retrieveOriginal()
template<typename KEY , typename DATA >
StatusCode PileUpMergeSvc::retrieveOriginal |
( |
const KEY & |
dataKey, |
|
|
const DATA *& |
data |
|
) |
| |
retrieve keyed DATA objs for the original event only
◆ retrieveSingleSubEvtData()
template<typename KEY , typename DATA >
StatusCode PileUpMergeSvc::retrieveSingleSubEvtData |
( |
const KEY & |
dataKey, |
|
|
const DATA *& |
data, |
|
|
int |
bunchXing, |
|
|
SubEventIterator |
iEvt |
|
) |
| |
◆ retrieveSubEvtsData() [1/2]
template<typename KEY , typename TIMEDDATA >
StatusCode PileUpMergeSvc::retrieveSubEvtsData |
( |
const KEY & |
dataKey, |
|
|
TIMEDDATA & |
timedData |
|
) |
| |
retrieve keyed DATA objs for all sub-events and attach a time to them
◆ retrieveSubEvtsData() [2/2]
template<typename KEY , typename TIMEDDATA >
StatusCode PileUpMergeSvc::retrieveSubEvtsData |
( |
const KEY & |
dataKey, |
|
|
TIMEDDATA & |
timedData, |
|
|
unsigned int & |
numberOfSimHits |
|
) |
| |
retrieve keyed DATA objs for all sub-events and attach a time to them
◆ retrieveSubSetEvtData()
template<typename KEY , typename TIMEDDATA >
◆ ATLAS_THREAD_SAFE
◆ m_EventInfoKeyName
StringProperty PileUpMergeSvc::m_EventInfoKeyName |
|
private |
Initial value:{this, "EventInfoKeyName", "OverlayEvent",
"default name for EventInfo"}
Definition at line 184 of file PileUpMergeSvc.h.
◆ m_intervals
Initial value:{this, "Intervals", {},
"Folders specifying bunch xing intervals for different data objects"}
Definition at line 119 of file PileUpMergeSvc.h.
◆ m_pITriggerTime
Initial value:{this, "TriggerTimeTool", "",
"allows to apply a trigger time offset"}
controls PileUpTimedEventIndex for TimedData returned by retrieveSubEvts
Definition at line 173 of file PileUpMergeSvc.h.
◆ m_ranges
◆ m_returnTimedData
BooleanProperty PileUpMergeSvc::m_returnTimedData |
|
private |
Initial value:{this, "ReturnTimedData", true,
"determine whether the TimedData returned by retrieveSubEvts have non trivial "
"PileUpTimeEventIndex. May be set to false for overlay with real events"}
Definition at line 177 of file PileUpMergeSvc.h.
◆ m_xAODCnvTool
◆ p_overStore
The documentation for this class was generated from the following files:
StatusCode record(T *p2BRegistered, const TKEY &key)
Record an object with a key.
const xAOD::EventInfo * getPileUpEvent(StoreGateSvc *sg, const std::string &einame) const
get EventInfo from SG, by default using p_overStore
Auxiliary information about the event.
PileUpType
Enumerator describing the types of pileup events.
bool doRefresh(const Range &r, int iXing)
#define ATH_MSG_VERBOSE(x)
The Athena Transient Store API.
ServiceHandle< StoreGateSvc > p_overStore
overlaid SG (default)
StringProperty m_EventInfoKeyName
@ Unknown
Type not known/specified.
::StatusCode StatusCode
StatusCode definition for legacy code.
an interface to SG::Folder with an attached bunch crossing interval
#define CHECK(...)
Evaluate an expression and check for errors.
AthROOTErrorHandlerSvc * svc
void decodeIntervals()
setup PileUpIntervals
ElementLink implementation for ROOT usage.
Auxiliary information about the pileup events.
ToolHandleArray< IPileUpXingFolder > m_intervals
SG::IFolder::const_iterator const_iterator
This class provides general information about an event. Event information is provided by the accessor...
uint32_t sgkey_t
Type used for hashed StoreGate key+CLID pairs.
A Range describes the possible ranges for the field values of an ExpandedIdentifier.
const T * tryConstRetrieve() const
Class describing the basic event information.
This class provides information about an overlaid event. It extends EventInfo with a list of sub-evts...
#define ATH_MSG_WARNING(x)
const std::vector< SubEvent > & subEvents() const
Get the pileup events that were used in the simulation.
float distance(const Amg::Vector3D &p1, const Amg::Vector3D &p2)
calculates the distance between two point in 3D space
PileUpTimeEventIndex::PileUpType pileup_type
#define DECLARE_SE_TYPE(TYPE)
ToolHandle< xAODMaker::IEventInfoCnvTool > m_xAODCnvTool
property: Handle to the EventInfo -> xAOD::EventInfo converter tool
ToolHandle< ITriggerTime > m_pITriggerTime
controls PileUpTimedEventIndex for TimedData returned by retrieveSubEvts
Class describing the properties of one pileup sub-event.