Skip to content
Snippets Groups Projects
Commit fa3d9880 authored by Marco Clemencic's avatar Marco Clemencic
Browse files

Add autodeclaring constructor signature to DataObjectHandle

it allows declaration and initialization of DataObjectHandle data members in
headers (as for Gaudi::Property).

To simplify declaration of read or write handles, two helper classes have been
added:
- DataObjectReadHandle
- DataObjectWriteHandle

For example
```cpp
class MyAlg: public Algorithm {
  using Algorithm::Algorithm;
  DataObjectReadHandle<Tracks> m_tracks{this, "TracksLocation",
                                        "/Event/Rec/Tracks"};
  DataObjectWriteHandle<Vertices> m_vertices{this, "VerticesLocation",
                                             "/Event/Rec/Vertices"};
};
```
parent 5ad20ddf
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment