 |
ATLAS Offline Software
|
Go to the documentation of this file.
33 #include "GaudiKernel/IAlgorithm.h"
34 #include "GaudiKernel/IEvtSelector.h"
35 #include "GaudiKernel/IIncidentSvc.h"
36 #include "GaudiKernel/Incident.h"
37 #include "GaudiKernel/DataIncident.h"
38 #include "GaudiKernel/EventContext.h"
39 #include "GaudiKernel/ThreadLocalContext.h"
49 : base_class(
name, svcLoc)
51 , m_incidentSvc(
"IncidentSvc",
name)
52 , m_evtStore(
"StoreGateSvc/StoreGateSvc",
name)
69 ATH_MSG_WARNING (
"AllowSerialAndMPToDiffer=False! This will incur serious performance penalties! But Serial and MP output will be the same." );
90 SmartIF<IProperty> prpMgr(serviceLocator());
91 SmartIF<IEvtSelector> evtSelector;
92 if (prpMgr.isValid()) {
94 evtSelector = serviceLocator()->service(prpMgr->getProperty(
"EvtSel").toString());
95 CHECK(evtSelector.isValid());
98 ATH_MSG_ERROR (
"IProperty interface not found in ApplicationMgr" );
99 return StatusCode::FAILURE;
102 SmartIF<IProperty> prpMgr1(evtSelector);
103 if (prpMgr1.isValid()) {
104 std::string skipEventsStr = prpMgr1->getProperty(
"SkipEvents").toString();
108 ATH_MSG_ERROR (
"IProperty interface not found on the event selector" );
109 return StatusCode::FAILURE;
113 m_aess = serviceLocator()->service(
"AlgExecStateSvc");
116 return StatusCode::FAILURE;
123 ATH_MSG_DEBUG (
"EventID modifier Service not set. No run number, ... overrides will be applied." );
126 ATH_MSG_INFO (
"Could not find EventID modifier Service. No run number, ... overrides will be applied." );
146 while (cacheIterator != endOfCaches) {
176 unsigned int oldrunnr=eID.run_number();
177 unsigned int oldLB=eID.lumi_block();
178 unsigned int oldTS=eID.time_stamp();
179 unsigned int oldTSno=eID.time_stamp_ns_offset();
180 ATH_MSG_DEBUG (
"modifyEventContext: use evtIdModSvc runnr=" << oldrunnr <<
" -> " << new_eID.run_number() );
181 ATH_MSG_DEBUG (
"modifyEventContext: use evtIdModSvc LB=" << oldLB <<
" -> " << new_eID.lumi_block() );
182 ATH_MSG_DEBUG (
"modifyEventContext: use evtIdModSvc TimeStamp=" << oldTS <<
" -> " << new_eID.time_stamp() );
183 ATH_MSG_DEBUG (
"modifyEventContext: use evtIdModSvc TimeStamp ns Offset=" << oldTSno <<
" -> " << new_eID.time_stamp_ns_offset() );
185 ctx.setEventID(new_eID);
189 ctx.setEventID( eID );
200 return StatusCode::SUCCESS;
217 for ( ita = m_topAlgList.begin(); ita != m_topAlgList.end(); ++ita ) {
218 if( !((*ita)->sysInitialize()).isSuccess() ) {
221 return StatusCode::FAILURE;
227 for (ita = m_outStreamList.begin(); ita != m_outStreamList.end(); ++ita ) {
228 if( !((*ita)->sysInitialize()).isSuccess() ) {
231 return StatusCode::FAILURE;
239 while( (maxevt == -1 ||
m_nevt < maxevt) &&
242 if ( m_scheduledStop ) {
243 m_scheduledStop =
false;
244 ATH_MSG_ALWAYS (
"A stopRun was requested. Terminating event loop." );
253 auto upOverEvent = std::make_unique<xAOD::EventInfo>();
254 auto upOverEventAux = std::make_unique<xAOD::EventAuxInfo>();
255 upOverEvent->setStore( upOverEventAux.get() );
257 ATH_MSG_DEBUG(
" #subevents in the signal event =" << inputEventInfo->subEvents().size());
260 *pOverEvent = *inputEventInfo;
277 <<
") and provided mcChannelNumber (" <<
m_mcChannelNumber.value() <<
") do not match.");
287 return StatusCode::FAILURE;
292 ATH_MSG_ERROR(
"Input mcEventWeights are empty. This should not happen.");
293 return StatusCode::FAILURE;
303 puei->setStore( puaux );
313 bool consume_modifier_stream =
false;
316 if ( pAttrList !=
nullptr && pAttrList->size() > 6 ) {
322 consume_modifier_stream =
true;
328 ctx.eventID().run_number()) );
329 Gaudi::Hive::setCurrentContext( ctx );
332 auto puctx =std::make_unique<EventContext> ( ctx );
333 if (
m_evtStore->record( std::move(puctx) ,
"EventContext").isFailure()) {
335 return StatusCode::FAILURE;
345 ATH_MSG_INFO (
"nextEvent(): overlaying original event " <<
352 m_beamInt->selectT0(ctx.eventID().run_number(), ctx.eventID().event_number());
357 unsigned int t0BCID = pOverEvent->
bcid();
367 bool addpEvent(
true);
369 ATH_MSG_DEBUG(
"inputEventInfo->evtStore()="<<inputEventInfo->evtStore()<<
", pOverEvent->evtStore()=" << pOverEvent->evtStore()<<
", &m_origStream.store()="<<&
m_origStream.
store() );
377 ATH_MSG_DEBUG(
"Added inputEventInfo="<<inputEventInfo<<
" as subEvent "<<newEv<<
" to pOverEvent " << pOverEvent );
378 ATH_MSG_DEBUG(
" afterwards: newEv->evtStore()="<<newEv->evtStore()<<
", pOverEvent->evtStore()=" << pOverEvent->evtStore() );
404 while (cacheIterator != endOfCaches) {
406 (*cacheIterator)->resetEvtsPerXingScaleFactor(
sf);
408 (*cacheIterator++)->newEvent();
419 unsigned int currentBCID =
getBCID((t0BinCenter/25), t0BCID);
422 while (cacheIterator != endOfCaches) {
424 if (((*cacheIterator)->addSubEvts(iXing-
m_firstXing, pOverEvent, t0BinCenter,
m_loadProxies, currentBCID)).isFailure()) {
427 ATH_MSG_INFO (
"No more sub events for " << cacheIterator->name() );
428 return StatusCode::SUCCESS;
431 ATH_MSG_FATAL (
"Error adding sub events to " << cacheIterator->name() );
432 return StatusCode::FAILURE;
461 m_incidentSvc->fireIncident(ContextIncident<std::pair<unsigned,unsigned> >(this->
name(),
"ReseedIncident",std::pair<unsigned,unsigned>(pOverEvent->
eventNumber(),pOverEvent->
runNumber())));
467 ATH_MSG_ERROR (
"Terminating event processing loop due to errors" );
468 return StatusCode::FAILURE;
490 return StatusCode::SUCCESS;
499 " nevtsToAdvance=" << nevtsToAdvance );
502 for (
int i=0;
i<nevtsToAdvance; ++
i) {
506 if (this->
nextEvent(nParam).isFailure()) {
508 return StatusCode::FAILURE;
512 return StatusCode::SUCCESS;
533 return StatusCode::FAILURE;
543 unsigned int firstStore(0);
545 while ((cacheIterator != endOfCaches) &&
sc.isSuccess()) {
547 firstStore += (*cacheIterator)->nStores() ;
560 ita != m_topAlgList.end();
566 m_aess->algExecState(*ita, ctx ).setState(AlgExecState::State::Done,
sc);
567 if ( !
sc.isSuccess() ) {
569 (*ita)->name() <<
" failed with StatusCode::" <<
sc );
574 return StatusCode::SUCCESS;
598 bool eventFailed(
false);
602 if (!
sc.isSuccess()) {
604 m_aess->setEventStatus( EventStatus::AlgFail, ctx );
611 "Skipping remaining algorithms." << std::endl <<
612 "\tNo output will be written for this event, " <<
613 "but job will continue to next event" );
619 ATH_MSG_INFO (
"Skipping remaining algorithms." << std::endl <<
620 "\tNo output will be written for this event, " <<
621 "but job will continue to next event" );
626 m_aess->setEventStatus( EventStatus::Success, ctx );
630 ito != m_outStreamList.end(); ++ito ) {
631 sc = (*ito)->sysExecute( ctx );
632 if ( !
sc.isSuccess() ) {
641 return eventFailed?StatusCode::FAILURE:StatusCode::SUCCESS;
JetConstituentVector::iterator iterator
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.
virtual StatusCode executeEvent(EventContext &&ctx) override
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.
virtual int curEvent() const override
Gaudi::Property< bool > m_allowSerialAndMPToDiffer
void clearSubEvents()
Clear all the currently held sub-events.
ServiceHandle< IEvtSelector > m_origSel
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
#define ATH_MSG_VERBOSE(x)
ServiceHandle< StoreGateSvc > m_evtStore
output store
Gaudi::Property< std::string > m_evinfName
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.
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
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
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.
virtual StatusCode seek(int evt) override
ServiceHandle< IEvtIdModifierSvc > m_evtIdModSvc
ServiceHandle< IBeamIntensity > m_beamInt
void addToHashSource(const std::string &string)
Add a plain string to the stream.
virtual StatusCode nextEvent(int maxevt) override
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.
Gaudi::Property< std::string > m_evinfContName
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
Gaudi::Property< int > m_firstXing
Auxiliary information about the pileup events.
unsigned int getBCID(int bunchXing, unsigned int centralBCID) const
return the 'fake BCID' corresponding to bunchXing
float averageInteractionsPerCrossing() const
Average interactions per crossing for all BCIDs - for out-of-time pile-up.
Gaudi::Property< float > m_maxCollPerXing
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.
virtual StatusCode finalize() override
const T * tryConstRetrieve() const
An AttributeList represents a logical row of attributes in a metadata table. The name and type of eac...
Class describing the basic event information.
void setMCChannelNumber(uint32_t value)
Set the MC generator's channel number.
ToolHandleArray< IBkgStreamsCache > m_caches
@ Signal
The signal event.
virtual StatusCode initialize() override
Gaudi::Property< bool > m_xingByXing
#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.
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
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
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)
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