ATLAS Offline Software
safeDecorator.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef IDPVM_safeDecorator_h
6 #define IDPVM_safeDecorator_h
7 
21 #include "GaudiKernel/EventContext.h"
22 
23 #include <iostream>
24 #include <utility>
25 #include <vector>
26 
27 #include <cstdlib>
28 
29 namespace IDPVM {
30  // @name roughlyEqual overloaded functions
31  // @{
32  bool roughlyEqual(const int i, const int j);
33  bool roughlyEqual(const unsigned int i, const unsigned int j);
34  bool roughlyEqual(const float i, const float j);
35  // @}
36  // @enum DuplicateBehaviour
40  };
41  template<class ContainerType, class VariableType>
42  using WriteKeyAccessorPair = std::pair<SG::WriteDecorHandleKey<ContainerType>, SG::AuxElement::ConstAccessor<VariableType> >;
43  //
44  template<class ContainerType, class VariableType>
45  using WriteAccessorRefPair = std::pair<SG::WriteDecorHandle<ContainerType, VariableType>, SG::AuxElement::ConstAccessor<VariableType>& >;
46 
47  template<class ContainerType, class VariableType>
48  using OptionalDecoration = std::pair<SG::WriteDecorHandle<ContainerType, VariableType>, bool >;
49  // create a pair composed of a WriteDecorHandleKey to create a decorator handle
50  // and an accessor to check the availablilty of a decoration
51  template <class T_Parent, class T_Cont, class T>
53  const SG::ReadHandleKey<T_Cont> &container_key,
54  const std::string &prefix,
55  const std::vector<std::string> &decor_names,
56  std::vector<WriteKeyAccessorPair<T_Cont, T > > &decor_out) {
57  decor_out.clear();
58  decor_out.reserve(decor_names.size());
59  for (const std::string &a_decor_name: decor_names) {
60  decor_out.emplace_back(SG::WriteDecorHandleKey<T_Cont>(container_key.key()+"."+prefix+a_decor_name),
62  parent.declare(decor_out.back().first);
63  decor_out.back().first.setOwner(&parent);
64  decor_out.back().first.initialize().ignore();
65  }
66  }
67 
68  template <class T_Cont, class T>
69  std::vector<OptionalDecoration<T_Cont,T> >
70  createDecoratorsIfNeeded( const T_Cont &container,
71  const std::vector<WriteKeyAccessorPair<T_Cont, T > > &keys,
72  const EventContext &ctx,
73  bool verbose=false) {
74  std::vector<OptionalDecoration<T_Cont, T> > out;
75  bool all_available=true;
76  if (!container.empty()) {
77  std::vector<bool> decorate;
78  decorate.reserve(keys.size());
79  for( const WriteKeyAccessorPair<T_Cont, T> &a_key : keys) {
80  decorate.push_back(!a_key.second.isAvailable(*container[0]) );
81  all_available &= !decorate.back();
82  if (verbose && !decorate.back()) {
83  std::cout << "WARNING IDPVM::createDecoratorsIfNeeded: Decoration " << a_key.first.key() <<
84  " already exists; reject update.\n";
85  }
86  }
87  if (!all_available) {
88  std::size_t idx=0;
89  out.reserve(keys.size());
90  for( const WriteKeyAccessorPair<T_Cont, T> &a_key : keys) {
91  assert( idx < decorate.size());
92  out.emplace_back(SG::WriteDecorHandle<T_Cont,T>(a_key.first,ctx), decorate[idx++]);
93  if (not out.back().first.isPresent()) {
94  std::stringstream msg;
95  msg << "Container " << a_key.first.key() << " to be decorated does not exist.";
96  throw std::runtime_error( msg.str() );
97  }
98  }
99  }
100  }
101  return out;
102  }
103 
104 
105  template <class T_Cont, class T>
106  std::vector<SG::WriteDecorHandle<T_Cont,T> >
108  const EventContext &ctx) {
109  std::vector<SG::WriteDecorHandle<T_Cont,T> > out;
110  out.reserve(keys.size());
111  for( const SG::WriteDecorHandleKey<T_Cont> &a_key : keys) {
112  out.emplace_back(a_key,ctx);
113  if (not out.back().isValid()) {
114  std::stringstream msg;
115  msg << "Failed to create decorator handdle " << a_key.key();
116  throw std::runtime_error( msg.str() );
117  }
118  }
119  return out;
120  }
121 
122 
123  // convenience method to create several decorators
124  template<class T_Parent, class T_Cont>
125  void createDecoratorKeys(T_Parent &parent,
126  const SG::ReadHandleKey<T_Cont> &container_key,
127  const std::string &prefix,
128  const std::vector<std::string> &decor_names,
129  std::vector<SG::WriteDecorHandleKey<T_Cont> > &decor_out) {
130  decor_out.clear();
131  decor_out.reserve(decor_names.size());
132  for (const std::string &a_decor_name : decor_names) {
133  assert( !a_decor_name.empty() );
134  decor_out.emplace_back(container_key.key()+"."+prefix+a_decor_name);
135  // need to declare handles, otherwise the scheduler would not pick up the data dependencies
136  // introduced by the decorations
137  parent.declare(decor_out.back());
138  decor_out.back().setOwner(&parent);
139  decor_out.back().initialize().ignore();
140  }
141  }
142 
143 
144  template<class T_Parent, class T_Cont>
146  const SG::ReadHandleKey<T_Cont> &container_key,
147  const std::string &prefix,
148  const std::vector<std::string> &decor_names,
149  std::vector<SG::ReadDecorHandleKey<T_Cont> > &decor_out) {
150  decor_out.reserve(decor_out.size() + decor_names.size());
151  for (const std::string &a_decor_name : decor_names) {
152  decor_out.emplace_back( container_key.key()+"."+prefix+a_decor_name);
153  parent.declare(decor_out.back());
154  decor_out.back().setOwner(&parent);
155  decor_out.back().initialize().ignore();
156  }
157  }
158 
159 
160  template <class T_Cont, class T_Cont_Elm, class T>
162  const T& value) {
163  if (!decorator.second.isAvailable(particle)) {
164  const T existing = decorator.second(particle);
165  if (not IDPVM::roughlyEqual(existing, value)) {
166  std::cout << "WARNING IDPVM::safeDecorator: " << decorator.first.decorKey() <<
167  " Already exists on this object with a different value.\n";
168  }
169  } else {
170  decorator.first(particle) = value;
171  }
172  }
173 
174  template <class T_Cont, class T_Cont_Elm, class T>
176  const T& value) {
177  if (decorator.second) {
178  decorator.first(particle) = value;
179  }
180  }
181 
182  // unsafe method for convenience
183  template <class T_Cont, class T_Cont_Elm, class T>
184  void decorate(const T_Cont_Elm& particle,OptionalDecoration<T_Cont,T> &decorator,
185  const T& value) {
186  decorator.first(particle) = value;
187  }
188 
189 
190 }
191 #endif
IDPVM
Class to retrieve associated truth from a track, implementing a cached response.
Definition: InDetPhysValMonitoringTool.h:55
SG::WriteDecorHandleKey
Property holding a SG store/key/clid/attr name from which a WriteDecorHandle is made.
Definition: StoreGate/StoreGate/WriteDecorHandleKey.h:89
IDPVM::decorate
void decorate(const T_Cont_Elm &particle, OptionalDecoration< T_Cont, T > &decorator, const T &value)
Definition: safeDecorator.h:184
Trk::ParticleSwitcher::particle
constexpr ParticleHypothesis particle[PARTICLEHYPOTHESES]
the array of masses
Definition: ParticleHypothesis.h:76
ReadDecorHandleKey.h
Property holding a SG store/key/clid/attr name from which a ReadDecorHandle is made.
IDPVM::DuplicateBehaviour
DuplicateBehaviour
Behaviour in case of trying to add a decoration which previously exists.
Definition: safeDecorator.h:38
IDPVM::createDecoratorKeysAndAccessor
void createDecoratorKeysAndAccessor(T_Parent &parent, const SG::ReadHandleKey< T_Cont > &container_key, const std::string &prefix, const std::vector< std::string > &decor_names, std::vector< WriteKeyAccessorPair< T_Cont, T > > &decor_out)
Definition: safeDecorator.h:52
python.AthDsoLogger.out
out
Definition: AthDsoLogger.py:71
athena.value
value
Definition: athena.py:122
IDPVM::WriteAccessorRefPair
std::pair< SG::WriteDecorHandle< ContainerType, VariableType >, SG::AuxElement::ConstAccessor< VariableType > & > WriteAccessorRefPair
Definition: safeDecorator.h:45
IDPVM::REJECT_WARN_IF_UNEQUAL
@ REJECT_WARN_IF_UNEQUAL
Definition: safeDecorator.h:39
SG::ConstAccessor
Helper class to provide constant type-safe access to aux data.
Definition: ConstAccessor.h:54
SG::VarHandleKey::key
const std::string & key() const
Return the StoreGate ID for the referenced object.
Definition: AthToolSupport/AsgDataHandles/Root/VarHandleKey.cxx:141
SG::ReadHandleKey< T_Cont >
IDPVM::addReadDecoratorHandleKeys
void addReadDecoratorHandleKeys(T_Parent &parent, const SG::ReadHandleKey< T_Cont > &container_key, const std::string &prefix, const std::vector< std::string > &decor_names, std::vector< SG::ReadDecorHandleKey< T_Cont > > &decor_out)
Definition: safeDecorator.h:145
WriteDecorHandleKey.h
Property holding a SG store/key/clid/attr name from which a WriteDecorHandle is made.
lumiFormat.i
int i
Definition: lumiFormat.py:92
IDPVM::OptionalDecoration
std::pair< SG::WriteDecorHandle< ContainerType, VariableType >, bool > OptionalDecoration
Definition: safeDecorator.h:48
IDPVM::decorateOrRejectQuietly
void decorateOrRejectQuietly(const T_Cont_Elm &particle, OptionalDecoration< T_Cont, T > &decorator, const T &value)
Definition: safeDecorator.h:175
SG::WriteDecorHandle
Handle class for adding a decoration to an object.
Definition: StoreGate/StoreGate/WriteDecorHandle.h:99
WriteDecorHandle.h
Handle class for adding a decoration to an object.
checkCorrelInHIST.prefix
dictionary prefix
Definition: checkCorrelInHIST.py:391
test_pyathena.parent
parent
Definition: test_pyathena.py:15
IDPVM::createDecoratorsIfNeeded
std::vector< OptionalDecoration< T_Cont, T > > createDecoratorsIfNeeded(const T_Cont &container, const std::vector< WriteKeyAccessorPair< T_Cont, T > > &keys, const EventContext &ctx, bool verbose=false)
Definition: safeDecorator.h:70
IDPVM::REJECT_WITH_WARNING
@ REJECT_WITH_WARNING
Definition: safeDecorator.h:39
IDPVM::decorateOrWarnIfUnequal
void decorateOrWarnIfUnequal(const T_Cont_Elm &particle, WriteAccessorRefPair< T_Cont, T > &decorator, const T &value)
Definition: safeDecorator.h:161
IDPVM::DO_NOTHING
@ DO_NOTHING
Definition: safeDecorator.h:39
python.TriggerHandler.verbose
verbose
Definition: TriggerHandler.py:297
LArNewCalib_DelayDump_OFC_Cali.idx
idx
Definition: LArNewCalib_DelayDump_OFC_Cali.py:69
IDPVM::createDecoratorKeys
void createDecoratorKeys(T_Parent &parent, const SG::ReadHandleKey< T_Cont > &container_key, const std::string &prefix, const std::vector< std::string > &decor_names, std::vector< SG::WriteDecorHandleKey< T_Cont > > &decor_out)
Definition: safeDecorator.h:125
IDPVM::roughlyEqual
bool roughlyEqual(const int i, const int j)
Definition: safeDecorator.cxx:17
IDPVM::createDecorators
std::vector< SG::WriteDecorHandle< T_Cont, T > > createDecorators(const std::vector< SG::WriteDecorHandleKey< T_Cont > > &keys, const EventContext &ctx)
Definition: safeDecorator.h:107
ReadDecorHandle.h
Handle class for reading a decoration on an object.
python.Bindings.keys
keys
Definition: Control/AthenaPython/python/Bindings.py:790
SG::ReadDecorHandleKey< T_Cont >
IDPVM::REJECT_QUIETLY
@ REJECT_QUIETLY
Definition: safeDecorator.h:39
python.AutoConfigFlags.msg
msg
Definition: AutoConfigFlags.py:7
AuxElement.h
Base class for elements of a container that can have aux data.
IDPVM::WriteKeyAccessorPair
std::pair< SG::WriteDecorHandleKey< ContainerType >, SG::AuxElement::ConstAccessor< VariableType > > WriteKeyAccessorPair
Definition: safeDecorator.h:42