Closed ChristianTackeGSI closed 4 months ago
fairroot/parbase/FairParSet.h (3)
`23-26`: **Update member variable types to standard C++ types.** The changes from `Int_t` to `int` and `Bool_t` to `bool` improve code readability and consistency. --- `32-32`: **Update constructor parameter type to standard C++ type.** The change from `Bool_t` to `bool` for the `owner` parameter improves code readability and consistency. --- Line range hint `48-70`: **Update function parameter types to standard C++ types.** The changes from `Int_t` to `int` and `Bool_t` to `bool` for function parameters improve code readability and consistency.fairroot/parbase/FairDetParRootFileIo.cxx (1)
`33-34`: **Add necessary imports for logging.** The imports for `fairlogger/Logger.h` and `fmt/core.h` are necessary for the improved logging functionality.fairroot/parbase/FairParSet.cxx (3)
`2-2`: **Update copyright year.** The update to the copyright year is appropriate and ensures the code is up-to-date. --- Line range hint `17-17`: **Update constructor parameter type to standard C++ type.** The change from `Bool_t` to `bool` for the `owner` parameter improves code readability and consistency. --- `62-75`: **Improve logging and error handling in the `init` method.** The changes to integrate `fairlogger` for logging and improve error handling in the `init` method are well-implemented. The use of `CallInitIO` to handle I/O initialization is a good practice.fairroot/parbase/FairRuntimeDb.cxx (2)
Line range hint `24-25`: **Add necessary imports for logging.** The imports for `fairlogger/Logger.h` and `fmt/core.h` are necessary for the improved logging functionality. --- `529-557`: **Improve logging and error handling in the `initContainers` method.** The changes to integrate `fairlogger` for logging and improve error handling in the `initContainers` method are well-implemented. The detailed logging messages provide better traceability.
@karabowi I included one of your commits from #1552.
I have also added even more LOG(info)
instead of cout
.
A current, typical output can be seen for example here: https://cdash.gsi.de/testDetails.php?test=20858392&build=463833
And re-arrange some if statements
See-Also: #1541
Included one commit from #1552
Checklist: