Draft: Fix output for new histograms in JSON and MessageSvc sinks
2 unresolved threads
2 unresolved threads
Draft because I'd like to address the calculation and propagation of statistics as mentioned in #198 (closed)
/cc @sponce
Merge request reports
Activity
Filter activity
assigned to @rmatev
added 69 commits
-
4de1bcf9...5981808a - 67 commits from branch
gaudi:master
- 4ad202fa - Fix output for new histograms in JSON and MessageSvc sinks
- 8d9671e6 - Add examples for maps of histograms
-
4de1bcf9...5981808a - 67 commits from branch
- Resolved by Rosen Matev
added 1 commit
- 57a211cf - Name type for axes specification and use in examples
73 73 public: 74 74 using Gaudi::Algorithm::Algorithm; 75 75 76 StatusCode initialize() override { 77 const StatusCode sc = Algorithm::initialize(); 78 if ( sc.isFailure() ) return sc; 79 80 for ( int i : { 1, 2, 3 } ) { 81 using AxesSpecType = decltype( m_map_prof_gauss_init )::mapped_type::AxesSpecType; 82 m_map_prof_gauss_init.emplace( std::piecewise_construct, std::forward_as_tuple( i ), 83 std::forward_as_tuple( this, "MapGaussInit" + std::to_string( i ), 84 "Gaussian mean=0, sigma=1, atomic", 85 AxesSpecType( { 50, -5, 5 }, { 50, -5, 5 } ) ) ); 86 } - Comment on lines +80 to +86
Any suggestions how to hide this boilerplate from user code? As far as I can tell, that is the only one way to construct the histograms in place, and if you get it wrong (e.g. assume they can be copied), GCC spits a lot of "template argument deduction/substitution failed" and gives you absolutely no useful hints as to what is the correct solution.
changed this line in version 5 of the diff
73 73 public: 74 74 using Gaudi::Algorithm::Algorithm; 75 75 76 StatusCode initialize() override { 77 const StatusCode sc = Algorithm::initialize(); 78 if ( sc.isFailure() ) return sc; - Comment on lines +77 to +78
changed this line in version 5 of the diff
added 10 commits
-
57a211cf...6abea6b4 - 7 commits from branch
gaudi:master
- cc684a77 - Fix output for new histograms in JSON and MessageSvc sinks
- e8867fde - Add examples for maps of histograms
- bdee4443 - Name type for axes specification and use in examples
Toggle commit list-
57a211cf...6abea6b4 - 7 commits from branch
mentioned in merge request !1353 (merged)
mentioned in merge request !1362 (merged)
mentioned in issue lhcb/LHCb#251
Please register or sign in to reply