Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
xAODEventSelector.h
Go to the documentation of this file.
1 
3 /*
4  Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
5 */
6 
7 // xAODEventSelector.h
8 // Header file for class xAODEventSelector
9 // Author: Johannes Elmsheuser, Will Buttinger
11 #ifndef ATHENAROOTCOMPS_ATHENA_XAODEVENTSELECTOR_H
12 #define ATHENAROOTCOMPS_ATHENA_XAODEVENTSELECTOR_H 1
13 
14 // framework includes
17 #include "GaudiKernel/IEvtSelector.h"
18 #include "GaudiKernel/IIoComponent.h"
19 #include "GaudiKernel/IIncidentSvc.h"
20 #include "GaudiKernel/MsgStream.h"
21 #include "Gaudi/Property.h"
22 #include "GaudiKernel/ServiceHandle.h"
25 
26 #include "PoolSvc/IPoolSvc.h"
27 
28 #include "TFile.h"
29 
30 #include "xAODTEvent.h"
31 
32 #include <unordered_map>
33 
34 // Forward declaration
35 class ISvcLocator;
36 class StoreGateSvc;
37 class TTree;
38 class IClassIDSvc;
39 class IDictLoaderSvc;
40 namespace Athena { class xAODEventContext; }
41 
42 namespace Athena {
43 
48  public extends<::AthService,
49  IEvtSelector,
50  IEvtSelectorSeek,
51  IAddressProvider,
52  IIoComponent,
53  IIncidentListener>
54 {
56 
57 
58 
60  // Public methods:
62  public:
63 
65  xAODEventSelector( const std::string& name, ISvcLocator* svcLoc );
66 
68  virtual ~xAODEventSelector();
69 
70  // Athena hooks
71  virtual StatusCode initialize() override;
72  virtual StatusCode finalize() override;
73 
74  virtual void handle(const Incident& incident) override;
75 
78  virtual StatusCode createContext( Context*& refpCtxt ) const override;
79 
80  virtual StatusCode last( Context& refContext ) const override;
81  virtual StatusCode next( Context& refCtxt ) const override;
82  virtual StatusCode next( Context& refCtxt, int jump ) const override;
83  virtual StatusCode previous( Context& refCtxt ) const override;
84  virtual StatusCode previous( Context& refCtxt, int jump ) const override;
85  virtual StatusCode rewind( Context& refCtxt ) const override;
86 
87  virtual StatusCode createAddress( const Context& refCtxt,
88  IOpaqueAddress*& ) const override;
89  virtual StatusCode releaseContext( Context*& refCtxt ) const override;
90  virtual StatusCode resetCriteria( const std::string& cr,
91  Context& ctx )const override;
93 
96 
100  virtual StatusCode seek (Context& refCtxt, int evtnum) const override;
101 
106  virtual int curEvent (const Context& refCtxt) const override;
108 
111  virtual StatusCode io_reinit() override;
112 
116  virtual
117  StatusCode preLoadAddresses(StoreID::type storeID, tadList& list) override;
118 
120  virtual
121  StatusCode loadAddresses(StoreID::type storeID, tadList& list) override;
122 
124  virtual
125  StatusCode updateAddress(StoreID::type storeID, SG::TransientAddress* tad,
126  const EventContext& ctx) override;
128 
130  virtual int size (Context& refCtxt) const override;
131 
132 
133  private:
134 
136  StatusCode createRootBranchAddresses(StoreID::type storeID,
137  tadList &tads);
138 
139 
141  TFile* fetchNtupleFile(const std::string& fname) const;
142 
144  StatusCode createMetaDataRootBranchAddresses() const;
145 
147  StatusCode do_init_io();
148 
150  StatusCode setFile(const std::string& fname);
151 
155  int find_coll_idx(int evtidx) const;
156 
158  xAODEventSelector *self() const
159  { return const_cast<xAODEventSelector*>(this); }
160 
162  // Private data:
164  private:
165 
182 
184  StringArrayProperty m_inputCollectionsName;
185 
187  StringProperty m_tupleName;
188 
190  StringProperty m_metadataName;
191 
194 
196  mutable long m_nbrEvts;
197 
199  mutable long m_curEvt;
200 
202  mutable long m_collIdx;
203 
204  struct CollMetaData {
209  };
211  mutable std::vector<CollMetaData> m_collEvts;
212 
213 
214  // flag to trigger reloading of root branch addresses
215  mutable bool m_needReload;
216 
217  // the list of transient addresses we "manage" or know about
218  // these addresses are the things we can retrieve from the TEvent
219  // for the event data
220  std::unordered_map<SG::TransientAddress*, bool> m_rootAddresses;
221 
222 
225 
227  mutable TFile* m_tfile;
228 
229  mutable long m_tevent_entries; //used to cache getEntries result of tevent
230 
231  int m_accessMode; //tevent access mode
232 
233  bool m_fillEventInfo = false; //if true, will fill EventInfo from xAOD::EventInfo
234 
235  bool m_readMetadataWithPool = false; //interacts with PoolSvc to create collections, needed by MetaDataSvc
236 
237  bool m_printPerfStats = false; //should we monitor the touched input branches?
238 
239  bool m_printEventProxyWarnings = true;
240 
241 #ifndef XAOD_ANALYSIS
242  //these are here just for compatibility with RecExCommon ... we were trying to use this selector in recexcommon jobs for a bit
243  StringProperty m_collectionType;
244 #endif
245 
246 };
247 
249 // Inline methods:
251 
252 } //> namespace Athena
253 
254 #endif //> ATHENAROOTCOMPS_ATHENA_XAODEVENTSELECTOR_H
Athena::xAODEventSelector::m_nbrEvts
long m_nbrEvts
Number of Events read so far.
Definition: xAODEventSelector.h:196
Athena::xAODEventSelector::m_ppSvc
ServiceHandle< IProxyProviderSvc > m_ppSvc
Handle to the proxy provider svc.
Definition: xAODEventSelector.h:181
python.tests.PyTestsLib.finalize
def finalize(self)
_info( "content of StoreGate..." ) self.sg.dump()
Definition: PyTestsLib.py:50
Athena::xAODEventSelector::m_rootAddresses
std::unordered_map< SG::TransientAddress *, bool > m_rootAddresses
Definition: xAODEventSelector.h:220
IDictLoaderSvc
Definition: IDictLoaderSvc.h:37
Athena::xAODEventSelector::m_skipEvts
long m_skipEvts
Number of events to skip at the beginning.
Definition: xAODEventSelector.h:193
initialize
void initialize()
Definition: run_EoverP.cxx:894
SG::TransientAddress
Definition: TransientAddress.h:32
Athena::xAODEventContext
Definition: xAODEventSelector.cxx:80
Athena::xAODEventSelector::m_collEvts
std::vector< CollMetaData > m_collEvts
cache of the number of entries for each collection
Definition: xAODEventSelector.h:211
Athena::xAODEventSelector::CollMetaData::min_entries
long min_entries
number of entries up to this collection
Definition: xAODEventSelector.h:206
Athena::xAODEventSelector::m_inputCollectionsName
StringArrayProperty m_inputCollectionsName
List of input files containing TTree.
Definition: xAODEventSelector.h:184
Athena::xAODEventSelector::m_tupleName
StringProperty m_tupleName
Name of TTree to load from collection of input files.
Definition: xAODEventSelector.h:187
Athena::xAODEventSelector::m_accessMode
int m_accessMode
Definition: xAODEventSelector.h:231
Athena::xAODEventSelector::m_tevent_entries
long m_tevent_entries
Definition: xAODEventSelector.h:229
Athena::xAODEventSelector::m_tevent
xAOD::xAODTEvent * m_tevent
current TEvent being read
Definition: xAODEventSelector.h:224
Athena::xAODEventSelector::m_curEvt
long m_curEvt
current event index
Definition: xAODEventSelector.h:199
python.setupRTTAlg.size
int size
Definition: setupRTTAlg.py:39
StoreGateSvc
The Athena Transient Store API.
Definition: StoreGateSvc.h:125
fillPileUpNoiseLumi.next
next
Definition: fillPileUpNoiseLumi.py:52
Athena
Some weak symbol referencing magic...
Definition: AthLegacySequence.h:21
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
xAODTEvent.h
Athena::xAODEventSelector::m_poolSvc
ServiceHandle< IPoolSvc > m_poolSvc
Handle to the PoolSvc (used in Hybrid mode when user is reading metadata with pool)
Definition: xAODEventSelector.h:179
xAOD::xAODTEvent
Definition: xAODTEvent.h:23
histSizes.list
def list(name, path='/')
Definition: histSizes.py:38
Athena::xAODEventSelector::CollMetaData
Definition: xAODEventSelector.h:204
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
Athena::xAODEventSelector::m_ometaStore
ServiceHandle< StoreGateSvc > m_ometaStore
Pointer to the StoreGateSvc output metadata store.
Definition: xAODEventSelector.h:171
Athena::xAODEventSelector::m_dictsvc
ServiceHandle< IDictLoaderSvc > m_dictsvc
Pointer to the IDictLoaderSvc.
Definition: xAODEventSelector.h:175
IPoolSvc.h
This file contains the class definition for the IPoolSvc interface class.
python.AthDsoLogger.fname
string fname
Definition: AthDsoLogger.py:67
StoreID::type
type
Definition: StoreID.h:24
Athena::xAODEventSelector::m_metadataName
StringProperty m_metadataName
Name of TTree to load from metadata of input files.
Definition: xAODEventSelector.h:190
Athena::xAODEventSelector::m_imetaStore
ServiceHandle< StoreGateSvc > m_imetaStore
Pointer to the StoreGateSvc input metadata store.
Definition: xAODEventSelector.h:169
Athena::xAODEventSelector::CollMetaData::max_entries
long max_entries
number of entries after this collection
Definition: xAODEventSelector.h:208
Athena::xAODEventSelector::m_collectionType
StringProperty m_collectionType
Definition: xAODEventSelector.h:243
AthService.h
IAddressProvider.h
Athena::xAODEventSelector::m_collIdx
long m_collIdx
current collection index (into m_inputCollectionsName)
Definition: xAODEventSelector.h:202
Athena::xAODEventSelector::m_tfile
TFile * m_tfile
current TFile being read
Definition: xAODEventSelector.h:227
Athena::xAODEventSelector
Class implementing the GAUDI IEvtSelector interface using ROOT TTree as a backend.
Definition: xAODEventSelector.h:54
IEvtSelectorSeek.h
Extension to IEvtSelector to allow for seeking.
checker_macros.h
Define macros for attributes used to control the static checker.
Athena::xAODEventSelector::m_incsvc
ServiceHandle< IIncidentSvc > m_incsvc
Handle to the incident service.
Definition: xAODEventSelector.h:177
Athena::xAODEventSelector::m_needReload
bool m_needReload
Definition: xAODEventSelector.h:215
Athena::xAODEventSelector::m_clidsvc
ServiceHandle< IClassIDSvc > m_clidsvc
Pointer to the IClassIDSvc.
Definition: xAODEventSelector.h:173
Athena::xAODEventSelector::m_dataStore
ServiceHandle< StoreGateSvc > m_dataStore
Pointer to the StoreGateSvc event store.
Definition: xAODEventSelector.h:167
Athena::ATLAS_NOT_THREAD_SAFE
void DebugAids::stacktraceLine ATLAS_NOT_THREAD_SAFE(IOFD fd, unsigned long addr)
Write out stack trace line to FD.
Definition: SealDebug.cxx:328
Trk::previous
@ previous
Definition: BinningData.h:32
ServiceHandle< StoreGateSvc >