ATLAS Offline Software
Loading...
Searching...
No Matches
VP1EventProd Class Reference

#include <VP1EventProd.h>

Inheritance diagram for VP1EventProd:
Collaboration diagram for VP1EventProd:

Public Member Functions

 VP1EventProd (const std::string &name, ISvcLocator *pSvcLocator)
 ~VP1EventProd ()
StatusCode initialize ()
StatusCode execute ()
StatusCode finalize ()
void handle (const Incident &inc)
virtual StatusCode sysInitialize () override
 Override sysInitialize.
virtual const DataObjIDColl & extraOutputDeps () const override
 Return the list of extra output dependencies.
ServiceHandle< StoreGateSvc > & evtStore ()
 The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.
const ServiceHandle< StoreGateSvc > & detStore () const
 The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
virtual StatusCode sysStart () override
 Handle START transition.
virtual std::vector< Gaudi::DataHandle * > inputHandles () const override
 Return this algorithm's input handles.
virtual std::vector< Gaudi::DataHandle * > outputHandles () const override
 Return this algorithm's output handles.
Gaudi::Details::PropertyBase & declareProperty (Gaudi::Property< T, V, H > &t)
void updateVHKA (Gaudi::Details::PropertyBase &)
MsgStream & msg () const
bool msgLvl (const MSG::Level lvl) const

Protected Member Functions

void renounceArray (SG::VarHandleKeyArray &handlesArray)
 remove all handles from I/O resolution
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce (T &h)
void extraDeps_update_handler (Gaudi::Details::PropertyBase &ExtraDeps)
 Add StoreName to extra input/output deps as needed.

Private Types

typedef ServiceHandle< StoreGateSvcStoreGateSvc_t

Private Member Functions

Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

Gaudi::Property< bool > m_isOnline {this, "IsOnline", false, "If running at point 1"}
ServiceHandle< IOnlineEventDisplaysSvcm_onlineEDsvc {this, "OnlineEventDisplaysSvc", "Online Event Displays Service"}
unsigned long m_runNumber
unsigned long long m_eventNumber
unsigned long m_timeStamp
std::string m_humanTimestamp
std::string m_outputFileType
bool m_removeTempInputFiles
std::string m_inputPoolFile
std::string m_destinationDir
bool m_createDestinationDir
int m_maxProducedFiles
int m_nEvent
DataObjIDColl m_extendedExtraObjects
StoreGateSvc_t m_evtStore
 Pointer to StoreGate (event store by default)
StoreGateSvc_t m_detStore
 Pointer to StoreGate (detector store by default)
std::vector< SG::VarHandleKeyArray * > m_vhka
bool m_varHandleArraysDeclared

Detailed Description

Definition at line 32 of file VP1EventProd.h.

Member Typedef Documentation

◆ StoreGateSvc_t

typedef ServiceHandle<StoreGateSvc> AthCommonDataStore< AthCommonMsg< Algorithm > >::StoreGateSvc_t
privateinherited

Definition at line 388 of file AthCommonDataStore.h.

Constructor & Destructor Documentation

◆ VP1EventProd()

VP1EventProd::VP1EventProd ( const std::string & name,
ISvcLocator * pSvcLocator )

Definition at line 26 of file VP1EventProd.cxx.

26 :
27 AthAlgorithm(name, svcLocator),
28 m_runNumber(0),
30 m_timeStamp(0),
32 m_nEvent(0)
33{
34 declareProperty("InputPoolFile", m_inputPoolFile="");
35 declareProperty("DestinationDirectory", m_destinationDir="."); // produce files in the run directory by default
36 declareProperty("ForceCreateDestinationDirectory", m_createDestinationDir=true); // force creation of new output folder
37 declareProperty("MaxNumberOfFiles", m_maxProducedFiles=-1); // keep N event files in the run directory. Default is '-1' that means ALL.
38 declareProperty("OutputFileTypeLabel", m_outputFileType=""); // put a label at the end of the output file, stating its file type
39 declareProperty("RemoveTempInputFiles", m_removeTempInputFiles=true); // remove the temp input file, i.e. the single-event files produced by the Athena job (HITS, ESD, ...) and which are then copied to files called "vp1_...pool.root"
40
41 // Note: you cannot initialize a VP1FileUtils instance here, because otherwise it would take the default properties only.
42
43}
AthAlgorithm()
Default constructor:
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)
unsigned long long m_eventNumber
std::string m_destinationDir
std::string m_outputFileType
std::string m_humanTimestamp
std::string m_inputPoolFile
unsigned long m_runNumber
bool m_createDestinationDir
bool m_removeTempInputFiles
unsigned long m_timeStamp
int m_maxProducedFiles

