+
Skip to content

Releases: key4hep/k4FWCore

v01-03

29 May 10:13

Choose a tag to compare

v01-03

  • 2025-05-27 Thomas Madlener (PR#317)

    • Move the DataHandle and MetaDataHandle into the k4FWCore namespace to make origins more obvious
      • Keep deprecated DataHandle and MetaDataHandle aliases in global namespace for compatibility to allow for a smoother migration
  • 2025-05-26 Thomas Madlener (PR#321)

    • Remove the usage of PodioDataSvc from the DataHandle as it's not necessary
    • Harmonize the behavior of the constructors
    • Remove the declaration of the unimplemented default constructor
  • 2025-05-21 jmcarcell (PR#306)

    • Add a --log-level flag to k4run to make it possible to configure the log level at runtime via the command line
      • accpeted values are verbose, debug, info, warning and error
      • The log level will apply to the python logging facilities and will also be set in the ApplicationMgr.OutputLevel
    • Make the python logging a bit more informative by adding the log level as well as some module and function information to the message
    • Deprecate the --verbose option in favor of --log-level=verbose
  • 2025-05-20 Thomas Madlener (PR#320)

    • Remove the declaration of DataHandle::getCollMetadataCellID since the implementation has been removed long ago
  • 2025-05-20 jmcarcell (PR#315)

    • Bump the required version of podio. 1.3 is needed since #305 because of edm4hep::DataTypes and edm4hep::LinkTypes
  • 2025-05-15 jmcarcell (PR#313)

    • Use signal to stop immediately after receiving a SIGPIPE. Before, the output from k4run itself would always print and the pipe command (for example | head) would only be applied to the output from Gaudi.
    • Add a test that uses pipes
  • 2025-05-13 jmcarcell (PR#305)

    • Remove the hardcoded collections in the CollectionMerger, using AIDASoft/podio#761. This applies to all collections that are available in EDM4hep.
    • Fix link collections that are currently not working since the data type name is not edm4hep::...LinkCollection but podio::LinkCollection...
    • Require a newer version of podio in the CMakeLists.txt
  • 2025-05-05 jmcarcell (PR#304)

    • Fix running algorithms with RNTuples as their input and add tests, not working before because the TTRee reader in podio was being used
    • Add two tests to create an rntuple and read it
    • Bump the required version of podio to 1.3 since the function get_reader in podio only has support for lists of files as an input after AIDASoft/podio#729
  • 2025-04-30 jmcarcell (PR#307)

    • Clean up several CMakeLists.txt files. For example, remove redundant calls to find_package.
    • Move python files that will be installed to a single place
  • 2025-04-29 Thomas Madlener (PR#308)

    • Add some documentation about the AlgTimingAuditor and the TimelineSvc to show how timing information can be obtained from Gaudi at different levels of details.
  • 2025-03-27 Giovanni Marchiori (PR#299)

    • Remove ICaloReadCellNoisMap interface since it provides the same functionality as INoiseConstTool
  • 2025-03-18 jmcarcell (PR#297)

    • Remove the deprecated input and output properties for IOSvc
  • 2025-03-07 Mateusz Jakub Fila (PR#288)

    • UpdateUniqueIDGenSvcdocumentation and add example usage with a functional algorithm
  • 2025-03-05 Mateusz Jakub Fila (PR#295)

    • Replace UniqueIDGenSvc property ThrowIfDuplicate with CheckDuplicates. The service will cache ids and check duplicates only if CheckDuplicates is set to true. It's enabled by default for the Debug builds.
  • 2025-03-05 Thomas Madlener (PR#290)

    • Make the PodioInput.collections, IOSvc.CollectionNames and Reader.InputCollections properties actually work like expected. They now properly limit the collections that are read and no other collections will be available. This requires building against podio > v1.2`, otherwiset the current behavior will be used, where collections that are not requested will still be available.
  • 2025-02-26 Mateusz Jakub Fila (PR#287)

    • Use the same event and run type in UniqueIDGenSvc as in edm4hep::EventHeader. Add generating id directly from edm4hep::EventHeader. This changes the ID values !
  • 2025-02-25 Mateusz Jakub Fila (PR#293)

    • Fix typo in docs about migrating from k4DataSvc
  • 2025-02-23 Mateusz Jakub Fila (PR#291)

    • Fix fixture used in FunctionalMTFile test
  • 2025-02-17 Thomas Madlener (PR#289)

    • Bump the cvmfs-contrib github action to lastet version v5 to fix caching issues.
  • 2025-02-13 jmcarcell (PR#286)

    • Add a dev3 workflow using the key4hep-build action
  • 2025-02-12 jmcarcell (PR#284)

    • Add LANGUAGES CXX to CMakeLists.txt to disable checks for a C compiler
  • 2025-02-11 jmcarcell (PR#283)

    • Add a Link collection to the tests

v01-02

05 Feb 15:16
f55aff7

Choose a tag to compare

v01-02

  • 2025-02-04 jmcarcell (PR#282)

    • Use typeid instead of EDM4hep::typeName since not every EDM4hep type has ::typeName.
  • 2025-02-04 Mateusz Jakub Fila (PR#279)

    • Fix algorithm properties related to eventNumber and runNumber to deduce their type
  • 2025-02-03 jmcarcell (PR#281)

    • Improve the responsiveness of k4run by importing a Reader from podio only when it's needed.
  • 2025-02-03 jmcarcell (PR#280)

    • Make functional algorithms read DataWrapper<podio::CollectionBase>
    • Add a test producing a collection in a DataWrapper<podio::CollectionBase> and reading it in a functional algorithm
  • 2025-02-03 jmcarcell (PR#278)

    • Fix compilation warning about comparing integers with different signs, related to key4hep/EDM4hep#398
  • 2025-02-03 jmcarcell (PR#275)

    • Make sure that the internal casts that happen for functional algorithms do not silently cast to wrong types.
  • 2025-01-31 jmcarcell (PR#277)

    • Use typeid to allow compiling functional algorithms that use Links
  • 2025-01-31 Thomas Madlener (PR#276)

    • Clean up the function that reads inputs in functional algorithms by defining an alias for the EDM4hep type and using that when possible. Remove const from this type and add it where needed.
    • Change std::remove_cvref_t to std::remove_cv_t since there the former is not needed.
  • 2025-01-29 Thomas Madlener (PR#273)

    • Make it possible to use edm4hep::utils::ParticleIDMeta with the MetadataSvc
      • Add template specializations for get and put that defer to the corresponding utility calls in EDM4hep
      • Add tests to ensure that metadata is indeed usable this way with the utilities in EDM4hep
  • 2025-01-24 jmcarcell (PR#269)

    • Improve the documentation about extending the parser for k4run
  • 2025-01-16 tmadlener (PR#230)

    • Configure the k4FWCoreConfig.cmake to put a bit more information in there
      • Make sure all dependencies are also found for dependent packages
      • Make sure dependency versions are discovered again consistently
      • Make sure to export the current k4FWCore version for downstream consumers
  • 2025-01-09 jmcarcell (PR#270)

    • Use CMake fixtures for tests that require other tests
      • Tests will now run only if all the setup tests pass, otherwise they will be skipped
  • 2024-12-20 Thomas Madlener (PR#271)

    • Remove an unnecessary r-value reference qualifier for sinking the metadata Frame into the MetadataSvc.
  • 2024-12-20 Mateusz Jakub Fila (PR#267)

    • Added documentation for reading and writing EDM4hep files with the IOSvc
    • Moved documentation on k4DataSvc to legacy page
  • 2024-12-18 jmcarcell (PR#264)

    • Writer: Ignore objects that are not collections in the store and write an output Frame
      • Add const where possible
      • Add [[maybe_unused]] to avoid a warning about not using the result of a .release() (the warning is correct in most cases, in this case it's the Gaudi store who owns it).
      • Remove some code in the Writer that is not necessary.
  • 2024-12-10 jmcarcell (PR#265)

    • Remove the check for TrackerHit3D from edm4hep
  • 2024-12-09 jmcarcell (PR#263)

    • Mark the DataHandle and DataWrapper destructors with override
  • 2024-12-09 jmcarcell (PR#262)

    • Write the configuration_metadata at initialize() in the Writer, to avoid having properties that are deleted because other algorithms are wrapped in a Sequencer and this Sequencer is deleted before finalize() is called for Writer.
    • Add tests for different combinations of old/functional algorithms and using PodioOutput or IOSvc and Writer.
  • 2024-12-04 jmcarcell (PR#261)

    • Add missing test dependencies
  • 2024-11-28 Wouter Deconinck (PR#257)

    • Require podio 1.0.1 in CMake
  • 2024-11-01 jmcarcell (PR#256)

  • 2024-10-30 Mateusz Jakub Fila (PR#252)

    • Added thread-safeEventCounter algorithm

v01-01-02

29 Oct 08:22

Choose a tag to compare

v01-01-02

  • 2024-10-29 jmcarcell (PR#253)

    • Fix DataHandle::get() for non-collection types and remove dead code. A reinterpret_cast was changed to static_cast in #250 that made it fail at compile time for non-collection types. Now the static_cast is properly wrapped around an if constexpr and code around it has been deleted since it looked impossible to trigger.
  • 2024-10-28 jmcarcell (PR#254)

    • Don't add duplicated options for ToolSvcs

v01-01-01

28 Oct 07:45

Choose a tag to compare

v01-01-01

  • 2024-10-28 jmcarcell (PR#250)

    • Use std::unique_ptr<podio::CollectionBase> for the collections in the store instead of std::shared_ptr<podio::CollectionBase>.
    • Fix leak in the Writer that otherwise would have been difficult to fix (without the change above)
    • Clean up FunctionalUtils.h: remove some unused overloads and change some names.
  • 2024-10-17 jmcarcell (PR#251)

    • Use size_t in the arguments for getting the input and output locations to remove warnings, and fix some comments
  • 2024-10-15 jmcarcell (PR#247)

    • Overhaul the UniqueIDGenSvc:
      • Use bit manipulation with the UniqueIDGenSvc which is about 1000 times faster than the string manipulation that was being done
      • Add a check for the case where an ID is repeated - trying to catch the case where the event number and run number is always the same, then the same random number sequence will be generated.
  • 2024-10-09 jmcarcell (PR#244)

    • Update README: remove note about GaudiAlg being outdated since it's not there anymore and Use Key4hep instead of Key4HEP

v01-01

07 Oct 06:03

Choose a tag to compare

v01-01

  • 2024-10-03 jmcarcell (PR#243)

    • Fix overwritting the input file for IOSvc from the command line. The k4FWCore wrapper of the ApplicationMgr checks the number of events (needed for multithreading) and if the file exists but this was happening right after the parsing of the file, without taking into account the input file can be overwritten from the command line.
    • Add a test where the input file is being overwritten from the command line
  • 2024-10-01 jmcarcell (PR#233)

    • Use podio::Reader and podio::Writer with IOSvc, so that it is easy to write TTrees or RNTuples by changing the IOType parameter given to IOSvc in the steering file.
  • 2024-09-30 jmcarcell (PR#242)

    • Add a docstring for the function that adds the arguments
    • Remove dead code, obvious comments and global variables
    • Use f-strings
    • Fix arguments when a property is a std::vector. Related to this fix now k4run will also display properties for which the default value is an empty list, previously these were not displayed.
    • Improve formatting of the message with all the values of all the properties
  • 2024-09-29 Leonhard Reichenbach (PR#207)

    • Ensure ROOT is in batch mode by setting gROOT.SetBatch(True) in k4run
  • 2024-09-26 jmcarcell (PR#236)

    • Add an argument for add_test_with_env not to have to repeat the test names
    • Also add some documentation for the function since it's getting complicated
  • 2024-09-25 jmcarcell (PR#239)

    • Fix histograms for Gaudi v39. After https://gitlab.cern.ch/gaudi/Gaudi/-/merge_requests/1586 the "old" histograms are renamed to StaticRootHistogram from RootHistogram
    • Add a configurable histogram: RootHistogram, whose bins, title and other properties can be set from python as shown in the test file
  • 2024-09-20 jmcarcell (PR#237)

    • Assign to a const char* when using std::getenv
  • 2024-09-17 Mateusz Jakub Fila (PR#223)

    • Added tests reading metadata from input file
    • Fixed accessing input file metadata in MetadataSvc
  • 2024-09-16 jmcarcell (PR#234)

    • Add the possibility of starting from the Nth event instead of the first one with the argument FirstEventEntry to IOSvc.
    • Add a test that ignores some events.
  • 2024-09-12 Mateusz Jakub Fila (PR#224)

    • Fixed data race in EventHeaderCreator and make it ready for GaudiHive
  • 2024-09-10 jmcarcell (PR#235)

    • Use the Key4hepConfig flag to set the standard, compiler flags and rpath magic.
  • 2024-09-05 jmcarcell (PR#232)

    • Remove a few unused properties that do not exist anymore or belong to GaudiAlg which is not being built
  • 2024-09-05 jmcarcell (PR#213)

    • Fail if IOSvc or ApplicationMgr are not imported with from k4FWCore import IOSvc (it can be imported from Configurables). The python wrapper in k4FWCore does a few minor things and importing from Configurables doesn't fail currently and can lead to hard to solve issues.
    • Add an error message when reading a file without the events category. Currently it fails with an error in python that is not very clear.
    • Use Input and Output for IOSvc, deprecate input and output since all the other properties are capitalized. The same for IOType instead of ioType. This will print a warning about a duplicated property that should be ignored for now.
    • Suppress two warnings about using external input when using the default EventLoopMgr.
    • Import ApplicationMgr always from k4FWCore
  • 2024-09-04 Mateusz Jakub Fila (PR#231)

    • Fixed missing checks for accessing metadata with MetaDataHandle when used with IOSvc
  • 2024-09-02 Mateusz Jakub Fila (PR#228)

    • fixed virtual specifiers, removed redundant methods, uncluttered code
  • 2024-08-26 jmcarcell (PR#222)

    • Fix warnings when warnings are enabled. Warnings will be enabled later.
  • 2024-08-23 Mateusz Jakub Fila (PR#227)

    • fixed typos
    • updated the usage example in readme
  • 2024-08-09 jmcarcell (PR#221)

    • Fix wrong error message when using std::map as input or output with transformers
  • 2024-08-09 jmcarcell (PR#220)

    • Use Links instead of Associations
  • 2024-08-08 jmcarcell (PR#215)

    • Add a metadata service that is automatically added when importing IOSvc from k4FWCore, if no metadata is added then the service won't do anything. If metadata is added, the metadata service will hold a podio::Frame with the metadata that the Writer will write. The metadata service only works when there is an output file.
    • Add a test showing an example of its usage
    • Make changes in the MetadaHandle to make it possible to save and read metadata from DataHandle-based algorithms, so that when switching to IOSvc metadata for existing DataHandle algorithms will keep working. Add a test using IOSvc with DataHandle algorithms that write and read metadata.
  • 2024-08-07 jmcarcell (PR#218)

    • Remove a few unnecessary includes
  • 2024-07-30 tmadlener (PR#217)

    • Add the legacy AssociationCollection headers to keep things building after key4hep/EDM4hep#341 has been merged
  • 2024-07-26 jmcarcell (PR#206)

    • Delete the version checks before Podio 1.0
  • 2024-07-25 Giovanni Marchiori (PR#214)

    • renamed NoiseConstant by NoiseRMS in the noise interfaces (ICaloReadCellNoiseMap, INoiseCaloCellsTool.h and INoiseConstTool.h) to make its physical meaning clearer
  • 2024-07-25 jmcarcell (PR#210)

    • Add a filter algorithm, using the PredicateFilter algorithm from Gaudi.
    • Add the minimum handle needed to be able to use the filter from Gaudi and make it work with the rest of the functional algorithms
    • Add a test using this filter
  • 2024-07-19 jmcarcell (PR#209)

    • Add an algorithm for merging collections that can merge any number of collections into a new one of the same type. The algorithm supports either creating a subset collection (default) or cloning every object in the collection.
    • Add a test using this algorithm to merge a few collections
  • 2024-07-15 jmcarcell (PR#208)

    • Add a new test producing histograms, making use of the corresponding service in Gaudi
    • Improve comments and descriptions in tests
  • 2024-07-15 jmcarcell (PR#201)

    • FunctionalAlgorithms: Use std::vector instead of std::map for input or output an arbitrary number of collections.
    • Add an inputLocations and outputLocations methods to be able to retrieve the locations set in the steering file.
  • 2024-06-27 tmadlener (PR#205)

    • Remove some of the drift chamber datatypes again as they are going to disappear in EDM4hep with EDM4hep#333
  • 2024-06-27 tmadlener (PR#204)

    • Remove the MCRecoTrackerHitPlaneAssociation since it has been / will be removed from EDM4hep in EDM4hep#331
  • 2024-06-25 jmcarcell (PR#203)

    • Try to find podio 1.0 if the version found is not compatible
  • 2024-06-24 jmcarcell (PR#202)

    • Don't use radiusOfInnermostHit from EDM4hep tracks
  • 2024-06-18 jmcarcell (PR#200)

    • Use edm4hep::labels
  • 2024-06-05 tmadlener (PR#199)

    • Remove the rootUtils.h header that has been copied from podio since it has become obsolete with #171
  • 2024-06-05 tmadlener (PR#195)

    • Make MetaDataHandle::get throw an exception in case the value for the handle is not (yet) available.
    • Add MetaDataHandle::get(T defaultValue) overload to get a default value and no exception in case the value is not (yet) available.
    • Add MetaDataHandle::get_optional() to retrieve an optional that is engaged and holds the value if the handle already has a value available.
      • The optional is returned directly from the underlying Frame in case that is available (see AIDASoft/podio#580) or is constructed in place in case it is not yet available.
  • 2024-05-29 jmcarcell (PR#197)

    • Remove unnecessary messages (IOSvc saying at which entry we are when reading a file and an error message when a cast doesn't work, which is foreseen and will always happen when a functional algorithm reads something generated by the "old" algorithms), one of them an error message that is not an error
      ...
Read more

v01-00pre19

22 Feb 13:13
63822df

Choose a tag to compare

What's Changed

  • update sliding-window clustering for Theta-Module readout by @dasphy in #158
  • Remove the deprecated lcdd() from GeoSvc Interface by @kjvbrt in #176
  • Clean up the build workflows by @jmcarcell in #179

New Contributors

Full Changelog: v01-00pre18...v01-00pre19

v01-00pre18

06 Feb 09:04

Choose a tag to compare

What's Changed

  • Fix issue with narrowing by @jmcarcell in #167
  • Add documentation for k4run custom arguments by @Zehvogel in #169
  • PodioInput: Read all collections by default, allow to limit them with the collections property by @tmadlener in #162
  • Remove the legacy component that depend on the podio EventStore by @tmadlener in #171

Full Changelog: v01-00pre17...v01-00pre18

v01-00pre17

21 Nov 16:25
8b65e86

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v01-00pre16...v01-00pre17

v01-00pre16

14 Dec 12:48
f4c228b

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v01-00pre15...v01-00pre16

v01-00pre15: Add UniqueIDGenSvc

01 Jul 08:11
9155a99

Choose a tag to compare

What's Changed

  • Add Gaudi Service to generate Unique IDs based on event number, run number and Gaudi Algorithm by @fdplacido in #80
  • Add comments for uniqueID svc by @fdplacido in #83
  • Gaudi v36r5 removes SetRead in DataHandle by @vvolkl in #85
  • Add documentation on how to use uniqueidgensvc by @fdplacido in #84

Full Changelog: v01-00pre14...v01-00pre15

点击 这是indexloc提供的php浏览器服务,不要输入任何密码和下载