ATLAS Offline Software
Loading...
Searching...
No Matches
Athena::RootAsciiDumperAlg Class Reference

#include <RootAsciiDumperAlg.h>

Inheritance diagram for Athena::RootAsciiDumperAlg:
Collaboration diagram for Athena::RootAsciiDumperAlg:

Public Member Functions

 RootAsciiDumperAlg (const std::string &name, ISvcLocator *pSvcLocator)
 Constructor with parameters:
virtual ~RootAsciiDumperAlg ()
 Destructor:
virtual StatusCode initialize ()
virtual StatusCode execute ()
virtual StatusCode finalize ()
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

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

Private Attributes

std::string m_ofname
 ASCII output file name.
int m_ofd {-1}
 file handle to the ASCII output file
uint64_t m_nentries {}
 number of entries processed so-far
const uint32_t * m_runnbr {}
 run number
const uint32_t * m_evtnbr {}
 event number
const int32_t * m_el_n {}
 number of electrons
const std::vector< float > * m_el_eta
 eta of electrons
const std::vector< std::vector< float > > * m_el_jetcone_dr
 jetcone dR
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 24 of file RootAsciiDumperAlg.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

◆ RootAsciiDumperAlg() [1/2]

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

Constructor with parameters:

Definition at line 43 of file RootAsciiDumperAlg.cxx.

44 :
45 ::AthAlgorithm( name, pSvcLocator ),
46 m_ofname(""),
47 m_ofd(-1),
48 m_nentries(0),
49 m_runnbr(0),
50 m_evtnbr(0),
51 m_el_n(0),
52 m_el_eta(NULL),
53 m_el_jetcone_dr(NULL)
54{
55 //
56 // Property declaration
57 //
58 //declareProperty( "Property", m_nProperty );
59
60 declareProperty("AsciiFileName",
61 m_ofname = "d3pd.ascii",
62 "Name of the ascii file where the content of the "
63 "ROOT n-tuple file will be dumped.");
64
65}
AthAlgorithm()
Default constructor:
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)
const uint32_t * m_runnbr
run number
const std::vector< std::vector< float > > * m_el_jetcone_dr
jetcone dR
int m_ofd
file handle to the ASCII output file
const int32_t * m_el_n
number of electrons
std::string m_ofname
ASCII output file name.
const std::vector< float > * m_el_eta
eta of electrons
const uint32_t * m_evtnbr
event number
uint64_t m_nentries
number of entries processed so-far

◆ ~RootAsciiDumperAlg()

Athena::RootAsciiDumperAlg::~RootAsciiDumperAlg ( )
virtual

Destructor:

Definition at line 69 of file RootAsciiDumperAlg.cxx.

70{}

◆ RootAsciiDumperAlg() [2/2]

Athena::RootAsciiDumperAlg::RootAsciiDumperAlg ( )
private

Default constructor:

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 Athena::RootAsciiDumperAlg::execute ( )
virtual

Definition at line 111 of file RootAsciiDumperAlg.cxx.

112{
113 ATH_MSG_DEBUG ("Executing " << name() << "...");
114
116 m_nentries += 1;
117
118 if (!evtStore()->retrieve(m_runnbr, "RunNumber").isSuccess()) {
119 ATH_MSG_WARNING("could not retrieve [RunNumber] from store");
120 return StatusCode::RECOVERABLE;
121 }
122
123 if (!evtStore()->retrieve(m_evtnbr, "EventNumber").isSuccess()) {
124 ATH_MSG_WARNING("could not retrieve [EventNumber] from store");
125 return StatusCode::RECOVERABLE;
126 }
127
128 if (!evtStore()->retrieve(m_el_n, "el_n").isSuccess()) {
129 ATH_MSG_WARNING("could not retrieve [el_n] from store");
130 return StatusCode::RECOVERABLE;
131 }
132
133 xAOD::EventInfo* ei = nullptr;
134 if (!evtStore()->retrieve(ei, "EventInfo").isSuccess()) {
135 ATH_MSG_WARNING("could not retrieve [el_n] from store");
136 return StatusCode::RECOVERABLE;
137 }
138 static const SG::AuxElement::Accessor<std::string> tupleName ("tupleName");
139 static const SG::AuxElement::Accessor<std::string> collectionName ("collectionName");
140 std::string collName = collectionName(*ei);
141 std::string::size_type pos = collName.rfind ("/");
142 if (pos != std::string::npos) {
143 collName.erase (0, pos+1);
144 }
145
146 {
147 char* buf = 0;
148 int buf_sz = asprintf
149 (&buf,
150 "%03" PRId64 ".%s = %s\n"
151 "%03" PRId64 ".%s = %s\n"
152 "%03" PRId64 ".%s = %u\n"
153 "%03" PRId64 ".%s = %u\n"
154 "%03" PRId64 ".%s = %i\n",
155 nevts,
156 "collectionName",
157 collName.c_str(),
158 nevts,
159 "tupleName",
160 tupleName(*ei).c_str(),
161 nevts,
162 "RunNumber",
163 *m_runnbr,
164 nevts,
165 "EventNumber",
166 *m_evtnbr,
167 nevts,
168 "el_n",
169 *m_el_n);
170 if (buf_sz>=0){
171 write(m_ofd, buf, buf_sz);
172 free(buf);
173 }
174 }
175
176 if (*m_el_n > 0) {
177 if (!evtStore()->retrieve(m_el_eta, "el_eta").isSuccess()) {
178 ATH_MSG_WARNING("could not retrieve [el_eta] from store");
179 return StatusCode::RECOVERABLE;
180 }
181
183 "el_jetcone_dr").isSuccess()) {
184 ATH_MSG_WARNING("could not retrieve [el_jetcone_dr] from store");
185 return StatusCode::RECOVERABLE;
186 }
187
188 {
189 std::stringstream bufv;
190 for (int32_t ii = 0; ii < *m_el_n; ++ii) {
191 bufv << (*m_el_eta)[ii];
192 if (ii != (*m_el_n)-1) {
193 bufv << ", ";
194 }
195 }
196 char* buf = 0;
197 int buf_sz = asprintf
198 (&buf,
199 "%03" PRId64 ".%s = [%s]\n",
200 nevts,
201 "el_eta",
202 bufv.str().c_str());
203 if (buf_sz>=0){
204 write(m_ofd, buf, buf_sz);
205 free(buf);
206 }
207 }
208
209
210 {
211 std::stringstream bufv;
212 for (int32_t ii = 0; ii < *m_el_n; ++ii) {
213 bufv << "[";
214 for (std::size_t jj = 0, jjmax = (*m_el_jetcone_dr)[ii].size();
215 jj < jjmax;
216 ++jj) {
217 bufv << (*m_el_jetcone_dr)[ii][jj];
218 if (jj != jjmax-1) {
219 bufv << ", ";
220 }
221 }
222 bufv << "]";
223 if (ii != (*m_el_n)-1) {
224 bufv << ", ";
225 }
226 }
227 char* buf = 0;
228 int buf_sz = asprintf
229 (&buf,
230 "%03" PRId64 ".%s = [%s]\n",
231 nevts,
232 "el_jetcone_dr",
233 bufv.str().c_str());
234 if (buf_sz>=0){
235 write(m_ofd, buf, buf_sz);
236 free(buf);
237 }
238 }
239 }
240
241 return StatusCode::SUCCESS;
242}
#define ATH_MSG_WARNING(x)
#define ATH_MSG_DEBUG(x)
SG::Accessor< T, ALLOC > Accessor
Definition AuxElement.h:572
static char buf[SIGNAL_MESSAGE_BUFSIZE]
Dump application state information on a fatal signal.
retrieve(aClass, aKey=None)
Definition PyKernel.py:110
EventInfo_v1 EventInfo
Definition of the latest event info version.

