- Dec 19, 2023
-
-
Frank Winklmeier authored
Remove `print_function`, `absolute_import` and `division` imports.
-
Frank Winklmeier authored
Remove remaining Python2 backwards-compatibilty code.
-
- Nov 07, 2023
-
-
- Nov 03, 2023
-
-
Frank Winklmeier authored
-
- Oct 17, 2023
-
-
Marco Clemencic authored
-
- Sep 19, 2023
-
-
Sebastien Ponce authored
-
Sebastien Ponce authored
-
- Sep 13, 2023
-
-
Marco Clemencic authored
-
Marco Clemencic authored
-
Marco Clemencic authored
-
Marco Clemencic authored
-
- Jul 18, 2023
-
-
Marco Clemencic authored
- move Gaudi::Funtional to GaudiFunctional subdir - headers are now under "Gaudi/Functional" - legacy GaudiAlg corresponding header redirect to the new ones - replace GaudiAlgorithm with Algorithm wherever possible in tests and utilities - add Gaudi::Sequencer basic implementation to replace GaudiSequencer - move GaudiAlg specific tests, examples, dictionaries and Python modules to GaudiAlg subdir - add CMake option GAUDI_ENABLE_GAUDIALG to allow skipping GaudiAlg (default to true) - minor fixes and clean ups
-
- Jun 02, 2023
-
-
- Jan 30, 2023
-
-
Marco Clemencic authored
-
- Nov 10, 2022
-
-
Marco Clemencic authored
-
- Jun 01, 2022
-
-
Christopher Rob Jones authored
-
- Mar 30, 2022
-
-
Gerhard Raven authored
-
- Mar 29, 2022
-
-
Rosen Matev authored
-
- Mar 25, 2022
-
-
- Mar 23, 2022
-
-
- Mar 19, 2022
-
-
Gerhard Raven authored
-
- Mar 04, 2022
-
-
Rosen Matev authored
Messages can be enabled by setting the `ENABLE_GAUDITOOL_SUMMARY` environment variable. Closes #215
-
Rosen Matev authored
so that things work in a super project build
-
- Feb 23, 2022
-
-
Gerhard Raven authored
-
- Jan 10, 2022
-
-
Gerhard Raven authored
Change the type of the properties used to specify the input / output locations of {Merging,Splitting}Transformer from vector-of-string to the more appropriate vector-of-DataObjID
-
- Dec 20, 2021
-
-
Gerhard Raven authored
- and add a `#define` to simplify migration
-
- Dec 14, 2021
-
-
Gerhard Raven authored
-
- Dec 13, 2021
-
-
Gerhard Raven authored
-
Gerhard Raven authored
-
- Dec 09, 2021
-
-
-
Marco Clemencic authored
-
- Nov 16, 2021
-
-
- Oct 20, 2021
-
-
Gerhard Raven authored
-
- Sep 02, 2021
-
-
Gerhard Raven authored
Currenly, the constructors of the Gaudi::Functional baseclasses use `std::array<KeyValue,N>` as arguments where N is the number of inputs or outputs specified. However, this implies that one can specify a list of less than N KeyValues, as `std::array` will happily default-initialize any missing items. This will then result in an error in genConf, as this implies a property with a default-initialized string (i.e. an empty string) as key. This can be fixed by replacing the `std::array<KeyValue,N>` with a tuple with N `KeyValues, eg. for N=2 an `st::tuple<KeyValue,KeyValue>`.
-
- Aug 17, 2021
-
-
Gerhard Raven authored
-
- Jun 28, 2021
-
-
Gerhard Raven authored
* allow distinct types of columns to be filled in a single call
-
- Jun 27, 2021
-
-
Gerhard Raven authored
* avoid using C-style VA_ARGS which assumes 'double' arugments without any checking * generalize to 'all the same type of arguments' instead of 'all double', and check at compile time * avoid creating an `std::vector` to tokenize the format string
-
- Jun 25, 2021
-
-
Gerhard Raven authored
* remove one level of indirection in memory layout * allow the use of std::string_view in find
-