◆ ~VP1EventProd()

VP1EventProd::~VP1EventProd ( )

Definition at line 45 of file VP1EventProd.cxx.

46{
47}

Member Function Documentation

◆ declareGaudiProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Algorithm > >::declareGaudiProperty ( Gaudi::Property< T, V, H > & hndl,
const SG::VarHandleKeyType &  )
inlineprivateinherited

specialization for handling Gaudi::Property<SG::VarHandleKey>

Definition at line 156 of file AthCommonDataStore.h.

158 {
160 hndl.value(),
161 hndl.documentation());
162
163 }

◆ declareProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Algorithm > >::declareProperty ( Gaudi::Property< T, V, H > & t)
inlineinherited

Definition at line 145 of file AthCommonDataStore.h.

145 {
146 typedef typename SG::HandleClassifier<T>::type htype;
148 }
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>

◆ detStore()

const ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< Algorithm > >::detStore ( ) const
inlineinherited

The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 95 of file AthCommonDataStore.h.

◆ evtStore()

ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< Algorithm > >::evtStore ( )
inlineinherited

The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 85 of file AthCommonDataStore.h.

◆ execute()

StatusCode VP1EventProd::execute ( )

Definition at line 73 of file VP1EventProd.cxx.

74{
75 ATH_MSG_DEBUG(" in execute(). Nothing to do here...");
76
77 return StatusCode::SUCCESS;
78}
#define ATH_MSG_DEBUG(x)

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< Algorithm > >::extraDeps_update_handler ( Gaudi::Details::PropertyBase & ExtraDeps)
protectedinherited

Add StoreName to extra input/output deps as needed.

use the logic of the VarHandleKey to parse the DataObjID keys supplied via the ExtraInputs and ExtraOuputs Properties to add the StoreName if it's not explicitly given

◆ extraOutputDeps()

const DataObjIDColl & AthAlgorithm::extraOutputDeps ( ) const
overridevirtualinherited

Return the list of extra output dependencies.

This list is extended to include symlinks implied by inheritance relations.

Definition at line 50 of file AthAlgorithm.cxx.

51{
52 // If we didn't find any symlinks to add, just return the collection
53 // from the base class. Otherwise, return the extended collection.
54 if (!m_extendedExtraObjects.empty()) {
56 }
57 return Algorithm::extraOutputDeps();
58}
DataObjIDColl m_extendedExtraObjects

◆ finalize()

StatusCode VP1EventProd::finalize ( )

Definition at line 80 of file VP1EventProd.cxx.

81{
82 ATH_MSG_DEBUG("in finalize() ");
83
84 // handle the output of the last event
85 if(m_nEvent) {
86
87 --m_nEvent; // since we don't use another call to handle() to process the last event, we need to revert the counter by one, otherwise the wrong file is looked for
88
89 ATH_MSG_DEBUG("--> Input POOL file: " << m_inputPoolFile);
90
91 std::ostringstream ostri;
92 ostri << m_inputPoolFile << "._" << std::setw(4) << std::setfill('0') << m_nEvent;
93
94 std::string inputFileName = ostri.str();
95 ATH_MSG_DEBUG("copying the input file: '"<< inputFileName << "'...");
96 ATH_MSG_DEBUG("VP1 alg event number: " << m_eventNumber);
97 try {
98
99 /* clean the output directory if m_maxProducedFiles == 0
100 * or keep up to 'm_maxProducedFiles' output files
101 */
102 VP1FileUtilities fileUtil(".", m_maxProducedFiles, m_destinationDir, m_createDestinationDir, m_removeTempInputFiles); // inputDir, fileLimit, outputDir, forceMakeOutputDir, removeInputFile
103
104 if (m_outputFileType != "")
105 fileUtil.produceNewFile(inputFileName, m_runNumber, m_eventNumber, m_timeStamp, m_humanTimestamp+"."+m_outputFileType); // with UNIX and human-readable timestamp
106 else
107 fileUtil.produceNewFile(inputFileName, m_runNumber, m_eventNumber, m_timeStamp, m_humanTimestamp); // with UNIX timestamp
108 }
109 catch(std::runtime_error& err) {
110 ATH_MSG_WARNING("Exception caught: " << err.what());
111 ATH_MSG_WARNING("In finalize() -- Unable to produce new VP1 event file");
112 }
113 }
114
115 return StatusCode::SUCCESS;
116}
#define ATH_MSG_WARNING(x)

