ATLAS Offline Software
Loading...
Searching...
No Matches
TreeBranchHelpers.h
Go to the documentation of this file.
1// Dear emacs, this is -*- c++ -*-
2//
3// Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
4//
5#ifndef ASGANALYSISALGORITHMS_TREEBRANCHHELPERS_H
6#define ASGANALYSISALGORITHMS_TREEBRANCHHELPERS_H
7// System include(s):
8#include <unordered_map>
9#include <string>
10#include <vector>
11#include <memory>
12#include <list>
13#include <iostream>
14
15// Framework include(s):
23
24// ROOT include(s):
25#include <ROOT/RNTupleModel.hxx>
26
27// EDM include(s):
30
31// Forward declaration(s):
32class TClass;
33class TTree;
34class TVirtualCollectionProxy;
35namespace SG {
36 class AuxVectorBase;
38}
39
40namespace CP
41{
52
54 {
56#ifdef XAOD_STANDALONE
58#else
60#endif
61
62
63
66 {
68 std::string branchDecl;
69
71 std::string sgName;
72
74 std::string auxName;
75
77 std::string branchName;
78
80 std::string typeName;
81
83 bool nominalOnly = false;
84
86 std::optional<int> basketSize;
87
89 std::string metTermName;
90
91
94
96 const std::type_info* auxType = nullptr;
97
99 const std::type_info* auxVecType = nullptr;
100
103
104
107
110
113
114
116 StatusCode parse (const std::string& branchDecl, MsgStream& msg);
117
119 StatusCode configureTypes (std::set<std::string>& decosWithoutType, MsgStream& msg);
120
122 StatusCode configureSystematics (ISystematicsSvc& sysSvc, MsgStream& msg);
123 };
124
125
126
129 {
131 const BranchConfig *branchConfig = nullptr;
132
134 std::size_t sysIndex = 0u;
135
137 bool isNominal = false;
138
140 std::string sgName;
141
143 std::string auxName;
144
146 std::string branchName;
147
148
150 StatusCode configureNames (const BranchConfig& branchConfig, const CP::SystematicSet& sys, ISystematicsSvc& sysSvc, MsgStream& msg);
151 };
152
153
154
157 {
158 public:
160 virtual ~IComponentProcessor() = default;
161
162 virtual StatusCode setup ( ROOT::RNTupleModel& /* model */, const BranchConfig& /* branchConfig */, OutputBranchData& /* outputData */, MsgStream& msg ) = 0;
163
164 virtual StatusCode setup ( TTree& /* tree */, const BranchConfig& /* branchConfig */, OutputBranchData& /* outputData */, MsgStream& msg ) = 0;
165 };
166
167
168
178 {
179 public:
181 virtual ~IObjectProcessor() = default;
182
189 virtual StatusCode retrieveProcess (StoreType& evtStore) = 0;
190
204
205 virtual StatusCode addBranch(TTree&, const BranchConfig&, OutputBranchData&) = 0;
206
207 virtual StatusCode addBranch(ROOT::RNTupleModel&, const BranchConfig&, OutputBranchData&) = 0;
208 };
209
226
227 public:
229 virtual ~ElementBranchProcessor() = default;
246
247
248 virtual StatusCode setup( TTree& tree, const BranchConfig& branchConfig, OutputBranchData& outputData, MsgStream& msg ) override;
249
250 virtual StatusCode setup( ROOT::RNTupleModel& /* model */, const BranchConfig& /* branchConfig */, OutputBranchData& /* outputData */, MsgStream& msg ) override;
263 StatusCode process( const SG::AuxElement& element,
264 MsgStream& msg );
265
266
268 std::string m_branchName;
270 std::unique_ptr< SG::TypelessConstAccessor > m_acc;
274 std::unique_ptr< SG::IAuxTypeVector > m_data;
276 void* m_dataPtr = nullptr;
277
278 }; // class ElementBranchProcessor
279
280
281
304
305 public:
307 virtual ~ContainerBranchProcessor() = default;
311 virtual StatusCode setup( TTree& tree, const BranchConfig& branchConfig, OutputBranchData& outputData, MsgStream& msg ) override;
313 StatusCode resize( size_t size, MsgStream& msg );
315 StatusCode process( const SG::AuxElement& element, size_t index,
316 MsgStream& msg );
317 virtual StatusCode setup( ROOT::RNTupleModel& /* model */, const BranchConfig& /* branchConfig */, OutputBranchData& /* outputData */, MsgStream& msg ) override;
318
320 std::string m_branchName;
322 std::unique_ptr< SG::TypelessConstAccessor > m_acc;
326 std::unique_ptr< SG::IAuxTypeVector > m_data;
328 void* m_dataPtr = nullptr;
329
330 }; // class ContainerBranchProcessor
331
332
333
334
342
343 public:
350 ElementProcessorRegular(const std::string& sgName);
351 virtual ~ElementProcessorRegular() = default;
354
356 virtual StatusCode retrieveProcess (StoreType& evtStore) override;
357
374 virtual StatusCode addBranch( TTree& tree, const BranchConfig& branchConfig, OutputBranchData& outputData ) override;
375
376 virtual StatusCode addBranch( ROOT::RNTupleModel& model, const BranchConfig& branchConfig, OutputBranchData& outputData ) override;
377
378 private:
379
389 std::vector<std::unique_ptr<ElementBranchProcessor>> m_branches;
390
392 std::string m_sgName;
393
394 }; // class ElementProcessorRegular
395
396
409
410 public:
417 ContainerProcessorRegular(const std::string& sgName);
418 virtual ~ContainerProcessorRegular() = default;
421
423 virtual StatusCode retrieveProcess (StoreType& evtStore) override;
424
441 virtual StatusCode addBranch( TTree& tree, const BranchConfig& branchConfig, OutputBranchData& outputData ) override;
442
443 virtual StatusCode addBranch( ROOT::RNTupleModel& model, const BranchConfig& branchConfig, OutputBranchData& outputData ) override;
444
445 private:
455 std::vector<std::unique_ptr<ContainerBranchProcessor>> m_branches;
457 TVirtualCollectionProxy* m_collProxy = nullptr;
460
462 std::string m_sgName;
463
464 }; // class ContainerProcessorRegular
465
466
467
475
476 public:
483 ElementProcessorMet (const std::string& sgName, const std::string& termName);
484 virtual ~ElementProcessorMet() = default;
487
489 virtual StatusCode retrieveProcess (StoreType& evtStore) override;
490
507 virtual StatusCode addBranch( TTree& tree, const BranchConfig& branchConfig, OutputBranchData& outputData ) override;
508
509 virtual StatusCode addBranch( ROOT::RNTupleModel& model, const BranchConfig& branchConfig, OutputBranchData& outputData ) override;
510
511 private:
512
522 std::vector<std::unique_ptr<ElementBranchProcessor>> m_branches;
523
525 std::string m_sgName;
526
528 std::string m_termName;
529
530 }; // class ElementProcessorMet
531
532
534 public:
535 using AsgMessagingForward::AsgMessagingForward;
536 virtual ~ProcessorList() = default;
537 ProcessorList( const ProcessorList& ) = delete;
539
542 StatusCode setupTree(const std::vector<std::string>& branches, std::unordered_set<std::string> nonContainers, ISystematicsSvc& sysSvc, TTree& tree );
543
545 StatusCode setupBranch( const BranchConfig& branchConfig, OutputBranchData& outputData, TTree& tree );
546
547 StatusCode process (StoreType& evtStore);
548
549 IObjectProcessor& getObjectProcessor (const BranchConfig& branchConfig, const std::string& sgName);
550
552 std::unordered_set<std::string> m_nonContainers;
553
555 std::optional<int> defaultBasketSize;
556
558 std::unordered_map< std::string, std::unique_ptr<IObjectProcessor>> m_processors;
559 };
560 }
561}
562
563#endif
Base class for elements of a container that can have aux data.
Abstract interface for manipulating vectors of arbitrary types.
Define macros for attributes used to control the static checker.
the interface for the central systematics service
Class to wrap a set of SystematicVariations.
std::string m_branchName
Name of the branch being written.
StatusCode resize(size_t size, MsgStream &msg)
Function (re)sizing the variable for a new event.
std::unique_ptr< SG::IAuxTypeVector > m_data
The object managing the memory of the written variable.
std::unique_ptr< SG::TypelessConstAccessor > m_acc
Object accessing the variable in question.
virtual StatusCode setup(TTree &tree, const BranchConfig &branchConfig, OutputBranchData &outputData, MsgStream &msg) override
Function setting up the object, and the branch.
ContainerBranchProcessor(const ContainerBranchProcessor &)=delete
ContainerBranchProcessor & operator=(const ContainerBranchProcessor &)=delete
const SG::IAuxTypeVectorFactory * m_factory
Pointer to the helper object that handles this variable.
void * m_dataPtr
Helper variable, pointing at the object to be written.
ContainerProcessorRegular & operator=(const ContainerProcessorRegular &)=delete
TVirtualCollectionProxy * m_collProxy
Collection proxy used for iterating over the container.
std::string m_sgName
Name of the object in the event store.
int m_auxElementOffset
Offset of the element type to SG::AuxElement.
virtual StatusCode retrieveProcess(StoreType &evtStore) override
retrieve and process the object
virtual StatusCode addBranch(TTree &tree, const BranchConfig &branchConfig, OutputBranchData &outputData) override
Add one branch to the output tree.
std::vector< std::unique_ptr< ContainerBranchProcessor > > m_branches
List of branch processors set up for this xAOD object.
ContainerProcessorRegular(const ContainerProcessorRegular &)=delete
ContainerProcessorRegular(const std::string &sgName)
Default constructor.
std::unique_ptr< SG::IAuxTypeVector > m_data
The object managing the memory of the written variable.
ElementBranchProcessor & operator=(const ElementBranchProcessor &)=delete
void * m_dataPtr
Helper variable, pointing at the object to be written.
const SG::IAuxTypeVectorFactory * m_factory
Pointer to the helper object that handles this variable.
std::string m_branchName
Name of the branch being written.
ElementBranchProcessor(const ElementBranchProcessor &)=delete
virtual StatusCode setup(TTree &tree, const BranchConfig &branchConfig, OutputBranchData &outputData, MsgStream &msg) override
Function setting up the object, and the branch.
std::unique_ptr< SG::TypelessConstAccessor > m_acc
Object accessing the variable in question.
std::vector< std::unique_ptr< ElementBranchProcessor > > m_branches
List of branch processors set up for this xAOD object.
std::string m_termName
Name of the MET term to retrieve.
virtual StatusCode addBranch(TTree &tree, const BranchConfig &branchConfig, OutputBranchData &outputData) override
Add one branch to the output tree.
ElementProcessorMet(const std::string &sgName, const std::string &termName)
Default constructor.
ElementProcessorMet(const ElementProcessorMet &)=delete
virtual StatusCode retrieveProcess(StoreType &evtStore) override
retrieve and process the object
ElementProcessorMet & operator=(const ElementProcessorMet &)=delete
std::string m_sgName
Name of the object in the event store.
ElementProcessorRegular(const ElementProcessorRegular &)=delete
virtual StatusCode retrieveProcess(StoreType &evtStore) override
retrieve and process the object
virtual StatusCode addBranch(TTree &tree, const BranchConfig &branchConfig, OutputBranchData &outputData) override
Add one branch to the output tree.
ElementProcessorRegular & operator=(const ElementProcessorRegular &)=delete
std::string m_sgName
Name of the object in the event store.
ElementProcessorRegular(const std::string &sgName)
Default constructor.
std::vector< std::unique_ptr< ElementBranchProcessor > > m_branches
List of branch processors set up for this xAOD object.
the interface class for branch processors
virtual StatusCode setup(ROOT::RNTupleModel &, const BranchConfig &, OutputBranchData &, MsgStream &msg)=0
virtual ~IComponentProcessor()=default
virtual destructor
virtual StatusCode setup(TTree &, const BranchConfig &, OutputBranchData &, MsgStream &msg)=0
the interface class for classes reading an object from the event store and processing it
virtual StatusCode addBranch(ROOT::RNTupleModel &, const BranchConfig &, OutputBranchData &)=0
virtual StatusCode retrieveProcess(StoreType &evtStore)=0
retrieve and process the object
virtual StatusCode addBranch(TTree &, const BranchConfig &, OutputBranchData &)=0
Add one branch to the output tree.
virtual ~IObjectProcessor()=default
virtual destructor
ProcessorList(const ProcessorList &)=delete
StatusCode setupBranch(const BranchConfig &branchConfig, OutputBranchData &outputData, TTree &tree)
Function setting up an individual branch on the first event.
std::unordered_set< std::string > m_nonContainers
the non-containers
IObjectProcessor & getObjectProcessor(const BranchConfig &branchConfig, const std::string &sgName)
StatusCode setupTree(const std::vector< std::string > &branches, std::unordered_set< std::string > nonContainers, ISystematicsSvc &sysSvc, TTree &tree)
Function setting up the internal data structures on the first event for regular branches.
std::optional< int > defaultBasketSize
the default basket size
std::unordered_map< std::string, std::unique_ptr< IObjectProcessor > > m_processors
object processors
ProcessorList & operator=(const ProcessorList &)=delete
Base class for elements of a container that can have aux data.
Definition AuxElement.h:484
Manage index tracking and synchronization of auxiliary data.
Interface for factory objects that create vectors.
The Athena Transient Store API.
base class to forward messages to another class
Class mimicking the AthMessaging class from the offline software.
Wrapper for TEvent to make it look like StoreGate.
Definition SgTEvent.h:44
const std::string process
a namespace for helper functions and objects for filling tree branches
StoreGateSvc StoreType
the type of the event store in the current environment
Select isolated Photons, Electrons and Muons.
Forward declaration.
static const auxid_t null_auxid
To signal no aux data item.
Definition AuxTypes.h:30
size_t auxid_t
Identifier for a particular aux data item.
Definition AuxTypes.h:27
Definition index.py:1
void ErrorHandler ATLAS_NOT_THREAD_SAFE(Int_t level, Bool_t abort, const char *location, const char *message)
Function filtering the warnings coming from ROOT.
Definition Init.cxx:105
the user configuration of an output branch
std::string branchDecl
the original user configuration string
std::string sgName
the SG name of the object to read from
const SG::IAuxTypeVectorFactory * auxFactory
pointer to the aux vector factory
std::string auxName
the aux data variable name to read from
const std::type_info * auxVecType
the vector type of the decoration we read
std::optional< int > basketSize
the basket size for this branch
CP::SystematicSet auxNameFilterSys
the affecting systematics for the auxName
CP::SystematicSet sgNameFilterSys
the affecting systematics for the sgName
CP::SystematicSet branchNameFilterSys
the affecting systematics for the branchName
const std::type_info * auxType
the type of the decoration we read
StatusCode configureSystematics(ISystematicsSvc &sysSvc, MsgStream &msg)
configure the systematics
SG::auxid_t nominalAuxId
the aux-id for the nominal decoration
std::string branchName
the name of the output branch
std::string metTermName
MET ONLY: the name of the MET term to write out.
bool nominalOnly
whether we only want to write out the nominal
StatusCode configureTypes(std::set< std::string > &decosWithoutType, MsgStream &msg)
configure the associated decoration types
StatusCode parse(const std::string &branchDecl, MsgStream &msg)
parse the user configuration string
std::string typeName
the name of the type (or empty to read from aux-registry)
the data for a single output branch
bool isNominal
whether this is unaffected by systematics (i.e. nominal)
const BranchConfig * branchConfig
the BranchConfig we are based on
std::size_t sysIndex
the index in the systematics list
StatusCode configureNames(const BranchConfig &branchConfig, const CP::SystematicSet &sys, ISystematicsSvc &sysSvc, MsgStream &msg)
configure names for systematics
std::string auxName
the name of the decoration in the aux-store
std::string sgName
the SG name of the object to read from
std::string branchName
the name of the output branch
MsgStream & msg
Definition testRead.cxx:32
TChain * tree