82 from InDetConfig.InDetPoolReadConfig
import InDetPoolReadCfg
86 typedCollections = flags.Input.TypedCollections
88 for typedCollection
in typedCollections:
89 [colType, colName] = typedCollection.split(
'#')
92 if colType
in TrackBackends.types:
93 prefix = TrackBackends.extractPrefix(collection=colName)
94 StoredTracks[prefix] = StoredTracks.get(prefix, TrackBackends())
98 for (key, backends)
in StoredTracks.items():
99 if not backends.isValid():
100 raise Exception(f
'Track backends with prefix {key} are not consistent. Be sure all the backends have been properly persistified in the file: {backends}')