Skip to content
Snippets Groups Projects
  1. May 30, 2024
  2. May 28, 2024
  3. May 27, 2024
  4. May 21, 2024
  5. May 18, 2024
  6. May 17, 2024
  7. May 15, 2024
  8. May 13, 2024
    • John Chapman's avatar
      Fixing warnings in EVNTMerge_tf.py · cf36e028
      John Chapman authored
      cf36e028
    • Scott Snyder's avatar
      xAODCore+xAODTrigger: New method for registering auxiliary variables. · a5970f55
      Scott Snyder authored and Tadej Novak's avatar Tadej Novak committed
      xAODCore: New method for registering auxiliary variables.
      
      Introduce new macro AUXVAR_DECL to declare an auxiliary variable.
      Can use like:
      
      class FooAuxContainer : public AuxContainerBase
      {
      ...
      private:
        AUXVAR_DECL (int, intVar);
      
      Nothing is required in the constructor.
      
      An alternate allocator for the vector (if it exists) may be passed
      as an extra argument:
      
        AUXVAR_DECL (int, intVar, std::pmr::polymorphic_allocator);
      
      In this case, the allocator for this variable will be initialized
      with the memory resource passed to the AuxContainerBase constructor.
      
      This allows specifying the container type to use in one place.
      This style of declaration will also be needed for linked variables,
      such as packed links and jagged vectors.
      a5970f55
  9. May 12, 2024
  10. May 08, 2024
  11. May 07, 2024
  12. May 06, 2024
  13. May 02, 2024
  14. May 01, 2024
  15. Apr 30, 2024
    • Scott Snyder's avatar
      PyDumper: Work around pyroot change. · 00febc21
      Scott Snyder authored and Walter Lampl's avatar Walter Lampl committed
      PyDumper: Work around pyroot change.
      
      When looping over a vector<T*>, recent pyroot versions give you back
      a T* object.  This implicitly converts to a T, but not to the object's
      dynamic type, as it used to.  Instead, iterate by index.
      
      Fixes unit test failure in TrkEventAthenaPool in dev3lcg.
      00febc21
  16. Apr 25, 2024
  17. Apr 24, 2024
  18. Apr 23, 2024
  19. Apr 22, 2024
  20. Apr 19, 2024
  21. Apr 18, 2024
  22. Apr 17, 2024
  23. Apr 16, 2024
Loading