|
Back
Midas
Rome
Roody
Rootana
|
Midas DAQ System |
Not logged in |
|
|
28 Jan 2024, Pavel Murat, Forum, number of entries in a given ODB subdirectory ?
|
28 Jan 2024, Konstantin Olchanski, Forum, number of entries in a given ODB subdirectory ?
|
28 Jan 2024, Stefan Ritt, Forum, number of entries in a given ODB subdirectory ?
|
29 Jan 2024, Pavel Murat, Forum, number of entries in a given ODB subdirectory ?
|
29 Jan 2024, Konstantin Olchanski, Forum, number of entries in a given ODB subdirectory ?
|
03 Feb 2024, Pavel Murat, Forum, number of entries in a given ODB subdirectory ?
|
08 Feb 2024, Stefan Ritt, Forum, number of entries in a given ODB subdirectory ?
|
11 Feb 2024, Pavel Murat, Forum, number of entries in a given ODB subdirectory ?
|
13 Feb 2024, Stefan Ritt, Forum, number of entries in a given ODB subdirectory ?
|
15 Feb 2024, Konstantin Olchanski, Forum, number of entries in a given ODB subdirectory ?
|
15 Feb 2024, Konstantin Olchanski, Forum, number of entries in a given ODB subdirectory ?
|
15 Feb 2024, Stefan Ritt, Forum, number of entries in a given ODB subdirectory ?
|
19 Feb 2024, Pavel Murat, Forum, number of entries in a given ODB subdirectory ?
|
|
Message ID: 2715
Entry time: 15 Feb 2024
In reply to: 2714
Reply to this: 2717
|
Author: |
Stefan Ritt |
Topic: |
Forum |
Subject: |
number of entries in a given ODB subdirectory ? |
|
|
> Hmm... is there any use case where you want to know the number of directory entries, but you will not iterate
> over them later?
I agree.
One more way to iterate over subkeys by name is by using the new odbxx API:
midas::odb tree("/Test/Settings");
for (midas::odb& key : tree)
std::cout << key.get_name() << std::endl;
Stefan |