Loading [MathJax]/extensions/tex2jax.js
 |
ATLAS Offline Software
|
Go to the documentation of this file.
34 #include "GaudiKernel/IAlgorithm.h"
35 #include "GaudiKernel/IEvtSelector.h"
36 #include "GaudiKernel/IIncidentSvc.h"
37 #include "GaudiKernel/Incident.h"
38 #include "GaudiKernel/DataIncident.h"
39 #include "GaudiKernel/EventContext.h"
40 #include "GaudiKernel/ThreadLocalContext.h"
50 : base_class(
name, svcLoc)
52 , m_incidentSvc(
"IncidentSvc",
name)
53 , m_mergeSvc(
"PileUpMergeSvc",
name)
54 , m_evtStore(
"StoreGateSvc/StoreGateSvc",
name)
55 , m_evtIdModSvc(
"",
name)
56 , m_origSel(
"EventSelector",
name)
57 , m_signalSel(
"",
name)
59 , m_maxCollPerXing(23.0)
63 , m_allowSubEvtsEOF(true)
68 , m_beamInt(
"FlatBM",
name)
69 , m_beamLumi(
"LumiProfileSvc",
name)
72 , m_maxBunchCrossingPerOrbit(3564)
75 , m_skipExecAlgs(false)
77 , m_allowSerialAndMPToDiffer(true)
79 declareProperty(
"MaxBunchCrossingPerOrbit",
m_maxBunchCrossingPerOrbit,
"The number of slots in each LHC beam. Default: 3564.");
80 declareProperty(
"OrigSelector",
m_origSel,
"EventSelector for original (physics) events stream" );
81 declareProperty(
"SignalSelector",
m_signalSel,
"EventSelector for signal (hard-scatter) events stream" );
82 declareProperty(
"XingFrequency",
m_xingFreq,
"ns");
83 declareProperty(
"firstXing",
m_firstXing,
"time of first xing / XingFrequency (0th xing is 1st after trigger)");
84 declareProperty(
"lastXing",
m_lastXing,
"time of last xing / XingFrequency (0th xing is 1st after trigger)");
85 declareProperty(
"MaxMinBiasCollPerXing",
m_maxCollPerXing,
"Set to digitization numberOfCollisions prop. for variable-mu and RunDMC jobs.");
86 declareProperty(
"bkgCaches",
m_caches,
"list of tools managing bkg events");
87 declareProperty(
"AllowSubEvtsEOF",
m_allowSubEvtsEOF,
"if true(default) an EOF condition in the BkgStreamsCaches is not considered to be an error IF maxevt=-1 (loop over all available events)");
88 declareProperty(
"XingByXing",
m_xingByXing,
"if set to true we will not cache bkg events from one xing to then next. This greatly increases the amount of I/O and greatly reduces the memory required to run a job");
90 "Controls behaviour of event loop depending on return code of"
91 " Algorithms. 0: all non-SUCCESSes terminate job. "
92 "1: RECOVERABLE skips to next event, FAILURE terminates job "
93 "(DEFAULT). 2: RECOVERABLE and FAILURE skip to next events");
96 "The service providing the beam intensity distribution");
98 "The service providing the beam luminosity distribution vs. run");
99 declareProperty(
"PileUpMergeSvc",
m_mergeSvc,
"PileUp Merge Service");
100 declareProperty(
"EvtIdModifierSvc",
m_evtIdModSvc,
"ServiceHandle for EvtIdModifierSvc");
101 declareProperty(
"AllowSerialAndMPToDiffer",
m_allowSerialAndMPToDiffer,
"When set to False, this will allow the code to reproduce serial output in an AthenaMP job, albeit with a significant performance penalty.");
102 declareProperty(
"EventInfoName",
m_evinfName,
"SG key for the EventInfo object");
103 declareProperty(
"EventInfoContName",
m_evinfContName,
"SG key for the EventInfoContainer object");
119 ATH_MSG_WARNING (
"AllowSerialAndMPToDiffer=False! This will incur serious performance penalties! But Serial and MP output will be the same." );
140 SmartIF<IProperty> prpMgr(serviceLocator());
141 SmartIF<IEvtSelector> evtSelector;
142 if (prpMgr.isValid()) {
144 std::string evtSelName = prpMgr->getProperty(
"EvtSel").toString();
145 evtSelector = serviceLocator()->service(evtSelName);
146 CHECK(evtSelector.isValid());
149 ATH_MSG_ERROR (
"IProperty interface not found in ApplicationMgr" );
150 return StatusCode::FAILURE;
153 SmartIF<IProperty> prpMgr1(evtSelector);
154 if (prpMgr1.isValid()) {
155 std::string skipEventsStr = prpMgr1->getProperty(
"SkipEvents").toString();
159 ATH_MSG_ERROR (
"IProperty interface not found on the event selector" );
160 return StatusCode::FAILURE;
164 m_aess = serviceLocator()->service(
"AlgExecStateSvc");
167 return StatusCode::FAILURE;
174 ATH_MSG_DEBUG (
"EventID modifier Service not set. No run number, ... overrides will be applied." );
177 ATH_MSG_INFO (
"Could not find EventID modifier Service. No run number, ... overrides will be applied." );
197 while (cacheIterator != endOfCaches) {
227 unsigned int oldrunnr=eID.run_number();
228 unsigned int oldLB=eID.lumi_block();
229 unsigned int oldTS=eID.time_stamp();
230 unsigned int oldTSno=eID.time_stamp_ns_offset();
231 ATH_MSG_DEBUG (
"modifyEventContext: use evtIdModSvc runnr=" << oldrunnr <<
" -> " << new_eID.run_number() );
232 ATH_MSG_DEBUG (
"modifyEventContext: use evtIdModSvc LB=" << oldLB <<
" -> " << new_eID.lumi_block() );
233 ATH_MSG_DEBUG (
"modifyEventContext: use evtIdModSvc TimeStamp=" << oldTS <<
" -> " << new_eID.time_stamp() );
234 ATH_MSG_DEBUG (
"modifyEventContext: use evtIdModSvc TimeStamp ns Offset=" << oldTSno <<
" -> " << new_eID.time_stamp_ns_offset() );
236 ctx.setEventID(new_eID);
240 ctx.setEventID( eID );
251 return StatusCode::SUCCESS;
268 for ( ita = m_topAlgList.begin(); ita != m_topAlgList.end(); ++ita ) {
269 if( !((*ita)->sysInitialize()).isSuccess() ) {
272 return StatusCode::FAILURE;
278 for (ita = m_outStreamList.begin(); ita != m_outStreamList.end(); ++ita ) {
279 if( !((*ita)->sysInitialize()).isSuccess() ) {
282 return StatusCode::FAILURE;
290 while( (maxevt == -1 ||
m_nevt < maxevt) &&
293 if ( m_scheduledStop ) {
294 m_scheduledStop =
false;
295 ATH_MSG_ALWAYS (
"A stopRun was requested. Terminating event loop." );
306 pOverEvent->
setStore( pOverEventAux );
307 ATH_MSG_DEBUG(
" #subevents in the signal event =" << inputEventInfo->subEvents().size());
310 *pOverEvent = *inputEventInfo;
327 <<
") and provided mcChannelNumber (" <<
m_mcChannelNumber.value() <<
") do not match.");
337 return StatusCode::FAILURE;
342 ATH_MSG_ERROR(
"Input mcEventWeights are empty. This should not happen.");
343 return StatusCode::FAILURE;
353 puei->setStore( puaux );
363 bool consume_modifier_stream =
false;
366 if ( pAttrList !=
nullptr && pAttrList->size() > 6 ) {
372 consume_modifier_stream =
true;
378 ctx.eventID().run_number()) );
379 Gaudi::Hive::setCurrentContext( ctx );
382 auto puctx =std::make_unique<EventContext> ( ctx );
383 if (
m_evtStore->record( std::move(puctx) ,
"EventContext").isFailure()) {
385 return StatusCode::FAILURE;
395 ATH_MSG_INFO (
"nextEvent(): overlaying original event " <<
402 m_beamInt->selectT0(ctx.eventID().run_number(), ctx.eventID().event_number());
407 unsigned int t0BCID = pOverEvent->
bcid();
417 bool addpEvent(
true);
419 ATH_MSG_DEBUG(
"inputEventInfo->evtStore()="<<inputEventInfo->evtStore()<<
", pOverEvent->evtStore()=" << pOverEvent->evtStore()<<
", &m_origStream.store()="<<&
m_origStream.
store() );
427 ATH_MSG_DEBUG(
"Added inputEventInfo="<<inputEventInfo<<
" as subEvent "<<newEv<<
" to pOverEvent " << pOverEvent );
428 ATH_MSG_DEBUG(
" afterwards: newEv->evtStore()="<<newEv->evtStore()<<
", pOverEvent->evtStore()=" << pOverEvent->evtStore() );
454 while (cacheIterator != endOfCaches) {
456 (*cacheIterator)->resetEvtsPerXingScaleFactor(
sf);
458 (*cacheIterator++)->newEvent();
469 unsigned int currentBCID =
getBCID((t0BinCenter/25), t0BCID);
472 while (cacheIterator != endOfCaches) {
474 if (((*cacheIterator)->addSubEvts(iXing-
m_firstXing, pOverEvent, t0BinCenter,
m_loadProxies, currentBCID)).isFailure()) {
477 ATH_MSG_INFO (
"No more sub events for " << cacheIterator->name() );
478 return StatusCode::SUCCESS;
481 ATH_MSG_FATAL (
"Error adding sub events to " << cacheIterator->name() );
482 return StatusCode::FAILURE;
511 m_incidentSvc->fireIncident(ContextIncident<std::pair<unsigned,unsigned> >(this->
name(),
"ReseedIncident",std::pair<unsigned,unsigned>(pOverEvent->
eventNumber(),pOverEvent->
runNumber())));
517 ATH_MSG_ERROR (
"Terminating event processing loop due to errors" );
518 return StatusCode::FAILURE;
540 return StatusCode::SUCCESS;
549 " nevtsToAdvance=" << nevtsToAdvance );
552 for (
int i=0;
i<nevtsToAdvance; ++
i) {
556 if (this->
nextEvent(nParam).isFailure()) {
558 return StatusCode::FAILURE;
562 return StatusCode::SUCCESS;
583 return StatusCode::FAILURE;
593 unsigned int firstStore(0);
595 while ((cacheIterator != endOfCaches) &&
sc.isSuccess()) {
597 firstStore += (*cacheIterator)->nStores() ;
610 ita != m_topAlgList.end();
616 m_aess->algExecState(*ita, ctx ).setState(AlgExecState::State::Done,
sc);
617 if ( !
sc.isSuccess() ) {
619 (*ita)->name() <<
" failed with StatusCode::" <<
sc );
624 return StatusCode::SUCCESS;
648 bool eventFailed(
false);
652 if (!
sc.isSuccess()) {
654 m_aess->setEventStatus( EventStatus::AlgFail, ctx );
661 "Skipping remaining algorithms." << std::endl <<
662 "\tNo output will be written for this event, " <<
663 "but job will continue to next event" );
669 ATH_MSG_INFO (
"Skipping remaining algorithms." << std::endl <<
670 "\tNo output will be written for this event, " <<
671 "but job will continue to next event" );
676 m_aess->setEventStatus( EventStatus::Success, ctx );
680 ito != m_outStreamList.end(); ++ito ) {
681 sc = (*ito)->sysExecute( ctx );
682 if ( !
sc.isSuccess() ) {
691 return eventFailed?StatusCode::FAILURE:StatusCode::SUCCESS;
JetConstituentVector::iterator iterator
const std::string c_pileUpEventInfoContName
default value for the EventInfoContainer storing subevents for PileUp
A helper class to compute a hash of pile-up events.
void setActualInteractionsPerCrossing(float value)
Set average interactions per crossing for the current BCID.
def finalize(self)
_info( "content of StoreGate..." ) self.sg.dump()
void setEventNumber(uint64_t value)
Set the current event's event number.
ServiceHandle< IIncidentSvc > m_incidentSvc
Incident Service.
EventInfo_v1 EventInfo
Definition of the latest event info version.
uint64_t eventNumber() const
The current event's event number.
virtual ~PileUpEventLoopMgr()
Standard Destructor.
const std::vector< float > & mcEventWeights() const
The weights of all the MC events used in the simulation.
Gaudi::Property< bool > m_allowSerialAndMPToDiffer
property: Default true.
ServiceHandle< IEvtSelector > m_signalSel
Signal Event selector (for overlay).
Auxiliary information about the event.
void clearSubEvents()
Clear all the currently held sub-events.
virtual StatusCode nextEvent(int maxevt)
implementation of IAppMgreUI::terminate
ServiceHandle< IEvtSelector > m_origSel
Original (Physics) Event selector (background for overlay).
static xAOD::EventInfo::PileUpMixtureID uuidToPileUpMixtureId(const uuid_t &hash)
Convert uuid_t to xAOD::EventInfo::PileUpMixtureID.
std::string hashSource() const
Get the current hash base.
Gaudi::Property< float > m_xingFreq
Xing frequency(ns);.
#define ATH_MSG_VERBOSE(x)
ServiceHandle< StoreGateSvc > m_evtStore
output store
Gaudi::Property< std::string > m_evinfName
SG key for the EventInfoContainer.
virtual StatusCode executeAlgorithms(const EventContext &ctx)
Run the algorithms for the current event.
@ IS_SIMULATION
true: simulation, false: data
Assign a CLID to EventContext.
PileUpStream m_origStream
Input Stream.
uint32_t runNumber() const
The current event's run number.
unsigned int m_maxBunchCrossingPerOrbit
max bunch crossings per orbit
PileUpMixtureID pileUpMixtureID() const
Unique pile-up mixture identifier.
uint32_t mcChannelNumber() const
The MC generator's channel number.
void setPileUpMixtureID(const PileUpMixtureID &value)
Set unique pile-up mixture identifier.
const xAOD::EventInfo * nextEventPre(bool readRecord=true)
return next Event, load store with next Event
StatusCode finalize()
finalize and release store. To be called on ... finalize()
ServiceHandle< PileUpMergeSvc > m_mergeSvc
PileUp Merge Service.
void setMCEventNumber(uint64_t value)
Set the MC generator's event number.
void setEventTypeBitmask(uint32_t value)
Set the event type bitmask.
Gaudi::Property< bool > m_allowSubEvtsEOF
property: allow sub evts EOF condition when maxevt==-1
void setStore(const SG::IConstAuxStore *store)
Set the store associated with this object.
PileUpEventLoopMgr(const std::string &nam, ISvcLocator *svcLoc)
Standard Constructor.
bool setupStore()
setup input and overlay selectors and iters
::StatusCode StatusCode
StatusCode definition for legacy code.
ServiceHandle< IBeamIntensity > m_beamInt
property: beam intensity service handle for beam profile in local time
void addToHashSource(const std::string &string)
Add a plain string to the stream.
Class to provide easy MsgStream access and capabilities.
#define ATH_MSG_ALWAYS(x)
a triple selector/context/store defines a stream
An AttributeList represents a logical row of attributes in a metadata table. The name and type of eac...
#define CHECK(...)
Evaluate an expression and check for errors.
virtual StatusCode seek(int evt)
Seek to a given event.
Gaudi::Property< std::string > m_evinfContName
SG key for the EventInfoContainer.
StatusCode setupStreams()
setup input and overlay selectors and iters
void setTimeStamp(uint32_t value)
Set the POSIX time of the event.
void setBCID(uint32_t value)
Set the bunch crossing ID of the event.
uint32_t lumiBlock() const
The current event's luminosity block number.
Gaudi::Property< uint32_t > m_mcChannelNumber
EventAuxInfo_v3 EventAuxInfo
Definition of the latest event auxiliary info version.
Gaudi::Property< int > m_firstXing
first xing to be simulated (0th xing is 1st after trigger)
Auxiliary information about the pileup events.
unsigned int getBCID(int bunchXing, unsigned int centralBCID) const
return the 'fake BCID' corresponding to bunchXing
virtual StatusCode executeEvent(EventContext &&ctx)
implementation of IEventProcessor::executeEvent(void* par)
float averageInteractionsPerCrossing() const
Average interactions per crossing for all BCIDs - for out-of-time pile-up.
Gaudi::Property< float > m_maxCollPerXing
(max) minBias interactions per Xing, for setting MC luminosity
IEvtIdModifierSvc_t m_evtIdModSvc
virtual int curEvent() const
Return the current event count.
Helpers for checking error return status codes and reporting errors.
void setAverageInteractionsPerCrossing(float value)
Set average interactions per crossing for all BCIDs.
The ATLAS event loop for pile-up applications.
const T * tryConstRetrieve() const
Class describing the basic event information.
void setMCChannelNumber(uint32_t value)
Set the MC generator's channel number.
ToolHandleArray< IBkgStreamsCache > m_caches
BkgStreamsCaches managing background events.
@ Signal
The signal event.
Gaudi::Property< bool > m_xingByXing
property: process bkg events xing by xing without caching them
virtual StatusCode finalize()
implementation of IAppMgrUI::finalize
#define ATH_MSG_WARNING(x)
void setRunNumber(uint32_t value)
Set the current event's run number.
the preferred mechanism to access information from the different event stores in a pileup job.
provides the relative beam intensity as a function of the bunch xing.
const std::string c_pileUpEventInfoObjName
default value for the EventInfoContainer storing subevents for PileUp
uint32_t m_currentRun
current run number
SmartIF< IAlgExecStateSvc > m_aess
Reference to the Algorithm Execution State Svc.
void calculateHash(uuid_t &hash) const
Calculate the hash.
EventID eventIDFromxAOD(const xAOD::EventInfo *xaod)
Create EventID object from xAOD::EventInfo.
This class provides a unique identification for each event, in terms of run/event number and/or a tim...
Gaudi::Property< int > m_lastXing
last xing to be simulated (0th xing is 1st after trigger)
int atoi(std::string_view str)
Helper functions to unpack numbers decoded in string into integers and doubles The strings are requir...
Interface to in-memory cache for pileup events.
void setLumiBlock(uint32_t value)
Set the current event's luminosity block number.
const std::vector< SubEvent > & subEvents() const
Get the pileup events that were used in the simulation.
uint32_t bcid() const
The bunch crossing ID of the event.
Gaudi::Property< int > m_failureMode
property: control behaviour of event loop on algorithm failure
virtual StatusCode initialize()
implementation of IAppMgrUI::initialize
provides the relative beam luminosity as a function of the bunch xing.
xAOD::EventInfo * addSubEvent(xAOD::EventInfo *targetEv, const xAOD::EventInfo::SubEvent &subev, xAOD::EventInfoContainer *eiContainer, const std::string &eiContKey, StoreGateSvc *subev_store=nullptr)
virtual void modifyEventContext(EventContext &ctx, const EventID &eID, bool consume_modifier_stream)
uint64_t mcEventNumber() const
The MC generator's event number.
void setMCEventWeights(const std::vector< float > &value)
Set the weights of all the MC events used in the simulation.
float actualInteractionsPerCrossing() const
Average interactions per crossing for the current BCID - for in-time pile-up.
ServiceHandle< IBeamLuminosity > m_beamLumi
property: beam intensity service handle for luminosity profile in iovtime