◆ handle()

void VP1EventProd::handle ( const Incident & inc)

Definition at line 120 of file VP1EventProd.cxx.

121{
122 ATH_MSG_DEBUG("in handle()... ");
123 ATH_MSG_DEBUG("Handling incident '" << inc.type() << "'");
124
125 // Let VP1FileUtilities handle the output of the previous event.
126 // Skip this if m_nEvent == 0,
127 // because the processing of the event is not completed, yet;
128 // and the input file is not created at this stage, yet.
129 // Basically we run the code below while in event_2, to get the processed file for event_1
130 if(m_nEvent) {
131
132 unsigned int nLastFile = m_nEvent - 1; // we copy the file produced while processing the previous event, so we need a file number of (current - 1)
133
134 ATH_MSG_DEBUG("--> Input POOL file: " << m_inputPoolFile);
135 std::ostringstream ostri;
136 ostri << m_inputPoolFile << "._" << std::setw(4) << std::setfill('0') << nLastFile;
137
138 std::string inputFileName = ostri.str();
139 ATH_MSG_DEBUG("copying the input file: '"<< inputFileName << "'...");
140
141 try {
142
143 /* clean the output directory if m_maxProducedFiles == 0
144 * or keep up to 'm_maxProducedFiles' output files
145 */
146 VP1FileUtilities fileUtil(".", m_maxProducedFiles, m_destinationDir, m_createDestinationDir, m_removeTempInputFiles); // inputDir, fileLimit, outputDir, forceMakeOutputDir, removeInputFile
147
148 if (m_outputFileType != "")
149 fileUtil.produceNewFile(ostri.str(), m_runNumber, m_eventNumber, m_timeStamp, m_humanTimestamp+"."+m_outputFileType); // with UNIX and human-readable timestamp
150 else
151 fileUtil.produceNewFile(ostri.str(), m_runNumber, m_eventNumber, m_timeStamp, m_humanTimestamp); // with UNIX timestamp
152
153 }
154 catch(std::runtime_error& err) {
155 ATH_MSG_WARNING("Exception caught: " << err.what());
156 ATH_MSG_WARNING("In handle() -- Unable to produce new VP1 event file");
157 }
158 }
159
160
161 /*
162 * -------------------------------------------------------------------
163 * === NOTE!!! ===
164 *
165 * AFTER having processed the file from the previous event,
166 * we now update the run number and event number for the current event
167 * --------------------------------------------------------------------
168 */
169
170 // increment event count
171 m_nEvent++;
172
173 // Update run_number/event_number/time_stamp
174 const EventContext& context = getContext();
175 m_eventNumber = context.eventID().event_number();
176 m_runNumber = context.eventID().run_number();
177 m_timeStamp = context.eventID().time_stamp();
178
179 ATH_MSG_DEBUG(" Got run number = " << m_runNumber
180 << ", event number = " << m_eventNumber
181 << ", UNIX timestamp = " << m_timeStamp);
182
183 time_t t_timestamp = m_timeStamp;
184 struct tm ltm;
185 localtime_r(&t_timestamp, &ltm);
186
187 // print various components of tm structure.
188 ATH_MSG_DEBUG("Year: "<< 1900 + ltm.tm_year
189 << " - " << "Month: "<< 1 + ltm.tm_mon<< " - " // tm_mon is in the range [0, 11], so 1 must be added to get real months
190 << "Day: "<< ltm.tm_mday
191 << " - " "Time: "<< ltm.tm_hour << ":" << ltm.tm_min << ":" << ltm.tm_sec << "CEST"
192 );
193
194 std::ostringstream ostri;
195 ostri << 1900 + ltm.tm_year
196 << "-" << 1 + ltm.tm_mon // tm_mon is in the range [0, 11], so 1 must be added to get real months
197 << "-" << ltm.tm_mday
198 << "T" << ltm.tm_hour << "-" << ltm.tm_min << "-" << ltm.tm_sec << "CEST";
199
200 m_humanTimestamp = ostri.str();
201 ATH_MSG_DEBUG("'human readable' timestamp: " << m_humanTimestamp);
202
203 if(m_isOnline){
204 m_destinationDir = m_onlineEDsvc->getEntireOutputStr();
205 }
206 ATH_MSG_DEBUG("Destination Directory: " << m_destinationDir);
207
208}
ServiceHandle< IOnlineEventDisplaysSvc > m_onlineEDsvc
Gaudi::Property< bool > m_isOnline

