ATLAS Offline Software
Loading...
Searching...
No Matches
PyAnalysisExamplesDict.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 PYANALYSISEXAMPLES_PYANALYSISEXAMPLESDICT_H
6#define PYANALYSISEXAMPLES_PYANALYSISEXAMPLESDICT_H
7
12
14{
15 void tmp ()
16 {
17 auto obj = std::make_unique<AthPyEx::MyObj>("cccc");
18 obj->setA<float>(0);
19 obj->setA<double>(0);
20 obj->setA<int>(0);
21 obj->setA<long>(0);
22 obj->setA<bool>(false);
23 }
24}
25
26#endif