◆ 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 Athena::RootAsciiDumperAlg::finalize ( )
virtual

Definition at line 97 of file RootAsciiDumperAlg.cxx.

98{
99 ATH_MSG_INFO ("Finalizing " << name() << "...");
100
101 if (m_ofd > 0) {
102 fflush(NULL);
103 if (close(m_ofd) < 0) {
104 ATH_MSG_WARNING("problem while closing [" << m_ofname << "]");
105 }
106 }
107
108 return StatusCode::SUCCESS;
109}
#define ATH_MSG_INFO(x)

◆ initialize()

StatusCode Athena::RootAsciiDumperAlg::initialize ( )
virtual

Definition at line 74 of file RootAsciiDumperAlg.cxx.

75{
76 ATH_MSG_INFO ("Initializing " << name() << "...");
77
78 ATH_MSG_INFO("dumping data into file ["
79 << m_ofname << "]...");
80 if (m_ofname.empty()) {
81 ATH_MSG_ERROR("cannot dump data into an empty file name!");
82 return StatusCode::FAILURE;
83 }
84 m_ofd = open(m_ofname.c_str(),
85 O_WRONLY | O_CREAT | O_TRUNC,
86 S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
87
88 if (m_ofd < 0) {
89 ATH_MSG_ERROR("problem opening file [" << m_ofname << "] with "
90 "write permissions.");
91 return StatusCode::FAILURE;
92 }
93
94 return StatusCode::SUCCESS;
95}
#define ATH_MSG_ERROR(x)
@ open
Definition BinningType.h:40

◆ 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
::StatusCode StatusCode
StatusCode definition for legacy code.

◆ 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_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_el_eta

const std::vector<float>* Athena::RootAsciiDumperAlg::m_el_eta
private

eta of electrons

Definition at line 84 of file RootAsciiDumperAlg.h.

◆ m_el_jetcone_dr

const std::vector<std::vector<float> >* Athena::RootAsciiDumperAlg::m_el_jetcone_dr
private

jetcone dR

Definition at line 87 of file RootAsciiDumperAlg.h.

◆ m_el_n

const int32_t* Athena::RootAsciiDumperAlg::m_el_n {}
private

number of electrons

Definition at line 81 of file RootAsciiDumperAlg.h.

81{};

◆ m_evtnbr

const uint32_t* Athena::RootAsciiDumperAlg::m_evtnbr {}
private

event number

Definition at line 78 of file RootAsciiDumperAlg.h.

78{};

◆ 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_nentries

uint64_t Athena::RootAsciiDumperAlg::m_nentries {}
private

number of entries processed so-far

Definition at line 72 of file RootAsciiDumperAlg.h.

72{};

◆ m_ofd

int Athena::RootAsciiDumperAlg::m_ofd {-1}
private

file handle to the ASCII output file

Definition at line 69 of file RootAsciiDumperAlg.h.

69{-1};

◆ m_ofname

std::string Athena::RootAsciiDumperAlg::m_ofname
private

ASCII output file name.

Definition at line 66 of file RootAsciiDumperAlg.h.

◆ m_runnbr

const uint32_t* Athena::RootAsciiDumperAlg::m_runnbr {}
private

run number

Definition at line 75 of file RootAsciiDumperAlg.h.

75{};

◆ 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: