FAQ¶
This is a list of Frequently Asked Questions about atlas-schema. Feel free to
suggest new entries!
How do I…¶
- … define my singletons?
Did you get a warning like the following when running your code?
RuntimeWarning: I identified a branch that likely does not have any leaves: 'RandomRunNumber'. I will treat this as a 'singleton'. To suppress this warning next time, please define your singletons explicitly. [singleton-undefined]
You can define your singletons by inheriting from
atlas_schema.schema.NtupleSchema:from atlas_schema.schema import NtupleSchema class MySchema(NtupleSchema): singletons = {"RandomRunNumber", ...}
and then simply use
MySchemain place ofNtupleSchema.- … define custom collections?
If you get a
TypeErrorabout the size of an array not matching the size of a formTypeError: size of array (10058) is less than size of form (87106)
then there is likely a few common reasons for this. One potential issue is that you’re hit by a bug in
athenawhich you cannot recover from due to corrupted files: https://github.com/scikit-hep/coffea/issues/1083 . However, another situation that triggers this error is due to zipping up incompatible branches into the same collection.atlas-schematries very hard to automatically group up related collections for you, but sometimes you’re using an ntuple that does not follow consistent conventions for the branch names. In this case, you will need to define your own custom schema. Please seeatlas_schema.schema.NtupleSchemafor more details.