◆ initialize()

StatusCode VP1EventProd::initialize ( )

Definition at line 49 of file VP1EventProd.cxx.

50{
51 ATH_MSG_DEBUG(" in initialize() ");
52
53 StatusCode result = StatusCode::SUCCESS;
54
55 // use the incident service to register a handle
56 SmartIF<IIncidentSvc> incsvc{service("IncidentSvc")};
57
58 if(!incsvc)
59 ATH_MSG_WARNING("Unable to get IncidentSvc!");
60 else
61 incsvc->addListener(this, "BeginEvent", 0);
62
63 if(m_isOnline){
64 if( m_onlineEDsvc.retrieve().isFailure()){
65 ATH_MSG_ERROR("Could not locate the online event displays service");
66 return StatusCode::FAILURE;
67 }
68 }
69
70 return result;
71}
#define ATH_MSG_ERROR(x)
::StatusCode StatusCode
StatusCode definition for legacy code.

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Algorithm > >::inputHandles ( ) const
overridevirtualinherited

Return this algorithm's input handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ msg()

MsgStream & AthCommonMsg< Algorithm >::msg ( ) const
inlineinherited

Definition at line 24 of file AthCommonMsg.h.

24 {
25 return this->msgStream();
26 }

◆ msgLvl()

bool AthCommonMsg< Algorithm >::msgLvl ( const MSG::Level lvl) const
inlineinherited

Definition at line 30 of file AthCommonMsg.h.

30 {
31 return this->msgLevel(lvl);
32 }

◆ outputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Algorithm > >::outputHandles ( ) const
overridevirtualinherited

Return this algorithm's output handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ renounce()

std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > AthCommonDataStore< AthCommonMsg< Algorithm > >::renounce ( T & h)
inlineprotectedinherited

Definition at line 380 of file AthCommonDataStore.h.

381 {
382 h.renounce();
384 }
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce(T &h)

◆ renounceArray()

void AthCommonDataStore< AthCommonMsg< Algorithm > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ sysInitialize()

StatusCode AthAlgorithm::sysInitialize ( )
overridevirtualinherited

Override sysInitialize.

Override sysInitialize from the base class.

Loop through all output handles, and if they're WriteCondHandles, automatically register them and this Algorithm with the CondSvc

Scan through all outputHandles, and if they're WriteCondHandles, register them with the CondSvc

Reimplemented from AthCommonDataStore< AthCommonMsg< Algorithm > >.

Reimplemented in AthAnalysisAlgorithm, AthFilterAlgorithm, AthHistogramAlgorithm, and PyAthena::Alg.

Definition at line 66 of file AthAlgorithm.cxx.

66 {
68
69 if (sc.isFailure()) {
70 return sc;
71 }
72 ServiceHandle<ICondSvc> cs("CondSvc",name());
73 for (auto h : outputHandles()) {
74 if (h->isCondition() && h->mode() == Gaudi::DataHandle::Writer) {
75 // do this inside the loop so we don't create the CondSvc until needed
76 if ( cs.retrieve().isFailure() ) {
77 ATH_MSG_WARNING("no CondSvc found: won't autoreg WriteCondHandles");
78 return StatusCode::SUCCESS;
79 }
80 if (cs->regHandle(this,*h).isFailure()) {
81 sc = StatusCode::FAILURE;
82 ATH_MSG_ERROR("unable to register WriteCondHandle " << h->fullKey()
83 << " with CondSvc");
84 }
85 }
86 }
87 return sc;
88}
static Double_t sc
virtual StatusCode sysInitialize() override
Override sysInitialize.
AthCommonDataStore(const std::string &name, T... args)
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override

◆ sysStart()

virtual StatusCode AthCommonDataStore< AthCommonMsg< Algorithm > >::sysStart ( )
overridevirtualinherited

Handle START transition.

We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.

◆ updateVHKA()

void AthCommonDataStore< AthCommonMsg< Algorithm > >::updateVHKA ( Gaudi::Details::PropertyBase & )
inlineinherited

Definition at line 308 of file AthCommonDataStore.h.

308 {
309 // debug() << "updateVHKA for property " << p.name() << " " << p.toString()
310 // << " size: " << m_vhka.size() << endmsg;
311 for (auto &a : m_vhka) {
313 for (auto k : keys) {
314 k->setOwner(this);
315 }
316 }
317 }
std::vector< SG::VarHandleKeyArray * > m_vhka

Member Data Documentation

◆ m_createDestinationDir

bool VP1EventProd::m_createDestinationDir
private

Definition at line 62 of file VP1EventProd.h.

◆ m_destinationDir

std::string VP1EventProd::m_destinationDir
private

Definition at line 61 of file VP1EventProd.h.

◆ m_detStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Algorithm > >::m_detStore
privateinherited

Pointer to StoreGate (detector store by default)

Definition at line 393 of file AthCommonDataStore.h.

◆ m_eventNumber

unsigned long long VP1EventProd::m_eventNumber
private

Definition at line 52 of file VP1EventProd.h.

◆ m_evtStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Algorithm > >::m_evtStore
privateinherited

Pointer to StoreGate (event store by default)

Definition at line 390 of file AthCommonDataStore.h.

◆ m_extendedExtraObjects

DataObjIDColl AthAlgorithm::m_extendedExtraObjects
privateinherited

Definition at line 79 of file AthAlgorithm.h.

◆ m_humanTimestamp

std::string VP1EventProd::m_humanTimestamp
private

Definition at line 55 of file VP1EventProd.h.

◆ m_inputPoolFile

std::string VP1EventProd::m_inputPoolFile
private

Definition at line 60 of file VP1EventProd.h.

◆ m_isOnline

Gaudi::Property<bool> VP1EventProd::m_isOnline {this, "IsOnline", false, "If running at point 1"}
private

Definition at line 47 of file VP1EventProd.h.

47{this, "IsOnline", false, "If running at point 1"};

◆ m_maxProducedFiles

int VP1EventProd::m_maxProducedFiles
private

Definition at line 63 of file VP1EventProd.h.

◆ m_nEvent

int VP1EventProd::m_nEvent
private

Definition at line 64 of file VP1EventProd.h.

◆ m_onlineEDsvc

ServiceHandle<IOnlineEventDisplaysSvc> VP1EventProd::m_onlineEDsvc {this, "OnlineEventDisplaysSvc", "Online Event Displays Service"}
private

Definition at line 48 of file VP1EventProd.h.

48{this, "OnlineEventDisplaysSvc", "Online Event Displays Service"};

◆ m_outputFileType

std::string VP1EventProd::m_outputFileType
private

Definition at line 56 of file VP1EventProd.h.

◆ m_removeTempInputFiles

bool VP1EventProd::m_removeTempInputFiles
private

Definition at line 57 of file VP1EventProd.h.

◆ m_runNumber

unsigned long VP1EventProd::m_runNumber
private

Definition at line 51 of file VP1EventProd.h.

◆ m_timeStamp

unsigned long VP1EventProd::m_timeStamp
private

Definition at line 54 of file VP1EventProd.h.

◆ m_varHandleArraysDeclared

bool AthCommonDataStore< AthCommonMsg< Algorithm > >::m_varHandleArraysDeclared
privateinherited

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

std::vector<SG::VarHandleKeyArray*> AthCommonDataStore< AthCommonMsg< Algorithm > >::m_vhka
privateinherited

Definition at line 398 of file AthCommonDataStore.h.


The documentation for this class was generated from the following files: